diff --git a/Makefile b/Makefile index a052b79416..9451c49ce3 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ IMAGE = $(REGISTRY)/$(IMGNAME) MULTI_ARCH_IMG = $(IMAGE)-$(ARCH) # Set default base image dynamically for each arch -BASEIMAGE?=quay.io/kubernetes-ingress-controller/nginx-$(ARCH):0.34 +BASEIMAGE?=quay.io/kubernetes-ingress-controller/nginx-$(ARCH):0.37 ifeq ($(ARCH),arm) QEMUARCH=arm diff --git a/cmd/nginx/flags.go b/cmd/nginx/flags.go index c732fe30ce..eb57e7bd29 100644 --- a/cmd/nginx/flags.go +++ b/cmd/nginx/flags.go @@ -131,6 +131,9 @@ func parseFlags() (bool, *controller.Configuration, error) { publishStatusAddress = flags.String("publish-status-address", "", `User customized address to be set in the status of ingress resources. The controller will set the endpoint records on the ingress using this address.`) + + dynamicConfigurationEnabled = flags.Bool("enable-dynamic-configuration", false, + `When enabled controller will try to avoid Nginx reloads as much as possible by using Lua. Disabled by default.`) ) flag.Set("logtostderr", "true") @@ -192,28 +195,29 @@ func parseFlags() (bool, *controller.Configuration, error) { } config := &controller.Configuration{ - APIServerHost: *apiserverHost, - KubeConfigFile: *kubeConfigFile, - UpdateStatus: *updateStatus, - ElectionID: *electionID, - EnableProfiling: *profiling, - EnableSSLPassthrough: *enableSSLPassthrough, - EnableSSLChainCompletion: *enableSSLChainCompletion, - ResyncPeriod: *resyncPeriod, - DefaultService: *defaultSvc, - Namespace: *watchNamespace, - ConfigMapName: *configMap, - TCPConfigMapName: *tcpConfigMapName, - UDPConfigMapName: *udpConfigMapName, - DefaultSSLCertificate: *defSSLCertificate, - DefaultHealthzURL: *defHealthzURL, - PublishService: *publishSvc, - PublishStatusAddress: *publishStatusAddress, - ForceNamespaceIsolation: *forceIsolation, - UpdateStatusOnShutdown: *updateStatusOnShutdown, - SortBackends: *sortBackends, - UseNodeInternalIP: *useNodeInternalIP, - SyncRateLimit: *syncRateLimit, + APIServerHost: *apiserverHost, + KubeConfigFile: *kubeConfigFile, + UpdateStatus: *updateStatus, + ElectionID: *electionID, + EnableProfiling: *profiling, + EnableSSLPassthrough: *enableSSLPassthrough, + EnableSSLChainCompletion: *enableSSLChainCompletion, + ResyncPeriod: *resyncPeriod, + DefaultService: *defaultSvc, + Namespace: *watchNamespace, + ConfigMapName: *configMap, + TCPConfigMapName: *tcpConfigMapName, + UDPConfigMapName: *udpConfigMapName, + DefaultSSLCertificate: *defSSLCertificate, + DefaultHealthzURL: *defHealthzURL, + PublishService: *publishSvc, + PublishStatusAddress: *publishStatusAddress, + ForceNamespaceIsolation: *forceIsolation, + UpdateStatusOnShutdown: *updateStatusOnShutdown, + SortBackends: *sortBackends, + UseNodeInternalIP: *useNodeInternalIP, + SyncRateLimit: *syncRateLimit, + DynamicConfigurationEnabled: *dynamicConfigurationEnabled, ListenPorts: &ngx_config.ListenPorts{ Default: *defServerPort, Health: *healthzPort, diff --git a/images/nginx/build.sh b/images/nginx/build.sh index b0c09d3250..687badc14a 100755 --- a/images/nginx/build.sh +++ b/images/nginx/build.sh @@ -32,7 +32,7 @@ export OPENTRACING_CPP_VERSION=1.2.0 export ZIPKIN_CPP_VERSION=0.2.0 export JAEGER_VERSION=0.2.0 export MODSECURITY_VERSION=1.0.0 -export LUA_VERSION=0.10.12rc2 +export LUA_NGX_VERSION=0.10.12rc2 export LUA_UPSTREAM_VERSION=0.07 export COOKIE_FLAG_VERSION=1.1.0 @@ -155,7 +155,7 @@ get_src 9915ad1cf0734cc5b357b0d9ea92fec94764b4bf22f4dce185cbd65feda30ec1 \ "https://github.com/AirisX/nginx_cookie_flag_module/archive/v$COOKIE_FLAG_VERSION.tar.gz" get_src 18edf2d18fa331265c36516a4a19ba75d26f46eafcc5e0c2d9aa6c237e8bc110 \ - "https://github.com/openresty/lua-nginx-module/archive/v$LUA_VERSION.tar.gz" + "https://github.com/openresty/lua-nginx-module/archive/v$LUA_NGX_VERSION.tar.gz" get_src 2a69815e4ae01aa8b170941a8e1a10b6f6a9aab699dee485d58f021dd933829a \ "https://github.com/openresty/lua-upstream-nginx-module/archive/v$LUA_UPSTREAM_VERSION.tar.gz" @@ -166,6 +166,9 @@ get_src d4a9ed0d2405f41eb0178462b398afde8599c5115dcc1ff8f60e2f34a41a4c21 \ get_src 92fd006d5ca3b3266847d33410eb280122a7f6c06334715f87acce064188a02e \ "https://github.com/openresty/lua-resty-core/archive/v0.1.14rc1.tar.gz" +get_src eaf84f58b43289c1c3e0442ada9ed40406357f203adc96e2091638080cb8d361 \ + "https://github.com/openresty/lua-resty-lock/archive/v0.07.tar.gz" + get_src 1ad2e34b111c802f9d0cdf019e986909123237a28c746b21295b63c9e785d9c3 \ "http://luajit.org/download/LuaJIT-2.1.0-beta3.tar.gz" @@ -197,6 +200,9 @@ make install cd "$BUILD_PATH/lua-resty-lrucache-0.07" make install +cd "$BUILD_PATH/lua-resty-lock-0.07" +make install + # build opentracing lib cd "$BUILD_PATH/opentracing-cpp-$OPENTRACING_CPP_VERSION" mkdir .build @@ -335,7 +341,7 @@ WITH_MODULES="--add-module=$BUILD_PATH/ngx_devel_kit-$NDK_VERSION \ --add-module=$BUILD_PATH/nginx-goodies-nginx-sticky-module-ng-$STICKY_SESSIONS_VERSION \ --add-module=$BUILD_PATH/nginx-http-auth-digest-$NGINX_DIGEST_AUTH \ --add-module=$BUILD_PATH/ngx_http_substitutions_filter_module-$NGINX_SUBSTITUTIONS \ - --add-module=$BUILD_PATH/lua-nginx-module-$LUA_VERSION \ + --add-module=$BUILD_PATH/lua-nginx-module-$LUA_NGX_VERSION \ --add-module=$BUILD_PATH/lua-upstream-nginx-module-$LUA_UPSTREAM_VERSION \ --add-module=$BUILD_PATH/nginx_cookie_flag_module-$COOKIE_FLAG_VERSION \ --add-dynamic-module=$BUILD_PATH/nginx-opentracing-$NGINX_OPENTRACING_VERSION/opentracing \ diff --git a/internal/file/bindata.go b/internal/file/bindata.go index 6cff8ede2b..933bf46f71 100644 --- a/internal/file/bindata.go +++ b/internal/file/bindata.go @@ -1,5 +1,8 @@ // Code generated by go-bindata. // sources: +// rootfs/etc/nginx/lua/balancer.lua +// rootfs/etc/nginx/lua/configuration.lua +// rootfs/etc/nginx/lua/util.lua // rootfs/etc/nginx/nginx.conf // rootfs/etc/nginx/template/nginx.tmpl // rootfs/ingress-controller/clean-nginx-conf.sh @@ -70,6 +73,66 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } +var _etcNginxLuaBalancerLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdd\x8e\xdb\x36\x13\xbd\xd7\x53\x0c\x74\x25\xe1\xd3\x0a\xd9\x0f\xbd\x5a\xd4\x05\xf2\xb3\x05\x82\x24\x76\xe1\xa4\x05\x82\x22\x20\xb8\xd4\x58\x66\x4c\x93\x2a\x49\xad\xed\x06\x79\xf7\x62\x28\x89\x92\xbc\x4a\x17\xbd\x59\xaf\xc8\xe1\x99\x99\x33\x67\x86\x54\x46\x70\x05\xba\x3e\xb3\x07\xae\xb8\x16\x68\x61\x05\x16\xff\x6a\xa5\xc5\x2c\xd5\xf5\xb9\x1c\xd6\xd3\x3c\xe9\x8c\xbf\x3a\xa3\xa7\x46\x82\x16\xe2\xae\x30\x7a\x27\xeb\xd6\x72\x2f\xaf\xcc\xa6\x1b\xd1\xbc\xf5\x52\x4d\xad\xe8\x3b\x6e\x2a\xdb\x0a\x2e\xf6\x38\x35\xb0\xe8\xfc\xa5\x1c\x76\xa2\x69\x58\x66\xca\x88\xc3\x82\xb1\x11\x87\x34\x4f\x92\x9b\x1b\x38\x22\x77\xad\xc5\x0a\xa4\x06\x87\xc2\xe8\xca\xd1\xf2\xce\x58\xe0\x1a\xd6\xb5\xd4\x67\x38\x19\x7b\x40\x0b\xde\x40\x23\xc5\x01\xda\x06\xfc\x1e\x41\xe3\x09\x94\x74\x1e\xcc\x0e\xda\xc6\x79\x8b\xfc\x08\x0d\xa2\x75\x40\x08\xd2\xc3\x49\x2a\x05\x9e\x1f\x10\x7e\xa6\x03\x15\x2a\x7e\x81\x56\x53\x82\xc2\x68\x6f\x8d\x52\x68\xe1\xb7\xcd\xc7\x4f\x58\x05\xc8\x07\x2e\x0e\xa8\x2b\x30\x0f\x5f\x51\x78\x72\x48\xab\x5d\x10\xa8\xab\xc6\x48\xed\x7f\x81\xff\xc1\xab\x97\xaf\xdf\xdd\xaf\xdf\x7c\x64\x1f\x3f\xaf\x5f\xb3\xb7\xeb\x4f\xf7\xdb\x3f\x5e\xbe\xef\x13\x5f\xde\x84\x15\xdc\x26\xc9\x76\xf3\xfb\xfa\x0d\xdb\x6e\x5e\xbd\x5d\xb3\xf7\x9b\xd7\xef\xd8\xbb\xfb\xcf\xb0\x82\xd4\x9a\x56\x57\xcc\x9a\x07\xa9\xd3\x64\x20\x70\x5c\x63\xce\x73\x4f\xa4\x53\xf9\xdd\x9e\x5b\xac\xca\x27\xdb\xc3\x39\xf6\x01\x56\xf0\xed\xfb\x12\x4c\xac\xc6\x50\x9a\x3b\x8d\xa7\x2c\xa5\xff\x5c\x5a\xc0\x37\x2f\x8f\x68\x5a\x0f\x2b\x78\x51\x00\x9e\x1b\xfa\xa6\x8f\xf2\xf6\x7b\x3e\xe0\xf5\x1c\xb9\x02\xd0\x92\x34\x87\xc2\x97\x04\x75\xfb\xe2\xff\x3f\xe5\x89\xdc\x81\x36\x3e\x5a\x12\x89\x3a\x01\xb0\xe8\x5b\xab\xe9\x98\xb1\x59\xba\xe3\x52\x11\xed\x06\x84\x45\xca\x8e\xa8\xee\xc4\x45\xc5\x1f\x0e\xdf\x41\x0a\x65\x09\x19\x39\x33\x16\xd2\x56\x1f\xb4\x39\xe9\x34\xcf\x13\xd4\xd5\x10\xd4\xae\xd5\x22\xc8\xbb\xef\x8d\x2c\x4f\x00\x66\xf1\x32\xcd\x8f\x03\x83\x8f\xdc\x96\x8d\x35\xe7\x0b\x1b\x74\x13\x76\xaf\x8f\xc0\x6a\x8c\xa2\x46\x9f\x4d\x91\x08\xff\xe6\x06\xd4\x03\xe3\xaa\x86\x9d\x44\x55\x41\x65\xd0\x85\xc4\xf1\x4c\xb2\xa4\x2c\xa4\xae\x2d\x3a\x57\xbe\xea\x11\x9d\xb7\xad\xe8\xb6\xb4\x39\x15\xe0\x4c\x0f\xd1\xc1\x05\xc1\x72\x75\xe2\x17\x07\x0f\x38\x2d\x5d\x8c\xad\xf7\x18\x43\x2b\xfb\x05\xe2\x66\xae\x22\x00\xb9\x8b\xe6\x2b\x48\x65\xc3\xf6\xdc\xed\xd3\xa1\x1c\xc1\xe3\xa7\xcd\x9b\x4d\x86\xea\x51\x6a\xdc\xa1\xae\x64\x0e\xf2\xd8\x28\x3c\xa2\xf6\x10\x18\x89\x65\x1b\xfc\x0d\x7d\xe0\xfe\x7c\xf1\xa5\xe4\x55\x45\xf9\x15\xcb\xbb\x8d\xb1\x3e\x01\x08\x75\x0a\xde\xb6\x14\xe0\xcd\xb6\x4f\xe8\x5a\x99\x77\xf4\x67\xc6\x32\x55\x7e\xa9\x65\xc6\xea\x4a\x5d\xe1\x99\x24\x7d\xdd\x0d\x8b\x15\x9b\x9c\x29\x62\x43\x93\x28\xf0\x1c\x8d\xc7\x14\x8a\xce\x32\xef\x98\xa4\xc2\x76\xde\x22\x7f\x83\xf3\xdb\xf0\x35\xc1\x7b\xca\x46\x30\xfd\xd2\x93\x01\x0b\xe1\xba\xab\x70\x27\xce\x9f\xf0\xd4\xea\xff\xc0\xd4\xa4\xf1\xfa\x68\xc6\xaa\xc5\x95\x50\xa9\xa5\x7e\x72\x17\x2d\x58\xef\x68\x70\x48\x31\xc5\xc6\x98\xc4\x5d\x76\x71\x47\xab\xae\xe6\x5c\x39\x43\x13\x07\x7d\xe8\x70\x8b\xae\x41\xe1\xe5\x23\x42\xbc\xdf\xba\xe9\xe6\xa4\x16\xe3\x08\xde\x73\x07\x62\xcf\x75\x8d\xcb\x7c\x55\xa8\xd0\xe3\xcc\x75\xf0\x48\xfd\xad\x4c\x9d\xd1\xef\xdb\xf5\xaf\x9b\x02\x52\xca\xc1\x1a\x2d\xff\xee\x6e\x40\x61\x48\xe1\x1e\x2b\x6a\xc3\x7e\xbc\xcc\x61\x9e\x23\xc2\x3d\x1d\x2f\x8e\x55\xdc\x73\x58\xcd\x6f\xdb\xb2\x46\xcf\x66\x16\xd9\x44\x4d\xf3\xa3\x51\x55\x5d\xb5\xc6\xbe\xe9\xfc\x98\x43\x41\x37\x5e\x44\x83\x15\x34\x82\x2b\x95\xd1\x5d\x5f\x56\x28\x4c\x35\x72\xdf\x41\x4e\x5c\x99\xc3\x88\x3f\x65\xe8\x7e\xbb\x2d\x00\x52\x61\x5a\x55\x05\xc3\x86\x5b\x87\xe3\xe4\x26\x98\x9e\x22\x6f\x9c\xb7\x52\xd7\xd9\x34\x8a\x3c\x5f\x0c\x99\xe6\x1b\x9b\xc5\x4b\xd7\x7b\xc3\xa5\x75\xf3\xe3\x50\x99\x00\xf0\xaf\x73\x77\x72\xa2\x1c\x3a\xf9\x7a\xba\xf7\x52\x81\x15\x78\xdb\x62\xd2\xb5\xe7\x2e\x22\xc6\xe4\x61\xe1\x04\xe5\x4d\xaf\x9c\xb2\x42\x6c\x18\xc9\x83\xdb\xa8\xac\x59\x16\xf9\xd0\xe8\xd7\x0e\x22\xda\xc4\xd1\xac\x75\x16\x41\xba\xbf\x01\x2e\xea\x8c\x7d\x28\xa5\x96\x9e\x75\x6f\x9e\x20\x17\x36\x5c\xb5\x54\x31\xba\x92\x6d\x89\x8f\x68\x2f\xd9\xf2\x4b\xa3\x98\x6b\xb5\x57\x01\x21\xfc\x58\x02\x69\xb8\x94\xe1\xb4\x47\x7a\x85\x79\x2f\x75\x1d\x9e\x59\xa3\xb3\x50\xd3\x19\xf0\xb5\x2e\xd0\xda\x20\x87\xc5\x9c\x82\x54\xf3\xae\x3f\xe3\xc3\xb6\x74\xe8\xd9\xd1\x58\x64\xde\x4a\x74\xd9\x6d\x3e\xea\x7d\x6f\x9c\x2f\x80\xe6\x52\x90\xc3\x70\xab\xcf\xfa\x21\xb2\x32\x47\x14\xad\xb5\xa8\x3d\xa3\xb7\x60\x36\xe2\xf4\x44\xfc\xa8\x15\xfa\x61\xd1\x1f\x0e\x0f\x49\x90\x0e\xc2\xdc\x32\x5d\xaa\x84\x45\xbf\xe9\x5d\xf8\x1c\x40\x51\x39\x7c\x86\x56\xa9\x30\xf2\x3a\x78\x98\xbd\x59\xc1\x9b\x67\xf9\xec\xc7\x38\xfb\x90\xfc\x13\x00\x00\xff\xff\x07\x54\x62\xed\x24\x0c\x00\x00") + +func etcNginxLuaBalancerLuaBytes() ([]byte, error) { + return bindataRead( + _etcNginxLuaBalancerLua, + "etc/nginx/lua/balancer.lua", + ) +} + +func etcNginxLuaBalancerLua() (*asset, error) { + bytes, err := etcNginxLuaBalancerLuaBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "etc/nginx/lua/balancer.lua", size: 3108, mode: os.FileMode(420), modTime: time.Unix(1520364534, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _etcNginxLuaConfigurationLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\xc1\x8e\xdb\x46\x0c\xbd\xeb\x2b\x5e\x7d\x89\x17\xb0\x65\xb7\xc8\x29\x80\x2f\x45\x7b\x29\xb0\xd9\x22\xc9\x5d\xa0\x25\x4a\x9a\xee\x78\xa8\xe5\x70\xbc\x11\x8a\xf6\xdb\x8b\x19\x79\xdd\x38\xbb\x39\x19\x1e\x92\xef\x91\xef\x3d\x6d\xb7\x78\xe4\xf9\x5d\x04\x29\x83\xfc\x33\xcd\x11\x83\xb8\x30\xc0\x04\x47\x46\x18\xbe\xd6\x67\xd2\x7a\x52\xf9\x3a\x37\x69\x8a\xa6\x4c\xa7\x26\xd0\x89\x37\x20\xa4\xe0\x9e\x12\x27\x86\xeb\x38\x98\xeb\x1d\x2b\xa4\x07\x05\xd0\x34\xbd\x8b\xf8\x95\xda\x47\x0e\x1d\xe4\xf8\x17\xb7\x56\x6d\xb7\x68\x93\x2a\x07\xf3\x33\x9c\xc1\x45\x1c\x93\xf3\x06\x49\x65\x2e\xc3\x4e\x91\x5a\xde\x20\xb2\x9e\x5d\xcb\xe5\x09\x14\xba\xeb\xc3\x24\x5a\x80\xce\xe4\x33\x6f\xc4\x1f\x9f\x1f\x3e\x82\x43\x2b\x1d\x77\x70\x61\x50\x8e\xb1\xbe\x25\xfe\xee\xef\x06\xbd\x28\x4e\xa2\x0c\x17\x7a\x81\x72\xcf\x9a\x0f\x76\xc1\x58\x03\xf9\xdd\xee\x82\xb3\xb3\x79\xe2\x58\x0f\x52\x79\x69\xc9\xa3\x95\xd0\xbb\x21\x29\x99\x93\xd0\x74\x64\x84\x43\xd1\x28\x8e\xa4\xdc\xd5\xaf\xeb\xd5\x65\xb2\xb9\xc7\x01\x7f\xff\x53\x55\x7d\x0a\x6d\xae\xa2\xb9\xaf\x07\xb6\xe6\xb8\xac\x16\x4b\xf7\xfa\xae\x02\x94\x2d\x69\x78\x83\xeb\xc3\xc0\xb6\x5e\xbd\x0c\xac\xee\x2a\x0e\xdd\x0f\x01\x8b\x47\xb1\x00\x6e\xb7\xd8\x63\x64\x65\x9c\x98\x42\xc4\xc0\x06\xf2\x1e\x36\x72\x76\x3f\xe2\x79\x74\xed\x88\x96\x42\xb6\x3c\x7a\x79\x86\xeb\x73\x35\x67\x22\x4f\x51\x98\x4b\xe3\x82\xf5\xe5\xe1\xb7\x87\x35\xfb\xb3\x0b\xdc\x73\xe8\xdc\x1d\x6c\x74\xe1\x11\x74\x94\x64\x88\x26\x9a\xf3\xd3\xca\xe9\x44\x88\x3c\x91\x92\x71\x87\xcb\x5a\xc5\xd0\x08\x17\x40\x41\x32\x05\x3a\x57\xd6\x27\x9d\x8b\xcf\x29\x96\xf4\x8d\x64\x30\x59\x08\x7b\xb6\x76\x2c\xdb\x7a\x17\x2d\x07\xc5\x46\x3e\x2d\x17\xb9\x10\x33\xba\xf4\x38\x7a\x69\x1f\x97\x59\x06\xb5\x2d\xc7\x98\x3d\x5d\x9c\xf9\x86\xe5\x7f\x85\x6f\xa4\xcf\xe2\x36\xf9\xc8\xf5\xfe\x0d\x61\x5b\xf2\xbe\x68\xe9\xfa\xeb\x37\xa1\xfc\x94\x38\x5a\x73\x62\x1b\xa5\xc3\xbf\x07\xac\xfe\x7c\xf8\xfc\x65\x05\xd1\x57\x3d\x49\x5d\x69\xd8\xdd\xb8\xba\xbb\x7a\x99\x97\x0e\x15\x80\x25\x4d\x46\x96\x22\x0e\x78\xbf\x7f\x7f\x7d\x9c\xd4\x05\x5b\xaf\x3e\x8a\xa1\x97\x14\xba\x9f\x56\x77\x55\x29\x2e\xd7\x54\x40\xd9\x7a\x69\x56\x7e\xaa\x95\xa9\x6b\x8e\xd2\xcd\xeb\xd2\xb8\xe4\x30\xa6\xa2\xcc\x06\xac\x8a\xc3\x5b\x21\x8b\x37\x21\xdb\x5c\xe1\x4a\xb6\xa4\x9b\x2f\x41\x7d\x11\x43\xec\x05\xf3\xf6\x06\x2f\xc3\x3a\xff\xfe\xfe\xe9\xd3\x06\x2b\x56\x15\xcd\x39\xf3\x8c\x48\xe7\x25\x20\xdf\x50\x7f\xc0\x0a\x75\x0d\x93\x68\x39\x3d\x6b\x56\x2d\x0c\xaf\xf4\xd8\xff\xf0\xe4\x6b\xd3\x2f\xfb\x9f\x17\x03\x2f\x36\x37\xf7\xd5\x7f\x01\x00\x00\xff\xff\xf6\x6d\xd4\xcd\xe7\x04\x00\x00") + +func etcNginxLuaConfigurationLuaBytes() ([]byte, error) { + return bindataRead( + _etcNginxLuaConfigurationLua, + "etc/nginx/lua/configuration.lua", + ) +} + +func etcNginxLuaConfigurationLua() (*asset, error) { + bytes, err := etcNginxLuaConfigurationLuaBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "etc/nginx/lua/configuration.lua", size: 1255, mode: os.FileMode(420), modTime: time.Unix(1520364534, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _etcNginxLuaUtilLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\xef\xb6\xac\xd4\x36\x6b\x77\x11\xd2\x4a\x39\xc1\xb5\x37\xc4\x65\x85\x2c\x37\x99\x34\xa6\x8e\x1d\xec\x49\xaa\x0a\xc1\x67\x47\x76\xda\x6d\x8a\x04\x17\x4e\x51\x9e\xdf\xbc\xdf\xfc\xb1\xbe\xd6\x16\x6a\x87\x0a\x3f\x7e\x16\xc5\x7a\x0d\xee\x4c\x84\xe9\x07\x4b\x3d\x39\xd6\x6c\xbc\x83\x89\x60\x7d\x24\x87\x36\xf8\x3e\x99\x3a\xe6\x21\xbe\x94\xe5\x89\xf6\x1b\x1d\xea\xce\x4c\xb4\xf1\xe1\x90\xfe\x4b\xf9\x24\xb6\x42\xca\xf7\x4f\x1f\x9e\x9e\xb7\xcf\x65\xb2\xbe\x94\x65\x74\x66\x18\x88\xe3\xc6\x8e\xba\xf6\xcd\x6c\xbf\x8a\xe5\x27\xa2\x41\x7d\xf4\xfd\xa0\x83\x89\xde\x29\xdf\xaa\xcf\x27\xaf\xbe\x68\x3b\x52\x54\xdb\x84\xd4\xae\x41\xef\x1b\xd3\x1a\x6a\xd0\xfa\x80\x31\x12\x8c\x9b\xfb\x1d\x82\xff\x46\x35\x17\xf3\x38\xed\xe8\xea\xdc\x77\x93\x62\xeb\x1c\x4b\xef\x58\xac\xc0\x72\x05\x73\x70\x3e\x90\xea\xf9\xb1\x00\xe6\x02\x3e\x0b\x54\xe0\xf3\x90\x5c\x4b\x59\xbe\xc9\x32\xc9\xa6\xcd\xd6\x5f\x55\x7e\xe2\x8e\x1c\x02\xf1\x18\x1c\x5a\x6d\x23\x81\x5c\x53\x00\xeb\x35\x9c\x77\x6b\xd6\x7b\x4b\xb9\x3a\xa2\xd6\x0e\x7b\x42\x63\x02\xd5\x6c\xcf\xb8\xf4\xd4\xdc\x65\x3e\xe4\x8a\x87\x3c\x69\xca\x5f\x48\x4b\x14\x0b\x54\x15\x58\xde\x68\x3a\xe2\x44\xd6\xa6\x6f\xf6\x47\x9c\x3a\x53\x77\xe8\xf4\x44\xa9\x14\x3d\xb1\xee\x89\x3b\xdf\x40\x29\xfa\xfe\x36\x60\xcf\xa8\x70\x20\x4e\xef\xb9\xf2\x32\xbe\x69\xe1\x3c\xdf\x36\x35\x2f\xff\xfa\xd9\xa4\x8c\x7f\xb5\x94\xae\x73\x14\xab\x49\xa4\xfb\x0c\xda\x84\x98\x72\xd1\xf8\x02\xb8\xa2\xa7\xbc\x5a\xf9\x7a\x14\x5f\xb3\x6a\xda\x2c\x55\x70\xc6\xc2\x87\xcc\xbf\x3b\xdf\x24\x56\x93\x7c\xfc\xeb\xd2\x17\x64\xb9\x9a\xe4\x82\x2c\xff\x24\xe7\x5b\x8b\xd7\xa3\xbc\x91\xc5\x7f\x93\xaf\x9b\x08\x23\x15\x49\x51\xbb\xcd\x32\x04\xd5\x5d\x66\x51\x5c\xfc\x6a\x57\xfc\x0e\x00\x00\xff\xff\xb9\x73\x37\x07\x83\x03\x00\x00") + +func etcNginxLuaUtilLuaBytes() ([]byte, error) { + return bindataRead( + _etcNginxLuaUtilLua, + "etc/nginx/lua/util.lua", + ) +} + +func etcNginxLuaUtilLua() (*asset, error) { + bytes, err := etcNginxLuaUtilLuaBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "etc/nginx/lua/util.lua", size: 899, mode: os.FileMode(420), modTime: time.Unix(1520390515, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _etcNginxNginxConf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\xca\x41\x0a\x83\x40\x0c\x85\xe1\xfd\x9c\xe2\x41\xf7\x7a\x00\x57\x3d\xca\xa0\x89\x06\x34\x19\x32\x4f\x69\x29\xbd\x7b\x69\xe9\xea\x5f\xfc\xdf\x0d\x77\x5c\x92\x4f\x74\x3b\xda\x2e\xf0\xd5\xfc\x81\x39\x5c\x6d\x3d\xb3\xd2\xc2\xa1\xb6\x0b\xb8\x55\x42\x23\x67\xe9\x7f\xc4\x40\x67\x4d\x0e\xa5\xd9\x82\x31\x4f\x1f\x7f\x63\x68\xb6\x4c\xa5\xc8\x25\xce\x8e\xd7\xbb\x6c\x64\xfb\x76\xa9\x72\x84\x23\x54\xa7\x4f\x00\x00\x00\xff\xff\x75\xb5\xe6\xb8\x77\x00\x00\x00") func etcNginxNginxConfBytes() ([]byte, error) { @@ -85,12 +148,12 @@ func etcNginxNginxConf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "etc/nginx/nginx.conf", size: 119, mode: os.FileMode(420), modTime: time.Unix(1516916602, 0)} + info := bindataFileInfo{name: "etc/nginx/nginx.conf", size: 119, mode: os.FileMode(420), modTime: time.Unix(1519920732, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _etcNginxTemplateNginxTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x6b\x73\xdb\x38\x12\xe0\xf7\xfc\x0a\x94\xec\x2b\xdb\xa9\x48\x76\x66\xb2\xb3\xbb\x76\xf9\xea\x1c\x3b\x59\x7b\xd7\x49\x5c\x96\x33\xb3\xb5\x57\x57\x2a\x88\x6c\x89\x58\x53\x04\x07\x00\x65\x6b\x72\xba\xdf\x7e\x85\x27\x01\x12\xa4\x64\x4f\xe6\xb1\x53\xcb\x0f\x2e\x8b\x6c\x34\x1a\x8d\x46\x03\xfd\x00\xf0\xe5\x0b\xda\xc5\x79\x8e\x8e\x4f\xd1\x08\xad\xd7\x2f\xe4\x6f\x0e\x6c\x09\x8c\xab\x77\x63\xf3\xbf\xf9\x94\xcc\xe6\xea\xf5\xf9\x6c\x6e\x5f\x5d\xf1\xab\x9b\xef\xbf\x7b\x57\xe0\x69\x0e\xa9\xfa\x18\xbe\x31\x60\x19\xe0\x5c\x64\x3f\x7d\xbe\xbd\x52\x30\x97\xf5\x4f\x03\x30\xc5\xc9\x3d\x14\xa9\xae\xf6\xad\xfd\x61\x3e\x96\x8c\x3e\xae\x2e\x01\xa7\x96\xae\x1b\xf9\x62\x0c\xc2\xbe\x33\x70\x38\x4d\x7d\xa8\xb3\xfa\xe7\x7a\xfd\x42\x42\x90\x99\x6a\xc4\x48\x53\xf7\x81\xa6\x1c\x92\x8a\x11\xb1\x92\x00\x39\xc5\xe9\x64\x41\xd3\x2a\x07\x74\x08\x22\x39\x2c\xe6\xa4\x78\x3c\xd4\x6f\xf8\x61\x31\x7f\x9c\x64\x42\x94\x12\xc4\x16\x33\xe0\x23\x4e\x4f\x24\x7a\x28\xd2\x78\x4d\x9f\x4a\x28\x04\xc3\x09\x29\xe6\x4f\xa9\x89\xd6\xc5\x7a\x6b\xda\xc7\x45\xda\x55\xdd\x7e\x01\xfa\xd3\xbf\x48\x79\x4f\x8a\x73\x9a\xe7\x90\x08\xca\x2e\x29\x17\x68\x30\x38\x38\x78\x0a\x41\x3f\x29\x1c\x3f\x9f\x96\xbf\x63\x98\x03\xfb\x79\xb4\xfc\x5b\xe1\xe8\xa0\x25\xc5\xb0\xa0\x05\xa2\xb3\xd9\xc9\x8b\x17\x0f\x94\xdd\x03\x9b\x94\x8c\x26\xc0\x39\x70\x64\x64\x79\xf4\x83\xfa\x70\xe3\xde\xaf\xd7\x27\x2f\x4a\x92\xa2\x43\x56\x15\xba\xda\x51\x49\xd2\x13\xd3\xb2\x02\xd0\xe8\x03\x7e\x94\x0d\x7a\x4f\x72\xe0\xe8\x48\x56\x65\x90\xb3\x9c\x2c\x88\x98\x14\x74\x46\x72\x90\x15\x84\xa0\x12\xb3\x26\x4f\x73\xea\xf0\x25\x92\x8d\x38\x3e\x34\xd5\x50\x36\x3f\x84\xe2\x30\xa5\x89\x6e\x61\x42\x19\xd8\xa6\x65\x62\x91\xef\x98\x6a\x78\x56\x89\x94\x3e\x14\x13\x41\x16\x40\x2b\x81\x5e\x1e\x2a\xd9\x3f\x7c\x89\xf0\x92\x92\x14\x3d\x60\x22\x24\xab\x05\xa5\x28\xa7\xc5\x1c\xa5\x15\x93\xbf\x31\x62\x20\x39\xab\x0b\x74\x61\x0b\x19\x33\x36\x9f\xef\xcc\xd7\xf5\x1a\x9d\xbc\x78\x01\x4b\x28\x04\x47\x5f\x5e\x20\x84\xd0\xa2\xca\x05\x99\xe0\x24\x81\x52\x20\xf3\xd0\xe2\x44\x7d\x33\x95\x24\xb4\x28\x20\x11\x84\x16\x1c\xb9\x0a\x3e\xe0\x47\x5d\xc7\xb9\xf7\x55\x32\x49\x16\xac\x38\xa0\xe6\x03\x25\xcd\xf3\x93\x17\xeb\x17\x2f\x24\xdf\x4c\xed\xaa\xdd\x0f\xa0\x0a\x88\x0c\xd0\x12\xe7\x15\x20\x3a\x53\x3f\x32\x35\xf4\xd1\x3f\x87\xef\x29\x7b\xc0\x2c\x85\x54\xfe\x87\x04\x45\x53\x40\x52\x32\xe5\xbf\xb6\xe4\x1c\xe8\x84\x94\xc8\x88\x9d\xe2\x91\xae\xc0\x0d\xe4\xcf\x1c\x94\xd6\xb9\x61\x54\xd0\x84\xe6\xc8\x80\x30\xc0\xf9\x84\x94\x13\x53\x9d\x7a\x94\xbe\x92\xf2\xa6\x20\x4f\x2c\x2a\xc8\x39\xf4\x15\xb3\xcc\x71\x04\xbf\xa7\x4c\x2b\x30\xc7\x1a\x4f\xc4\x7d\x2c\x4c\xea\x23\x4e\x96\xe0\xb1\xff\xcb\x17\xc4\x70\x31\x07\xb4\x2b\x58\xc5\x05\xa4\xb2\x81\xc7\xa7\xba\x0a\xd5\x94\x5b\xc0\xf9\xd5\xcd\xf9\xd5\xc5\xad\xa5\x8a\x83\x98\x58\x9c\x33\x46\x17\x96\x2a\x0f\x43\x07\x25\xaa\x2b\x52\x2c\xf0\x14\xcb\x91\x54\x71\x48\x25\x7f\x53\x10\xc0\x16\xa4\xd0\x5c\x4e\x68\x55\x08\xb6\x42\x29\x94\x50\xa4\x52\x2c\x69\xa1\x3f\xe4\x04\x0a\x81\xae\x6e\x10\x4e\x53\x06\x9c\xfb\x5d\xd0\x37\x56\xe4\x87\x5a\x25\xcc\x81\x92\xd2\x1f\x36\x0d\x34\x22\x23\x1c\x11\x8e\x18\xfc\x58\x11\xa6\x04\x20\xc1\x79\x52\xe5\x58\x00\x12\x0c\xcf\x66\x24\x41\x33\xca\x10\x29\x52\xb2\x24\x69\x85\x73\x47\x73\xc5\x25\xbd\x7f\x03\x7a\x75\x83\x88\xa6\x9a\x0b\x2c\x2a\x8e\x4a\x3c\xf7\x44\x46\xd3\x60\x4b\xe9\xc7\x53\x63\x0a\xc1\x28\xc5\xe2\xc4\x87\x96\x33\x90\x7b\x42\xe8\x6b\x22\xe0\x9c\x88\x55\xb3\x8c\x96\xb1\xba\xe3\x65\xb7\x37\x65\x56\x6b\xe0\xef\x05\x1f\x6b\x4a\x0d\x89\xcb\x8c\x72\x31\x31\xed\x9d\xe8\x56\x4c\x7e\xa2\x05\x20\x9e\x61\x06\xe9\x71\x0c\xe0\xd8\x4a\xa7\x43\xf7\x2f\x5a\xc0\x98\xfc\x04\x4e\x24\xa2\x78\x67\x24\x17\xc0\x26\xd3\xd5\x44\x0a\xd7\x3d\xac\x90\x87\xe8\x02\x66\xb8\xca\xc5\x7b\x05\xf3\x0f\x58\x75\x49\x17\x26\xb4\xa5\x11\x44\xc6\x00\xa7\xfc\xc4\x02\x4c\x1e\x18\x11\xbe\xe2\x70\x1c\x11\x49\x39\x29\x68\x59\xf1\x2c\xfc\x58\x7f\x4b\x21\xc7\xab\x76\xc1\x9c\xce\x27\xbc\x9a\x4a\x71\x01\x2e\x1a\x1f\x19\xc8\x06\x49\xcd\x99\xd2\x4a\x78\x6a\xae\x06\xb9\x07\x28\x71\x4e\x96\xe0\x14\xac\x6b\xfc\x3f\x00\xca\x33\xf9\x09\xad\xd7\xa6\x0d\x35\xb4\xa9\x90\xb7\xa1\x6f\xed\x17\xc9\x28\x55\x4a\x0f\x1d\xa3\x47\x26\xd3\x6a\x36\x93\x8a\x5d\x76\x4b\xa8\x54\xce\x15\x9c\x56\x27\x6f\x15\x54\xd0\x77\x21\x1a\x47\xae\x7b\x62\x68\xea\x79\xc1\xb4\x20\xc7\x6c\x0e\x93\x18\x45\x3c\x40\x72\x2d\xe1\xda\x04\xf1\x26\x35\x53\x9a\xae\x22\x4d\x6a\x52\xf3\x96\xa6\xab\xee\x26\x29\x24\xed\x06\xc5\x90\x04\x0d\x52\x38\xa4\x5a\xf9\x66\xb2\xc0\x8f\x93\x19\x81\x3c\x0d\xa9\xf0\x70\x5c\xde\xdd\xdd\x7c\xf3\x01\x3f\xbe\x97\x50\x01\x15\x35\x06\xc3\x90\x06\x8a\x26\x06\xcd\x10\x87\x42\x0b\xe9\xaa\x04\x3e\xc9\x30\xcf\x14\xa2\x26\x11\xe8\x9b\xa3\x37\x7f\x39\x31\x0a\x5c\x2e\xd8\x27\x05\x5e\xc4\x0b\xd8\xda\xf4\xc2\xfe\x23\x5e\xc0\x25\xe6\xd9\x07\xfc\x18\xd0\xdc\xc6\x32\xad\x92\x7b\x10\x16\x51\x1c\xcb\x5b\x05\x13\x20\x5a\xe0\x32\x56\xbe\xd5\xf8\x0f\xb8\x8c\x60\x50\x28\xb4\x9e\xd3\xbc\x8b\x35\xc9\xa2\xb8\xf1\x6c\x84\x58\x9b\x22\x78\x02\xa2\xba\xf0\xc4\x68\x5a\x62\x46\xa4\x66\x8d\x32\xc7\xa3\xe9\x7b\x0b\xd7\xc1\x9e\x06\x9e\x56\xdf\x46\xf1\xf8\x0d\xd3\xcb\xa5\x42\xd2\x2a\x57\x8c\x7c\x42\x0a\xdb\xc4\x80\xc9\xe1\x84\xf0\xb9\x2e\x70\x55\xd4\x16\x12\x2d\xea\x35\x0a\x9d\xcd\x9c\x0a\xd6\xb4\x92\x79\x21\xd7\xa4\xa4\x58\xe2\x9c\xa4\xbd\xb5\x5c\x29\xd0\x2b\x0d\xb9\x0d\x7e\xad\x3c\xd4\x02\x9a\xc1\x8f\x66\xe6\x40\x8d\xc7\x29\x0f\x09\x77\x0b\x3f\xea\x49\xe8\x9c\xa6\x1e\x2b\x36\x19\x5e\x12\xc6\x33\xaa\xfc\xb5\x52\xb8\x98\xf9\x2a\x56\x95\x44\x65\x2c\xa6\xc4\x02\x4c\xe4\x1c\xd9\x6c\x9a\xd7\xba\x18\x3e\xdb\x05\x2d\x5c\x25\x65\x4f\xc0\x75\x23\xa1\x1b\xb8\xe4\x48\x27\x09\xa8\xa1\x1e\xc1\xd4\xc4\x35\xd6\xe0\x72\xc4\x07\x53\xb5\xec\xd4\xaf\x61\xfb\x49\x7c\xc6\xae\x63\x20\x5b\x07\x6c\x92\xd3\x04\xe7\x13\x3c\x57\x73\x8a\x5c\x60\x98\x56\x5b\xca\x62\xf8\xd6\xeb\xe3\x8e\xcf\x01\x13\x4c\x55\x5b\x33\x41\xe3\x8a\x31\xc1\x62\xc2\x8b\x32\x97\xf3\xe7\xaa\xdc\x0a\x93\x06\xbf\x93\xd0\x1d\x98\x4a\xcc\xf0\x62\x6b\x4c\x37\x0a\xba\x63\x11\x45\x8a\x24\xaf\xd2\xd0\xa8\x26\x0b\x18\xa9\xd9\x45\x97\x48\xf5\x7a\x4c\xd3\x2f\xe0\x51\x1c\xca\x55\x74\xd7\xe0\x7a\xcb\xa8\xc8\x89\xed\xb7\xa9\xfe\x65\x87\x94\xfe\x39\x49\xe8\xa2\x9c\xe4\xb0\x84\xdc\x51\xac\x8b\x5d\xab\x77\x96\x54\x03\xad\x48\x69\x00\xde\xa9\x77\x9d\x66\x87\x6f\xa0\xfd\xed\x27\x65\xa0\xe8\x55\xb2\xfc\xdf\x12\x23\x7f\xf8\xa4\xfc\xc9\x7b\xad\x2c\x87\x25\x30\x2e\x97\x6e\xaf\x47\xaf\xbd\x4f\x0b\x52\x4c\x72\x28\xe6\x22\x43\xdf\xfc\xe9\x3b\xef\x43\x48\xa7\xac\x36\xa4\x52\x01\xc9\x19\x87\x40\x8a\x70\xb1\xf2\xde\x2e\x31\x5b\x75\xe9\x9d\x1d\x74\x5e\x71\x41\x17\xc8\x6a\x57\x69\x8b\x30\xe0\x25\x2d\x38\x34\x8c\xba\xfb\x57\x68\x77\xa9\xec\x39\x1c\xb8\xb9\x24\x14\x4e\xad\x82\x56\x34\xde\x4b\xcb\xdd\x7b\x06\xf2\xe5\x12\xad\xd7\x83\x28\x15\x66\xf6\x17\xf4\x1e\x0a\xee\x73\x78\x9c\xd1\x07\x3d\xe5\xdf\xe9\x6f\x9b\xe6\x0c\xe3\x37\xa1\xa2\xb3\xbc\x5e\x25\xc8\x89\x45\x2e\xa6\x6d\xb3\x07\x1a\xea\x18\xc5\x09\xdc\x41\x29\xe1\xca\x82\x7f\xc0\xac\x20\xc5\x9c\x9b\x79\x90\x14\x44\x10\x9c\x93\x9f\x20\x9d\xd8\xb9\x75\x22\x61\x8c\x23\x48\x17\x3e\x4b\x53\x22\xd7\xe9\x38\x47\x78\x89\x49\xae\x30\xb9\xa9\xf8\xd8\x40\xed\xaa\xd5\x4f\x89\x13\xb0\x2f\x48\x31\x97\xa6\xa9\x52\x13\xf6\x9d\xaf\x3a\x9c\xc9\x30\xa3\x6c\x81\x05\xaa\x4a\x2e\x18\xe0\x05\x29\x66\xd4\x67\xe3\x35\x9d\xbf\x57\x10\xef\x78\x82\x4b\xf8\xfb\xf8\xd3\x47\xb4\x5e\x83\xfa\x71\xfa\x6f\x4e\x8b\xba\xbd\x7b\x5f\xbe\xa0\x69\x45\xf2\xd4\x95\xf9\x6c\x90\x6a\x67\xec\x7a\xbd\x77\xe2\xd9\xdf\x0b\x5c\xa2\x8a\xe5\x1c\x89\x0c\x0b\xc4\x33\x5a\xe5\xa9\x62\x3f\x2e\x4b\xc0\xd2\xac\x45\x38\x49\x80\xf3\x51\x4e\xe7\xcf\x33\xb1\x65\xfb\x7c\xbf\x94\xc6\x37\x09\xf0\x49\x32\x76\x8d\x0d\x33\xa9\x18\x41\xbb\x39\x9d\xcf\x15\x9b\xb5\xdf\x26\x94\x64\x06\x3f\x7e\x66\xc4\xb9\x26\xc6\xf7\xa4\x3c\x53\x58\xaf\xe9\xfc\xf3\xed\xb5\x13\x13\xab\xf5\x0c\xfc\x7a\x8d\x8e\x4e\x6a\xc9\xb0\x10\x46\x85\x21\x33\x8e\xdb\x7a\xe2\x42\xcb\x8e\xab\xc2\x0d\x9a\xba\x25\x4a\x5a\x50\xdb\x69\xe3\x81\xd8\xb1\xef\xd0\xdc\x60\x91\x49\x9a\x82\x5e\x27\xb3\x53\xd7\xf6\xa6\x28\xcb\x5f\xc0\x18\x65\x0a\x9f\x43\xf8\x4e\xbe\xf2\xf0\x35\xdf\xd7\x7a\xd3\xe2\x53\x02\x72\x0b\x9c\xe6\xca\x57\xaf\xa0\xed\xcf\xa0\xc9\x57\xe5\xf2\xbb\x8b\x8f\xe3\xd0\x67\xf3\x43\x06\x05\x48\x48\xd5\xf3\x48\x2b\x2d\xae\xfc\x85\xda\xea\x7d\x20\x22\x93\x46\x11\x46\x83\xda\x59\x37\x30\x2a\xea\x95\x72\x84\x44\x3e\x20\xc2\x11\x07\x81\x04\x45\x83\x24\xa7\x1c\x06\x0d\x79\x7b\xc8\xa0\x40\x0b\x7c\xaf\x9c\x95\x19\x20\x21\x6d\x42\x61\x6b\x1d\x21\x74\x97\x11\x8e\x16\x80\x0b\x23\xce\x2b\x5a\xa1\x04\x17\x52\x9c\x39\x59\x94\xf9\x4a\x39\xef\x42\xa4\x03\xbd\xca\xaf\x75\x09\xaa\x29\x43\xbb\x4a\x80\x13\x8f\x54\xa9\x5e\x7f\x80\xe9\x98\xca\x95\x39\xe2\x55\xa9\x96\x16\x53\x48\xb0\x44\xad\xbc\x3c\x84\xa3\x04\x73\xd0\xed\x6c\x54\x16\x69\xf5\x83\x1a\x72\x53\x70\x6d\x1f\xa8\x86\x2a\x06\x4b\x0c\x94\x91\x39\x91\x9a\xc7\x72\x37\x25\x7a\x84\x66\x78\x09\x5d\x2c\x6e\x32\x8e\x24\x99\xa9\x48\xb2\x07\x15\xb4\x9f\x14\xe3\xad\x6a\x31\x78\x4c\x8a\x04\x74\x13\x35\x6c\x0a\x4b\x82\x05\x20\xe5\xf9\x0b\x2b\x2d\xa4\xf2\xc9\x8d\x8c\x4c\x21\xc3\x4b\x42\x19\x7a\x00\x4d\xb7\x73\xa4\x12\x2e\x55\x0d\xa3\x38\xc9\x46\x35\x86\x1d\x74\x0b\x02\x1b\x32\xec\xf8\xd4\xa8\x32\x5c\xa4\xb9\x5a\x89\xcf\x90\xf3\x7a\xf4\x4a\x5c\xad\x61\x54\x77\x56\xe5\x9c\xe1\x54\x2e\x2d\x1d\xa4\x7b\xf7\xa5\xa5\x14\xdc\x63\x40\x4e\x1c\xc4\xde\x5e\x63\x7d\xa5\x84\x36\xd0\x21\xb2\x52\x3b\xdc\x7c\x17\x6d\x8f\xd3\x16\xed\x8a\x0c\xac\x47\xd5\x39\xad\x37\xfa\x94\x35\xd3\xfe\x06\x81\x47\x54\xf5\x8a\x02\x47\x16\xbe\xbb\x7d\xbb\xa1\x0b\x7a\x22\x91\x44\x55\x5a\xbc\x34\x83\x05\x15\xd0\x28\x55\xab\x2d\x37\x0f\x2b\xbf\xb0\x9a\x3a\x26\x8f\x72\xda\xd3\x1c\xd0\xd5\xba\x45\x4c\x42\x19\x83\x44\xe4\x2b\xe5\x56\x4d\xa4\x84\x71\x9e\x4b\x25\x9b\x53\x9c\x92\x62\xde\xe8\xd2\x36\xa6\xdd\x12\x73\x3e\x31\xda\x97\x27\x19\x2c\x7a\x3b\xb7\x03\x4d\x4f\x67\xef\x6a\xa4\x27\x61\xeb\x94\xfd\x2a\xc9\x8d\xd5\xaf\x4c\x1d\xfb\x3f\x03\xc5\x04\x39\x10\x66\x94\x25\xa0\xd4\x67\x4a\x64\xb3\x5d\xe3\x06\x06\xfa\x38\x82\x6d\x20\x59\xae\xe1\x27\x82\xaa\x99\x96\xf7\xb5\xf0\xa8\x6e\xcb\x40\x4d\xdc\xf2\xcf\x40\xbf\x78\xdd\xf8\xc6\xbd\x8f\xaf\x5b\x02\x1d\xe1\x95\xd4\x81\x9a\x46\xb3\x12\x54\x6f\x7a\xa8\xe9\x40\xd2\xc3\x6f\x1b\x65\xf6\xe0\xc2\x89\x1a\xe7\xf9\xe8\x8a\x8f\xc7\xd7\x37\x98\x73\x91\x31\x5a\xcd\x33\x2f\xa4\xac\xfb\x47\xd2\xaf\x69\xd3\x61\xec\xd1\x35\xe1\x02\x0a\x69\xe2\xf1\x91\x2c\xab\x06\xcb\x7a\x2d\xbb\xe5\xcd\x9b\x6f\x95\xba\x8f\x44\x85\x24\x7c\xcd\x8f\x56\xc3\xf5\x9b\x06\x0f\x36\xd5\x18\x3c\x6f\xde\x7c\x7b\xd2\x37\x54\x1b\x35\x5a\x7e\xa0\xf6\x68\xfd\x99\x14\x5e\xde\xdd\xdd\x8c\xbf\x36\x79\x71\x6b\xec\x9c\x2e\xca\x4a\xc0\xfb\x2a\xcf\x03\x5d\xe9\x3a\xef\x07\x90\xb3\xf9\x9e\x50\x33\x87\x51\x57\xd2\x6e\xf1\xa5\x48\x76\x98\x9d\x8d\xe5\xdc\x21\x15\xa9\x8b\xd2\x19\x3c\x0c\xca\x1c\x27\xc0\x0d\x80\xd3\x5b\x2a\x02\xca\x29\x2d\x7a\x44\x5d\xe2\xdf\x9d\x55\x79\xde\x7a\x1b\xf0\xd1\x0a\xe4\xf9\x06\x95\xdd\xe2\xdd\x20\x5a\xe5\xab\xa8\x76\x1e\xf4\x0c\x97\xc1\x86\x02\xdb\xe8\xf4\x4e\x5a\x34\x53\x27\x1e\xeb\xfa\x49\xe9\x85\x77\x31\xee\x4e\x19\xf1\x7c\xcb\x13\x52\x4c\xac\xda\xab\xd7\xdc\x52\xc6\x82\x2f\xe6\xa9\x4d\x38\x06\x2a\xd4\xa3\xd7\xcd\xde\xe3\xe2\x2e\x9c\xe7\x8e\x57\xb5\x99\xae\xc7\xa7\x79\xe9\x16\xd0\x3b\x48\x54\xd2\x40\x2c\x10\x07\xae\x7c\x00\x09\x4e\x32\x1d\x42\x47\x29\xc3\x5c\x90\x04\xe7\x72\xf2\x5a\x94\x8c\x2e\x01\x95\xc0\x94\x81\x57\x24\xd0\x14\xfa\xf1\xf8\x7a\xac\x91\x9c\xe3\x24\x73\xfd\x21\xc9\x31\xc8\x27\x89\xfa\x20\xd7\x10\x82\x14\xc7\xaf\x8f\x8e\x8e\x6c\xd0\x6d\x3c\xbe\x3e\xf6\x48\xf5\x11\x85\xce\x79\x0f\x5b\x33\x6e\x5f\x97\xab\x43\x19\x1d\x26\x34\xce\x73\xfa\x80\x12\x5a\xcc\xc8\x5c\xa7\x08\xc8\x49\xd9\xf2\x40\x10\xb9\x24\xe6\x91\x0a\xd5\xfb\x78\xa3\xef\xcc\xc7\x8d\xae\xde\xda\x2f\xb0\x0f\x8b\x52\xac\xe2\x88\xfe\x01\x2b\x74\x10\xe3\xa1\x26\x42\xc5\x12\x3d\x5f\x96\x21\x6d\x74\x0f\xab\x8e\x26\xf3\x9c\xcc\x33\xb9\x0e\x61\x90\x56\x89\x56\x29\x92\x83\x43\x41\x87\x33\xc2\xb8\x18\x4e\x57\x02\x5c\x75\x7e\xe0\xc9\x63\x70\x23\xd2\xd4\xdf\xa0\x73\x52\x66\xc0\xf8\x41\xad\xf7\xda\x7c\x4f\xb4\xcf\x47\xb2\x3f\xd1\xe0\x8e\x04\xf3\x1b\xed\x79\xf5\x1b\x94\xda\xf6\xaf\xa5\x1d\x66\xc6\x93\x09\xcc\x15\xeb\x75\x6f\x47\xa8\xbd\xb8\x54\x0e\xc4\x36\xb5\x9a\xc2\x8b\x4b\xa4\xb2\x5b\xb6\x74\x15\x48\xba\x7c\x57\x81\xfc\x9d\x66\xca\xa1\xe9\xe8\x36\xbf\x7d\xfe\x1a\x22\xfa\x3d\x7e\xce\xa7\xa4\x17\x05\x17\xab\x02\x2f\x48\x72\x77\x3d\xbe\x85\x84\xb2\x94\xfb\x62\x93\xae\xa4\x32\x49\x54\x47\x4e\x72\x6a\x17\x4f\x4d\xbd\xc4\xf3\x09\x24\x69\x36\x49\x2a\xb6\x0c\x3a\xfc\xdd\xf9\xc5\xe5\xb9\x7a\xd9\xe8\xef\x91\xf6\xd6\x29\xcb\x9c\xd7\x3c\x33\x3e\x3c\x65\xdb\xab\xe4\x00\xdd\x9f\x5a\x85\x93\x42\x00\x4b\xa0\x14\x13\xd0\xc5\xba\xfb\xc8\xb8\x47\x80\x31\x15\xe4\xb0\xfe\x11\x8d\x5e\x4e\xe5\x61\xc5\xda\x97\xa0\x92\x11\x24\xf1\xb6\xd8\x7a\x8d\x4e\xd1\xff\xd2\x3d\x38\x09\x3f\x9c\x34\xea\x34\xc6\xb3\x37\xd2\x18\xc8\xa9\x37\x96\x5a\x70\x26\x05\xc3\xe4\xe9\x69\x6f\x9d\x33\x7a\x3c\x5c\x6a\xed\x60\x96\x5c\x1a\x6a\x43\x63\x0d\xac\x6d\xeb\x25\x49\xa1\xf6\x6d\x9a\x10\x1e\x49\xc1\xf7\x6e\x66\xbd\x19\x32\x71\x59\x57\x0b\xa1\x82\x94\x25\x88\x83\x56\xc7\x25\x92\x3b\x5c\x7f\x75\x03\x15\x52\x6b\x47\xdb\x37\x58\x39\x15\xf4\xaf\x05\x2e\x6d\x6d\x4d\xfc\x68\xdd\xb5\x54\x32\x4d\x96\x33\xe1\x2b\xb4\x6b\xfd\x46\xaa\xed\x53\x2f\x01\xb2\x6e\x05\xfc\x58\x83\x8d\x8c\xaa\x3c\x9b\xcd\x48\x41\xc4\x6a\x64\xff\x51\xc1\x84\x41\x42\xe9\x3d\x81\x81\x2d\xef\x90\xcb\xd9\xec\x7e\x35\x94\x74\x3a\x4c\x26\x90\xe1\xad\x79\x34\x14\xca\x30\xcf\x4e\x03\xd0\x66\xa5\xe7\xaa\x9a\xe6\xdb\x4b\xcc\x95\xeb\x4a\xb6\xec\x39\xe5\x2d\x41\x4a\xd1\xd0\x22\x5f\x19\xf1\xab\x39\xb1\x3f\x37\xc3\xdf\xba\x43\xff\x61\x73\x27\xfc\x7c\xb2\xa3\x03\x7f\x45\xe4\xd2\x2b\x5c\x2f\xf5\x16\xb6\xf2\x14\xe9\xbb\xb0\xff\xb4\xce\x55\xdd\xe6\xda\xf9\xae\x48\x4b\x4a\x0a\x35\x17\x9a\xef\x75\x6a\xed\xe8\xcc\x58\xf4\xff\x17\x69\x4f\xf1\xd5\x8d\x0d\x58\x19\x00\x13\xa4\x42\x2a\xef\x00\x93\x9c\x9f\x7a\x1f\x3f\xe0\xc7\xf7\xf2\x9d\x04\x90\x1f\xed\x22\xc0\x87\x91\x00\xcd\x15\x40\xa4\x21\xb5\x2c\xfa\x6f\x9d\xb0\x6c\x90\x12\xa3\x0d\x1c\x84\x65\xa7\x0a\x76\xaf\x7c\xd6\x4b\x41\x0a\xb1\xb5\x60\xe5\x40\xe2\xca\x54\x11\xbd\xeb\xda\x1d\x74\x4d\x71\x8a\xa6\x38\x97\x0b\x30\x84\xf3\x39\x65\x44\x64\x8b\x13\xa4\x87\xb7\x8a\x98\xd0\xaa\x48\x11\xa3\x53\x52\xbc\x32\xee\x32\xc2\x7d\xe7\x53\xa3\x09\x36\x32\x29\x31\xbf\xd5\x88\xcf\x2c\x5e\x34\x50\xd8\x26\x0a\x9b\x1c\x4f\x2e\x0c\x1d\x03\x0e\x74\x6a\xbf\xf4\xfc\x57\x8a\xbf\x82\x14\x77\x0b\xb1\xf2\x5a\x2a\x57\x9d\xea\xf8\x05\x2e\x8d\x1b\xf9\x81\xe4\x39\x9a\x9a\x9c\x51\x5a\xfb\x78\x24\xd4\x0f\x19\x11\x90\x13\x2e\x82\x0c\x50\xc3\x21\x52\xa4\xf0\xf8\x2a\xe0\x14\xaf\xd3\xe3\x43\xd8\x9c\x26\x7a\x7a\xa8\xa1\x46\xd7\xe6\x9d\x0f\xbe\x5b\x62\x91\x49\x20\x13\xe4\x31\xa5\xea\xf2\xe1\x34\x46\xb8\x05\x51\xd3\x2f\xa4\x21\x64\x0d\x38\x17\x68\x3f\x07\x0f\xd1\xc8\x35\x6d\x74\x7e\x75\x71\x7b\xa0\x73\x97\xcd\xbc\x77\x01\x85\x1e\x38\x5f\xbe\xa0\x92\x91\x42\x38\x9a\x2f\x29\x17\x3a\x2a\xae\x29\xad\x73\x1c\x1b\x9e\x4d\xe3\x16\x95\x98\x6c\xb2\x0a\xda\xef\xc0\x35\x98\x0c\x0c\xbe\x83\x50\xa1\x78\xa1\x9b\x88\x84\x9a\xec\xd5\x8e\x16\x35\x83\x44\x2a\x10\xdc\x0a\x10\x35\xa7\xe2\xed\x7f\x35\x3a\x98\xa9\x3d\x13\xfb\x3a\xb9\xf1\x16\x0b\x50\x59\x29\xbc\x16\x09\x6f\x59\x21\x3f\xab\xe4\x16\x1d\xbd\xca\xad\x2a\x8d\xb3\x72\xf7\xc1\xb6\x6b\x62\xc0\xaf\x2e\xe2\x6c\x3a\x3a\xe9\xe6\x12\xcb\x6b\xfe\xc4\x59\xf3\xba\xc5\x9a\x6d\xc8\x55\x7e\x94\x0e\x0a\x77\x75\x06\x4f\x07\xd5\x47\x61\x02\x8f\x54\x52\xff\xa2\x05\x38\x69\xf1\x07\xf8\x6b\x34\x18\xf4\xba\x99\xdc\xd8\xc6\x79\x6e\x1c\x3f\x2a\xa3\x37\x45\x4c\x8e\x65\x4d\xfe\x4f\xb4\x00\x3e\x42\xef\x70\x92\x21\x15\x37\xd2\x03\xc5\x80\x72\x84\x51\x0a\xda\x1f\x9d\x2a\xd8\x46\xc8\xe3\xf5\x87\xb7\x68\xf8\x3f\xd1\xeb\xef\x90\xc8\x68\xc5\x71\x91\xa2\xef\xde\x28\x0b\x51\x25\xfe\x02\x47\x94\x21\x3c\x95\xca\xe9\x2f\x35\xc8\xeb\x6f\xfe\x12\xc0\x44\x14\x89\xaa\x4b\x4a\x8f\x0e\xdc\x59\xe1\x91\xdc\xa8\x05\xe8\xc0\xd7\x12\xaa\x44\x97\x48\x1e\xbe\x44\x6f\x15\x2f\x8c\x62\xb2\x7e\x13\x8e\xf6\x67\x8c\x2e\x0e\x05\x45\x0f\x0f\x0f\x07\x31\x4a\x32\x33\x24\x5f\xa1\x5d\x41\xd5\x96\x99\x5b\x53\x78\x1c\x6a\x36\xab\xfd\x23\x02\x67\xc3\x13\x2a\x13\xc1\x38\xc9\xde\x92\x22\x35\xd3\xc3\x55\xb9\x7c\xe3\x0b\x60\xae\xe6\x78\x64\x76\xeb\xa8\x92\x66\xd6\x88\x39\x2b\xf5\x7c\xbb\xc1\xff\xd6\x48\xb7\x6f\xe4\x20\xf4\x56\xba\xd9\xd5\xbc\xc9\xd1\xdb\xae\x5b\x2f\x58\xfa\xdc\xaf\xcf\x6f\x92\xfb\x47\x9a\xab\xbd\xeb\x24\xbf\xc9\xbf\x06\x63\xff\x40\x9c\x6c\xad\xde\x64\x15\xad\x5d\x6d\xcf\x19\x09\xdf\xfd\x77\x24\x7c\xf5\xfe\xdb\x66\x14\xfc\xef\xe3\xe3\xff\xf3\x2b\x71\xd6\x56\xf5\x07\xe1\x67\x97\x25\x63\xdf\x78\xde\x7c\xed\x8c\xb1\x8b\x3c\xe7\x2a\x43\x81\x99\x15\x27\xfc\xcd\x9b\x6f\xdb\x49\x3e\x26\x1c\xaa\xc2\x5a\x72\xb6\x54\xab\xc9\x19\x1a\x1c\xff\x8f\xe5\xa0\x03\x51\x60\x29\x31\x50\x8e\x7d\xcb\xae\x73\xe3\x96\xb1\x33\x9c\x75\x8e\xd9\xa8\xec\xe1\xa1\xda\xe8\x44\x0d\x87\xc3\xfa\xd7\x6b\x3f\x9f\xa9\x57\xe4\x9e\x5f\x6d\x77\x15\xdd\x0b\xd8\x27\xd9\x28\x7a\x81\xb7\x23\x97\x26\x4c\xa0\xb6\x45\x77\x59\x77\x5e\x7c\xd6\x6f\xf6\x76\xbb\x5c\x60\x20\xe6\x04\xb7\x2c\x50\x01\x8b\x52\x6d\xb7\x1a\x8c\xdf\xdd\x7e\xff\xee\x76\x60\x90\x9e\x2b\x3f\x9a\xde\x8d\x6c\xc9\x6f\x5b\xcc\x2d\x9f\xb5\x02\x6c\x7a\xf2\xd0\x57\xf2\xe6\x21\xcf\xa3\x17\xd4\xb4\xd9\xba\xaf\x9b\x79\xfe\x79\x7c\xf7\xe9\xc3\xe4\xdd\xed\xed\xa7\xdb\xb1\x16\xdc\xb0\x33\x77\x76\x14\x82\xfe\xee\x88\x75\xfb\x8e\xb3\x04\x74\x81\x57\x7a\xd7\x9d\x34\xe4\x3e\xfe\xed\xea\xe3\x3f\x91\xde\x74\x9d\x64\x90\xdc\xab\x74\x05\x9d\x72\x20\xad\x5e\x9d\x7c\x23\x97\xa8\x3c\xde\xd3\x3b\xe8\xb3\x89\xb9\x76\x07\xd8\xed\x9e\x32\xb4\xcf\x70\x91\xd2\x85\xd9\x7e\xf9\xef\x8a\xab\xd4\x27\xbd\x1f\xf5\xbe\xa0\x0f\x85\x42\xc2\x0f\x10\xe6\x8e\x64\x85\x56\x92\xaa\xa3\x08\x7e\xbf\x65\x58\xbe\x9b\xeb\x74\x22\x8d\xd3\x5b\xb3\x27\x99\x12\x75\x52\x1c\x7b\x65\x74\x9e\xc3\xe1\xe1\x9c\x88\xac\x9a\x8e\x12\xba\x38\xbc\xaf\xa6\xc0\x0a\x10\xc0\x0f\x4d\xe2\xe6\x50\xc7\x89\xa6\x39\x9d\x1e\x2e\x30\x17\xc0\x0e\x13\x5a\x08\x46\xf3\x1c\x18\x37\x51\xa4\xf2\x7e\x7e\x98\x2c\x52\xef\x8b\x89\x73\xcc\xe9\x36\x6b\xab\x9a\x29\x36\x95\xba\xee\x57\x5f\x33\xdf\x42\xc5\xc1\x38\x48\x94\x93\x5d\xf2\xa3\x5e\x93\x4c\x71\x72\x9f\xd3\xf9\xa9\xad\xe2\xad\xfe\x1d\xc4\x01\x51\xf7\xe2\x64\xd3\xb4\xf7\xeb\x50\x19\x9b\x2d\x84\x8d\x7d\x5b\x27\x93\x56\x26\x83\xe1\xc0\x9b\x2e\x9c\x4f\xa3\x71\x72\x40\x60\x4f\xa2\x8e\x94\xcd\x86\x1e\xfe\xe6\xc8\x33\x93\xd7\x91\x3a\x74\xf7\xda\x3d\x27\x21\xfe\x6e\x7a\x55\x18\xa7\xc0\xb9\x4f\x36\x8a\xe5\xc8\xb7\x36\x5f\xda\x27\xba\x59\x32\x25\xbc\xcc\xf1\xea\x64\x6b\x48\x9b\x6b\xac\xd3\xf4\x1b\x94\x34\xa7\xa6\x4d\x2c\xe3\xa2\x9a\x5a\x46\xd8\xb0\x94\x8f\x2e\xec\xcc\x28\x33\x1b\x0c\xec\x89\x93\xd9\xa7\x95\xb1\x89\x10\xfa\xe7\x50\x4d\x93\x6f\x8e\xde\x6c\x22\xa2\xbf\x97\xec\xcf\xa1\x11\xf3\xa1\x89\xab\x0c\x4e\x22\x24\x94\x98\x7b\x7b\x8e\x4c\x8c\xb3\x0b\x43\x54\xa6\xb6\xd7\xfb\xeb\x17\x2f\xac\x8f\xfd\x05\x0a\xb3\xc6\xd5\x9e\xd3\xda\xff\x1e\x24\x8c\x8f\xf5\xfb\xd8\x76\xa7\x5f\x38\xab\xb9\xa6\x2a\x1a\x65\xdb\x9c\xc7\xec\xb2\x2d\xee\xce\x6f\x90\xc9\x9a\xe7\xcd\xd5\xcb\x2b\xb4\x2b\x92\x72\xec\x16\x2f\xa3\xbb\xf3\x9b\xb7\x8d\x50\x98\x8b\x4e\x88\xa4\x54\x71\x2c\x57\xc2\x3a\x9c\x1b\x6f\x0d\x02\xe5\xc6\x52\xf9\xfc\xfd\x20\xdd\x5f\xad\x3f\xfb\x4b\x83\xec\x7f\xbf\x42\xbb\x60\x5c\xe5\x6a\xc9\x55\x17\xf5\x3d\xe8\x8d\x55\x14\x6a\x3d\x2a\x38\x6b\x0a\x38\xef\xba\x31\x09\xdd\xfb\x60\xff\x52\x6c\x6d\xf8\xd5\x5d\x35\x51\x3a\x1b\x16\x6b\xab\x0f\x8c\x64\x46\x98\xe8\xdb\x23\xa3\x0b\x48\xcc\x7a\x78\xa3\x7d\xd5\x6d\xdd\x45\x09\xfc\x95\x28\xfa\x75\x7d\x05\xff\x79\x5d\xe1\x96\x20\xbf\x55\x7f\x34\xde\x68\x24\xdd\xdb\xdb\xf5\xc1\x42\x4a\xc1\xc4\x22\x4f\xb1\x99\x02\xe9\x53\x04\x7e\x13\x5d\xd4\x5a\x09\x6e\x62\xe7\xbb\xc2\xb0\xb3\xd9\x24\xeb\x21\x70\x8f\xbf\x00\xd8\x26\xe0\xb6\x83\x3e\x5f\xf4\x6a\xf6\x2a\xf5\x35\xfb\xe7\x8b\x6e\xcd\x5e\xa5\x9a\x9b\xae\x44\xc0\xcd\xfa\x6d\x27\x37\xe3\x20\xdd\x5f\xb7\xd6\xec\x75\xd1\x5f\x59\xb3\xff\x76\xaa\xbd\xd5\x09\xb2\x7b\x9e\xad\x96\xb7\xc0\xf6\xfb\x53\xa9\x5f\x8f\x05\x4e\x1d\x3e\x87\x0f\x51\x55\x66\x77\x87\xf2\xa0\x01\x0d\x55\x76\xeb\x80\xda\xca\xec\xab\xeb\xc2\xdf\x6a\xf4\x36\xb7\x11\x18\x76\xd9\xe3\xb6\x52\x50\xd9\x45\xea\x7c\x96\x99\x5b\xa7\xf3\xda\x53\xc1\xa0\x04\x41\x74\x84\xde\x9c\xaa\xa5\x0b\xb5\x17\xf3\x0d\x5f\x65\xd9\x38\x8d\xae\xe3\x84\xba\xb6\xc8\x7a\xa9\x7d\x4a\x5c\xbb\x52\xfb\x90\x6f\x63\xc5\x73\xf9\x1a\x86\x97\xb5\x4f\x1b\xe6\x69\x57\x0e\xa2\x4b\xad\x0e\x01\x43\xab\xac\x36\xcc\x50\x43\x5a\xbc\x94\xc2\xed\xb0\x68\x73\xc6\x83\xd4\xc9\xe9\xfa\x1c\xb1\x2d\x71\x7c\x32\x5b\xe9\x86\x9f\x6f\xaf\x34\x8e\xa8\xff\xb4\x17\x47\x2d\x7b\x96\x0e\xb7\xeb\x77\x4b\x0c\x57\xc6\xb7\xf4\xd1\x9e\x1d\x10\x6c\x13\xde\x12\x89\x39\x51\xc0\x43\xe2\xef\x2b\x6e\x74\x8d\xc9\x7e\x47\x8d\x67\x7f\xf4\xf2\x00\x1d\xa2\x29\x03\x7c\xbf\xd9\xbc\x7d\x9a\x85\x6b\xff\xab\x47\x55\x70\xec\xdf\xe1\x4b\x74\xfe\xe9\x76\xec\x36\x50\xaa\x9d\x6a\xd6\x25\xb7\x20\x49\x46\x20\xbf\xc7\xf9\xfd\x02\x17\xca\x35\x67\xbc\xb1\xc6\xe5\x36\x4c\x28\xe3\x43\x5a\x42\x31\x0c\x9c\xb1\xde\x01\x5e\xfe\x48\x0c\x06\xa0\x52\x55\xd4\x0c\xb9\x73\xca\xb8\x71\x23\xdb\xef\x3b\x48\xbe\x44\x37\x0c\x66\x2a\xf7\x1b\x2d\x40\x64\x34\xe5\xa8\x00\x48\x39\xc2\xf5\x4e\x70\x5a\xea\x91\x8f\x8b\x14\xa5\x64\x36\x03\x06\x85\x40\xb7\xda\x89\x24\x85\x5b\x23\x24\x33\xb4\xef\xe4\x4c\x23\x43\xa7\x68\xef\xd3\xcd\xdd\xd5\xa7\x8f\xe3\xbd\x03\x6f\x18\x7a\x9b\xf0\xf7\xb4\x3d\x3d\x3c\xd7\x4e\xc5\xa1\xca\xde\x31\x02\xbc\x67\x92\xbb\x29\xe3\xaa\x05\xea\x9b\xfe\x84\xd6\xeb\x3d\x84\xf3\x07\xbc\xe2\xad\x85\x5e\x08\x7f\xce\x20\x85\x42\x10\xac\x13\xaa\x36\x56\xed\xc1\x47\xeb\x0f\xf1\x39\x22\x22\xb3\xd0\xc6\xaa\x3e\x68\x8e\x47\xab\x31\xdf\xa2\xed\xdc\x88\xd8\x68\xd6\x28\xe2\x5a\xeb\x3e\x09\xf1\x07\xfc\x38\x3c\x9b\xc3\x1e\x0a\x30\x7e\xc0\x8f\x67\xf3\x50\xb9\xf9\x38\x64\x61\x28\xc4\xf0\x6e\x55\xc2\x1e\xda\x53\xa7\x66\x94\x39\x26\x05\x4a\x32\xcc\x38\x88\xd3\xcf\x77\xef\x87\x7f\xd9\xeb\x2f\x7d\xad\x8e\x99\xd8\xf3\x93\x7a\x9c\x07\xd3\x7a\xc1\x3c\x57\xd3\x7f\x85\xeb\xf7\x25\x5c\x2d\x85\x18\x2e\x37\xf4\xca\x7d\xe8\xbc\x83\xd1\x45\xc7\x03\x11\x99\x85\xc4\x2a\x76\xd6\x54\x7e\x36\x64\xd6\x58\x7f\xd8\x13\x7c\xdf\x13\xd6\xce\xf6\xaa\x43\x81\xa3\x31\x24\xb4\xb5\xaa\xfc\xdd\xa7\xf1\xd4\xb9\xef\x91\x44\xc2\x5f\x36\x84\xf1\xe5\x8b\xda\xcc\xf6\x9b\x25\xda\xfc\xde\x9a\x1e\x35\xcd\x74\x96\xc3\x7f\x70\x76\xcc\x6f\xca\xe5\xdf\x45\x16\xcb\xef\x8f\x03\x9b\xf3\x4e\xb6\x8a\x24\x2a\x55\xac\x59\x85\x68\x47\xc4\xd6\x4b\xb9\xb1\x7b\x8d\x3b\x63\xde\x6e\x03\x35\x31\x47\xdc\x9a\x2c\x82\xbb\xeb\x31\xe2\x05\xb1\x1e\x1a\x97\x6a\xe9\x68\x50\x87\x99\xe8\x7e\x04\x86\x16\x15\x17\x66\xea\xd0\x07\x68\x34\x9c\x70\xa0\x07\xd2\xab\x60\xf3\xf3\xf8\xe3\x55\x8d\xc1\x6c\xe2\xe5\x6a\xdf\x2a\xad\x58\x02\x48\x9d\x4b\x3b\xa3\x92\x24\x22\x46\x4d\x1a\x9a\xd9\x13\xa6\xa3\xc7\xe3\xeb\x73\x60\x82\xcc\x54\x1e\xec\xc1\x2f\x3b\x37\x7c\xed\x9c\x28\xf4\xeb\x25\x09\xfe\xf6\x9a\x58\xed\x0f\x6d\x37\x45\x1d\x1b\x8a\xd6\x6b\x75\xcc\xe8\x93\xd4\xc9\x7f\x3b\xe4\x37\xeb\x90\x5f\x71\x1e\x7d\xc2\xc8\xff\xe3\xe5\x86\xfe\x41\xc4\xa5\x31\x7e\x9f\xde\xa5\xff\xf1\x49\xa9\x7f\x90\x8e\xdc\xb4\xaa\x51\x4b\x85\x84\x2e\x16\x50\x08\x74\xf3\xee\x03\xe2\x19\xf6\xce\xab\x77\x27\xea\x27\xc2\xa4\xc1\x71\xbb\x00\x99\xcb\x55\x81\xda\xc9\x12\x26\x34\xe2\x22\xf5\x4e\x24\xaa\x2f\x80\xb0\x35\xee\xd8\x6a\x8e\xfd\xcc\x43\xd9\xe3\xb0\x38\xcf\x20\xb9\xe7\xd5\x22\x58\x77\xf1\x7c\x92\xd4\x32\x86\xba\x9e\x10\x99\x27\x95\x01\x4f\x1a\xd8\xd4\x89\x0e\xcf\xc7\xd6\x37\x2e\xde\x57\x79\x7e\x9e\x61\x52\xf8\x03\xa4\xd1\x2e\x7b\xc9\x41\x5f\xfb\x42\x4a\x62\x58\x5b\x0d\xe4\x02\x97\xea\x88\xb3\x9e\xc7\x0f\xb6\xfa\x65\x26\x4b\x60\x64\x16\x67\x4a\x77\x80\x16\x75\xa6\xa5\xda\x33\x7a\xf7\x37\x6b\x8f\x03\x2f\x7f\x79\x7c\x17\xa6\x56\xb7\x0e\xec\xec\x78\x06\x63\xc1\x48\x22\x86\x77\x0c\x17\x5c\x0e\xb5\xe1\xd8\x5c\x9c\x73\x8c\x16\xf8\x71\x88\xe7\x70\x1a\x24\x4a\x8f\xef\xc6\xce\xdb\xd6\x18\x62\xf2\xdb\x95\x3e\xc1\x76\x5c\x4d\x53\xba\xc0\x44\xef\x6f\xb5\xe7\xda\x8e\xab\xe9\x85\x7e\x5b\x8f\xbe\x08\x8e\x1b\x33\x0c\x94\xd6\x51\xff\x3a\xf0\xd6\x39\x36\x1b\x32\x90\x0d\xe3\x3c\xae\x9d\x55\x22\x1b\x9d\x9f\xbd\x27\xb9\x3a\x1e\xb8\x91\x91\x1c\x1b\x6a\xcd\xc2\x37\xb0\x18\x5f\x9e\xb5\x86\x9c\x3e\xca\xbe\x77\xe4\xf5\x20\xad\x29\x6a\x49\xa7\x16\x30\x53\x41\x47\x37\xf6\x60\xfe\x5e\x15\xd7\x27\xe8\x77\xe1\x4e\xa1\x14\x59\x97\x88\xf4\xe1\xd6\x5b\x73\x09\x2d\x2e\x14\x86\xad\xc6\x7a\x13\x89\x0a\xa4\xdd\xe0\x79\x30\xda\xbd\xa3\x32\xde\xfc\xf5\x4f\xe8\xcd\x5f\xbf\x43\xa7\x7d\x94\x38\x24\x5b\x6b\xf4\xed\x26\xeb\xc6\xe1\x30\xa8\x71\xea\x4b\xdf\xd3\x50\x89\xee\x4c\x98\xe7\x89\x70\x77\x1e\xbd\x5f\xcf\xd3\x52\xe0\x9f\xb2\x15\xda\xd6\xb4\xc5\x76\x68\x1f\x1c\x57\x22\xbb\xf1\x8b\xc8\xde\xea\xd9\x45\x1d\xe7\x81\xdb\x51\x7c\xab\x23\x6b\xa3\xb3\xb2\xbc\xa5\x54\xf8\x12\xa3\xe2\x3e\x15\x23\xe8\x14\x1d\x1e\x34\x62\xad\xc6\x4f\xff\xed\xd1\x37\x8a\xa8\x2e\x74\x41\xe7\x6c\x21\x33\x75\xeb\x62\x51\xe0\xd3\x90\x01\x3d\x01\x60\xff\x6d\xb7\xdb\x04\x1e\x35\xfc\x50\xa2\x84\x42\x10\x5d\x4f\x33\xbf\xd9\x3b\xd6\xc5\x46\xc1\xa6\x34\xd5\x13\x54\x2b\x9f\xb8\x23\xde\xa9\x9e\x30\xee\xa1\xf6\xfb\x06\x65\x0d\x0f\x1c\x33\xdf\x19\xfa\xd4\x78\xd4\xae\xfd\x78\x26\xb1\x09\xca\x35\x9e\xa0\x63\xe2\xb8\xb6\xa7\x3d\x12\x7b\x56\xcf\x93\x03\xd0\x06\xdb\x58\x9f\x22\xd9\x78\x22\xc7\x44\x76\x65\x43\x6f\x5d\xd7\x65\xfc\xf2\x81\x1e\xf6\x04\x17\x10\x3c\x99\x39\xd7\x5e\x73\xdc\x86\x27\x1d\xeb\xcf\x28\x17\xcf\x65\x98\xab\xe1\x83\xdf\xd9\x8d\xb8\xec\x93\x7a\x40\x8a\xe2\x7b\x73\xe1\x95\x7b\x06\x3a\x3e\x6d\xb7\x8f\xd4\x5b\x42\x9e\x24\xac\xe6\xca\x1e\xbb\x01\x6c\x9b\xfc\xf7\x9a\x30\x89\x61\x68\x30\x0c\x1d\x8a\xee\xee\x6a\x57\xb6\xd5\xae\x80\xe7\x10\xd1\xdd\x79\xbd\x82\x19\x1c\xb7\xef\x1e\x77\xee\x7e\x83\x22\x75\x16\x55\xbd\xe9\x4c\x3f\xcd\xbd\x09\x11\xa5\xe4\x16\xa6\x4d\x58\xb3\x92\x5a\xe0\x47\x7d\x31\x90\x7f\xdf\xca\x20\xe0\xab\x32\x52\x47\x6f\x69\xba\x32\xf6\xdf\xa0\xd5\x4a\x75\x24\x87\x5a\xa6\x44\x2f\x22\xaa\x71\x75\xdc\x53\x14\xa3\x2c\x7a\xe7\x51\x40\x58\xef\xa5\x47\x1b\xfa\x40\x4d\x00\xe6\x24\xe8\x6e\x29\x92\x03\x37\x3e\xe6\x55\x16\x89\x41\xb0\xe5\x6c\x16\xec\xe6\x29\xa3\x93\x55\xeb\xc8\xc7\xe6\x80\xfa\xac\xad\xf6\xab\xe2\xd6\x1d\x6e\xb0\xf1\x90\xc1\xb0\x9f\x9c\x0d\xd0\xde\x96\xd3\xac\xec\x7b\xc1\xfd\x0b\xc9\x9e\x72\xad\x59\x17\x8e\x93\xb6\x27\x23\xd2\x2f\xd1\x89\xd9\x1e\xad\x62\x8f\xf9\x51\xab\xf8\x96\xf3\xc3\xb9\x2b\x54\x42\xad\xbf\xf2\x89\xe8\xaa\x5d\x69\x8d\x1e\x9f\xa2\xfd\x39\x08\x93\xbf\x74\x55\xe8\xed\x27\xc1\xba\x69\x64\x3e\xd6\x87\xb5\x34\x30\x1d\xbe\x54\xb8\xe4\x1c\x8a\x53\x2c\x30\x92\x2a\x52\xd9\x65\x22\x03\x64\x4b\x2f\xec\xd7\xc0\xf3\xe0\x5a\x5d\x84\x39\x58\x03\x43\x60\x90\x17\x38\x88\x2c\x63\xfc\x3c\x2b\xbf\xdc\x6d\x95\x77\x15\x69\x5c\xf4\xe2\x8a\x98\xfc\xab\x28\xb7\x0e\x5f\xba\x13\x35\x90\xa0\x48\x3b\xb5\x12\x5c\xa8\x5b\x24\x93\x8c\xc0\x52\xef\xb9\x4c\xec\x41\xf6\xf5\x89\xa6\x0c\x65\x78\xa9\x2f\xdf\x1c\x8f\xaf\x91\xef\x24\xf0\x36\xa2\xce\xa8\x3e\x1a\x3e\x16\x3b\xaa\xe5\x77\x9f\xb2\xc8\xd2\xf2\x3d\x65\x09\x8c\xc7\xd7\x4e\x29\x3f\xc1\xba\x6f\x21\xf3\xf0\x1c\xb4\x3a\x7b\x07\x41\xa1\x1d\x49\xea\xec\xee\xc2\x92\xcb\x89\x4d\x8d\x32\x8f\xc9\x90\x6a\x1c\x66\xdd\x5c\x33\xa3\xc8\xac\x19\x1d\xe4\xad\x52\x3b\xe6\x26\x46\x73\x26\xa5\xda\x59\xea\x2e\x74\xc4\x5e\xee\x96\xcd\x93\xd3\xb8\xc8\x12\x62\x04\x7c\x85\x7d\xe6\xf6\x09\x8c\xca\x3f\xa3\xd3\x4d\x3b\xc0\x6d\x82\x9c\xda\x33\xbf\x79\xcb\x79\xab\x3e\x63\x76\xbc\xf9\xeb\x9f\x4f\x62\x2d\x8b\x4d\xf3\x68\xfb\xfd\xe9\x01\x75\xdd\x53\x3d\xea\xdc\x95\xd7\x12\xe2\x98\xda\x8b\xea\xe6\xc6\xb5\xcc\x3e\xbc\x77\xf5\x72\x7d\x2a\x65\xe4\xe3\x84\x55\x39\x28\x25\xdd\xbc\x43\xd8\x42\xf8\xff\x8f\xe4\x68\x8c\x4d\xee\x0d\xc2\x3e\xfd\x70\x36\xbe\x39\xa7\x0c\xa4\x8a\x69\x09\xe7\xe6\xea\xe9\x03\xe6\xe5\xd0\x83\x1b\x26\x76\xdf\xf1\x70\x23\x39\x11\x16\xf7\x32\x75\x8b\xb3\xc2\xc2\x02\x5b\x9e\x19\xe6\x17\x94\x63\xfd\x67\x1c\xfd\x15\x53\x0a\x56\xaa\x8f\xbe\x3d\x79\xbe\x38\x45\x0c\x67\xa4\x8f\x7a\x56\x61\x78\xcb\x86\x7a\x57\x79\x60\xf3\x06\x65\xe4\xa7\x49\x70\x01\x28\x6a\x5a\xde\x27\x9d\x05\xe4\xda\x40\xbe\x53\xd0\x13\x7d\x26\x67\x7d\xbe\x9e\x39\x25\x17\x84\xf9\xd2\xc0\x53\xa7\xa8\xb9\x67\x0c\x62\x78\x6e\xb0\x78\x28\x9b\xb2\x32\x74\xdb\x6e\xd2\xc7\x57\x68\x37\x27\xfa\xbc\x29\xe7\x21\xb1\xdb\x01\x6c\x22\x5b\x9f\x60\xe8\xd2\xad\xf7\xc3\x27\xcb\x63\xc7\x52\x73\x4c\xe6\x05\x29\xf4\x82\x33\x28\xe5\xab\xd3\xa3\xd7\xda\xdf\xe1\x5a\x20\x4b\xc9\x32\x5b\x20\xdd\x6a\x59\xac\xa6\x79\xa2\xef\x8d\x76\xcc\x70\x8b\x19\xec\x9f\x2a\x56\x9f\x24\xf6\x0a\x25\x0c\xe4\x87\xe0\xec\xb0\x90\x77\xea\x50\x38\xcb\x7b\x77\xd4\x57\x2f\xc7\xad\xdf\x4c\x01\xaa\x13\xef\x34\x96\x2e\xfc\xdd\x8b\xca\x26\xe3\xdf\x62\x4e\x92\x0b\x32\x07\x2e\x34\x9b\xa4\xc2\x81\x58\x37\x9a\x10\x5b\x67\x49\x7d\xc8\xec\x54\xbe\x1d\xb4\x76\x98\x4b\xc1\x54\x9f\x1a\x06\x55\x13\xc9\x2d\xe0\x7c\xd1\x5e\xa9\xd5\xe5\x27\x15\x07\x36\xb1\x17\xaa\x77\x23\x7a\x4f\xf2\xb8\x01\x14\xdb\xff\x2e\xb1\xa7\xaa\xec\xcf\x20\x4f\x23\xf8\xd9\xf4\xb5\x87\x50\xcb\x10\x97\x08\x28\x23\x3f\x69\x69\x19\xb4\x6d\xd0\x6d\x3a\xbe\xce\x8c\x57\xff\x46\xf2\x0b\x4c\x29\x6f\xfb\xba\xde\xb5\xde\x23\xa7\xdd\x15\x77\x38\x57\xf5\x02\x43\x1a\x97\xad\xf5\x93\x73\xaf\xfe\xbf\x97\xbe\x99\xd8\x33\x41\x34\x3c\xad\x06\xb7\xdb\x0c\x13\xfd\x1a\x53\x08\x5b\x35\xab\xcf\x69\xe0\x3f\xbf\x5f\x07\x42\xa3\xde\xaf\xe3\x4c\xd0\x67\x0f\xae\xdc\x99\x2e\x15\x07\x6d\x2c\x23\xcc\xb5\xab\x51\x50\xb7\xab\xf3\x15\x9a\x56\xc2\x9c\x27\x4f\x97\xc0\x18\x49\xfd\xe3\x11\xb7\x90\x20\x6b\x01\x7f\x2f\xab\x68\x89\x50\x6b\xe4\x74\xf8\x3a\xc3\x3e\x0a\x70\x46\xbb\x68\x2b\x77\x59\x47\x5d\x6a\xf1\xbc\x15\x2b\x77\xd0\x0d\xe6\xda\x6c\x86\x47\xc1\x70\xa2\x42\xf9\x3a\xac\xe6\x47\xfd\x04\x55\x30\x66\x8f\xce\x06\xce\x3d\x2d\x3e\x59\xe3\xe8\x8c\x4d\x62\xce\xe5\xbb\x3b\xea\x6e\x21\xdc\xc4\x18\xce\xf3\xa1\x6e\xc6\x50\x36\xc3\x31\xc6\x0b\x6a\xea\x8b\x0f\x75\xd8\xfd\x79\xdc\xef\xa8\xa4\x5b\x59\x6e\x8b\xcd\x8f\xbe\xfb\x24\xeb\xf7\x1b\x1c\xcc\x1e\x9e\xd4\xf3\x74\xfa\x78\xf8\x24\x8d\x1c\xb3\xf2\x15\x9b\xbc\x6d\xe3\x9e\x52\xce\x6f\xcc\x96\xf3\xd1\x0e\x52\x36\x08\x7a\x80\x29\xd7\x77\xed\xd5\xb7\xb5\xf1\xad\x1d\xd1\xfe\xf3\xd9\x5c\xf1\xe6\xf1\xd5\xbf\x0e\x2e\x6a\xcc\x79\xd3\xa1\xad\xdc\x18\x76\xe9\x13\xdc\xe1\xfe\xe3\x5d\x2e\x58\x57\x15\xad\xe7\x32\xbc\xa4\xc0\xe7\xd7\x13\xdd\xf1\xfd\xf5\x47\xae\xc1\x7b\x5e\xd0\xe8\x9f\x43\xb9\xfe\x19\x5e\xdd\x84\x35\xfa\x47\x15\xf7\x5a\xcc\x1b\xee\x7f\xea\xa9\xb7\xbe\x98\x4b\xc2\xdb\x7a\x63\xb7\x34\x3d\x8f\x97\x5d\x35\xf4\xb5\x6c\x1b\xbd\xe1\xe3\xf5\xe6\x83\xc8\x1c\xd0\x5b\xf4\xa6\xbe\xd3\xbb\xbe\xd7\xeb\x29\xe5\xd5\x8d\x79\x5e\xf9\x9e\x08\x62\x04\x51\x34\xb2\xf9\x84\x38\x5d\x47\x34\x33\x4a\x4a\xd7\x0c\xe8\x2e\xc9\x6c\x74\xd5\xd6\xb4\x87\x1d\x1c\xbf\xb3\xd1\x0a\x6a\xf4\xde\xc6\x16\x6d\x0b\x22\xc8\x5c\x4e\xc0\x97\x77\x77\x37\xf4\x71\x85\xbe\xaf\xf2\x02\x18\x9e\x92\x9c\x88\x55\x03\xd8\xfa\xce\x1e\x1e\x1e\x46\xfa\xf0\xb8\x84\x2e\x0e\xa7\x39\x9d\x1f\x1a\x3c\xa4\x98\x0f\x45\x06\x43\x75\xc1\xc5\xe3\x6a\xb8\xf4\xb1\x0d\x1f\x88\xc8\xcc\x61\x75\xfd\x4d\xd6\x69\x99\xad\xa7\x15\x4c\x6f\xdd\x2b\x2d\x28\xb2\xb7\x53\xeb\xb9\xbe\xc3\x08\xf5\x2e\x99\xce\xf3\xbe\x3d\xed\x51\xf2\xbe\x44\xee\x9e\x76\x34\x7e\x09\xef\xa0\xf6\xea\xee\xd6\x4f\x46\xb9\x45\xce\x2c\xf0\x8a\x37\x17\xe0\x46\x49\xd6\x47\x18\xf0\xb8\x08\x17\x69\x0f\xde\x38\xea\x31\x14\xe9\x06\xbc\x0c\xf0\xd3\xf1\xde\x02\x0e\xf1\x46\x10\xeb\x15\x7e\x5f\x5e\x61\xcc\x1a\x51\x7f\xdf\xba\xa2\x2d\xf6\xfb\xb8\x3b\xcd\x9c\x2e\x4b\xc7\x37\x20\x7a\xf0\xf6\x25\x36\xbd\x79\x26\x66\x97\x8c\xd2\xc9\x95\x18\x5e\x13\xd3\x6e\xf0\x23\x82\x3e\x1e\xb4\xf6\x1f\x15\xc0\x8e\x8a\x2c\xbd\x27\x30\xd1\xf9\x8a\xd1\x92\x51\x91\x95\x85\x74\x36\x63\x47\x20\xd6\xe0\x55\x86\x72\xfc\xe9\xc4\x1b\x9e\xc8\x66\x9f\x1d\x74\x55\xa8\xab\x8e\x11\x9d\x21\x73\x2e\x84\x60\x2b\xa5\x90\x0b\x78\x14\xde\x1d\x42\x3a\xf2\x33\x85\x19\x65\x60\xec\x71\x15\xe5\x2a\x74\xb9\x08\xb5\x12\x81\x0b\x6c\x76\x51\xab\x94\xf4\x47\x78\xf4\xee\x38\x6f\xd0\x1f\x7e\xac\x93\xba\x05\x5b\x7d\xa4\xc5\x55\x0a\x8b\x92\x0a\x9b\x89\x18\x8b\xe3\xe9\x88\x10\x2d\xf2\x15\x7a\xa0\xec\x9e\x5b\x9f\x5f\xa2\xb3\x91\x10\xe1\xca\x80\x4a\xe8\xa2\x64\xc0\x39\xa4\x5d\x06\x6a\x24\xcb\x2b\x4d\xdf\x62\x0e\x11\x4f\xe6\xb6\xab\xb9\x33\x75\xfa\xc5\x50\x1d\xd1\x64\x25\x78\x6b\x87\xcf\xe1\x4b\x74\x96\xa6\x08\x17\x2b\xff\x54\x83\x30\x19\x5c\x6f\x23\x8e\xb7\x29\x58\xb5\xd6\x65\xbc\x6c\xbf\x0d\xc6\xa6\xed\x0d\x1b\x75\x88\x25\x13\xa2\xaf\x78\x30\xaf\xa5\xbb\xa3\xde\xad\x1d\x56\xda\xf1\xfb\xa0\x2f\xf1\x95\xb3\x40\x1d\xc7\xd5\x4e\x7f\x41\x11\xb6\xd1\x46\xeb\xe9\x30\xf6\xf7\x2b\x55\x2e\x4d\xc3\x2b\x28\xec\x24\xdb\x15\xc9\xcd\x30\xbf\x61\x30\x23\x8f\x81\xcb\x50\x21\x44\x03\x5d\x51\xf3\x30\x8e\xe1\x60\xb3\xbf\x43\x3f\x91\x13\x5a\xfe\xd4\x8c\xa5\xfc\xa2\xc7\xb2\xfc\x87\x1c\xa9\xb2\x95\x6c\x74\xba\xa2\x4c\x77\xc5\xfc\x27\x4a\x8b\xe9\x0d\x2e\x2a\x57\x66\xfb\x4c\x8d\x98\xac\x50\x86\xf6\x03\x4f\xbc\x37\x8d\x5b\xbf\xa6\xca\x5b\x1b\x18\x89\x19\x1c\x6c\x5b\x80\xce\x66\x83\x76\x9c\xdf\x4e\xa7\xe1\xdd\xab\xed\xa7\x6b\x6d\x11\xd4\xf1\x24\x73\xf7\xab\xd5\xb9\x11\xee\x8e\x6e\xe9\x8d\xef\xa0\x77\x07\x7d\xa4\x08\xdc\x01\x70\x78\x89\x49\xae\xc2\x9e\x36\x95\xc3\xa8\x8e\xa0\x90\xf1\x5b\xb7\x06\xe3\x13\x6b\x76\xd9\xcd\x29\x14\x04\xd2\x11\xba\x05\xcc\x69\x71\x1c\x36\xfa\x42\x7d\x6c\x96\xde\x9e\x84\x30\x19\x39\x9e\x9f\xdc\xb1\x07\x2b\xdc\xf2\xa0\x4f\x6f\x46\xea\x0c\x72\xb5\x59\x29\xc9\x69\x95\xca\x1e\x5f\x12\xa5\x24\x6d\xe6\x86\x64\x5b\xa5\x17\x1f\xbd\xbb\xaf\xa3\xc9\xd0\x16\xf8\xf2\x97\x39\x2b\xda\xc4\x8d\x1b\x1b\xb1\xf4\x01\x1e\xfa\x96\x4f\xa9\x27\xd4\x91\xea\x84\xa3\x29\xc8\x19\x64\x41\x0b\x22\x28\x83\xd4\xc3\xa2\x0e\xf8\x90\xab\x24\x13\xab\x44\x9c\xce\xc4\x83\x9c\x77\xf6\x73\x72\x0f\x88\xaf\x78\x4a\xe6\x07\xed\xf6\xf5\x9d\x51\xad\x3d\xea\xaf\xbf\xf9\xf3\xe8\x68\x74\xd4\xcc\xa2\xec\xd9\x5a\xaa\xcb\x1d\x1f\x37\xef\x81\xb2\x4f\x0a\x72\x29\x91\x37\x4f\x10\x7b\xce\xf9\xd1\x71\x69\xaa\xff\xfd\xff\x01\x00\x00\xff\xff\xb5\xac\x2a\x30\x86\x9c\x00\x00") +var _etcNginxTemplateNginxTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xff\x73\xdb\xb6\xf2\xe0\xef\xfe\x2b\x30\xb2\x6f\x62\x67\x2c\xc9\x49\xd3\xbc\x3e\x7b\x7c\x77\x8e\x9d\x3c\xfb\x9e\x93\x78\x2c\xa7\x7d\xf3\xb9\xb9\xd1\x40\xe4\x4a\xc4\x33\x45\xb0\x00\x68\x5b\xcd\xf9\xfe\xf6\x1b\x7c\x25\x40\x82\x94\x9c\xa6\x69\x5f\xa7\xec\x4c\x6a\x91\xc0\x62\xb1\x58\x2c\x16\xbb\x8b\xc5\xe7\xcf\x68\x07\xe7\x39\x3a\x3c\x46\x23\xf4\xf8\xb8\x25\x7f\x73\x60\x77\xc0\xb8\x7a\x37\x31\x7f\x9b\x4f\xc9\x7c\xa1\x5e\x9f\xce\x17\xf6\xd5\x05\xbf\xb8\xfa\xf1\xf5\xdb\x02\xcf\x72\x48\xd5\xc7\xf0\x8d\x29\x96\x01\xce\x45\xf6\xcb\xa7\xeb\x0b\x55\xe6\xbc\xfe\x69\x0a\xcc\x70\x72\x0b\x45\xaa\x9b\x7d\x63\x7f\x98\x8f\x25\xa3\x0f\xab\x73\xc0\xa9\xc5\xeb\x4a\xbe\x98\x80\xb0\xef\x4c\x39\x9c\xa6\x7e\xa9\x93\xfa\xe7\xe3\xe3\x96\x2c\x41\xe6\xaa\x13\x23\x8d\xdd\x7b\x9a\x72\x48\x2a\x46\xc4\x4a\x16\xc8\x29\x4e\xa7\x4b\x9a\x56\x39\xa0\x31\x88\x64\x5c\x2c\x48\xf1\x30\xd6\x6f\xf8\xb8\x58\x3c\x4c\x33\x21\x4a\x59\xc4\x56\x33\xc5\x47\x9c\x1e\x49\xf0\x50\xa4\xb6\xa5\x59\x45\xf2\xf4\x63\x09\x85\x60\x38\x21\xc5\xe2\x92\xe2\x54\x13\x50\x16\x48\x31\x2c\x69\x81\xe8\x7c\x7e\xb4\xb5\x75\x4f\xd9\x2d\xb0\x69\xc9\x68\x02\x9c\x03\x47\x86\xd4\xa3\x9f\xd4\x87\x2b\xf7\xfe\xf1\xf1\x68\xab\x24\x29\x1a\xb3\xaa\xd0\xc8\x8d\x4a\x92\x1e\x99\x8e\x15\x80\x46\xef\xf1\x83\x6c\xf3\x1d\xc9\x81\xa3\x03\xd9\x94\x01\xce\x72\xb2\x24\x62\x5a\xd0\x39\xc9\x41\x36\x10\x16\x95\x90\x35\xfe\x1a\xfd\xf1\x73\x24\xbb\x7a\x38\x36\xcd\x50\xb6\x18\x43\x31\x4e\x69\xa2\xe9\x90\x50\x06\xb6\xef\x99\x58\xe6\xdb\xa6\x19\x9e\x55\x22\xa5\xf7\xc5\x54\x90\x25\xd0\x4a\xa0\xe7\x63\x35\x34\xe3\xe7\x08\xdf\x51\x92\xa2\x7b\x4c\x04\x29\x16\x48\x50\x8a\x72\x5a\x2c\x50\x5a\x31\xf9\x1b\x23\x06\x92\xfe\xba\x42\x17\xb4\x90\x30\x13\xf3\xf9\xc6\x7c\x7d\x7c\x44\x47\x5b\x5b\x70\x07\x85\xe0\xe8\xf3\x16\x42\x08\x2d\xab\x5c\x90\x29\x4e\x12\x28\x05\x32\x0f\x2d\x8e\xd4\x37\xd3\x48\x42\x8b\x02\x12\x41\x68\xc1\x91\x6b\xe0\x3d\x7e\xd0\x6d\x9c\x7a\x5f\x25\x91\x64\xc5\x8a\x03\x6a\x3e\x50\xd2\x3c\x3f\xda\x7a\xdc\xda\x92\x74\x33\xad\xe7\x15\x9e\x96\x38\xb9\xc5\x0b\x98\x26\x25\x16\x19\x1a\x8c\x2b\xce\xc6\x39\x4d\x70\x3e\xce\xc9\x6c\x9c\x57\x78\xfc\x3f\x24\xf7\xe8\xf7\x64\x36\x7e\xf8\xe1\xf5\xf4\xf5\xab\x61\x4e\x8a\xea\x61\xb8\x28\x2a\x55\xe4\xfb\xd1\x0b\x5d\xec\x68\x70\xd4\x82\x6c\x00\xd7\x0c\xab\x81\xe6\x15\x3e\x6a\xbc\xbc\x83\x22\xa5\xcc\x7e\x8b\x61\x22\x3f\xc8\x36\x5c\x23\x3c\xc3\x0c\xd2\x69\x4a\x12\x81\x12\x5a\xcc\xc9\xa2\x62\x58\x92\x63\x9a\x62\x81\xd1\xf7\xef\x8f\xa2\x45\x19\xad\x8a\x74\xca\xe8\x8c\x14\x53\x2e\xb0\x00\xf4\xa2\xa3\x64\x4e\x93\x5b\x8e\xbe\x7f\xf1\xf2\xd6\xb4\x4a\x0a\x22\xa6\xb3\xd5\x54\x16\x9c\xc9\xaf\x86\x98\xf2\x61\xf0\x73\x45\x18\xec\x0e\x18\x70\xb1\x1a\x49\x2e\x1c\xec\xb9\xaf\x09\xcd\x73\x48\xc4\x02\xb3\x19\x5e\xc0\xee\xc0\xfc\x1e\xec\x6d\xb9\x22\xc3\xa1\x82\x8f\xcc\x9c\x76\xef\x15\x1d\x10\xbd\xdd\x47\x0c\x78\x5d\xdc\xbc\x40\xc7\xa8\x4c\x70\x9e\xef\x9a\xf6\xf7\xd1\x20\xa0\x85\x87\x83\x9c\x87\x54\x20\x7a\x8b\x44\x06\xc5\x96\xc7\x20\x8c\x51\x26\x11\x57\x10\xd0\x1c\x93\x1c\xd2\x43\x34\x40\xa3\x11\x12\x94\x0b\x39\x0b\x76\x19\xf0\xbd\x1a\x16\xe4\x1c\x3c\x08\x41\x93\xe8\x58\x61\xea\x8a\x16\xe9\x26\x58\xcf\x70\x8e\x8b\x04\xd8\xb7\x41\xd8\xb6\x16\xc1\x55\xfe\xff\xd1\x1b\x6f\x33\x17\x3b\x86\xdd\x02\x1a\x79\x65\x77\xf7\x7c\x20\x4a\xc2\xdc\x83\x9a\x9a\x22\x03\x74\x87\xf3\x0a\x10\x9d\xab\x1f\x99\x5a\x03\xd0\xbf\x86\xef\x28\xbb\xc7\x2c\x85\x54\xfe\x85\x04\x45\x33\x40\x72\x1d\x90\x7f\xda\x9a\x0b\xa0\x53\x52\x1a\x06\xd1\xd2\x48\x37\xe0\xd6\x8e\x4f\x1c\xd4\xf2\x73\xc5\xa8\xa0\x09\xcd\x91\x29\xc2\x00\xe7\x53\x52\x4e\x4d\x73\xea\x51\x0b\x97\x94\xec\xaa\xe4\x91\x05\x25\x09\xd5\x57\xcd\x8a\x21\x87\xf0\x3b\xca\xf4\x4a\xe6\x84\x90\xb7\xda\xf8\x50\x98\x5c\x98\x38\xb9\x03\x4f\xd0\x7d\xfe\x8c\x18\x2e\x16\x80\x76\x04\xab\xb8\x80\x54\x76\xf0\xf0\x58\x37\xa1\xba\x72\x0d\x38\xbf\xb8\x3a\xbd\x38\xbb\xb6\x58\x71\x10\x53\x0b\x73\xce\xe8\xd2\x62\xe5\x41\xe8\xc0\x44\x0d\x85\x14\x0e\x33\x2c\xd7\xac\x8a\x43\x2a\xe9\x9b\x82\x00\xb6\x24\x85\xa6\x72\x42\xab\x42\xb0\x15\x4a\xa1\x84\x22\x95\x0b\x00\x2d\xf4\x87\x9c\x40\x21\xd0\xc5\x15\xc2\x69\xca\x80\x73\x7f\x08\xfa\x56\x25\xf9\xa1\x5e\xa2\x17\x40\x49\xe9\x2f\x50\x0d\x30\x22\x23\x1c\x11\x6e\x05\x8a\x44\x30\xc1\x79\x52\xe5\x52\x54\x09\x86\xe7\x73\x92\xa0\x39\x65\x88\x14\x29\xb9\x23\x69\x85\x73\x87\x73\xc5\x25\xbe\xff\x00\x7a\x71\x85\x88\xc6\x5a\x8a\xb8\x8a\xa3\x12\x2f\x3c\x96\xd1\x38\xd8\x5a\xfa\xf1\x04\xb2\xfa\x3c\x56\x60\x46\x29\x16\x47\x7e\x1d\xa9\x90\xb8\x27\x56\xe7\x92\x08\x38\x25\x62\xd5\xac\x49\xd9\x02\xf5\xd7\xbc\xb8\x3a\x99\x7c\xa8\x96\xcd\x8a\x9a\x51\x6b\xee\x91\xbc\xd3\x64\x7c\xad\x34\xfd\x28\xf8\x44\x77\xd7\xf4\xf3\x2e\xa3\x5c\x4c\x0d\xd1\xa6\x9a\x14\xd3\x5f\x68\x01\x48\xcb\xf9\xc3\x58\x81\x43\xcb\xe2\x0e\xdc\x7f\xd1\x02\x26\xe4\x17\x70\x7c\x15\x85\x3b\x27\xb9\xd0\x82\x42\x72\xe8\x2d\xac\x90\x07\xe8\x0c\xe6\xb8\xca\xc5\x3b\x55\xe6\x9f\xb0\xea\x62\x51\x4c\x28\x6a\x3e\x22\x63\x80\x53\x7e\x64\x0b\x4c\xef\x19\x11\xfe\x3a\xef\x28\x22\x92\x72\x5a\xd0\xb2\xe2\x59\xf8\xb1\xfe\x96\x42\x8e\x57\xed\x8a\x39\x5d\x4c\x79\x35\x93\x3c\x07\x5c\x34\x3e\x32\x90\x1d\x92\x8a\x4e\x4a\x2b\xe1\x69\x25\x75\x91\x5b\x80\x12\xe7\xe4\x0e\x9c\x3e\xe4\x3a\xff\x4f\x80\xf2\x44\x7e\x42\x8f\x8f\xa6\x0f\x75\x69\xd3\x20\x6f\x97\xbe\xb6\x5f\x24\xa1\x54\x2d\x3d\xff\x8c\x30\x9a\xce\xaa\xf9\x5c\xea\x61\x72\x58\x42\xc9\x74\xaa\xca\x69\x99\xf4\x46\x95\x0a\xc6\x2e\x04\xe3\xd0\x75\x4f\x0c\x4c\xad\xc6\x99\x1e\xe4\x98\x49\xc5\x29\x82\x11\x0f\x80\x5c\xca\x72\x6d\x84\x78\x13\x9b\x19\x4d\x57\x91\x2e\x35\xb1\x79\x43\xd3\x55\x77\x97\x14\x90\x76\x87\x62\x40\x82\x0e\x29\x18\x52\x36\xbd\x9c\x2e\xf1\xc3\x74\x4e\x20\x4f\x43\x2c\x3c\x18\xe7\x37\x37\x57\x2f\xdf\xe3\x87\x77\xb2\x54\x80\x45\x0d\xc1\x10\xa4\x01\xa2\x09\x41\x13\xc4\x81\xd0\x4c\xba\x2a\x81\x4f\x33\xcc\x33\x05\xa8\x89\x04\x7a\x79\xf0\xea\x87\x23\xb3\x0a\xc8\xed\xdf\xb4\xc0\xcb\x78\x05\xdb\x9a\xde\x26\x7e\xc0\x4b\x38\xc7\x3c\x7b\x8f\x1f\x02\x9c\xdb\x50\x66\x55\x72\x0b\xc2\x02\x8a\x43\x79\xa3\xca\x04\x80\x96\xb8\x8c\xd5\x6f\x75\xfe\x3d\x2e\x23\x10\x14\x08\x2d\xe7\x34\xed\x62\x5d\xb2\x20\xae\xbc\x1d\x67\xac\x4f\x11\x38\x01\x52\x5d\x70\x62\x38\xdd\x61\x46\xa4\x64\x8d\x12\xc7\xc3\xe9\x47\x5b\xae\x83\x3c\x0d\x38\xad\xb1\x8d\xc2\xf1\x3b\xa6\x77\x37\x85\xc4\x55\xaa\xd6\x7c\x4a\x0a\xdb\xc5\x80\xc8\xe1\x82\xf0\xa9\xae\x70\x51\xd4\xfb\x6d\x5a\xd4\x8a\x0e\x9d\xcf\x9d\x08\xd6\xb8\x92\x45\x21\xb7\x90\xa4\xb8\xc3\x39\x49\x7b\x5b\xb9\x50\x45\x2f\x74\xc9\x4d\xe0\x6b\xe1\xa1\xf6\xbb\x0c\x7e\x36\x2b\x07\x6a\x3c\x4e\x78\xc8\x72\xd7\xf0\xb3\x5e\x84\x4e\x69\xea\x91\xa2\xd5\x55\x6f\x3f\x6f\x57\x3f\xea\xbd\xf2\x14\x2e\xb3\xdc\xc8\x5f\xf6\x55\xd3\x22\x50\x5b\x03\x14\x41\x8a\x24\xaf\xd2\xd0\xf0\x40\x96\x30\x52\x93\x55\x83\x4d\xf5\xf2\x36\x95\xaf\x90\x80\x07\x31\x96\x9a\x4d\x17\xae\x6f\x18\x15\x39\xb1\x48\xcc\xf4\x2f\x8b\xa1\xfe\x39\x4d\xe8\xb2\x9c\xe6\x70\x07\xb9\xa3\x87\xae\x76\xa9\xde\xd9\xc1\x32\xa5\x15\x2a\x8d\x82\x37\xea\x5d\xa7\x2a\xe8\x2b\xcd\xff\xf8\x45\x29\x8d\x5a\xe9\x90\x7f\x5b\x64\xe4\x0f\x1f\x95\xef\xbd\xd7\x4a\x9b\xbb\x03\xc6\xe5\x4a\xf8\x62\xf4\xc2\xfb\xb4\x24\xc5\x34\x87\x62\x21\x32\xf4\xf2\xfb\xd7\xde\x87\x10\x4f\xd9\x6c\x88\xa5\x2a\x24\x27\x30\x81\x14\xe1\x62\xe5\xbd\xbd\xc3\x6c\x15\x19\x46\xf5\x73\x1b\x9d\x56\x5c\xd0\x25\xb2\xcc\x2a\xf5\x43\x06\xbc\xa4\x85\xd9\xf6\xd4\x8a\xf6\xed\x3e\xda\xb9\x53\x3a\x36\x0e\x6c\x50\xb2\x14\x4e\x2d\xbf\x2b\x1c\x6f\xd1\xe3\xa3\xcf\x98\x03\xf9\xf2\x0e\x3d\x3e\x0e\xa2\x58\x18\x61\x2a\xe8\x2d\x14\xdc\xa7\xf0\x24\xa3\xf7\x5a\x82\xde\xe8\x6f\xeb\xa6\xa0\xb1\x1a\x51\xd1\x59\x5f\x0b\x5d\x39\x4f\xa5\x6e\x62\xbb\x3d\xd0\xa5\x0e\x51\x1c\xc1\x6d\x94\x12\xae\x76\x55\xf7\x98\x15\xa4\x58\x70\x23\x56\xe4\xe6\x8d\xe0\x9c\xfc\x02\xe9\xd4\x8a\xaa\xa9\x2c\x63\xcc\x60\xba\xf2\x49\x9a\x12\xa9\xf6\xe0\x1c\xe1\x3b\x4c\x72\x05\xc9\x49\xb6\x43\x53\x6a\x47\x2d\x26\x25\x4e\xc0\xbe\x20\xc5\x42\x6e\x17\xd4\x2a\x63\xdf\x49\x5a\x91\x04\xea\x77\x52\x03\x9b\x53\xb6\xc4\x02\x55\x25\x17\x0c\xf0\x92\x14\x73\xea\x93\xf1\x92\x2e\xde\xa9\x12\x6f\x79\x82\x4b\xf8\x5f\x93\x8f\x1f\xd0\xe3\x23\xa8\x1f\xc7\xff\xe6\xb4\xa8\xfb\xfb\xcc\x4e\x6a\x57\xe7\x93\x01\x6a\xa7\xf6\xb3\x23\x6f\x4f\xb4\xc4\x25\xaa\x58\xce\x91\xc8\xb0\x40\x3c\xa3\x55\x9e\x2a\xf2\xe3\xb2\x04\x2c\xb7\x1a\x08\x27\x09\x70\x3e\xca\xe9\xe2\xcb\xb6\x3d\xb2\x7f\xbe\x55\x4e\xc3\x9b\x06\xf0\x24\x1a\x3b\x46\x25\x9c\x56\x8c\xa0\x9d\x9c\x2e\x16\x8a\xcc\xf5\x8e\xbb\xe6\x64\x06\x3f\x7f\x62\xc4\x6d\x17\x27\xb7\xa4\x3c\x51\x50\x2f\xe9\xe2\xd3\xf5\xa5\x63\x13\x2b\x53\x4d\xf9\xc7\x47\x74\x70\x14\xca\x41\x4f\x84\x21\x33\x8f\xdb\x72\xe2\x4c\xf3\x8e\x6b\xc2\x4d\x9a\xba\x27\x8a\x5b\x50\x7b\x23\xdd\x92\x80\x93\x15\xcf\xa3\x10\xb8\xfa\x70\xa8\xa7\xd2\xb1\x53\x3f\xd4\xdb\x73\xca\xa5\xc6\x76\x18\xbe\xbd\xa2\x4c\xd9\x17\x03\xae\x21\xf3\x63\x47\xbb\x28\x46\x5e\x93\x16\x9c\xeb\xd8\x15\x16\xd9\x86\x10\x6b\x12\x76\xcb\xd7\x58\x8f\x95\x05\xe7\x57\x76\xd8\xbe\x7d\x2b\x61\x5d\xd2\x45\xb8\x30\x34\xfa\x5b\x37\xd8\xaa\x67\xbb\xbb\x1e\x5e\xd8\x3f\x35\xbf\xae\x81\xd3\x5c\xf9\x21\x54\x5d\xfb\x33\xe0\x98\x8b\xf2\xee\xf5\xd9\x87\x49\x68\x86\xf8\x29\x83\x02\x64\x49\x35\x71\x90\x96\xf9\x5c\x19\x9b\xf5\x1e\xec\x9e\x88\x4c\xaa\xe8\x18\x0d\x6a\x4b\xef\xc0\x48\xf8\x7d\xb5\xb7\x8f\x7c\x40\x84\x23\x0e\x02\x09\x8a\x06\x49\x4e\x39\x0c\x1a\xd3\xf5\x3e\x83\x02\x2d\xf1\xad\xb2\x74\x67\x80\x84\xdc\xa1\x08\xdb\xea\x08\xa1\x9b\x8c\x70\xb4\x04\x5c\x18\x69\xb0\xa2\x15\x4a\x70\x21\xa5\x01\x27\xcb\x32\x5f\x29\x7b\x54\x08\x74\xa0\x75\xce\x5a\x14\xa3\x1a\x33\xb4\xa3\xe6\x7f\xe2\xa1\x2a\x57\xa7\x9f\x60\x36\xa1\x52\x4f\x44\xbc\x2a\x4b\x39\xa4\x33\x48\xb0\x04\xad\x0c\x17\x84\xa3\x04\x73\xd0\xfd\x6c\x34\x16\xe9\xf5\xbd\x92\x58\x33\x70\x7d\x1f\xa8\x8e\x2a\x02\x4b\x08\x94\x91\x05\x91\x82\xdb\x52\x37\x25\x5a\xc0\x65\xf8\x0e\xba\x48\xdc\x24\x1c\x49\x32\xd3\x90\x24\x0f\x2a\x68\x3f\x2a\xc6\x00\xd3\x22\xf0\x84\x14\x09\xe8\x2e\xea\xb2\x29\xdc\x11\x2c\x00\x29\x63\x56\xd8\x68\x21\x65\x77\x6e\x78\x64\x06\x19\xbe\x23\x94\xa1\x7b\xd0\x78\x3b\xdb\x20\xe1\x52\x52\x33\x8a\x93\x6c\x54\x43\xd8\x46\xd7\x20\xb0\x41\xc3\x8a\x37\x0d\x2a\xc3\x45\x9a\x2b\xbd\x70\x8e\xdc\x1e\xbc\x97\xe3\x6a\x01\xad\x86\xb3\x2a\x17\x0c\xa7\x80\x76\xea\x71\x75\xef\x3e\xb7\x64\xaa\x7b\x4c\x91\x23\x57\xe2\xd9\xb3\x86\xf2\xab\x98\x36\x10\xc1\xb2\x51\x3b\xdd\x7c\xab\x63\x8f\x1d\x12\xed\x88\x0c\xac\x91\xd0\xe0\xb3\x81\x99\x54\x13\xed\x1f\x10\x18\xf9\xd4\xa8\xa8\xe2\xc8\x96\xef\xee\xdf\x4e\x68\x55\x9d\x4a\x20\x51\x79\x14\xaf\xcd\x60\x49\x05\x34\x6a\xd5\x32\xd6\xa9\x31\xca\xd4\xa9\x56\xde\xe9\x83\xd4\x1a\x34\x05\x74\xb3\x4e\x07\x4c\x28\x63\x90\x88\x7c\xa5\x2c\x85\x89\xe4\x30\xce\x73\xb9\x46\xe5\x14\xa7\xa4\x58\x34\x86\xb4\x0d\x69\xa7\xc4\x9c\x4f\xcd\x52\xc1\x93\x0c\x96\xbd\x83\xdb\x01\xa6\x67\xb0\x77\x34\xd0\xa3\xb0\x77\x6a\x37\x25\xd1\x8d\xb5\x8f\x8b\xd4\x56\x43\x98\x81\x22\x82\x9c\x08\x73\xca\x12\x50\xe2\x33\x25\xb2\xdb\xae\x73\x03\x53\xfa\x30\x02\x6d\x20\x49\xae\xcb\x4f\x05\x55\x8a\x0a\xef\xeb\xe1\x41\xdd\x97\x81\xd2\x7b\xe4\x3f\x03\xfd\xe2\x45\xe3\x1b\xf7\x3e\xbe\x68\x31\x74\x84\x56\x52\x06\x6a\x1c\x8d\x22\xad\xde\xf4\x60\xd3\x01\xa4\x87\xde\xd6\x83\xee\x95\x0b\xd7\x6b\x9c\xe7\xa3\x0b\x3e\x99\x5c\x5e\x61\xce\x45\xc6\x68\xb5\xc8\x3c\x77\xb9\x1e\x1f\x89\xbf\xc6\x4d\xbb\xe8\x47\x97\x84\x0b\x28\xe4\xba\xcc\x47\xb2\xae\x9a\x2c\x8f\x8f\x72\x58\x5e\xbd\xfa\x4e\x89\xfb\x88\xa3\x43\x96\xaf\xe9\xd1\xea\xb8\x7e\xd3\xa0\xc1\xba\x16\x83\xe7\xd5\xab\xef\x8e\xfa\xa6\x6a\xa3\x45\x4b\x0f\xd4\x9e\xad\xbf\x12\xc3\xf3\x9b\x9b\xab\xc9\xd7\x46\x2f\xd8\xd7\x7c\x9c\x29\x41\x3f\x03\x23\x16\x50\x46\xb9\x68\x30\x9b\x7c\x25\x05\x23\xe1\xfa\xcf\xb5\x33\x59\x96\xea\x9b\xbc\xf5\xf7\x5e\xc6\xd6\xed\x4a\xd4\xa6\x35\x1e\x4f\x12\x23\xeb\x10\x71\x7d\xea\x52\xdd\x4f\xe9\xb2\xac\x04\xbc\xab\xf2\x3c\x58\x41\x1c\x4b\xff\x04\x52\xc7\x79\x26\xd4\x7a\x6a\x84\xb8\xdc\x0c\xfb\x58\x48\x36\xb6\x3a\x8a\x5c\x51\xe5\xf2\xe2\xdc\x71\x06\x0e\x83\x32\xc7\x09\x70\x53\xc0\x49\x73\x15\x54\xc0\x29\x2d\x7a\xe8\x24\xe1\xef\xcc\xab\x3c\x6f\xbd\x0d\xb8\xcb\x4e\xd3\xd3\x35\x0b\x59\x8b\xae\x83\x68\x93\xfb\xd1\x35\x6b\xd0\x43\xee\xc1\x9a\x0a\x9b\xac\x74\x9d\xb8\x68\xa2\x4e\x3d\xd2\xf5\xa3\xd2\x5b\xde\x85\x8d\xa0\xae\x99\xe3\xd9\x7f\xa7\xa4\x98\xda\xc5\xa0\xde\xc8\xc9\x99\x17\x7c\x31\x4f\x6d\x17\x60\xa0\xdc\x31\x7a\x6f\xe1\x3d\xce\x37\xc2\x79\xee\x68\x55\xdb\x7e\xb4\xd4\x32\x2f\x9d\x59\x6f\x1b\x89\x8a\x15\x88\x16\x88\x03\x57\x86\xa5\x04\x27\x99\x8e\x4a\x41\x29\xc3\x5c\x90\x04\xe7\x72\x49\x5f\x96\x8c\xde\x01\x2a\x81\x29\xab\x41\x91\x40\x93\xe9\x27\x93\xcb\x89\x06\x72\x8a\x93\xcc\x8d\x87\x44\xc7\x00\x9f\x26\xea\x83\xd4\xac\x04\x29\x0e\x5f\x1c\x1c\x1c\x58\xc7\xd8\x64\x72\x79\xe8\xa1\xea\x03\x0a\x0d\xe8\x1e\xb4\x66\x28\x4c\x5d\xaf\x76\x37\x74\xd8\x65\x70\x9e\xd3\x7b\x17\x46\x20\xfb\x2b\x55\x15\x4b\x03\x41\xe4\x46\x81\x47\x1a\x54\xef\xe3\x9d\xbe\x31\x1f\xd7\x9a\x63\x6b\x63\xd3\x2e\x2c\x4b\xb1\x8a\x03\xfa\x27\xac\xd0\x5e\x8c\x86\x1a\x09\xe5\xef\xf3\x0c\xa4\x06\xb5\xd1\x2d\xac\x3a\xba\xcc\x73\xb2\xc8\xa4\x76\xc6\x20\xad\x12\x2d\x52\x24\x05\x87\x82\x0e\xe7\x84\x71\x31\x9c\xad\x04\xb8\xe6\x7c\xe7\x90\x47\xe0\x86\x37\xa8\xbf\x43\xa7\xa4\xcc\x80\xf1\xbd\x5a\xee\xb5\xe9\x9e\x68\x43\xa2\x24\x7f\xa2\x8b\x3b\x14\xcc\x6f\xf4\xcc\x6b\xdf\x80\xd4\x06\xa5\x9a\xdb\x41\xe1\xaa\x27\x97\xad\xd6\x61\xbb\xec\xc4\xf6\xec\xfc\x0a\x33\xbc\x6c\x63\xab\x31\x3c\x3b\x47\x2a\x60\x6c\x43\xfb\x93\xc4\xcb\xb7\x3f\xc9\xdf\x69\x56\xca\x16\x1c\xde\xe6\xb7\x4f\x5f\x83\x44\xbf\x19\xd9\x19\x2a\xb5\xaa\x74\xb6\x2a\xf0\x92\x24\x37\x97\x93\x6b\x48\x28\x4b\xb9\xcf\x36\xe9\x4a\x0a\x93\x44\x0d\xe4\x34\xa7\x56\xa5\x6c\xca\x25\x9e\x4f\x21\x49\xb3\x69\x52\xb1\xbb\x60\xc0\xdf\x9e\x9e\x9d\x9f\xaa\x97\x8d\xf1\x1e\x69\x13\xb0\xb2\x5e\xf0\x9a\x66\xc6\x30\xac\xec\x1f\x2a\x0a\x40\x8f\xa7\x16\xe1\xa4\x10\xc0\x12\x28\xc5\x14\x74\xb5\xee\x31\x32\x36\x37\x60\x4c\x39\x22\xac\xd1\x4d\x83\x97\x0a\x4e\xd8\xb0\xb6\xb7\xa8\xa8\x03\x89\xbc\xad\xf6\xf8\x88\x8e\xd1\xff\xd4\x23\x38\x0d\x3f\x1c\x35\xda\x34\x26\x05\x6f\xa6\x31\x90\x4b\x6f\xcc\xfd\x7f\x22\x19\xc3\x44\x66\x6a\x13\xb0\xdb\x0a\x7a\xb0\x94\x46\x65\x14\x51\x5d\x6a\x4d\x67\x4d\x59\xdb\xd7\x73\x92\x42\x6d\x30\x37\x6e\x36\x92\x82\x6f\x32\xcf\x7a\x43\x61\xe2\xbc\xae\xd4\xc3\x82\x94\x25\x88\xbd\xd6\xc0\x25\x92\x3a\x5c\x7f\x75\x13\x15\x52\x6b\x5d\x08\x23\xaf\xf4\xaf\x25\x2e\x6d\x6b\x4d\xf8\xdd\xd6\x3a\xd3\x65\xb9\x12\xee\xa3\x1d\x6b\xfa\x53\x7d\x9f\x79\x21\xaf\x75\x2f\xe0\xe7\xba\xd8\xc8\x88\xca\x93\xf9\x9c\x14\x44\xac\x46\xf6\x8f\x9b\x55\x09\x68\x90\x50\x7a\x4b\x60\x60\xeb\x3b\xe0\x72\x35\xbb\x5d\x0d\x25\x9e\x0e\xd2\x07\xbc\x54\x6c\x52\xeb\x3c\xba\x14\xca\x30\xcf\x8e\x83\xa2\xcd\x46\x4f\x55\x33\xcd\xb7\xe7\x98\x2b\xf3\x9e\xec\xd9\x97\xd4\xb7\x08\x29\x41\x43\x8b\x7c\x75\xb4\xd5\x50\xc7\x76\x17\x66\xfa\x5b\x1b\xfb\x3f\x6d\x7c\x83\x1f\xa2\x79\xb0\xe7\x6b\x44\x2e\x04\xc2\x8d\x52\x6f\x65\xcb\x4f\x91\xb1\x0b\xc7\x4f\xcb\x5c\x35\x6c\xae\x9f\x6f\x8b\xb4\xa4\xa4\x50\x6b\xa1\xf9\x5e\x07\x53\x8f\x4e\x8c\x9d\xe3\xff\x22\xed\x7e\xb8\xb8\xb2\x26\x57\x53\xc0\xda\x5b\x55\x6c\x00\x26\x39\x3f\xf6\x3e\xbe\xc7\x0f\xef\xe4\x3b\x59\x40\x7e\xb4\x4a\x80\x5f\x46\x16\x68\x6a\x00\x91\x8e\xd4\xbc\xe8\xbf\x75\xcc\xb2\x86\x4b\x8c\x34\x70\x25\x2c\x39\x95\x43\x7a\xe5\x93\x5e\x32\x52\x08\xad\x55\x56\x4e\x24\xae\x36\x70\xa2\x57\xaf\xdd\x46\x2a\x76\xda\x04\x01\x22\x9c\x2f\x28\x23\x22\x5b\x1e\x21\x3d\xbd\x95\x1b\x8e\x56\x45\x8a\x54\xbc\xe9\xbe\x31\x22\x12\xee\x9b\xe4\x1a\x5d\x28\xc0\x7a\x7b\x70\xfa\x46\x03\x3e\xb1\x70\xd1\xc0\x8b\x5e\x95\xf3\xc9\xb9\x8a\x63\x85\x03\x99\xda\xcf\x3d\x7f\x71\xf1\x57\xe0\xe2\x0d\x98\xd8\xfe\x31\x75\x01\xa8\x9e\x9c\xd3\x9d\x3a\x18\xc9\xff\x5e\x1c\xa1\x6d\xa4\xf6\x92\x19\xcd\x53\x60\x35\x95\x6c\xcd\xae\x88\x54\x2f\x26\x55\x85\xd8\xd6\x31\xb0\x1e\xa9\xeb\x81\x93\x4a\x7f\x63\xdb\x3c\x7e\xae\x8d\xad\x8a\x49\x97\xb8\x34\x8e\x80\x7b\x92\xe7\x68\x66\x02\x59\x69\x6d\xa5\x93\xa5\x7e\xca\x88\x80\x9c\x70\x11\x84\xa5\x9a\xd1\x24\x45\x0a\x0f\xfb\xc1\xa8\xf2\xfa\xf0\x46\x58\x36\xa7\x89\x5e\xca\xea\x52\xa3\x4b\xf3\xce\x2f\xbe\xa3\x42\xcb\x0f\x8f\xad\x97\xd3\xd4\xaa\xeb\x87\x4b\x2e\xe1\xb6\x88\x52\x15\x20\x0d\x4b\xd6\x05\x17\x02\xed\xe6\xe0\x01\x1a\xb9\xae\x8d\x4e\x2f\xce\xae\xf7\xf4\xd1\x05\xb3\x46\x9f\x41\xa1\x27\xf9\xe7\xcf\xa8\x64\xa4\x10\x0e\xe7\x73\xca\x85\x5c\x71\x90\xc1\xb4\x0e\xbc\x6c\xd8\xa6\x8d\x61\x5b\x42\xb2\xc1\x2f\x68\xb7\x03\xd6\x60\x3a\x30\xf0\xf6\x42\xe1\xe7\xf9\x2e\x23\xb3\xc9\x84\xd4\x76\xf4\xa8\xe9\x25\x55\x91\x10\x2d\x0f\x69\x53\x6d\xd8\xfc\x57\x63\x80\x99\x3a\xd1\xb3\xab\x83\x25\xaf\xb1\x00\x15\xe5\xc2\x6b\x96\xf0\x54\x20\xf9\x59\x05\xcb\x68\xf7\x6d\x6e\xc5\x7e\x9c\x94\x3b\xf7\xb6\x5f\x53\x53\xfc\xe2\x2c\x4e\xa6\x83\xa3\x6e\x2a\xb1\xbc\xa6\x4f\x9c\x34\x2f\x5a\xa4\xd9\x04\x5d\x65\xf3\xe9\xc0\x70\x47\x47\x04\x75\x60\x7d\x10\x06\x04\x49\x81\xfa\x5f\xb4\x00\xc7\x2d\xbe\x30\x7a\x81\x06\x83\x1e\x43\xa1\x37\xb7\x71\x9e\x1b\x23\x95\x0a\x33\x4e\x11\x93\x73\x59\xa3\xff\x0b\x2d\x80\x8f\xd0\x5b\x9c\x64\x48\x79\xfe\xf4\x44\x31\x45\x39\xc2\x28\x05\xed\x51\x48\x55\xd9\x86\xd3\xea\xc5\xfb\x37\x68\xf8\xdf\xd1\x8b\xd7\x48\x64\xb4\xe2\xb8\x48\xd1\xeb\x57\x6a\x37\xab\xa2\x91\x81\x23\xca\x10\x9e\x49\x41\xfa\x43\x5d\xe4\xc5\xcb\x1f\x82\x32\x11\x41\xa2\xda\x92\xdc\xa3\x5d\xaf\x96\x79\x24\x35\x6a\x06\xda\xf3\xa5\x84\xaa\xd1\xc5\x92\xe3\xe7\xe8\x8d\xa2\x85\x11\x4c\xd6\xc6\xc3\xd1\xee\x9c\xd1\xe5\x58\x50\x74\x7f\x7f\xbf\x17\xc3\x24\x33\x53\x72\x1f\xed\x08\xaa\x0e\x74\x5d\x9b\xca\x93\x50\xb2\xd9\x95\x2a\xc2\x70\xd6\xc1\xa4\x42\x71\x8c\x41\xef\x0d\x29\x52\xb3\x94\x5d\x94\x77\xaf\x7c\x06\xcc\x95\x3e\x82\xcc\x59\x32\x55\xd3\xac\x70\x31\x73\xb3\xd6\x0d\xd6\xd8\x0a\x1b\x67\x00\x1a\x41\x38\xbd\x8d\xae\x77\x16\xac\x33\xd5\xb7\xdb\xd6\xca\x55\x9f\x01\xfd\xcb\xbb\xe4\xfe\x90\x5b\xeb\x5e\x9d\xce\xef\xf2\xb7\x20\xec\x9f\x88\x92\x2d\x4d\x53\x36\xd1\x3a\x73\xf9\x25\x33\xe1\xf5\x5f\x33\xe1\xab\x8f\xdf\x26\xb3\xe0\x7f\x1f\x1e\xfe\x9f\x6f\x44\x59\xdb\xd4\x9f\x84\x9e\x5d\xbb\x2e\xfb\xc6\xf3\x3c\x68\xc3\x91\x55\xf2\x9c\x59\x0f\x05\x5b\xc2\x38\xe2\xaf\x5e\x7d\xd7\x8e\x72\x33\x0e\x6d\xe5\x98\x94\xab\xa5\xd2\x26\xe7\x68\x70\xf8\xdf\xee\x06\x1d\x80\x82\x5d\x1d\x03\xe5\x84\xb0\xe4\x3a\x35\x26\x24\xbb\xc2\x59\x43\x9e\xf5\xab\x8f\xc7\xea\xf4\x15\x35\x14\x0e\xdb\x7f\x7c\xf4\x03\xfa\x7a\x59\xee\xcb\x9b\xed\x6e\xa2\x5b\x81\x7d\xd2\x1e\x45\x2b\x78\xdb\x52\x35\x61\x02\xb5\x77\x9f\xe7\xf5\xe0\xc5\x57\xfd\xe6\x68\xb7\xeb\x05\x9b\xd9\x9c\xe0\xd6\x6e\x59\xc0\xb2\x54\x67\xc0\x06\x93\xb7\xd7\x3f\xbe\xbd\x1e\x18\xa0\xa7\xca\xe6\xa7\xcf\xca\x5b\xf4\xdb\xbb\xfb\x96\x7d\x5d\x15\x6c\x5a\x1d\xd1\x57\xb2\x3c\xa2\xd6\xd1\x89\x86\xfd\x31\x32\x16\xad\x6e\x9e\x7e\x9a\xdc\x7c\x7c\x3f\x7d\x7b\x7d\xfd\xf1\x7a\xa2\x19\x37\x1c\xcc\xed\x6d\x05\xa0\x7f\x38\x62\xc3\xbe\xed\x76\x02\xba\xc2\xbe\x3e\x0a\x28\x37\x72\x1f\xfe\x71\xf1\xe1\x5f\x48\xa7\x04\x48\x32\x48\x6e\x55\xc0\x89\x0e\x1a\x91\xbb\x5e\x1d\x3e\x25\x55\x54\x1e\x1f\xe9\x6d\xf4\xc9\xf8\x87\xbb\x43\x24\xec\x19\x35\xb4\xcb\x70\x91\xd2\xa5\x39\x13\xfa\xef\x8a\xab\xe0\x35\x7d\x1c\xfd\xb6\xa0\xf7\x85\x02\xc2\xf7\x10\xe6\x0e\x65\x05\x56\xa2\xaa\x3d\x1e\xfe\xb8\x65\x58\xbe\x5b\xe8\x80\x30\x0d\xd3\xd3\xd9\x93\x4c\xb1\x3a\x29\x0e\xbd\x3a\x3a\x52\x65\x3c\x5e\x10\x91\x55\xb3\x51\x42\x97\xe3\xdb\x6a\x06\xac\x00\x01\x7c\x6c\x22\x97\x87\xda\xa7\x35\xcb\xe9\x6c\xbc\xc4\x5c\x00\x1b\x27\xb4\x10\x8c\xe6\x39\x30\x6e\x3c\x5e\xe5\xed\x62\x9c\x2c\x53\xef\x8b\xf1\xc9\x2c\xe8\x26\xba\x55\x4d\x14\x7b\x96\xa0\x1e\x57\x5f\x32\x5f\x43\xc5\xc1\x18\x73\x94\x43\x40\xd2\xa3\xd6\x49\x66\x38\xb9\xcd\xe9\xe2\xd8\x36\xf1\x46\xff\x0e\x7c\x96\xa8\x5b\x39\x59\xb7\xec\x7d\x1b\x2c\x63\xab\x85\xb0\x7e\x7a\x67\x42\xd2\x26\x81\xe1\xc0\x5b\x2e\x9c\x4d\xa3\x91\xd7\x22\xd8\x4f\xa2\x8e\x98\xe5\x86\x1c\x7e\x79\xe0\x6d\x93\x1f\x23\x6d\xe8\xe1\xb5\x67\x58\x42\xf8\xdd\xf8\x2a\x97\x53\x81\x73\x1f\x6d\x14\x0b\x18\x6e\x1d\xe6\xb4\x4f\xf4\xf0\x65\x4a\x78\x99\xe3\xd5\xd1\xc6\x25\x6d\xb0\xbd\x3e\xa7\xd2\xc0\xa4\xb9\x34\xad\x23\x19\x17\xd5\xcc\x12\xc2\xba\xd0\x7c\x70\xe1\x60\x46\x89\x19\x8a\xd3\x90\x9a\x72\x4a\xa9\x03\x7e\x5d\x16\x3f\xd4\x3c\x83\xdf\x34\xfd\x21\x27\x34\x3b\x11\x68\x00\xec\x71\x2a\xda\xa7\x15\xf4\x8b\x10\xfa\xd7\x50\xad\xd3\xaf\x0e\x5e\xad\xa3\x02\xea\x65\x13\xfb\x73\x68\xe6\xd9\xd0\x38\xa1\x06\x47\x11\x14\x4a\xcc\xbd\x43\x54\xc6\x21\xdc\x05\x21\xca\xd4\x9b\x2f\x3c\x8f\x5b\x5b\xd6\x21\xb1\x85\xc2\x73\x1b\xea\x10\x6d\xed\xac\x08\x8e\x6c\x4c\xf4\xfb\xd8\xf9\xad\x5f\x71\xae\x60\x93\x28\xfe\x1a\xab\xa8\x4b\x72\x7d\x60\xbc\x0b\x4d\xb9\x39\xbd\x42\xe6\xdc\x0a\x6f\xaa\x4f\xfb\x68\x47\x24\xe5\xc4\x69\x4f\xa3\x9b\xd3\xab\x37\x0d\xbf\xa1\xb3\x82\x8b\xa4\x54\x4e\x3f\x57\xc3\x5a\xe7\x1b\x6f\x0d\x00\x65\x47\x53\x27\x6a\xfa\x8b\x74\x7f\x75\x47\x06\x1a\x68\xff\x7b\x1f\xed\x80\xf1\x2b\x28\x9d\xaf\xae\xea\xbb\x1b\x9a\x26\xfa\xd6\xa3\x3c\xd9\xa6\x82\x73\x45\x98\x3d\xa9\x7b\x6f\x90\x88\x07\xf6\xa2\xdf\xc2\x56\x14\xc5\xb3\xb1\x65\x6e\x8d\x81\xe1\xcc\x08\x11\xfd\x0d\xd1\xe8\x0c\x12\xa3\x90\xaf\xdd\xe0\x75\x6f\x2f\xa3\x08\x7e\x23\x8c\xbe\xad\xb1\xe2\x3f\x6f\x28\x9c\x0e\xf4\x7b\x8d\x47\xe3\x8d\x06\xd2\x7d\x5e\x5f\xe7\xdd\x52\x02\x26\xe6\xa6\x8b\xad\x14\x48\xa7\x45\xf8\x5d\x64\x51\x4b\x15\x5d\x47\xce\xb7\x85\x21\x67\xb3\x4b\xd6\x44\xe1\x1e\x5f\x03\xd9\xc4\x3b\xb9\x8d\x3e\x9d\xf5\x4a\xf6\x2a\xf5\x25\xfb\xa7\xb3\x6e\xc9\x5e\xa5\x9a\x9a\xae\x46\x40\xcd\xfa\x6d\x27\x35\xe3\x45\xba\xbf\x6e\x2c\xd9\xeb\xaa\xdf\x58\xb2\xff\x7e\xa2\xbd\x35\x08\x72\x78\xbe\x58\x2c\x6f\x00\xed\x8f\x27\x52\xbf\x1e\x09\x9c\x38\xfc\x12\x3a\x44\x45\x99\x3d\x9f\xcd\x83\x0e\x34\x44\xd9\xb5\x2b\xd4\x16\x66\x5f\x5d\x16\xfe\x5e\xb3\xb7\x19\xb6\x6f\xc8\x65\xd3\xfd\xa5\xa0\x42\xb1\x54\xc2\x99\xb9\xd3\xd3\x79\x6d\x2a\x61\x50\x82\x20\x3a\x44\xc0\x64\xf5\xd3\x95\xda\xca\x7c\xc3\x58\x5a\x36\x92\x35\x76\x24\x70\x6c\xb3\xac\x17\x07\xa9\xd8\xb5\x2b\x0e\x12\xf9\x7b\xac\x78\xe0\x63\x63\xe3\x65\x37\xc8\x8d\xfd\x71\x57\xc0\xa6\x8b\x43\x0f\x0b\x86\xbb\xb2\x7a\x63\x86\x1a\xdc\xe2\xc5\x5f\x6e\x06\x45\x6f\x67\xbc\x92\x3a\x92\x5f\xe7\x31\xdc\x10\xc6\x47\x73\x1a\x73\xf8\xe9\xfa\x42\xc3\x88\x1a\x70\x7b\x61\xd4\xbc\x67\xf1\x70\xe7\xee\x37\x84\x70\x61\x8c\x5b\x8a\x45\x15\x04\xff\xa0\xfe\x86\x40\x26\x7a\xd5\xf4\x80\xf8\x27\xfb\x1b\x43\x63\x8e\x0a\xa0\xc6\xb3\x3b\x7a\xbe\x87\xc6\x68\xc6\x00\xdf\xae\xdf\xde\x3e\x6d\x87\x6b\xff\xaa\x67\x55\x90\x0b\x74\xfc\x1c\x9d\x7e\xbc\x9e\xb8\x33\xb8\xea\xb0\xa3\xb5\x09\x2e\x49\x92\x11\xc8\x6f\x71\x7e\xbb\xc4\x85\xb2\x0d\x1a\x73\xb0\xb1\xf9\x0d\x13\xca\xf8\x90\x96\x50\x0c\x43\xeb\x43\x9d\xd6\xcc\x9f\x89\xc1\x04\x54\xa2\x8a\x9a\x29\x77\x4a\x19\x37\x76\x6c\xfb\x7d\x1b\xc9\x97\xe8\x8a\xc1\x5c\x05\xca\xa3\x25\x88\x8c\xa6\x1c\x15\x00\x29\x47\xb8\xce\xc5\x40\x4b\x3d\xf3\x71\x91\xa2\x94\xcc\xe7\xc0\xa0\x10\xe8\x5a\x5b\xb1\x24\x73\x6b\x80\x64\x8e\x76\x1d\x9f\x69\x60\xe8\x18\x3d\xfb\x78\x75\x73\xf1\xf1\xc3\xe4\xd9\x9e\x37\x0d\x5b\x79\x25\x9e\xe9\x5d\xf5\xf0\x54\xdb\x36\x87\x2a\x88\xc8\xb0\xf1\xa1\xeb\x8a\xea\x86\xfa\xa4\xbf\xd4\x41\xf1\xc8\xdb\xf1\x07\x05\x4f\x19\xa4\x50\x08\x82\x75\xec\xd9\x86\x0d\x7b\xb5\x62\xad\x87\x40\x9f\x1d\x45\x56\xa0\x0d\x1b\x7a\xaf\x69\x1e\x6b\xc4\x7c\x0a\xfb\xb8\x21\x58\x23\x59\x63\x60\x6b\xa1\xfb\x14\xb0\xef\xf1\xc3\xf0\x64\x01\x0d\x80\xef\xf1\xc3\xc9\x02\xd6\x81\x3a\xd5\xc6\xb5\xe1\xcd\xaa\x84\x43\x9d\xbb\xa6\xcc\x31\x29\x50\x92\x61\xc6\x41\x1c\x7f\xba\x79\x37\xfc\x61\x23\x10\x97\x2a\xe5\xcb\x21\x3a\xf0\x4a\x3b\x6b\xaa\x35\x88\x79\x56\xa7\xbf\xf8\xec\x8f\xc1\x67\x2d\x99\x18\x6a\x1c\x5a\x79\x1f\x3a\x03\x61\x54\xef\xb8\x27\x22\xb3\x25\xb1\xf2\xdf\x35\xe5\x9f\x75\xdb\x35\x54\x10\x9b\xe3\xfa\x1d\x61\xed\x88\xb3\xda\x1d\x39\x9a\x40\x42\x5b\x8a\xe5\x1f\x3e\x94\xa8\x3e\x2b\x10\x09\x66\xfc\x6d\xdd\x28\x9f\x3f\xab\xc3\x7f\xbf\x5b\xb0\xcf\x1f\xad\xeb\xd1\xdd\x99\x8e\xb4\xf8\x0f\x8e\xd0\xf9\x5d\xa9\xfc\x87\x88\xa4\xf9\xe3\x51\x60\x7d\xec\xcb\x46\xde\x4c\x25\x8a\x35\xa9\x10\xed\xf0\x1a\x7b\x61\x3f\xf6\x6c\x76\xa7\xdf\xdd\x1d\xc3\x27\x26\xf7\xaf\x89\x64\xb8\xb9\x9c\x20\x5e\x10\x6b\xa4\x71\xe1\x9e\x0e\x07\x95\x12\x47\x8f\x23\x30\xb4\xac\xb8\x40\x38\xbf\xc7\x2b\xae\xd3\xb0\x34\xec\x70\xa0\x27\xd2\x7e\x70\x58\x7c\xf2\xe1\xa2\x86\x60\x0e\x3d\x73\x75\xce\x97\x56\x2c\x01\xa4\x12\xf6\xce\xa9\x44\x89\x88\x51\x13\x87\x66\x04\x87\x19\xe8\xc9\xe4\xf2\x14\x98\x20\x73\x15\x8b\xbb\xf7\xdb\xae\x0d\x5f\x3b\x2e\x0b\x7d\xbb\x40\xc5\xdf\x5f\x12\xab\xf3\xb4\xed\xae\xa8\x54\xa8\xe8\xf1\x51\xa5\x4e\x7d\x92\x38\xf9\x6b\x40\x7e\xb7\x01\xf9\x86\xeb\xe8\x13\x66\xfe\x9f\x2f\x3e\xf5\x4f\xc2\x2e\x8d\xf9\xfb\xf4\x21\xfd\x8f\x0f\x8c\xfd\x93\x0c\xe4\x3a\xad\x46\xa9\x0a\x09\x5d\x2e\xa1\x10\xe8\xea\xed\x7b\xc4\x33\xec\x25\xf2\x77\x57\x0d\x24\xc2\x84\xe2\x71\xab\x80\x2c\xa4\x56\xa0\x4e\xd3\x84\x51\x40\xb8\x48\xbd\xbc\x56\xf5\x1d\x34\xb6\xc5\x6d\xdb\xcc\xa1\x1f\xfd\x28\x47\x1c\x96\xa7\x19\x24\xb7\xbc\x5a\x06\x7a\x17\xcf\xa7\x49\xcd\x63\xa8\xeb\x09\x81\x79\x5c\x19\xd0\xa4\x01\x4d\x65\xc0\xf8\x72\x68\x7d\xf3\xe2\x5d\x95\xe7\xa7\x19\x26\x85\x3f\x41\x1a\xfd\xb2\xb7\x3f\xf4\xf5\x2f\xc4\x24\x06\xb5\xd5\x41\x2e\x70\xa9\x12\xe5\xf5\x3c\xbe\xbf\xd5\xaf\x33\xbd\x03\x46\xe6\x71\xa2\x74\xfb\x68\x51\x67\x68\x6c\x9c\x3e\x27\x95\xc8\x6e\x2e\x27\xca\xed\xd0\x08\xe4\xf5\x43\x8a\xbd\x52\x91\xa0\xeb\x57\x07\xdf\x45\xa5\xd6\xfa\xe6\x3d\xe2\xc9\x36\x46\xa7\x27\xef\x48\x0e\x1f\xf0\x12\x1a\xc8\xc4\x58\xb5\x59\xf9\x0a\x96\x93\xf3\x93\x16\xcb\xea\xf4\xf6\xbd\x9c\xdb\x03\xb4\xc6\xa8\x35\xba\x7a\x80\x4c\x03\x1d\xa3\xdb\x03\xf9\x47\x55\x5d\x67\xd5\xef\x82\x9d\x42\x29\xb2\x0e\xd0\xbd\xb0\xf5\xf1\x5a\x42\x8b\x33\x05\x61\xa3\xb9\xd2\x04\xa2\x86\xfb\x0a\x2f\x82\xd9\xe2\xa5\xe6\x78\xf5\xf7\xef\xd1\xab\xbf\xbf\x46\xc7\x7d\x98\x38\x20\x1b\x4b\xc4\xcd\x16\xbb\x46\x32\x1a\xd4\xc8\x32\xd3\xf7\x34\x44\x8a\xcb\x41\xb3\xee\x78\x79\x07\x32\x9d\xb1\xf0\x7e\x3b\x4f\x0b\x63\x7f\xca\x71\x66\xdb\xd2\x06\x47\x9a\xfd\xe2\xb8\x12\xd9\x95\x5f\x45\x8e\x56\xcf\x49\xe8\x38\x0d\xdc\xa9\xe0\x6b\xed\x9c\x1a\x9d\x94\xe5\x35\xa5\xc2\xe7\x18\xe5\x3a\xa9\x18\x41\xc7\x68\xbc\xd7\x70\x57\x1a\x01\xf2\xdd\xc1\x4b\x85\x54\x17\xb8\x60\x70\x36\xe0\x99\xba\x77\x31\x47\xea\x71\x48\x80\x1e\x1f\xaa\xff\xb6\xdb\xec\x00\x0f\xba\xfc\x50\x82\x84\x42\x10\xdd\x4e\x33\x46\xd9\x4b\x23\x63\x1d\x49\x33\x9a\x6a\x01\xdf\x8a\x09\xee\x70\x19\xaa\x27\x74\x18\xa8\x33\xbb\x41\x5d\x43\x03\x47\xcc\xb7\x06\x3f\x35\x1f\xb5\x45\x3c\x1e\x8c\x6b\xfc\x5a\x8d\x27\x18\x98\x38\xac\xcd\x71\x8f\xb8\x6f\xd5\xf3\x64\x1f\xae\x81\x36\xd1\xb9\x3c\x1b\x4f\x24\x59\x67\x57\x40\xf1\xc6\x6d\xa9\x74\xd2\x91\xa7\x9b\x3c\x26\x01\xf5\x17\x12\xe7\xd2\xeb\x8e\x3b\xb4\x54\xa7\x56\xfc\x52\x82\xb9\x16\xde\xfb\x83\xdd\x70\x6d\x3e\x69\x04\x24\x2b\xbe\x33\x37\x69\xb9\x67\xa0\x5d\xbc\xf6\x08\x48\x7d\xac\xe3\x49\xcc\x6a\xae\xf1\xb1\x87\xb8\x36\x09\x21\xaf\x11\x93\x10\x86\x06\xc2\xd0\x81\xe8\x1e\xae\x76\x63\x1b\x45\xf6\x7f\x09\x12\xdd\x83\xd7\xcb\x98\xc1\x9d\x11\xee\x71\x97\x47\x34\x30\x52\xb9\xaf\xea\x83\x63\xfa\x69\x9e\x2f\x88\x08\x25\x77\x65\x49\xb3\xac\xd1\xa4\x96\xf8\x41\x5f\x16\xe4\xdf\xc1\x32\x08\xe8\xaa\x36\x79\xa3\x37\x34\x5d\x99\xfd\xd3\xa0\xd5\x4b\x95\x56\x43\xa9\x29\xd1\xcb\x89\x6a\x58\x1d\x77\x17\xc5\x30\x8b\xde\x83\x14\x20\xd6\x7b\x11\xd2\x9a\x31\x50\x0b\x80\xc9\xc7\xdd\xcd\x45\x72\xe2\xc6\xe7\xbc\x0a\xc4\x30\x00\x36\x5c\xcd\x82\x13\x39\x65\x74\xb1\x32\xe9\x77\xe4\x66\x6f\x77\xbd\x5d\x60\xcf\x3b\x1d\x39\xb9\x09\x0f\x6e\x22\xbb\x56\x9b\xfc\xc8\xc7\x3a\x94\xa3\xb9\x64\xb7\xbc\xa7\x1d\xcf\x60\x22\x18\x49\xc4\xf0\x86\xe1\x82\xcb\xbd\xf6\x70\x62\xee\x96\x3d\x44\x4b\xfc\x30\xc4\x0b\x38\x0e\x4e\x6b\x4e\x6e\x26\xce\xe7\xde\xd8\x63\xcb\x6f\x17\xfa\x1e\x99\x49\x35\x4b\xe9\x12\x13\x9d\x10\xc8\xde\x2e\x33\xa9\x66\x67\xfa\x6d\xbd\xfd\x8e\xc0\xb8\x32\xfb\x60\x65\x76\x50\x7f\xba\xe2\x0d\x0e\x7d\xec\xe2\x88\x08\xf1\x55\x02\x3f\xc7\x0d\x97\x74\xc1\xcd\x39\x8a\xa7\x1c\x02\xea\x9a\xf8\xcd\x0c\xa2\x4d\x79\xf9\x49\x1b\x35\x2e\x8a\x6b\x97\x7f\x62\x6d\xce\xca\x10\x7d\x47\xa1\xf6\xc9\xa9\x66\x63\x3f\x0a\xee\xdf\x41\xf7\x94\x9b\xec\xba\x60\x1c\xb5\x0d\x3d\x91\x69\x17\xd5\xbb\x6c\xf6\x1b\x9b\x35\x4a\x6d\xd2\x5a\xb6\x21\x67\xcd\x51\x21\xc7\xbe\x62\x1b\x59\x8a\x76\xe4\x66\xfd\xf0\x18\xed\x2e\x40\x98\x08\xaf\x8b\x42\x1f\xd0\x09\xd4\xe2\x91\xf9\x58\xe7\xd3\x69\x40\x1a\x3f\x57\xb0\xa4\x8a\x84\xd5\x85\xb2\x72\x05\x54\x5c\x2b\x32\x40\xb6\xf6\xd2\x7e\x0d\x0c\x33\xae\xd7\x45\x18\xa5\x36\x30\x08\x06\x91\x93\x83\x88\x96\xea\x47\xa2\xf9\xf5\xae\xab\xbc\xab\x8a\x1f\x77\xe6\x57\x31\x11\x6a\x51\x6a\x8d\x9f\xbb\xa4\x27\x48\x50\xa4\x6d\x7e\x09\x2e\xd4\xed\xa3\x49\x46\xe0\x4e\x1f\x8b\x4d\xec\x6d\x11\x75\x82\x5c\x86\x32\x7c\xa7\xaf\x47\x9e\x4c\x2e\x91\x6f\x43\xf1\xce\x0a\xcf\xa9\xbe\x7f\x21\xe6\x5a\xab\xf9\x77\x97\xb2\xc8\xce\xe1\x1d\x65\x09\x4c\x26\x97\x6e\xcd\x7d\x82\x88\x6c\x01\xf3\xe0\xec\xb5\x06\x7b\x1b\x41\xa1\xed\x6c\x2a\x41\x7e\x61\xd1\xe5\x24\x85\xb6\x70\x6d\x65\x8c\x6f\xca\x57\x14\x51\x8a\xa2\x93\xbc\x55\x6b\xdb\xdc\xe0\x69\x52\x9c\xaa\xc3\xbf\xee\x22\x50\xec\x45\xb7\xd9\x48\x42\x0d\x8b\xdc\x41\x0c\x81\xaf\x90\x0a\xc0\x3e\x81\xcd\xe0\x6f\xe8\x78\xdd\x21\x7d\x1b\x42\xa8\xd2\x1a\xac\xcf\x0a\xd0\x6a\xcf\x9a\xa5\xfe\xfe\xb7\xa3\x58\xcf\x62\x5a\x1c\xda\x3c\x85\x80\xc3\x2e\x4c\x4a\xde\xad\xd3\xa1\xce\x13\x8c\x9d\xab\x4c\x84\x19\x42\x29\xdd\xb8\xe1\xdd\x2f\xef\xdd\xe2\x5e\xa7\x3b\x8d\x7c\x9c\xb2\x2a\x07\x25\xae\x9b\xb7\xc2\xdb\x12\xfe\xdf\x23\x39\x2f\x63\x5a\x5c\x03\xb1\x8f\x3f\x9d\x4c\xae\x4e\x29\x03\x29\x6c\x5a\x6c\xba\xbe\x79\x7a\x8f\x79\x39\xf4\xca\x0d\x13\x7b\x48\x7c\xb8\x16\x9d\x08\x89\x7b\x89\xba\x41\x62\xb7\xb0\xc2\x86\x09\xde\xfc\x8a\x72\xd6\xff\x8a\x3c\x6d\x31\xf1\x10\x33\xbb\x3e\x99\x9d\x22\x16\x12\xa4\x73\x88\xab\x78\x05\x4b\x86\x3a\x05\x40\x60\xdc\x08\xf5\x9a\x4a\x64\xd3\xe0\xf6\x57\xd4\x34\xb1\x1c\x75\x56\x90\x5a\x82\x7c\xa7\x4a\x4f\x75\xb2\xd7\x3a\x71\xa3\x49\xbf\x0c\xc2\x7c\x69\xc0\xa9\x6f\x9c\x73\xcf\x04\xc4\xf0\xd4\x40\xf1\x40\x36\x79\x65\xe8\x8e\x28\xa5\x0f\xfb\x68\x27\x27\x3a\x39\x98\x33\x85\xd9\xa3\x13\x36\xd4\xaf\x8f\x31\x74\xed\xd6\xfb\xe1\x93\xf9\xb1\x63\x4f\x31\x21\x8b\x82\x14\x7a\x67\x11\xd4\xf2\x05\xeb\xc1\x0b\x6d\xd8\x72\x3d\x90\xb5\x64\x9d\x0d\x80\x6e\xa4\x8a\xaa\x05\x9f\xe8\x9b\xc7\x1d\x31\x9c\x5a\x83\xfd\x14\x70\x75\xda\xb7\x7d\x94\x30\x90\x1f\x82\x44\x6f\x21\xed\x54\x06\x3f\x4b\x7b\x97\x97\xad\x97\xe2\xd6\x40\xaa\x0a\xaa\xf4\x84\x1a\x4a\x17\xfc\x6e\xf5\xb2\x49\xf8\x37\x98\x93\xe4\x8c\x2c\x80\x0b\x4d\x26\x29\x70\x20\x36\x8c\xc6\x17\xd9\x59\x53\x67\x2f\x9e\xc9\xb7\x83\xd6\x4e\x40\x32\xa6\xfa\xd4\xd8\x39\x37\x81\x5c\x03\xce\x97\x6d\x9d\xad\xae\x3f\xad\x38\x30\x2d\x45\x7b\x01\xbd\x23\x79\x7c\xa7\x1b\x4b\x56\x20\xa1\xa7\xaa\xee\xaf\x40\x4f\x03\xf8\xd5\xf8\xb5\xa7\x50\xcb\xe2\x22\x01\x50\x46\x7e\xd1\xdc\x32\x68\x1b\x1b\x36\x19\xf8\xfa\x14\x81\xfa\x33\x12\x88\x61\x6a\x79\x47\xfd\xf5\x09\xff\x1e\x3e\xed\x6e\xb8\xc3\x8a\xae\x55\x8d\xd1\xa7\xeb\xcb\xf8\xde\xbc\x62\x04\xfd\xbf\xe7\xbe\x3d\xa0\x67\x81\x68\x98\xd4\x0d\x6c\x77\x70\x28\xfa\x35\x26\x10\x36\xea\x56\x9f\x75\xc8\x7f\xfe\xb8\x96\xa2\x46\xbb\x5f\xc7\x6a\xa4\x13\x45\xae\x5c\x02\x9e\x8a\x83\xde\x36\x23\xcc\xb5\x4d\x59\x50\x77\x02\x76\x1f\xcd\x2a\x61\x2e\x2a\xa0\x77\xc0\x18\x49\xfd\x5c\x96\x1b\x70\x90\xdd\x0b\xff\x28\x9b\x68\xb1\x50\x6b\xe6\x74\x18\xb5\xc3\x31\x0a\x60\x46\x87\x68\x23\xbb\x68\x47\x5b\x0d\x35\x7a\x23\xa2\x6e\xa3\x2b\xcc\xf5\x56\x1a\x1e\x04\xc3\x89\x8a\x7e\xd0\x9e\x54\xdf\xd1\x2b\xa8\x2a\x63\x4e\x36\xad\xa1\xe1\xd3\x5c\xd2\x35\x8c\x4e\x77\x34\xe6\x5c\xbe\xbb\xa1\xee\xf6\xd4\x75\x24\xe2\x3c\x1f\xea\x6e\x0c\x65\x37\x1c\x89\x3c\x3f\xb6\xbe\xb0\x55\x47\x2a\x7c\xd9\x38\x74\x34\xd2\x2d\x36\x37\x85\xe6\x07\x2c\xf8\x28\xeb\xf7\x6b\x7c\x0a\x1e\x9c\xd4\x33\x6e\xfb\x70\xf8\x34\x8d\x64\xc7\xf9\x8a\x5d\xde\xb4\x73\x4f\xa9\xe7\x77\x66\xc3\x95\x69\x1b\xa9\xdd\x08\xba\x87\x19\xd7\x97\x5c\xd6\xd7\x24\xf2\x8d\x7d\x0f\xfe\xf3\xc9\xdc\xad\xe8\xd1\xd5\xbf\x87\x31\xba\xad\xf3\x16\x46\xdb\xb8\xd9\xe2\xa5\x4f\xf0\x80\xf8\x8f\x77\xab\x67\xdd\x54\xb4\x9d\xf3\xf0\x1e\x0c\x9f\x5e\x4f\xf4\xc0\xf4\xb7\x1f\xb9\x7f\xf2\xcb\xfc\x84\xff\x1a\x4a\x4d\x68\x78\x71\x15\xb6\xe8\x67\x98\xee\xdd\x3b\xaf\xb9\x62\xac\xa7\xdd\xfa\x46\x3c\x59\xde\xb6\x1b\xbb\x08\xec\xcb\x68\xd9\xd5\x42\x5f\xcf\x36\x91\x1b\x3e\x5c\x6f\x65\xe8\x5d\x0d\x7a\x81\xa8\xd0\x3e\x03\xc4\x5d\xad\xf7\x94\xfa\xea\xd2\x4a\xaf\x7e\x8f\xfb\x38\x02\x28\xea\xd6\x7e\x82\x93\xb6\xc3\x95\x1d\x45\xa5\x6b\x2d\x74\xf7\xd4\x36\x06\x6d\x63\xdc\xc3\xa1\x8e\x5f\x9b\x6a\x59\x36\x7a\x75\x6a\x0b\xb7\x25\x11\x64\x21\x97\xe2\xf3\x9b\x9b\x2b\xfa\xb0\x42\x3f\x56\x79\x01\x0c\xcf\x48\x4e\xc4\xaa\x51\xd8\x5a\xd6\xee\xef\xef\x47\x3a\xfb\x5f\x42\x97\xe3\x59\x4e\x17\x63\x03\x87\x14\x8b\xa1\xc8\x60\xa8\x6e\x53\x79\x58\x0d\xef\x7c\x68\xc3\x7b\x22\x32\x93\x6d\xb0\xbf\xcb\x3a\xa6\xb5\xf5\xb4\x22\x29\x5a\x37\xe3\x0b\x8a\xec\xfd\xfa\x7a\xd5\xef\xd8\x98\x7a\xd7\xe4\xe7\x79\x5f\x4e\x80\x28\x7a\x9f\x23\xb7\xe7\x3b\x1c\x3f\x87\xb7\xe8\x7b\x6d\x77\x4b\x2a\x23\xe6\x22\x39\x1f\xbc\xea\x4d\xa5\xdc\x88\xcb\x3a\x05\x04\x8f\xb3\x70\x91\xf6\xc0\x8d\x83\x9e\x40\x91\xae\x81\xcb\x00\x3f\x1d\xee\x35\xe0\x10\x6e\x04\xb0\xd6\xfa\xfb\x82\x32\x63\x3b\x14\xf5\xef\x1b\x57\xb5\x45\x7e\x1f\x76\xe7\xd6\xa7\x6b\xf7\xe3\x6f\x2a\x7a\xe0\xf6\x45\xb5\xbd\xfa\x42\xc8\x2e\x12\xa9\x93\x2a\x31\xb8\x26\xa0\xa1\x41\x8f\x08\xf8\x78\xc4\x82\xff\xa8\xe8\x85\x28\xcb\xd2\x5b\x02\x53\xed\xeb\x8d\xd6\x8c\xb2\xac\xac\xa4\x3d\xc1\x1d\x5e\x78\x03\x57\x6d\x9e\xe3\x4f\x27\xdc\x30\xa3\x9d\x7d\xb6\xd1\x45\xa1\x6e\x1b\x47\x74\x8e\x4c\x5e\x0d\xc1\x56\x4a\x20\x17\xf0\x20\xbc\x0b\xab\xb4\x5f\x68\x06\x73\xca\xc0\xec\xd1\x95\x0f\xac\xd0\xf5\x22\xd8\x4a\x00\xce\xed\xd9\x85\xad\x12\xd2\x1f\xe0\x41\xb8\x7d\x46\x13\xff\xf0\x63\x1d\x11\x2f\xd8\xea\x03\x2d\x2e\x52\x58\x96\x54\xd8\x30\xd4\x98\x97\x4f\xfb\x8b\x68\x91\xaf\xd0\x3d\x65\xb7\xdc\xda\x01\x4d\x6e\x49\x44\xb8\xda\x4a\x25\x74\x59\x32\xe0\x1c\xd2\xae\x4d\x6b\x24\xc4\x2f\x4d\xdf\x60\x0e\x11\xeb\xe6\xa6\x7a\xdd\x89\xca\x1e\x32\x54\x29\xae\x2c\x07\x6f\x6c\x04\x1a\x3f\x47\x27\x69\x8a\x70\xb1\xf2\xb3\x42\x84\x91\xf4\xfa\x0c\x76\xbc\x4f\x81\xfe\x5a\xd7\xf1\x42\x3d\xd7\x6c\x3b\xed\x68\x58\x4f\x44\x2c\x92\x14\x7d\xc5\xcc\xca\x16\xef\x8e\x76\x37\x36\x62\x69\x63\xf0\xbd\xbe\x47\x5b\xae\x02\xb5\x97\x57\x3b\x02\x04\x45\xd8\xfa\x22\xad\xf5\xc3\xec\xc4\xf7\x55\xbd\x34\x0d\xef\x10\xb1\x8b\x6c\x97\x9f\x37\xc3\xfc\x8a\xc1\x9c\x3c\x04\x66\x44\x05\x10\x0d\x74\x43\xcd\x64\x26\xc3\xc1\x7a\x1b\x88\x7e\x22\x19\x6e\xbe\x6f\xfa\x57\x7e\xd3\xb4\x36\xff\x21\x29\x69\x36\xe2\x8d\x4e\xf3\x94\x19\xae\x98\x25\x45\x49\x31\x7d\x3a\x48\x05\x4a\x6d\x1a\xc7\xa1\xde\x9b\x4b\x33\x83\x29\xd8\x6d\xc1\x35\x41\x03\xbb\x81\xf9\xde\x5b\xe7\xad\x31\x54\x45\x35\x0e\x0c\x4b\x0d\xf6\x36\xad\x40\xe7\xf3\x41\x3b\x4c\xc0\xae\xb7\xe1\x4d\xc0\xed\xa7\x4b\xf9\x08\xda\x78\xd2\xce\xf8\xab\xb5\xb9\xb6\xdc\x0d\xdd\xd0\x84\xdf\x81\xef\x36\xfa\x40\x11\xb8\x0c\x7b\xf8\x0e\x93\x5c\xf9\x4a\x6d\x24\x88\x91\x2d\x41\x25\x63\xec\x6e\xcd\xd6\x27\xb6\xec\x62\xdf\x53\x28\x08\xa4\x23\x74\x0d\x98\x53\x93\x38\xc5\x75\xfa\x4c\x7d\x6c\xd6\xde\x1c\x85\xfe\x23\x60\x1d\xe1\xec\x1d\x47\xde\xc2\x13\x32\x3a\x61\x37\x52\x69\xe7\xd5\xd9\xb0\x24\xa7\x55\x2a\x59\xe0\x8e\x28\xb1\x6a\x23\x41\x24\x1d\x2b\xad\xae\xf4\x1e\x76\x8f\xc6\xce\xdb\xc2\xe7\xbf\x4d\x7a\x70\xe3\x7d\x6e\x9c\x7b\xd3\xf9\x52\xf4\x25\xb4\x52\xb2\xa8\x2c\xfa\x84\xa3\x19\xc8\x35\x67\x49\x0b\x22\x28\x83\xd4\x83\xa2\xf2\xa9\x48\xbd\xca\x78\x3c\x11\xa7\x73\x71\x2f\x57\xaa\xdd\x9c\xdc\x02\xe2\x2b\x9e\x92\xc5\x5e\xbb\x7f\x7d\x69\xc9\xb5\x5d\xfe\xc5\xcb\xbf\x99\x3b\xf6\xba\x0c\x3a\xcd\x93\xbc\xba\xde\xe1\x61\xf3\xea\x2f\xfb\xa4\x20\x95\x8f\xbc\x99\xb3\xed\x4b\x52\x86\x87\xac\x53\x67\xa5\xb1\x7f\xfe\xff\x00\x00\x00\xff\xff\xdd\xe6\xaf\x37\x17\xa1\x00\x00") func etcNginxTemplateNginxTmplBytes() ([]byte, error) { return bindataRead( @@ -105,7 +168,7 @@ func etcNginxTemplateNginxTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "etc/nginx/template/nginx.tmpl", size: 40070, mode: os.FileMode(420), modTime: time.Unix(1517597409, 0)} + info := bindataFileInfo{name: "etc/nginx/template/nginx.tmpl", size: 41239, mode: os.FileMode(420), modTime: time.Unix(1520400310, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -125,7 +188,7 @@ func ingressControllerCleanNginxConfSh() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "ingress-controller/clean-nginx-conf.sh", size: 901, mode: os.FileMode(493), modTime: time.Unix(1516916602, 0)} + info := bindataFileInfo{name: "ingress-controller/clean-nginx-conf.sh", size: 901, mode: os.FileMode(493), modTime: time.Unix(1519920732, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -182,6 +245,9 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ + "etc/nginx/lua/balancer.lua": etcNginxLuaBalancerLua, + "etc/nginx/lua/configuration.lua": etcNginxLuaConfigurationLua, + "etc/nginx/lua/util.lua": etcNginxLuaUtilLua, "etc/nginx/nginx.conf": etcNginxNginxConf, "etc/nginx/template/nginx.tmpl": etcNginxTemplateNginxTmpl, "ingress-controller/clean-nginx-conf.sh": ingressControllerCleanNginxConfSh, @@ -229,6 +295,11 @@ type bintree struct { var _bintree = &bintree{nil, map[string]*bintree{ "etc": &bintree{nil, map[string]*bintree{ "nginx": &bintree{nil, map[string]*bintree{ + "lua": &bintree{nil, map[string]*bintree{ + "balancer.lua": &bintree{etcNginxLuaBalancerLua, map[string]*bintree{}}, + "configuration.lua": &bintree{etcNginxLuaConfigurationLua, map[string]*bintree{}}, + "util.lua": &bintree{etcNginxLuaUtilLua, map[string]*bintree{}}, + }}, "nginx.conf": &bintree{etcNginxNginxConf, map[string]*bintree{}}, "template": &bintree{nil, map[string]*bintree{ "nginx.tmpl": &bintree{etcNginxTemplateNginxTmpl, map[string]*bintree{}}, diff --git a/internal/ingress/controller/config/config.go b/internal/ingress/controller/config/config.go index f5615a9cb0..9885512da0 100644 --- a/internal/ingress/controller/config/config.go +++ b/internal/ingress/controller/config/config.go @@ -599,23 +599,24 @@ func (cfg Configuration) BuildLogFormatUpstream() string { // TemplateConfig contains the nginx configuration to render the file nginx.conf type TemplateConfig struct { - ProxySetHeaders map[string]string - AddHeaders map[string]string - MaxOpenFiles int - BacklogSize int - Backends []*ingress.Backend - PassthroughBackends []*ingress.SSLPassthroughBackend - Servers []*ingress.Server - TCPBackends []ingress.L4Service - UDPBackends []ingress.L4Service - HealthzURI string - CustomErrors bool - Cfg Configuration - IsIPV6Enabled bool - IsSSLPassthroughEnabled bool - RedirectServers map[string]string - ListenPorts *ListenPorts - PublishService *apiv1.Service + ProxySetHeaders map[string]string + AddHeaders map[string]string + MaxOpenFiles int + BacklogSize int + Backends []*ingress.Backend + PassthroughBackends []*ingress.SSLPassthroughBackend + Servers []*ingress.Server + TCPBackends []ingress.L4Service + UDPBackends []ingress.L4Service + HealthzURI string + CustomErrors bool + Cfg Configuration + IsIPV6Enabled bool + IsSSLPassthroughEnabled bool + RedirectServers map[string]string + ListenPorts *ListenPorts + PublishService *apiv1.Service + DynamicConfigurationEnabled bool } // ListenPorts describe the ports required to run the diff --git a/internal/ingress/controller/controller.go b/internal/ingress/controller/controller.go index 879cf3a267..55482ce19a 100644 --- a/internal/ingress/controller/controller.go +++ b/internal/ingress/controller/controller.go @@ -95,6 +95,8 @@ type Configuration struct { FakeCertificateSHA string SyncRateLimit float32 + + DynamicConfigurationEnabled bool } // GetPublishService returns the configured service used to set ingress status @@ -167,11 +169,21 @@ func (n *NGINXController) syncIngress(item interface{}) error { if !n.isForceReload() && n.runningConfig.Equal(&pcfg) { glog.V(3).Infof("skipping backend reload (no changes detected)") return nil + } else if !n.isForceReload() && n.cfg.DynamicConfigurationEnabled && n.IsDynamicallyConfigurable(&pcfg) { + err := n.ConfigureDynamically(&pcfg) + if err == nil { + glog.Infof("dynamic reconfiguration succeeded, skipping reload") + n.OnUpdate(pcfg, true) + n.runningConfig = &pcfg + return nil + } + + glog.Warningf("falling back to reload, could not dynamically reconfigure: %v", err) } glog.Infof("backend reload required") - err := n.OnUpdate(pcfg) + err := n.OnUpdate(pcfg, false) if err != nil { incReloadErrorCount() glog.Errorf("unexpected failure restarting the backend: \n%v", err) @@ -182,6 +194,19 @@ func (n *NGINXController) syncIngress(item interface{}) error { incReloadCount() setSSLExpireTime(servers) + if n.isForceReload() && n.cfg.DynamicConfigurationEnabled { + go func() { + // it takes time for Nginx to start listening on the port + time.Sleep(1 * time.Second) + err := n.ConfigureDynamically(&pcfg) + if err == nil { + glog.Infof("dynamic reconfiguration succeeded") + } else { + glog.Warningf("could not dynamically reconfigure: %v", err) + } + }() + } + n.runningConfig = &pcfg n.SetForceReload(false) diff --git a/internal/ingress/controller/nginx.go b/internal/ingress/controller/nginx.go index ef3e53735b..068b78dabd 100644 --- a/internal/ingress/controller/nginx.go +++ b/internal/ingress/controller/nginx.go @@ -18,10 +18,12 @@ package controller import ( "bytes" + "encoding/json" "errors" "fmt" "io/ioutil" "net" + "net/http" "os" "os/exec" "strconv" @@ -448,7 +450,7 @@ Error: %v // // returning nill implies the backend will be reloaded. // if an error is returned means requeue the update -func (n *NGINXController) OnUpdate(ingressCfg ingress.Configuration) error { +func (n *NGINXController) OnUpdate(ingressCfg ingress.Configuration, skipReload bool) error { cfg := n.store.GetBackendConfiguration() cfg.Resolver = n.resolver @@ -602,23 +604,24 @@ func (n *NGINXController) OnUpdate(ingressCfg ingress.Configuration) error { cfg.SSLDHParam = sslDHParam tc := ngx_config.TemplateConfig{ - ProxySetHeaders: setHeaders, - AddHeaders: addHeaders, - MaxOpenFiles: maxOpenFiles, - BacklogSize: sysctlSomaxconn(), - Backends: ingressCfg.Backends, - PassthroughBackends: ingressCfg.PassthroughBackends, - Servers: ingressCfg.Servers, - TCPBackends: ingressCfg.TCPEndpoints, - UDPBackends: ingressCfg.UDPEndpoints, - HealthzURI: ngxHealthPath, - CustomErrors: len(cfg.CustomHTTPErrors) > 0, - Cfg: cfg, - IsIPV6Enabled: n.isIPV6Enabled && !cfg.DisableIpv6, - RedirectServers: redirectServers, - IsSSLPassthroughEnabled: n.cfg.EnableSSLPassthrough, - ListenPorts: n.cfg.ListenPorts, - PublishService: n.GetPublishService(), + ProxySetHeaders: setHeaders, + AddHeaders: addHeaders, + MaxOpenFiles: maxOpenFiles, + BacklogSize: sysctlSomaxconn(), + Backends: ingressCfg.Backends, + PassthroughBackends: ingressCfg.PassthroughBackends, + Servers: ingressCfg.Servers, + TCPBackends: ingressCfg.TCPEndpoints, + UDPBackends: ingressCfg.UDPEndpoints, + HealthzURI: ngxHealthPath, + CustomErrors: len(cfg.CustomHTTPErrors) > 0, + Cfg: cfg, + IsIPV6Enabled: n.isIPV6Enabled && !cfg.DisableIpv6, + RedirectServers: redirectServers, + IsSSLPassthroughEnabled: n.cfg.EnableSSLPassthrough, + ListenPorts: n.cfg.ListenPorts, + PublishService: n.GetPublishService(), + DynamicConfigurationEnabled: n.cfg.DynamicConfigurationEnabled, } content, err := n.t.Write(tc) @@ -664,9 +667,11 @@ func (n *NGINXController) OnUpdate(ingressCfg ingress.Configuration) error { return err } - o, err := exec.Command(n.binary, "-s", "reload", "-c", cfgPath).CombinedOutput() - if err != nil { - return fmt.Errorf("%v\n%v", err, string(o)) + if !skipReload { + o, err := exec.Command(n.binary, "-s", "reload", "-c", cfgPath).CombinedOutput() + if err != nil { + return fmt.Errorf("%v\n%v", err, string(o)) + } } return nil @@ -741,3 +746,54 @@ func (n *NGINXController) setupSSLProxy() { } }() } + +// IsDynamicallyConfigurable decides if the new configuration can be dynamically configured without reloading +func (n *NGINXController) IsDynamicallyConfigurable(pcfg *ingress.Configuration) bool { + runningBackends := make([]*ingress.Backend, 0, len(n.runningConfig.Backends)) + newBackends := make([]*ingress.Backend, 0, len(pcfg.Backends)) + + for i := 0; i < len(n.runningConfig.Backends); i++ { + runningBackends = append(runningBackends, n.runningConfig.Backends[i].DeepCopy()) + } + + for i := 0; i < len(pcfg.Backends); i++ { + newBackends = append(newBackends, pcfg.Backends[i].DeepCopy()) + } + + n.runningConfig.Backends = []*ingress.Backend{} + pcfg.Backends = []*ingress.Backend{} + + ret := n.runningConfig.Equal(pcfg) + + n.runningConfig.Backends = runningBackends + pcfg.Backends = newBackends + + return ret +} + +// ConfigureDynamically JSON encodes new Backends and POSTs it to an internal HTTP endpoint +// that is handled by Lua +func (n *NGINXController) ConfigureDynamically(pcfg *ingress.Configuration) error { + buf, err := json.Marshal(pcfg.Backends) + if err != nil { + return err + } + + url := fmt.Sprintf("http://localhost:%d/configuration/backends", n.cfg.ListenPorts.Status) + resp, err := http.Post(url, "application/json", bytes.NewReader(buf)) + if err != nil { + return err + } + + defer func() { + if err := resp.Body.Close(); err != nil { + glog.Warningf("error while closing response body: \n%v", err) + } + }() + + if resp.StatusCode != http.StatusCreated { + return fmt.Errorf("Unexpected error code: %d", resp.StatusCode) + } + + return nil +} diff --git a/internal/ingress/controller/nginx_test.go b/internal/ingress/controller/nginx_test.go index 4b85ed2fc8..cd0eaa266e 100644 --- a/internal/ingress/controller/nginx_test.go +++ b/internal/ingress/controller/nginx_test.go @@ -16,7 +16,67 @@ limitations under the License. package controller -import "testing" +import ( + "testing" + + "k8s.io/ingress-nginx/internal/ingress" +) + +func TestIsDynamicallyConfigurable(t *testing.T) { + backends := []*ingress.Backend{{ + Name: "fakenamespace-myapp-80", + Endpoints: []ingress.Endpoint{ + { + Address: "10.0.0.1", + Port: "8080", + }, + { + Address: "10.0.0.2", + Port: "8080", + }, + }, + }} + + servers := []*ingress.Server{{ + Hostname: "myapp.fake", + Locations: []*ingress.Location{ + { + Path: "/", + Backend: "fakenamespace-myapp-80", + }, + }, + }} + + commonConfig := &ingress.Configuration{ + Backends: backends, + Servers: servers, + } + + n := &NGINXController{ + runningConfig: commonConfig, + } + + newConfig := commonConfig + if !n.IsDynamicallyConfigurable(newConfig) { + t.Errorf("When new config is same as the running config it should be deemed as dynamically configurable") + } + + newConfig = &ingress.Configuration{ + Backends: []*ingress.Backend{{}}, + Servers: []*ingress.Server{{}}, + } + if n.IsDynamicallyConfigurable(newConfig) { + t.Errorf("Expected to not be dynamically configurable when there's more than just backends change") + } + + newConfig = &ingress.Configuration{ + Backends: []*ingress.Backend{{}}, + Servers: servers, + } + if !n.IsDynamicallyConfigurable(newConfig) { + t.Errorf("Expected to be dynamically configurable when only backends change") + } +} func TestNginxHashBucketSize(t *testing.T) { tests := []struct { diff --git a/internal/ingress/controller/template/template.go b/internal/ingress/controller/template/template.go index e17f300ff4..c80cd6b029 100644 --- a/internal/ingress/controller/template/template.go +++ b/internal/ingress/controller/template/template.go @@ -281,7 +281,7 @@ func buildLogFormatUpstream(input interface{}) string { // (specified through the nginx.ingress.kubernetes.io/rewrite-to annotation) // If the annotation nginx.ingress.kubernetes.io/add-base-url:"true" is specified it will // add a base tag in the head of the response from the service -func buildProxyPass(host string, b interface{}, loc interface{}) string { +func buildProxyPass(host string, b interface{}, loc interface{}, dynamicConfigurationEnabled bool) string { backends, ok := b.([]*ingress.Backend) if !ok { glog.Errorf("expected an '[]*ingress.Backend' type but %T was returned", b) @@ -297,23 +297,28 @@ func buildProxyPass(host string, b interface{}, loc interface{}) string { path := location.Path proto := "http" - upstreamName := location.Backend - for _, backend := range backends { - if backend.Name == location.Backend { - if backend.Secure || backend.SSLPassthrough { - proto = "https" - } + upstreamName := "upstream_balancer" - if isSticky(host, location, backend.SessionAffinity.CookieSessionAffinity.Locations) { - upstreamName = fmt.Sprintf("sticky-%v", upstreamName) - } + if !dynamicConfigurationEnabled { + upstreamName = location.Backend + for _, backend := range backends { + if backend.Name == location.Backend { + if backend.Secure || backend.SSLPassthrough { + proto = "https" + } - break + if isSticky(host, location, backend.SessionAffinity.CookieSessionAffinity.Locations) { + upstreamName = fmt.Sprintf("sticky-%v", upstreamName) + } + + break + } } } // defProxyPass returns the default proxy_pass, just the name of the upstream defProxyPass := fmt.Sprintf("proxy_pass %s://%s;", proto, upstreamName) + // if the path in the ingress rule is equals to the target: no special rewrite if path == location.Rewrite.Target { return defProxyPass diff --git a/internal/ingress/controller/template/template_test.go b/internal/ingress/controller/template/template_test.go index 6502999155..0813b97d30 100644 --- a/internal/ingress/controller/template/template_test.go +++ b/internal/ingress/controller/template/template_test.go @@ -39,70 +39,201 @@ import ( var ( // TODO: add tests for secure endpoints tmplFuncTestcases = map[string]struct { - Path string - Target string - Location string - ProxyPass string - AddBaseURL bool - BaseURLScheme string - Sticky bool - XForwardedPrefix bool + Path string + Target string + Location string + ProxyPass string + AddBaseURL bool + BaseURLScheme string + Sticky bool + XForwardedPrefix bool + DynamicConfigurationEnabled bool }{ - "invalid redirect / to /": {"/", "/", "/", "proxy_pass http://upstream-name;", false, "", false, false}, - "redirect / to /jenkins": {"/", "/jenkins", "~* /", + "invalid redirect / to / with dynamic config enabled": { + "/", + "/", + "/", + "proxy_pass http://upstream_balancer;", + false, + "", + false, + false, + true}, + "invalid redirect / to /": { + "/", + "/", + "/", + "proxy_pass http://upstream-name;", + false, + "", + false, + false, + false}, + "redirect / to /jenkins": { + "/", + "/jenkins", + "~* /", ` rewrite /(.*) /jenkins/$1 break; proxy_pass http://upstream-name; - `, false, "", false, false}, - "redirect /something to /": {"/something", "/", `~* ^/something\/?(?.*)`, ` + `, + false, + "", + false, + false, + false}, + "redirect /something to /": { + "/something", + "/", + `~* ^/something\/?(?.*)`, + ` rewrite /something/(.*) /$1 break; rewrite /something / break; proxy_pass http://upstream-name; - `, false, "", false, false}, - "redirect /end-with-slash/ to /not-root": {"/end-with-slash/", "/not-root", "~* ^/end-with-slash/(?.*)", ` + `, + false, + "", + false, + false, + false}, + "redirect /end-with-slash/ to /not-root": { + "/end-with-slash/", + "/not-root", + "~* ^/end-with-slash/(?.*)", + ` rewrite /end-with-slash/(.*) /not-root/$1 break; proxy_pass http://upstream-name; - `, false, "", false, false}, - "redirect /something-complex to /not-root": {"/something-complex", "/not-root", `~* ^/something-complex\/?(?.*)`, ` + `, + false, + "", + false, + false, + false}, + "redirect /something-complex to /not-root": { + "/something-complex", + "/not-root", + `~* ^/something-complex\/?(?.*)`, + ` rewrite /something-complex/(.*) /not-root/$1 break; proxy_pass http://upstream-name; - `, false, "", false, false}, - "redirect / to /jenkins and rewrite": {"/", "/jenkins", "~* /", ` + `, + false, + "", + false, + false, + false}, + "redirect / to /jenkins and rewrite": { + "/", + "/jenkins", + "~* /", + ` rewrite /(.*) /jenkins/$1 break; proxy_pass http://upstream-name; subs_filter '(<(?:H|h)(?:E|e)(?:A|a)(?:D|d)(?:[^">]|"[^"]*")*>)' '$1' ro; - `, true, "", false, false}, - "redirect /something to / and rewrite": {"/something", "/", `~* ^/something\/?(?.*)`, ` + `, + true, + "", + false, + false, + false}, + "redirect /something to / and rewrite": { + "/something", + "/", + `~* ^/something\/?(?.*)`, + ` rewrite /something/(.*) /$1 break; rewrite /something / break; proxy_pass http://upstream-name; subs_filter '(<(?:H|h)(?:E|e)(?:A|a)(?:D|d)(?:[^">]|"[^"]*")*>)' '$1' ro; - `, true, "", false, false}, - "redirect /end-with-slash/ to /not-root and rewrite": {"/end-with-slash/", "/not-root", `~* ^/end-with-slash/(?.*)`, ` + `, + true, + "", + false, + false, + false}, + "redirect /end-with-slash/ to /not-root and rewrite": { + "/end-with-slash/", + "/not-root", + `~* ^/end-with-slash/(?.*)`, + ` rewrite /end-with-slash/(.*) /not-root/$1 break; proxy_pass http://upstream-name; subs_filter '(<(?:H|h)(?:E|e)(?:A|a)(?:D|d)(?:[^">]|"[^"]*")*>)' '$1' ro; - `, true, "", false, false}, - "redirect /something-complex to /not-root and rewrite": {"/something-complex", "/not-root", `~* ^/something-complex\/?(?.*)`, ` + `, + true, + "", + false, + false, + false}, + "redirect /something-complex to /not-root and rewrite": { + "/something-complex", + "/not-root", + `~* ^/something-complex\/?(?.*)`, + ` rewrite /something-complex/(.*) /not-root/$1 break; proxy_pass http://upstream-name; subs_filter '(<(?:H|h)(?:E|e)(?:A|a)(?:D|d)(?:[^">]|"[^"]*")*>)' '$1' ro; - `, true, "", false, false}, - "redirect /something to / and rewrite with specific scheme": {"/something", "/", `~* ^/something\/?(?.*)`, ` + `, + true, + "", + false, + false, + false}, + "redirect /something to / and rewrite with specific scheme": { + "/something", + "/", + `~* ^/something\/?(?.*)`, + ` rewrite /something/(.*) /$1 break; rewrite /something / break; proxy_pass http://upstream-name; subs_filter '(<(?:H|h)(?:E|e)(?:A|a)(?:D|d)(?:[^">]|"[^"]*")*>)' '$1' ro; - `, true, "http", false, false}, - "redirect / to /something with sticky enabled": {"/", "/something", `~* /`, ` + `, + true, + "http", + false, + false, + false}, + "redirect / to /something with sticky enabled": { + "/", + "/something", + `~* /`, + ` rewrite /(.*) /something/$1 break; proxy_pass http://sticky-upstream-name; - `, false, "http", true, false}, - "add the X-Forwarded-Prefix header": {"/there", "/something", `~* ^/there\/?(?.*)`, ` + `, + false, + "http", + true, + false, + false}, + "redirect / to /something with sticky and dynamic config enabled": { + "/", + "/something", + `~* /`, + ` + rewrite /(.*) /something/$1 break; + proxy_pass http://upstream_balancer; + `, + false, + "http", + true, + false, + true}, + "add the X-Forwarded-Prefix header": { + "/there", + "/something", + `~* ^/there\/?(?.*)`, + ` rewrite /there/(.*) /something/$1 break; proxy_set_header X-Forwarded-Prefix "/there/"; proxy_pass http://sticky-upstream-name; - `, false, "http", true, true}, + `, + false, + "http", + true, + true, + false}, } ) @@ -168,7 +299,7 @@ func TestBuildProxyPass(t *testing.T) { } } - pp := buildProxyPass(defaultHost, backends, loc) + pp := buildProxyPass(defaultHost, backends, loc, tc.DynamicConfigurationEnabled) if !strings.EqualFold(tc.ProxyPass, pp) { t.Errorf("%s: expected \n'%v'\nbut returned \n'%v'", k, tc.ProxyPass, pp) } diff --git a/rootfs/etc/nginx/lua/balancer.lua b/rootfs/etc/nginx/lua/balancer.lua new file mode 100644 index 0000000000..be07405e13 --- /dev/null +++ b/rootfs/etc/nginx/lua/balancer.lua @@ -0,0 +1,107 @@ +local ngx_balancer = require("ngx.balancer") +local json = require("cjson") +local configuration = require("configuration") +local util = require("util") +local lrucache = require("resty.lrucache") +local resty_lock = require("resty.lock") + +-- measured in seconds +-- for an Nginx worker to pick up the new list of upstream peers +-- it will take + BACKENDS_SYNC_INTERVAL +local BACKENDS_SYNC_INTERVAL = 1 + +ROUND_ROBIN_LOCK_KEY = "round_robin" + +local round_robin_state = ngx.shared.round_robin_state + +local _M = {} + +local round_robin_lock = resty_lock:new("locks", {timeout = 0, exptime = 0.1}) + +local backends, err = lrucache.new(1024) +if not backends then + return error("failed to create the cache for backends: " .. (err or "unknown")) +end + +local function balance() + local backend_name = ngx.var.proxy_upstream_name + local backend = backends:get(backend_name) + -- lb_alg field does not exist for ingress.Backend struct for now, so lb_alg + -- will always be round_robin + local lb_alg = backend.lb_alg or "round_robin" + + if lb_alg == "ip_hash" then + -- TODO(elvinefendi) implement me + return backend.endpoints[0].address, backend.endpoints[0].port + end + + -- Round-Robin + round_robin_lock:lock(backend_name .. ROUND_ROBIN_LOCK_KEY) + local index = round_robin_state:get(backend_name) + local index, endpoint = next(backend.endpoints, index) + if not index then + index = 1 + endpoint = backend.endpoints[index] + end + round_robin_state:set(backend_name, index) + round_robin_lock:unlock(backend_name .. ROUND_ROBIN_LOCK_KEY) + + return endpoint.address, endpoint.port +end + +local function sync_backend(backend) + backends:set(backend.name, backend) + + -- also reset the respective balancer state since backend has changed + round_robin_state:delete(backend.name) + + ngx.log(ngx.INFO, "syncronization completed for: " .. backend.name) +end + +local function sync_backends() + local backends_data = configuration.get_backends_data() + if not backends_data then + return + end + + local ok, new_backends = pcall(json.decode, backends_data) + if not ok then + ngx.log(ngx.ERR, "could not parse backends data: " .. tostring(new_backends)) + return + end + + for _, new_backend in pairs(new_backends) do + local backend = backends:get(new_backend.name) + local backend_changed = true + + if backend then + backend_changed = not util.deep_compare(backend, new_backend) + end + + if backend_changed then + sync_backend(new_backend) + end + end +end + +function _M.init_worker() + _, err = ngx.timer.every(BACKENDS_SYNC_INTERVAL, sync_backends) + if err then + ngx.log(ngx.ERR, "error when setting up timer.every for sync_backends: " .. tostring(err)) + end +end + +function _M.call() + ngx_balancer.set_more_tries(1) + + local host, port = balance() + + local ok, err = ngx_balancer.set_current_peer(host, port) + if ok then + ngx.log(ngx.INFO, "current peer is set to " .. host .. ":" .. port) + else + ngx.log(ngx.ERR, "error while setting current upstream peer to: " .. tostring(err)) + end +end + +return _M diff --git a/rootfs/etc/nginx/lua/configuration.lua b/rootfs/etc/nginx/lua/configuration.lua new file mode 100644 index 0000000000..e49a821a3c --- /dev/null +++ b/rootfs/etc/nginx/lua/configuration.lua @@ -0,0 +1,39 @@ +-- key's are always going to be ngx.var.proxy_upstream_name, a uniqueue identifier of an app's Backend object +-- currently it is built our of namepsace, service name and service port +-- value is JSON encoded ingress.Backend object.Backend object, for more info refer to internal//ingress/types.go +local configuration_data = ngx.shared.configuration_data + +local _M = {} + +function _M.get_backends_data() + return configuration_data:get("backends") +end + +function _M.get_backend_names() + -- 0 here means get all the keys which can be slow if there are many keys + -- TODO(elvinefendi) think about storing comma separated backend names in another dictionary and using that to + -- fetch the list of them here insted of blocking the access to shared dictionary + return backends_data:get_keys(0) +end + +function _M.call() + if ngx.var.request_method ~= "POST" or ngx.var.request_uri ~= "/configuration/backends" then + ngx.status = 404 + ngx.print("Not found!") + + return + end + + ngx.req.read_body() + + local success, err = configuration_data:set("backends", ngx.req.get_body_data()) + if not success then + ngx.log(ngx.ERR, "error while saving configuration: " .. tostring(err)) + ngx.status = 400 + return + end + + ngx.status = 201 +end + +return _M diff --git a/rootfs/etc/nginx/lua/util.lua b/rootfs/etc/nginx/lua/util.lua new file mode 100644 index 0000000000..19e104f092 --- /dev/null +++ b/rootfs/etc/nginx/lua/util.lua @@ -0,0 +1,27 @@ +local _M = {} + +-- this implementation is taken from +-- https://web.archive.org/web/20131225070434/http://snippets.luacode.org/snippets/Deep_Comparison_of_Two_Values_3 +-- and modified for use in this project +local function deep_compare(t1, t2, ignore_mt) + local ty1 = type(t1) + local ty2 = type(t2) + if ty1 ~= ty2 then return false end + -- non-table types can be directly compared + if ty1 ~= 'table' and ty2 ~= 'table' then return t1 == t2 end + -- as well as tables which have the metamethod __eq + local mt = getmetatable(t1) + if not ignore_mt and mt and mt.__eq then return t1 == t2 end + for k1,v1 in pairs(t1) do + local v2 = t2[k1] + if v2 == nil or not deep_compare(v1,v2) then return false end + end + for k2,v2 in pairs(t2) do + local v1 = t1[k2] + if v1 == nil or not deep_compare(v1,v2) then return false end + end + return true +end +_M.deep_compare = deep_compare + +return _M diff --git a/rootfs/etc/nginx/template/nginx.tmpl b/rootfs/etc/nginx/template/nginx.tmpl index 48ec311d85..cadd023e77 100644 --- a/rootfs/etc/nginx/template/nginx.tmpl +++ b/rootfs/etc/nginx/template/nginx.tmpl @@ -32,6 +32,39 @@ events { } http { + lua_package_cpath "/usr/local/lib/lua/?.so;/usr/lib/x86_64-linux-gnu/lua/5.1/?.so;;"; + lua_package_path "/etc/nginx/lua/?.lua;/etc/nginx/lua/vendor/?.lua;/usr/local/lib/lua/?.lua;;"; + + lua_shared_dict configuration_data 5M; + lua_shared_dict round_robin_state 1M; + lua_shared_dict locks 512k; + + init_by_lua_block { + require("resty.core") + collectgarbage("collect") + + -- init modules + local ok, res + + ok, res = pcall(require, "configuration") + if not ok then + error("require failed: " .. tostring(res)) + else + configuration = res + end + + ok, res = pcall(require, "balancer") + if not ok then + error("require failed: " .. tostring(res)) + else + balancer = res + end + } + + init_worker_by_lua_block { + balancer.init_worker() + } + {{/* we use the value of the header X-Forwarded-For to be able to use the geo_ip module */}} {{ if $cfg.UseProxyProtocol }} real_ip_header proxy_protocol; @@ -338,6 +371,16 @@ http { {{ end }} + upstream upstream_balancer { + server 0.0.0.1; # placeholder + + balancer_by_lua_block { + balancer.call() + } + + keepalive 1000; + } + {{/* build the maps that will be use to validate the Whitelist */}} {{ range $index, $server := $servers }} {{ range $location := $server.Locations }} @@ -453,6 +496,12 @@ http { {{ end }} } + location /configuration { + content_by_lua_block { + configuration.call() + } + } + location / { {{ if .CustomErrors }} proxy_set_header X-Code 404; @@ -888,7 +937,7 @@ stream { {{ end }} {{ if not (empty $location.Backend) }} - {{ buildProxyPass $server.Hostname $all.Backends $location }} + {{ buildProxyPass $server.Hostname $all.Backends $location $all.DynamicConfigurationEnabled }} {{ if (or (eq $location.Proxy.ProxyRedirectFrom "default") (eq $location.Proxy.ProxyRedirectFrom "off")) }} proxy_redirect {{ $location.Proxy.ProxyRedirectFrom }}; {{ else }}