diff --git a/conf/app.ini b/conf/app.ini index a62aaaf07..10cfc5089 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -59,11 +59,11 @@ EXPLORE_PAGING_NUM = 20 ISSUE_PAGING_NUM = 10 ; Number of maximum commits showed in one activity feed FEED_MAX_COMMIT_NUM = 5 -; Value of `theme-color` meta tag, used by Android >= 5.0 +; Value of "theme-color" meta tag, used by Android >= 5.0 ; An invalid color like "none" or "disable" will have the default style ; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android THEME_COLOR_META_TAG = `#ff5343` -; Max size of files to be displayed (defaults is 8MiB) +; Max size in bytes of files to be displayed (default is 8MB) MAX_DISPLAY_FILE_SIZE = 8388608 [ui.admin] @@ -106,12 +106,12 @@ LOCAL_ROOT_URL = %(PROTOCOL)s://%(HTTP_ADDR)s:%(HTTP_PORT)s/ DISABLE_SSH = false ; Whether use builtin SSH server or not. START_SSH_SERVER = false -; Domain name to be exposed in clone URL +; Domain name to be exposed in SSH clone URL SSH_DOMAIN = %(DOMAIN)s +; Port number to be exposed in SSH clone URL +SSH_PORT = 22 ; Network interface builtin SSH server listens on SSH_LISTEN_HOST = 0.0.0.0 -; Port number to be exposed in clone URL -SSH_PORT = 22 ; Port number builtin SSH server listens on SSH_LISTEN_PORT = %(SSH_PORT)s ; Root path of SSH directory, default is '~/.ssh', but you have to use '/home/git/.ssh'. @@ -157,7 +157,7 @@ RSA = 2048 DSA = 1024 [database] -; Either "mysql", "postgres" or "sqlite3", it's your choice +; Either "mysql", "postgres" or "sqlite3", you can connect to TiDB with MySQL protocol DB_TYPE = mysql HOST = 127.0.0.1:3306 NAME = gogs @@ -268,6 +268,7 @@ GC_INTERVAL_TIME = 86400 SESSION_LIFE_TIME = 86400 [picture] +; Path to store user uploaded avatars AVATAR_UPLOAD_PATH = data/avatars ; Chinese users can choose "duoshuo" ; or a custom avatar source, like: http://cn.gravatar.com/avatar/ diff --git a/gogs.go b/gogs.go index 6d686ae92..4fbc85ed6 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.135.0208" +const APP_VER = "0.9.135.0209" func init() { setting.AppVer = APP_VER diff --git a/models/models.go b/models/models.go index 19c4c29e5..75330084c 100644 --- a/models/models.go +++ b/models/models.go @@ -55,7 +55,6 @@ var ( } EnableSQLite3 bool - EnableTiDB bool ) func init() { @@ -146,14 +145,6 @@ func getEngine() (*xorm.Engine, error) { return nil, fmt.Errorf("Fail to create directories: %v", err) } connStr = "file:" + DbCfg.Path + "?cache=shared&mode=rwc" - case "tidb": - if !EnableTiDB { - return nil, errors.New("This binary version does not build support for TiDB.") - } - if err := os.MkdirAll(path.Dir(DbCfg.Path), os.ModePerm); err != nil { - return nil, fmt.Errorf("Fail to create directories: %v", err) - } - connStr = "goleveldb://" + DbCfg.Path default: return nil, fmt.Errorf("Unknown database type: %s", DbCfg.Type) } diff --git a/models/models_tidb.go b/models/models_tidb.go deleted file mode 100644 index 4dadd00a9..000000000 --- a/models/models_tidb.go +++ /dev/null @@ -1,18 +0,0 @@ -// +build tidb go1.4.2 - -// Copyright 2015 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package models - -import ( - _ "github.com/go-xorm/tidb" - "github.com/ngaut/log" - _ "github.com/pingcap/tidb" -) - -func init() { - EnableTiDB = true - log.SetLevelByString("error") -} diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 91ac051b1..3f570e138 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -291,7 +291,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7b\x5f\x8f\x23\xc9\x96\xd7\x7b\x7c\x8a\x98\xba\x5c\xa6\x1b\xa5\xed\xaa\xea\xee\x9a\x9a\xaa\xeb\xcb\xb8\xed\xb4\x2b\xb7\xfd\x6f\x32\xd3\xdd\xd3\xd3\x2a\x65\x47\x65\x86\xed\xb8\x95\x19\x91\x93\x11\x59\xd5\x1e\xa1\xd5\xbd\xe2\x81\x3f\x12\xe2\x01\x58\x84\xb4\x42\xdc\x07\x58\x69\x61\x61\x57\x80\x74\x2f\x5c\xe0\x61\xd8\xf7\x9e\xef\xb0\xcc\xb2\x08\xb4\x5f\x01\x9d\x13\x99\x76\xba\xba\xa6\x76\xae\x04\x6a\xa9\x6d\x67\x46\x9c\x88\x38\x7f\x7f\xe7\x9c\xa8\x1f\xd1\x8f\x3e\xfa\x88\x4e\xdd\x97\xae\x4f\xf1\xbf\xc9\x6c\xe0\x0d\x5f\xd3\xf0\xc2\x0b\xe8\xd0\x1b\xbb\xf0\x9e\xd8\x51\xf3\xb1\xdb\x0b\x5c\x3a\xe9\xbd\x70\x69\xff\xa2\x37\x1d\xb9\x01\x9d\x4d\x69\x7f\xe6\xfb\x6e\x30\x9f\x4d\x07\xde\x74\x44\xfb\x8b\x20\x9c\x4d\x68\x7f\x36\x1d\x7a\xa3\xbb\x14\xbc\x21\x7d\x3d\x5b\xd0\x9e\xef\xd2\x79\xaf\xff\xa2\x37\x82\x19\x73\x7f\xf6\xd2\x1b\xb8\xbe\xb3\xb7\xc0\xec\x15\x50\x9e\xbf\xa6\xb3\x21\xf5\x42\xa4\x41\xce\x69\x2f\xcf\xa9\x64\x19\xa7\x66\xcd\x0c\xd5\x6b\x75\xab\xa9\x92\x94\xdf\xf0\x62\x43\x73\xb6\xe2\xd4\x08\x93\x72\xd2\x9b\xcf\xa3\x69\x6f\xe2\xd2\x2e\x1d\xa9\x95\x3e\xa3\x23\x45\x47\xc2\xd0\x80\x17\x37\x22\xe6\xe4\x9c\x86\x6b\x6e\x29\xa9\x25\x35\x6b\x4e\xf5\x46\x1b\x9e\xd1\x52\xf3\xc2\x12\x2f\x4a\xa9\x71\x32\xf1\x17\xd3\x68\x11\xb8\x3e\xed\xd2\x95\x30\xe4\x9c\xba\xc2\xac\x79\x41\x0f\x12\x7e\x73\xe0\xd0\x83\xbc\x50\xc9\x01\x55\x05\x3d\x30\x5c\x9b\x03\x1c\x3f\x99\x0d\x60\xf1\x84\xdf\x10\xf2\xa6\xe0\xb9\xd2\xc2\xa8\x62\x73\x49\xce\xa9\xaf\x94\xa1\x39\x33\x6b\xba\x54\x05\xd5\x46\x15\x42\xae\xe8\x76\x8c\xe0\xfa\x63\x4d\x13\x66\x98\x43\x13\xbe\x64\x65\x6a\xa8\xd0\xf4\xe0\x77\x3b\x3f\x81\xcd\xc1\x9e\x7f\xda\x59\xa9\x95\x6e\x35\xa7\x1c\x10\x7f\x36\x0b\x69\xb7\x3a\x99\x8e\x0b\x91\x1b\x6a\x36\x39\xa7\x9a\x17\x37\xbc\xa0\xba\xcc\x73\x55\x18\xed\x50\xad\x32\x6e\x44\xc6\x35\x8d\x55\x99\x26\xf4\x8a\xd3\x03\xbd\x3e\x20\x41\xdf\xf7\xe6\x61\x14\xbe\x9e\xc3\xd6\xaf\x98\x5e\x93\x73\x3a\xa8\xb6\xd0\x9b\x06\x1e\x8d\xd7\xac\xd0\xdc\xe0\xc6\x99\xa4\xa5\x2c\x78\xac\x56\x52\x7c\xcd\x93\xfa\x1d\x81\x81\x51\xff\xa2\xe7\x07\xae\xdd\xcf\x50\x15\x31\xaf\x44\x24\xf9\xed\xee\xa4\x1b\x6a\x14\x2c\x9e\x17\xe2\x86\x19\x4e\x86\x33\xbf\xef\x46\x73\xdf\x7b\xd9\x0b\x61\x07\x4b\x96\x6a\x10\xd5\x28\x55\x57\x2c\xa5\x19\x7b\x27\xb2\x32\xa3\x71\xc1\x99\x11\x4a\xd2\x54\x64\xc2\x80\xfc\x1a\x14\x73\x5e\xa0\x0c\x1d\xda\x3a\xa2\x19\x67\x52\x53\xa9\xec\x48\x32\xe9\x7d\x11\xf5\x7d\xb7\x17\x7a\xb3\x69\x34\xf6\x26\x5e\x48\xbb\xb4\x75\x44\xce\xe9\x44\x14\x05\xc8\x62\x23\x63\xfa\x55\xc9\x4b\x4e\x53\x2e\x57\x66\xed\x50\x21\x61\x39\xcd\xa9\x58\xd2\x6c\x37\x0a\x24\xa6\x0d\x2b\x8c\xa6\x6b\x26\x57\x42\xae\xc8\xc4\xf3\xfd\x99\x1f\x7d\xbe\x70\x17\x6e\x34\x76\xa7\xa3\xf0\x82\x76\xe9\xd1\xe1\xe1\x21\x39\xa7\x73\x66\xe2\x35\x05\xf5\x78\x80\x7e\x5e\xa6\x29\x2d\xf8\x57\x25\x0c\xcb\xb7\x33\xee\x59\x6b\xbe\x18\x8f\x23\xdf\xfd\x7c\xe1\x06\xe1\xf7\xad\x58\xf0\x25\x2f\x0a\x9e\xd0\xb1\x88\xb9\xd4\x5c\x03\xb7\xf3\x94\xc5\x9c\x32\x83\x2a\x6f\x54\x5e\x6b\x7f\x2a\x34\x28\xf6\x14\x0c\x22\x2b\xb5\xa1\x19\x2e\xbf\x14\x69\x65\x25\x42\xd2\x58\xc9\x65\x27\xb5\xc4\x40\xdb\xe3\x52\x1b\x95\x75\x9a\x8f\xc9\xdc\x77\x87\xae\xef\xbb\x83\x68\xec\xf5\xdd\x69\xe0\x06\xb4\x4b\x7b\x39\x8b\xd7\xbc\xde\x07\x3d\x6e\x1f\x3a\xc0\xfb\xea\x37\xe8\x98\xd0\xec\x2a\xe5\x94\x5d\x89\x54\x18\x54\x0b\x21\x0d\x2f\x58\x6c\xe8\xad\x30\xeb\x3d\xe3\xa0\x57\x1b\x7a\x11\x86\x73\x9a\x17\xca\xa8\x58\xa5\x64\xe0\x05\xbd\xe7\x63\x37\x82\xa7\xd1\x08\xa5\x5a\xab\x8e\x2b\xef\x12\xce\xc4\xaa\x60\x86\x37\x75\xe6\x6a\x43\x53\x15\xb3\x14\x8d\x92\xb8\x53\x24\x36\x9e\xf5\x7b\xe3\x68\xde\x0b\x2f\xa2\x89\x37\xf2\x51\x69\xb6\x84\x9b\x26\xdd\xe6\x09\x7c\x82\x65\x8f\x85\x46\x7d\x44\xb6\xf1\x77\x86\x4b\x2d\x94\xd4\x5b\x67\x05\xc6\xb6\x66\x37\xc0\x6e\xc9\xe9\x6d\xc1\x72\x0d\x8c\x05\x01\xf4\x55\xc2\x2b\x2d\xb4\xf4\xda\xe4\x9c\x06\x3c\x67\xb8\xd9\x06\x2d\xe4\x07\xa3\xb1\xca\x32\xd6\xa6\xa1\xda\xd1\xc2\x65\xed\x00\x55\x9a\xdd\x1c\x87\xfe\x0c\x24\x9a\x97\xa6\x9e\x47\xc6\xde\xd4\x8d\x5e\xf9\xbd\x79\xe4\x7e\x11\xba\xd3\xc0\x9b\x4d\x41\x50\x6d\xf3\xce\x38\xed\x2c\x71\xda\x19\x2b\xae\x13\x75\x2b\xe1\x97\xfd\xb8\x4e\x1c\x72\x4e\x5f\xb2\x54\x24\xf6\x7c\x99\x4a\x78\x75\x34\x3c\x13\xa3\x79\xc1\x6f\x04\xbf\xa5\xbd\xb9\x47\x99\xd6\x2a\x16\xcc\xf0\xc4\xee\xd8\xac\x79\xe6\x50\x5d\xc6\x6b\xca\x34\x65\xb9\xe8\xdc\x1c\x75\xea\x55\xf6\xce\x7a\xc3\xd2\xd2\x4a\x19\xf7\xaa\xdb\xa0\xca\x48\xd7\xb0\x2b\x60\x17\xf0\x07\x57\xa7\xb7\x4a\x7e\x6c\xa3\x00\x98\x0f\xb0\x71\x9f\xf3\x34\x51\x5c\xc3\x10\xd4\x66\x50\xce\x97\x9e\xfb\x0a\xc5\x0b\x81\x09\x9d\x34\x9c\xbb\xde\xc7\xbe\x5c\xcb\x3c\x55\x2c\xb9\xdc\x69\x51\x43\x65\x70\x1d\x3b\x40\xb7\x2b\x95\x19\xd0\x2e\x35\x45\xc9\xad\xb9\xaf\x41\xd9\x0c\xcf\x72\x55\xb0\x42\xa4\x1b\x74\xf4\xdb\x39\xf4\x51\xed\xda\x31\x10\xac\xb8\xd1\x34\x4e\x39\x93\x3c\x81\x93\x43\xd8\xc1\xa3\xa2\xd3\x44\xe3\x7f\x4c\x42\x77\x32\x47\x85\x84\xb8\xc2\x0c\xeb\x98\x2c\xef\x54\xf4\xc0\xcd\xc2\x96\xc0\xe1\x57\x42\x61\x05\xa7\x2c\x4d\xd5\x2d\x4f\x2a\x3f\x6b\xc7\xf2\xc4\xa1\xbc\xbd\x6a\x53\x91\xb1\x15\xef\xfc\x2c\xe7\xab\xbf\x65\xbf\xe6\x72\xd5\xa6\x63\x0e\xc2\xe4\x59\x6e\x36\x95\xff\x44\x22\x94\xc9\xea\xd4\xb0\x04\xe9\x8d\xc7\xb3\x57\xee\x00\x63\x45\x80\x5e\x7e\x52\x79\x67\x2d\xbe\xc6\x98\xca\x59\xed\x3f\x84\xa4\x93\xe7\xc4\x32\xbc\xf7\x45\x14\x78\x5f\x82\x73\x7f\xd2\x98\x23\xcb\xec\x8a\x17\xb5\xe5\x68\xeb\xc4\x71\xb3\xe8\xb3\x61\x2a\x88\xe9\x19\x21\x6f\x4a\x01\x02\x99\x6e\x27\xec\x79\x86\xed\xb9\x41\x25\x78\x02\x2b\x2b\x09\xfa\x90\xa7\xc0\x7b\xc0\x07\xc4\xfd\x62\x3e\x9e\xf9\x6e\x34\x47\xf0\x11\x4d\x17\x13\xda\xa5\xc7\x87\x7b\x44\x85\xd6\xe5\xf7\x93\x43\x32\x5e\x10\x2c\xee\x10\x39\xda\x27\xb2\x0d\x57\x2a\xcb\x84\xd1\x77\x88\xb0\xd8\x88\x1b\x70\x49\x4b\xce\x13\x32\x74\xdd\x01\x32\xa7\x3f\x9b\x4c\xbc\xb0\x22\xf8\xcc\x1a\x5c\x89\xfc\x7c\x0b\x16\xc4\x5b\xb1\x4a\x55\xf1\x96\x66\xdc\x30\x6a\xd8\xca\x81\x60\x87\x2a\xd3\x93\x49\xa1\x44\x42\x7f\xda\xa5\xcf\xda\xb0\x93\x9e\xa4\x42\xde\xa0\xbd\xe2\x24\x9a\x8a\x6b\x4e\x0f\xa4\x92\xdc\x82\x95\xc4\x7a\xdd\x03\x7a\x2b\xd2\xd4\xda\x30\x98\x50\xad\x98\xda\x6c\x52\xd0\xe5\x09\xb0\x4e\xc8\xa5\x3a\xa3\x6b\x63\x72\x7d\xd6\xe9\x24\xfc\x86\xa7\x2a\xe7\x85\x6e\xaf\x94\x5a\xa5\xbc\x1d\xab\xac\x73\xcb\xaf\x3a\x65\x9e\x30\xc3\x75\xe7\xf8\xf0\xe8\x69\xe7\xe8\xa8\x13\x58\xd0\xd1\x5a\xaa\xa2\xd5\x38\x40\x4b\xc8\x56\x7f\x5d\xa8\x8c\xb7\x9e\x7c\x8a\x2f\xab\xed\x93\xf0\xc2\x9d\xb8\x51\x7f\x36\x9e\xf9\xd1\xc4\x0d\x7b\x51\xd8\x1b\xd1\x2e\x7d\xfb\xa3\xe5\xf2\xd9\x93\xa7\x4f\xde\x5a\xad\xd9\x6a\x99\xd5\x17\xab\xde\x89\xd0\x79\xca\x36\x3c\xd9\x1a\x97\x06\xe0\x74\x3a\x11\xcf\x1f\xa3\x1e\x0d\xbc\x60\x3e\xee\xbd\xb6\xb6\x5f\xa9\xe1\xe9\x93\xd3\xd3\x93\xc3\x53\xd4\xac\x36\x4b\x32\x21\xf7\xf5\x0b\xb0\xc4\xc3\x9a\x00\xc8\x70\x5f\x11\x9e\x1d\x7e\xa8\xa2\x0f\x92\xf0\xdd\xf9\xec\x41\x12\x52\x19\x11\xff\x15\x1a\x39\x9d\x85\x5e\xff\xae\x5e\x3f\xdb\x23\xa3\x8a\x15\x93\xe2\x6b\x8b\x9e\x1e\xa2\x35\xf3\x47\x1f\xec\x07\x39\x04\xec\xb8\xc7\x00\x7f\xcb\xd3\x1d\x81\x25\xd7\x4e\xb7\xe1\x60\xd7\xac\x48\x6c\x3c\xbb\x2a\x38\xbb\xde\x39\xf2\x3a\x28\x5f\xf4\x7c\x40\x16\x53\x37\x7a\xee\xbb\xbd\x17\x8d\x40\x5f\x87\x5e\x0b\x4a\xe8\xc2\x1f\xb7\x82\x18\x14\xee\x1e\x6f\xc8\x34\x2c\x72\xad\xe9\xed\x9a\x4b\x5a\x70\x99\x70\x84\xe0\x93\x3a\x0c\x9c\x23\xc0\xe5\xef\x58\x96\xa7\x1c\x30\xbf\x93\xb1\x95\xe4\x86\xd8\xe4\x26\x5a\xf8\xe3\x28\xe8\x83\xa6\x5a\xdf\xf7\x43\xe2\xfe\x15\xaf\x56\xe2\x49\x07\x22\x98\xdd\x47\x63\xc9\x1f\x14\xec\x2d\x89\x3a\xd2\x77\x54\x23\xd6\x31\xbd\x8d\x63\xf7\x44\x7c\xd4\xf9\xfd\x60\xff\x7d\x71\x9e\x90\x37\x36\x65\xb8\x24\x73\x7f\x16\xce\xfa\xb3\x31\xed\xa2\xed\x93\xc1\x6c\xd2\xf3\x00\x06\x21\x5e\x5a\x2b\x6d\x30\xed\x00\x86\xd0\x2e\xfd\xf1\xa3\x7a\xfc\x63\xf0\x12\x3f\x7e\x64\x87\x3f\xd6\x67\x3f\x7e\x84\xd8\x6c\x3e\xf3\xc3\xc7\xba\x43\xf0\x47\x6f\x30\x80\x8c\xea\xb0\x8d\xff\xc8\x76\x00\xc4\x86\x0a\xc2\xf2\x22\x13\x1a\x0f\x07\xf2\x28\xa5\x78\x47\xb5\x8a\xaf\xb9\x21\x8b\xa9\xf7\x45\x14\xcc\xfa\x2f\xdc\x30\x9a\xbb\xfe\xc4\x0b\x02\x8b\xcf\x4e\x4e\x4e\x40\x20\x08\xe7\x1e\x0d\x26\x5f\x3e\x06\x55\xc0\xe9\x18\x53\x6f\x55\x71\x0d\x06\xfd\xa8\x46\x22\x41\x70\x41\xad\xd3\x7a\x4c\x59\x1c\x73\xad\x41\x13\x6e\xf9\x15\xa6\x4d\x22\xe6\x80\x4d\x3c\x49\x33\xa5\x0d\x8d\x19\xc0\xe8\x8d\x2a\x69\xa2\xc0\x26\xa9\xe4\x36\xb8\xc6\x00\xcc\xf7\xdd\x27\xc2\x18\x98\xdc\x4b\x0d\x2f\x28\x24\x2a\x32\xdd\x00\x4e\xd9\xa8\xb2\xc0\x75\xab\xc4\x4c\x02\x94\x11\x1a\x09\x62\x26\x0a\x78\x9b\x69\x0b\x72\xe1\x65\x9b\x58\x30\xfa\x10\xab\xb7\x2c\xfd\x90\xdb\x3b\x7c\x0d\x8b\x2e\x39\x33\x65\xc1\xad\xee\xc3\x92\xec\x86\x89\x14\x5e\x6f\x71\x34\x0c\xdb\x59\xd6\xab\x35\xc7\x6c\xb7\xd4\x9c\x5e\x95\x22\x35\x42\x36\x77\xaf\xe0\x00\xa6\x4d\x82\xb0\xe7\x87\x30\x35\x0a\x5c\xff\x25\x26\xcb\x35\x85\x81\xca\x98\x90\x55\xde\x8e\xae\x9a\xbf\xcb\x95\xb6\x6e\x22\x4e\xc1\x51\x2c\xfc\x31\x81\xb9\x5b\x05\xdb\x29\x0f\x78\x1b\x6e\x40\x70\x36\x29\x58\x42\x06\x73\xcf\x46\x20\x85\xe1\x52\x53\x25\x91\xd2\xd8\x0b\x42\x77\x1a\x5d\xcc\x82\xb0\xa1\x65\xe7\x74\xae\x0a\x53\x03\x8e\xbf\x62\x33\x95\x36\x1e\x1f\xdf\x99\xf6\x83\x17\xaf\x08\xfc\xf8\x51\x4d\x0d\x4f\xb3\xcb\xff\xd5\x12\x69\x24\xa2\xe0\x31\xc0\xca\xbd\x84\xff\xe3\xdf\xed\xb4\xb5\x5e\x7f\xec\xd0\xab\xd2\xa0\xd2\xd9\x10\xad\x50\x12\x1f\x77\xd6\x2a\xe3\x9d\x95\x30\x76\x54\x1b\xd7\x45\x0d\xb1\x10\x11\xc5\x5e\xd1\x45\x15\x85\xac\x99\x6f\x11\xe9\xa6\xf6\x21\xa0\x06\x98\x97\xe6\xe5\x55\x2a\xe2\x6b\x7a\xcd\x37\xb4\x44\x2b\xd0\x7a\xdd\xba\xe6\x9b\x15\x97\x00\xfd\x1b\x5b\xab\x6a\x25\x3b\x5a\xdb\x13\xd8\x6d\xbc\x70\x5f\x47\x21\xa4\xa6\xdb\xad\xd4\x80\xb8\x41\x72\xef\xac\xbb\xe7\x1f\x53\x26\x13\x9a\x72\x70\x9c\x3c\x4d\xe9\x52\xc8\x84\x42\x3e\x73\xbb\x16\xf1\x1a\xa3\x0a\x9c\x86\xa5\xe9\x76\xad\x11\xb0\xda\xe2\xe2\x1d\x1d\x34\xdb\x44\xc4\x70\xe8\xdb\x4a\x85\xd1\x52\x79\x7c\x4d\x33\x21\x11\x9b\xc1\x59\x11\x4a\xa0\xa3\x8d\x55\x51\x70\x9d\x2b\x99\xc0\xe9\x11\xe7\x4e\xbc\xa9\x37\x59\x4c\xf0\x44\x80\x18\xa2\xfe\x85\xdb\x6f\xc6\x9d\xda\xb4\xfa\x83\x29\xa0\x75\xc0\x5c\x75\x41\x08\x52\x14\x32\x1b\x0e\x31\x5e\x55\xf5\x20\x3b\xad\x36\x34\x7f\xb6\x08\x5d\x3f\x1a\xcf\x46\xcd\x6a\x07\x97\x1c\xe3\x80\x36\x3c\xd7\x67\xe4\x9c\xfe\x35\xda\xc6\x82\x0f\x8d\x79\x61\x68\x2b\x66\x5d\x48\x33\x68\x2b\x29\x0b\x0c\xe5\xdd\xd3\x4f\x4e\x0e\xd7\x87\xd9\xa1\xa6\x2d\xf0\xc9\xdd\x6c\x03\x1f\xed\x2a\x80\x01\x38\x23\xe7\xe4\x9c\xce\x0a\xba\x2c\x54\x46\x19\x6d\xe7\xcb\x77\x75\xb4\x02\x7c\xc6\x13\xfb\x06\xdc\xcf\x2b\x21\x13\x75\x6b\x17\x13\x4b\xcb\x40\x9b\xbb\x3c\x4a\x14\x39\x47\x9f\xb1\x54\xc5\x8a\x1b\xe0\xa7\x9d\x8f\x13\xab\x32\x0e\x30\xf5\xb1\xdd\xb6\xca\xb9\xd4\x3a\xa5\xf9\x75\xac\x8f\x8e\x69\x0b\x2c\x8c\x17\x06\x57\x6f\x81\x4c\xed\x2f\x9e\xd1\x96\x54\xd7\x7c\xa3\x7f\xd8\xac\x6b\xbe\xa9\x27\xc1\x0b\x0d\x5f\x12\xae\x49\xdf\xf5\x43\x04\x77\xb4\x5b\x17\x27\x10\xb1\x76\xea\x65\x08\x88\xf1\xbe\x01\x15\x45\x72\x4e\x17\x39\x24\x1f\x29\x00\x5c\xac\x8d\xf0\x2c\x4f\xe1\x50\xa0\x94\xda\x30\x23\x62\xcb\x37\x2c\x15\xec\x19\x05\xb2\x00\xd4\xfc\x76\xcd\x0b\x5e\xa5\x70\x9a\xf2\x77\x3c\x2e\x0d\x4f\xc0\x41\x86\x5e\xff\xae\x89\x36\xb3\x40\x88\x52\xbd\x3c\xc7\xe4\x0e\x2b\x98\x83\x5e\xd8\x6b\x66\x7c\xb6\x00\x9a\x82\x4c\xb0\xfe\x85\xbb\x1c\x7d\xe9\xcd\xeb\xe2\x5e\x8d\x93\xf0\x59\x03\x1c\x31\xab\xd2\x58\x20\x5d\xa2\xc7\x96\xad\x54\xad\x56\x3c\xb1\x00\xd7\xa1\x31\x93\x58\x07\x04\xaf\x62\xd3\x83\x2a\x6b\x3a\x20\xe3\x1e\x56\x76\x01\xc2\x01\xe3\x60\x04\x21\x6f\x80\x71\x97\xdb\x04\x05\xb7\x8e\xe1\xb3\xd5\x57\xd2\x14\x2a\x6d\xf5\x00\x6d\xb5\x66\x85\x58\x09\x49\xd7\x9c\x25\xbc\xd8\xb3\x79\x0c\x77\x8a\xe6\x05\xd7\x5c\x1a\xd2\xeb\xf7\xdd\x20\x88\xfa\xb3\x69\xe8\xcf\xc6\x11\x26\x98\xd1\xcc\xf7\x46\x18\x0e\x88\xe5\x15\x40\xc3\x2d\x8a\x4b\x57\xaa\x10\x66\x9d\x69\x14\x8e\x59\x73\x51\xec\x19\xb6\x2d\xb1\xd1\x47\xe0\x2e\x5b\x47\xb0\x56\x52\xd7\x99\xd0\xb8\x1f\x93\x37\x5a\xaf\xdb\xd5\x94\xe8\x9a\x6f\x22\xf0\x05\xfa\x92\xb8\x83\xe3\x67\xcf\x8e\x3e\x45\x00\x7d\x42\xdc\xfe\x20\xe8\x51\x5a\xfd\xf2\xf1\x3b\xfe\x3a\x7c\x7a\x4a\x06\xdb\x9f\x47\x87\xc7\x4f\x09\x79\x03\x72\xba\x62\x9a\x5f\x36\xea\xc4\xd9\x46\x7f\x95\x62\xa5\x58\x69\xb3\x2a\xb8\xb6\x1c\xd6\x5f\xa5\xc2\xf0\x27\x07\x0e\x15\xe6\x63\x6d\x71\x41\xbc\x56\x22\xe6\x64\xf0\xbc\x2e\xc3\xe2\x5c\x52\x85\xb1\xa3\xe3\x4f\x30\x90\x1d\x9d\x3d\x79\x72\x78\x42\xaa\x0a\x37\xf8\x06\x52\x15\xa8\x0b\xa5\x0c\x99\xf7\x82\xe0\xd5\xa0\x2e\xbe\xee\x2d\x2b\xd3\x8d\x43\x79\x5d\xbf\xae\x32\x40\x87\x1e\x14\xfc\xab\x52\x14\x95\xe8\x6f\x78\x21\x96\x9b\xd6\xb2\x4c\xd3\x03\x12\x04\xe3\x6d\x35\xdb\x8e\xaf\xc9\xd6\xfb\x47\xfe\x1f\x18\x91\x5c\x1d\x60\x3e\x4a\xd9\x95\x56\x69\x69\x76\xf6\x20\x31\x7e\x61\x1d\x03\x90\x4d\x05\xad\x48\xb3\x98\x01\x87\x68\x27\x57\x84\xbc\xa9\xb2\x30\x40\xa1\x71\x59\x08\xb3\xb9\x24\xde\x34\x08\x7b\xe3\x71\x34\x9e\xed\x39\xdf\x8f\x3e\xb2\x6d\x08\xdb\xad\x08\x67\xf4\x85\xeb\xce\xe9\xeb\xd9\xc2\xa7\xc8\x0e\xb0\x1f\x1a\xf4\x86\xee\x47\x1f\x91\xc0\xed\xfb\x6e\x08\x8e\x9c\x76\xe9\x47\x3f\xfa\x6c\x38\x70\x5f\xf9\xee\x2b\xff\xaf\xff\x8d\x47\x60\x56\xa5\x51\x60\x11\x02\xf2\x81\x8c\x63\x98\x4f\xd8\x46\x93\xf1\x6c\xe4\x4d\x23\xdf\x9d\xb8\x93\xe7\xae\x1f\x0d\x7a\xaf\x01\x3b\x7f\x42\xfa\xb3\xd9\x0b\xcf\xc5\xb6\x40\x43\x0a\x11\xbb\xe5\x1a\xec\xa3\x7a\xbd\x9d\xd7\x1c\x83\x25\xdf\x44\x58\x46\xfa\xfc\x86\x17\x1a\x9c\xa7\x7a\xb7\xa1\xac\x34\x6b\x2e\x4d\x6d\xe0\xd6\x6a\xb6\x6d\x0a\xec\x4d\xc0\x0f\xe2\xbb\x2f\x5d\x3f\x70\xa3\xb9\x3f\xfb\xe2\x75\xd4\x5b\x84\x17\xee\x34\xf4\xfa\xb6\xb2\x5d\x69\xc2\x17\xad\x57\xee\x73\x78\xd5\x82\x07\x15\xa8\x17\x31\xbf\x24\xbd\x7e\xe8\xbd\x84\x24\x7b\xe0\x46\x63\xf8\x36\xf1\xa6\x8b\x10\x4b\x2c\x47\xa7\x87\xc4\x77\x03\x40\xd5\xa8\x43\xdf\x3b\xe8\x9c\x2e\x70\x37\x35\x00\x56\x72\x29\x8a\x8c\xf2\x56\xc6\x44\x8a\xee\xa0\xe0\x2b\xa1\x8d\x8d\x50\xc4\x77\x47\x00\x89\xfc\xc8\x9d\xf4\xbc\x71\x84\xdd\x21\x7f\xb2\x87\x11\xb9\x75\x09\xb6\xda\x64\x27\xf3\x02\x55\x0b\x15\xa2\x06\x30\x2c\x8e\x55\x29\x2d\x9a\xde\x05\x52\x24\x7f\xa7\x48\x5b\x6d\x11\xcb\xd9\x5a\xac\x30\x34\x1b\x45\xb1\x94\xc8\xe4\xc6\xac\x85\x5c\xb5\x89\xef\x7e\xbe\xf0\x7c\x37\x0a\xbc\xd1\xd4\x9b\x46\x2f\x3d\xf7\x55\x83\xc2\x04\x4e\x03\xd9\xf7\xb2\x92\x49\xed\x61\x21\xdb\x1e\xbe\x8e\xe0\x34\xcd\xe1\x10\x26\x13\x6e\x98\x48\x77\xd5\x92\x95\x30\xeb\xf2\x0a\x4b\x24\x2b\xb5\x12\x46\xa3\xae\x77\x6c\x91\xa9\x73\x74\xf2\xac\xa6\xf9\x90\x54\xb7\x8b\x7c\xdf\xd8\xd9\xf7\x31\xa1\xca\xad\x63\x96\x9b\x78\xcd\x28\x56\x84\xac\x7a\x7d\x20\xa5\x8a\x76\xbf\x37\x0f\xfb\x17\xbd\xba\x9c\x49\xde\xdc\xf2\xab\xb5\x52\xd7\xe0\xd2\x2e\x94\xba\xa6\x86\xe9\xeb\x07\xfa\x18\xd5\x70\xc8\x7c\xd5\x7d\xdd\x8b\xfb\x1b\x16\x03\x9e\x0a\x80\xd2\x46\x64\x1c\xa2\xbc\x90\x54\xf3\x58\xc9\x44\x93\x81\x0b\x1a\xe8\x47\xa1\x37\x71\x67\x8b\xb0\x2a\x8d\x61\x80\xa1\x42\xa2\x9b\xe0\x0d\xbc\x02\x47\x09\x5e\x78\xf3\x28\x1c\x07\xd1\x4b\xd7\xf7\x86\xaf\x1b\xfc\xd8\x95\x2e\xd6\x42\x23\x3a\x16\x72\xa9\x8a\xcc\xf2\x44\x48\x5b\xb9\xc4\xca\xc5\xdd\xf2\x1e\x79\x03\xda\x0d\x89\xf1\xae\xe2\x5b\x93\x7d\x5e\x2e\x97\x88\x1c\x30\xe8\xa8\x25\xe6\x84\x92\xa7\x0e\xbd\xe6\x3c\x87\xfc\x8f\x69\xf8\x5f\xe8\x2a\x07\xa4\x09\x56\xaf\xaf\xa5\xba\xa5\xb7\x6b\x66\xec\xcb\x36\x09\xdc\xe9\x20\x7a\xbe\x18\x0e\x01\x19\xba\x53\xcb\xa0\xba\x37\xb3\xab\x71\x09\x49\xd1\xd4\x6c\xbf\x33\x58\x3c\xff\x1d\xb7\x6f\x93\x8d\xba\xf7\x89\xc9\x06\x2a\xb0\x4d\x52\x00\x5b\x66\xa8\x99\x3a\x33\x79\x7b\x05\xdf\x41\x2b\xcf\x9e\x9d\x7e\x42\xce\xe9\xe7\x9f\x57\x2f\xbe\xfa\x0a\x9f\x3e\x3d\xc1\xe2\x91\x32\xdc\xa9\xab\xeb\x08\xf5\xb8\x4c\xaa\xc2\xc4\xc1\xd3\x93\x67\x07\x0e\x0d\x26\xe1\x3c\xb0\x45\xc4\x2b\x8e\xf5\xc8\x36\x5d\x60\x02\x81\x39\x61\x38\x0e\xa8\x92\x76\xee\xb3\xd3\x4f\x80\x01\x05\x8f\x55\x96\x71\x99\xf0\x04\x6b\xbd\xfe\xb0\x4f\x4f\x9e\x1e\x7e\xda\xa6\x5e\xd5\x8c\xdd\x6f\x59\xee\x08\x09\x63\x17\x62\xe9\x2d\xdb\xe8\xed\x7a\x55\x7c\x6c\xe0\xf1\x0b\x77\x3c\x03\x24\x69\x35\xdb\xc6\x20\x00\xc5\xe8\x4b\x19\x58\xa9\x00\x79\x71\x69\xda\xbb\xfe\x11\xcc\x01\x22\x7d\x5b\x44\xda\x8e\x07\x43\xd9\x27\xb8\x87\x64\x10\x3a\xdb\x9c\xa8\x4d\x60\x1c\x66\x9d\xd6\xe5\xa3\x6b\x43\xc7\x66\x83\x2a\x1e\xaf\x09\xad\x55\xf3\xc4\x6d\x3a\x93\xe9\x06\x63\xa8\x59\x03\x65\x55\x50\xcd\xd3\x65\x0b\xfc\x17\x4f\x9a\x13\xb5\x55\xf1\x5a\xbd\xad\xb7\xa3\x71\x2a\xb8\x34\xcd\x71\x00\x0c\x22\x40\xc6\xde\x10\x5c\xc9\x2e\x09\xb9\x07\x2d\x5b\xed\x7e\x08\x2e\x57\x23\x76\x78\x19\xf5\xcb\x66\x15\x49\x52\x70\xad\x1d\x94\xe6\xb3\x27\xc7\xc7\x6d\x1a\xc2\x19\x2a\x64\x89\x15\x29\x26\x29\x47\xad\xdd\x0e\x56\x05\x1e\xff\xed\x01\xa8\xf7\x01\xfd\x09\xbe\xfe\xac\x91\xb9\xfc\xf4\x2d\xb5\xd6\x49\x86\xfe\x6c\x52\xb5\x1a\x60\x13\xbb\x70\x88\x41\x22\x67\x5a\xdf\xaa\x22\xa9\x80\x50\x13\x03\x01\x63\x0c\x7f\x67\x3a\x6b\x93\xa5\xd8\x7e\x4a\x0d\x2f\x24\x33\xe2\x86\x57\xc4\xd1\x60\x95\x34\x80\x44\xeb\x5a\x63\x38\x01\x18\x1a\x42\x80\x87\x78\xd9\x68\xfe\xc5\x2c\x5e\xef\x03\x3c\x9e\xa9\x62\x63\x71\x54\x22\xf4\x01\x9e\x0b\x9e\xe2\xc8\x83\xfd\x46\x7e\x35\x98\xf4\x06\xbd\x79\x88\xa1\xda\x3e\xa9\x61\x55\xf5\xbe\xc2\x6a\xa3\xbe\x2d\x7b\xdc\xb0\xb4\xe1\x12\xf7\x28\x9e\x1c\x12\x6f\x1a\xba\xfe\xcb\x1e\xc4\xa2\x93\xc3\x9a\x90\xdd\x8b\x45\x67\x8d\xbd\xc4\x4a\x4a\x1e\x5b\x80\xa1\x40\x28\x56\x16\xe4\x9c\xe2\x84\x33\x2a\x6d\xb9\xa5\x6b\xe2\xdc\x81\x97\xdd\xb3\x93\x27\x9f\x7c\xea\xd4\x1c\xee\x66\x2c\x66\x85\x92\x4e\x72\xd5\x3d\x74\x72\xa5\x52\xc4\xcd\xdd\xa3\xc3\x43\x47\x24\x29\x8f\x2a\x0f\xde\xb5\x38\xa1\x5e\xf9\x8c\xbe\xdd\xc1\xd7\xa3\xa3\xe3\xa3\xa3\xb7\xb5\xd9\x02\x36\xc1\x3a\xdf\xfd\x3c\x85\x84\xab\x62\x69\xcd\xde\xfb\xf8\x59\xdf\x23\x69\x32\x74\x5e\xa8\x1b\x01\x18\x0a\x01\xca\x8a\xaa\x1c\xce\xad\xed\xb6\x54\xb1\x39\x43\xd3\xb4\xfd\x4b\xb9\xa9\x47\x6d\xb8\x21\xe7\x98\xe7\x9d\xd1\x6a\x67\xbb\xac\xaf\xea\x9e\xbd\x45\xd4\x5a\xbd\xd5\x6f\xff\xbf\x71\x0f\xe0\xff\x19\x5d\xa9\x96\xfe\x2a\x6d\x25\x05\x84\xc8\x0e\x3e\xa4\x89\x96\xf5\x86\xb5\x29\x84\x5c\xd5\x3b\x83\x1c\xe0\xac\x5e\xef\xb3\x7a\x8f\x91\x01\xc7\xf8\x76\xcb\xa6\xa8\xba\xa2\x53\xe1\xef\xfa\x24\x58\x89\xb6\x47\x8e\x95\xba\x16\xb6\xff\x5f\x03\xda\x0a\xc7\x8a\x28\x15\xd7\x3c\xb2\x70\x86\x9c\x83\xdb\x86\x88\x06\x7e\xab\xe6\x17\x24\x7d\x00\x80\x2a\x35\x6e\xba\x4b\xeb\x7e\x2c\xc1\xc0\xed\x2f\x7c\xf7\x43\xb8\xa2\xb9\xa9\xd6\xdf\x9b\x8b\x80\xa4\x32\x50\x40\xa9\x96\xca\xae\xf1\x5a\x6f\x7d\xd4\x47\x1c\xb1\x35\x9d\x3d\x22\xa7\x27\x4f\x0f\x0f\xc9\xa8\x1f\xd5\x56\x83\xc0\x82\x76\xab\x17\x3b\x2a\xa9\x58\x72\xa4\x73\xcf\xf4\xc0\xc5\x92\x73\x34\xf6\x86\xee\xfe\x7c\xf2\x26\x17\xb1\x29\x0b\x40\xda\x2f\x7b\x61\xcf\x8f\x16\xf3\xf1\xac\x37\xd8\xeb\xdd\xb2\x1b\x66\x58\x01\xbc\xeb\xaf\x85\xe4\x9a\x57\x9d\x26\xf0\x96\xf1\x5a\x29\xcd\xe9\x41\x52\x2a\xbd\x2e\xd5\x01\x39\x07\xdd\x67\x75\x6f\xc3\x4e\xa5\x5a\x95\x45\xcc\x1d\x6c\xeb\x59\xb0\x79\xd6\xe9\xc4\xb2\xbd\x2a\xec\x00\x04\x9c\xf6\x6b\x87\x8c\xfc\x6a\x2b\xc1\x6c\xe1\xf7\x31\x15\xa9\x86\xe1\x85\x21\xa1\x6d\xbd\x7a\x1b\xc5\x97\xaa\x88\xb7\x7d\x63\xac\x36\x09\x49\xd5\x72\x89\xcd\x99\x0c\x6b\xd2\x75\xd4\xac\x49\x37\x64\x38\xe4\x09\x96\xb0\x92\x7a\xaf\xa9\x52\xd7\x65\x0e\x47\xd4\x74\x30\x0d\xaa\x5c\x3c\x56\x10\xe4\xab\x21\xbb\x0b\x03\xe4\xdc\xc2\x0b\x0c\x05\xda\xa1\x9a\xf3\x2d\x96\xbe\xbd\xbd\x6d\xa7\xe2\xaa\x3e\xa2\x2a\x56\x3f\x60\xff\xb8\xad\xbb\x07\x00\x96\x8e\x2a\x3a\x20\xd5\x44\xe8\x2b\x96\x02\x96\xa8\xd4\x6b\xe8\x0e\x5c\xbf\x17\xba\x83\x68\x7b\xbe\x0a\x0e\x33\x63\x58\xbc\xce\xb8\x34\x97\x8d\xfa\xf8\xee\xa9\x46\x80\xc1\x51\x91\x93\x76\x5d\xe3\xc1\x36\xe5\x5b\x20\xf1\xb6\x5a\xe2\xce\x7d\x01\xbc\x54\xb5\x23\x72\x67\xa2\xd5\x9a\xdd\xeb\xb7\x7b\xd9\x73\xe3\x05\x39\xa7\x33\x89\xc7\xcb\x54\xf3\x0a\xc0\x26\xe7\xfa\x81\xce\xff\xdd\x96\xfe\xfd\x83\xf6\xbb\xaf\xdb\x1e\xff\xfe\x5e\x9f\x1c\x4f\x9e\x93\x46\xab\xff\x69\x35\xed\xfb\xdb\xfc\xfb\xf3\x8f\x0e\x3f\x68\xfb\x83\x11\x02\xb3\x83\x9c\xc7\x62\x69\x7b\xfd\xdb\xd8\x0d\x8c\x5b\x96\x69\xba\xa1\xaa\x34\x79\x09\x7a\x87\x5d\xe8\x7d\xaa\xfe\xb0\x7f\x74\x74\xfc\xa4\x26\xc2\xd2\x1a\x5e\xf2\xa4\xbe\x73\x02\x62\xeb\x4d\x03\xaf\xef\xd0\x85\x14\xef\x06\x0c\xb0\xaf\x5f\x5e\x6d\xaa\x6f\xc3\xfe\xe9\xf1\x71\xfd\xf9\xa5\xfd\xf2\xec\xd0\xa9\x49\x6f\xbf\xd8\x57\x4f\x9e\x3c\xf9\x74\xfb\x65\xca\xa4\x72\xe8\x0b\x61\xe2\x35\x97\x0e\x0d\x0c\xcb\xf2\xea\x63\x22\xd2\x54\x6c\xbf\xc7\x85\xc2\x88\x8d\x3f\x61\x56\x15\xcd\xb3\xba\x0d\x5f\x67\x2a\xec\x0a\xb2\xa4\x06\x1b\x6a\x3b\x81\x94\x53\xa5\x4c\xae\xc0\x3c\x3a\xf9\xf5\xaa\x03\xdc\xeb\xfc\x28\xbf\x5e\xb5\x62\x25\xb5\x61\xa0\x25\xc3\x99\x3f\xe9\xd9\xe0\x9b\xaa\xd5\x25\xd9\xaf\x4b\xd6\x41\x18\xc6\x2b\x5b\x21\xaa\xa2\x30\x3c\x92\xf0\x09\xb9\x42\x75\x91\xa0\x2a\x79\xdd\x89\xcb\xf5\xdc\x1a\x9a\xaa\x2c\x63\xd8\x03\xa8\x1b\x9d\x59\x99\x1a\x91\xd7\x57\x89\x2a\xdd\xac\xa7\x39\xa8\x24\x07\xa4\x2a\x3d\x55\x4f\xff\x5f\x26\x5a\x77\x73\x2c\x74\xfd\xf5\xc1\xc3\x82\xc5\x78\xdc\x01\xbf\x2a\x57\xf0\xc5\x93\x4b\x05\x9f\xaf\x58\x81\xe7\x77\x8b\x42\x15\xf0\xa5\x5f\x08\x23\x62\x96\xde\x39\xbe\xa5\x40\xc6\xee\x4b\x17\x60\x19\xfe\x24\x35\x34\xab\x79\x53\xb9\x22\x99\x6e\x50\x0c\xed\xea\xf9\x65\x3d\x6d\x3b\x01\x99\x71\x77\x34\x3c\xdc\x0d\xad\x1c\xa1\xf5\x3b\x9a\xb2\xd2\xa8\x0c\x9d\x70\xaa\x56\xb4\x50\x86\x19\xfe\x48\xdf\x82\x06\xa2\x09\x2a\x70\x0c\x90\xa5\x55\x98\xe8\xf1\x87\x81\x76\x3c\x1b\x45\xfe\x2c\xb4\x59\x43\xe5\xaa\xc0\x90\xd1\x89\xee\xac\x19\x72\xbd\xd4\xde\xbd\xda\xa3\x81\x3c\x3d\xb4\xc6\x3c\xf6\xa6\xb6\x76\x54\x3d\x6b\x38\x12\xbd\x16\x4b\xf3\x10\x9d\xe3\xd3\xea\x26\xd2\x11\xfd\xc9\x4f\xe8\xf1\xa9\x43\x8f\x9f\x9d\x34\x5c\x4c\x14\x5c\x78\x43\xec\xd4\x9d\x62\xf0\x5e\x81\x1f\xc4\x53\x27\x4c\xdc\x01\x1f\x78\x8a\x41\xcf\x1b\xbf\xfe\xe0\x64\xee\xbb\x5c\x14\xe8\x3b\x36\x1a\xb6\x03\x04\x60\x2f\x8f\x12\x9e\x72\xc3\x29\x5b\x1a\x5e\xd0\x8c\xbd\xc3\x11\xfb\xec\xfa\xc4\x5e\x30\xa9\xab\x83\x0d\x31\xcb\xfb\x64\x2c\x9b\x52\xf3\x79\x85\xc8\x2d\x1c\xc7\xab\x07\xf6\xde\x97\xe5\x47\xc6\xb5\x66\x2b\x7e\x0f\x86\xf2\xdd\xfe\x6c\x3a\x75\xfb\x61\x34\x9b\x46\x93\xa0\xd9\x45\x0a\x6d\xd7\xaf\xd8\xd2\xc6\x0c\xb8\x01\xfd\x85\xa6\xa9\xd2\xe6\x21\xaa\x4d\x54\x56\x99\x85\x89\x73\x50\xf9\x52\x8a\x77\xd6\xf6\xcb\x24\xbf\xa3\xf7\x30\xa4\x79\x71\xc0\xc4\x39\xd6\x8d\x1a\x99\x86\x6d\xfd\x6f\xb9\x64\x3d\xc9\x1d\x2e\xc1\xc3\x26\x97\x1e\x2a\x7f\xec\x6f\x60\x20\xd8\x4a\x2a\x6d\x44\x5c\xb3\xae\xca\xd0\x31\xc5\x3e\x68\xd4\x4a\x1e\x1e\x79\xa7\x7a\xb2\x2d\x31\xfc\xb6\xe9\xa7\xcf\x63\x0e\xb0\x7d\xd7\x65\x51\xbb\xf8\x5c\x79\xbd\xa3\x66\xca\xeb\x1c\x37\x7f\x81\x3c\x5c\xef\xa5\xeb\x07\x0d\x96\x6d\x5d\xee\x5d\xb6\xed\xda\x0f\x3b\xd6\xed\xb7\x21\xe8\x5e\x47\x80\x0c\x7c\x0f\xbb\xf5\xe0\x59\x99\xe6\x09\x55\x92\xbe\x53\x45\x66\x37\x76\x86\x0d\x85\x33\xf8\xef\xb3\xed\x9d\x0f\xac\x5f\xfe\xcd\xea\xbe\x77\xb7\x34\xcb\x53\x02\x1a\x83\xb1\x24\x2e\x54\xf3\x46\x4f\x51\x4a\x09\x3e\x06\x1e\x63\xd9\x10\xa3\xbe\x50\x09\x38\xcc\x74\x73\xcf\xd5\x49\xbf\x94\xcd\xd1\xa8\xb6\xd8\x4b\xb3\x45\xc4\x36\xde\xae\xef\x85\x11\x96\x84\x76\x39\xf9\x39\x5d\xe0\x2d\x8e\xea\x92\xb6\xb6\x3b\x69\xdb\xab\x1d\x51\xf5\xf0\x92\x04\xfd\x0b\x77\xb0\x40\xe8\xf5\x99\x35\xb2\xa3\xc3\x8c\xa0\x90\xb6\x77\x3b\xd7\x9c\xa5\x66\x6d\x3b\xc5\x15\x99\x82\xe7\x2a\xb2\xcf\x23\x7c\x7e\x1f\xa5\xe3\xa7\x6b\xb2\xab\x50\x9e\x1c\x02\x12\xeb\x15\xab\xd2\x42\x42\x30\x6b\x0c\x81\x32\xa1\x1f\xaf\x84\xa1\x4b\x1d\x5f\x7f\x5c\x07\xbd\x56\xab\x94\x05\xc0\x29\xe4\x5a\xab\x65\xd8\x4a\x43\xe0\x84\x98\x8e\x91\x5f\xc9\x6d\x6c\x17\xa6\xa5\xe3\x0c\xe1\x7d\xa2\x62\x8d\x0f\x80\x58\xe7\xa8\xfd\x49\xfb\x19\xe9\xf9\xa3\x4a\x53\xfa\xd8\xeb\x6e\xdc\x5a\xc5\x06\x26\xa8\x7b\xcd\x1e\x3c\x4b\x84\xa7\x83\x77\xfa\xf2\x2e\x77\x51\x28\xf7\x1f\x95\xbc\x59\x09\x04\xc0\x55\xc9\x4d\xd3\xb5\x58\xad\x53\xb1\x5a\xa3\x33\x67\x49\x02\xf8\x5f\x26\xb4\xe0\x99\xba\xb1\x7f\x20\x20\x57\x5c\x6f\x13\x87\x81\x37\x1c\x46\x17\xde\xe8\x62\xec\x8d\x2e\xc2\xbd\xa2\x7b\x13\x2b\x42\xb0\xd1\x5b\x18\x0b\x94\x9b\x81\x02\x1c\x41\x22\x96\x4b\x2c\xeb\xa3\x13\x1e\x79\xa1\x25\xdd\x0c\x39\x1f\x50\x05\xed\x65\xb1\x81\x94\x0b\x49\xa6\xcd\xd6\xe2\xc3\x34\xf1\x8f\x1b\x7a\xfd\x10\x2d\x92\x3e\xbb\x87\xb8\x85\xb7\x7a\xad\x6e\xe5\x03\xb4\x6a\x7c\x6b\xcb\xbb\x0f\x68\xca\x2a\x6e\xe8\x09\x5b\x81\xdd\x6a\x71\x03\x6a\x02\x31\xfe\xb7\x51\x93\x55\x5c\x29\xc9\xa8\x1f\xed\xf4\x64\xb6\x2d\x93\xde\x53\x7b\x07\x29\xb7\xab\xe7\x97\xc4\x5e\x85\x77\x51\xbf\x0f\xab\x3f\x79\xb0\x17\xb6\x48\x7f\x3c\x9b\xba\xd5\xf7\xf9\x62\x3c\xae\xbe\x8e\xfa\xb6\x26\x45\xde\x58\x23\xbc\x6c\x74\xbd\x9b\x85\xad\xb5\x2a\x0b\x4d\xaf\xb8\xb9\xe5\xbc\xaa\xc1\x5b\x0b\x1c\xb8\xc3\xde\x62\x1c\x46\x8d\x12\xd7\x29\x24\x61\x39\xde\x04\xde\x67\xbc\x30\x3c\xd3\x36\x09\xb4\x37\x39\x6c\xde\xc7\x6c\x39\x1f\xb8\x6f\xff\x52\x29\x70\x23\x2f\x74\x27\x41\x7d\xb3\x51\x1c\x9d\x42\x48\xee\x4d\x81\x25\x94\xcb\xd6\x22\x70\xbe\x5e\xb7\xfa\x53\xf8\xff\xe2\x05\xfc\x1f\xbe\x72\x12\xde\x1a\xb8\xce\xb2\x68\x0d\x7d\x47\xa6\xad\xe9\xd8\x49\x6f\x5a\xe3\x97\x4e\x51\xb6\xfc\x85\xf3\x33\xd6\xfa\x9d\xb9\xc3\x75\xcb\x0d\x9c\xdc\xb4\x9e\xfb\x4e\x9e\xb6\xe6\x63\xe7\x6a\xd5\x7a\x3e\x72\x84\x69\x79\xa1\xb3\x14\xad\xa1\xe7\x98\xa2\x15\xfa\x4e\xac\x5b\xfd\x2f\x1d\x5d\xb4\x82\xb9\xa3\x6f\x5a\x81\xeb\x5c\xab\xd6\x0b\xdf\x59\xa5\x2d\x37\xc0\xd6\x2e\xec\xc5\x95\xab\x54\xe8\xb5\xf3\xe7\xff\xf6\xe7\x7f\xf6\x5f\xfe\xd1\x9f\xfd\xea\x8f\xbe\xfb\xbd\xbf\xe3\xfc\xf9\xaf\x7f\xf1\x17\xff\xfa\x1f\xdb\x1f\x7f\xf9\x9b\xbf\xfb\x17\xff\xea\x9f\x7d\xf7\xab\x7f\xf7\x97\xbf\xf9\x7b\x77\x5f\xfc\x8f\x7f\xf8\xc7\xdf\xfd\xfa\xbf\xc2\x8b\x01\x2f\x8d\x8e\xd7\xce\xb0\x60\xf2\x9b\x3f\x60\x42\x3b\x53\xc8\xd1\x53\x26\x13\xed\x8c\x99\xb9\x11\xfc\x4f\x7f\x59\x3a\xef\xff\xc5\xb7\x7f\xfb\xdb\x5f\x7c\xfb\x8b\xf7\xff\xe9\xfd\xaf\xde\xff\xda\xf9\xee\x9f\xfe\xcb\xef\x7e\xff\xdf\xfc\xcf\x3f\xfc\xe7\x8e\xab\x73\xf6\xcd\x9f\xa8\xd4\x99\xab\xc2\x94\xab\xf2\x9b\x3f\xd4\x34\x51\xf4\x79\xc1\xb4\x80\x87\xa9\xbe\x16\xce\xfb\x3f\xf9\xf6\xef\xbf\xff\xcf\xef\xff\xfd\xfb\x3f\xfe\xf6\xe7\x96\x86\xe3\x19\x96\x0a\x48\x7d\x82\x52\x65\x2c\x65\x42\x72\xe9\x84\xdf\xfc\xa6\xb8\xfe\xe6\x0f\xb8\xf3\xdf\xff\x01\xff\xd3\x5f\x1a\x21\x99\xf3\xfe\x97\xdf\xfe\xfc\xfd\x7f\xab\x26\x05\x37\x5c\xea\x6b\xe6\xfc\x9f\x7f\xf2\xfb\xff\xeb\x3f\xfe\xd1\xff\xfe\xbd\xff\xe0\x8c\x58\xca\x57\x8a\xd8\x4c\x22\x41\x0b\x01\xbf\x0e\x6a\x99\x8b\xf8\x9a\x17\x56\x84\x10\xfd\x38\x64\x3e\x97\x04\x65\x88\xb2\x24\x28\x48\xda\xa5\x5f\xaf\x09\x4a\x13\xbf\xb6\xc2\x57\x04\xff\xdf\xfe\x42\xe9\xe2\x9f\x6c\x11\x14\x31\x38\xa4\x82\xa0\x9c\x69\x97\xca\x94\xa0\xb0\x69\x97\xa6\x37\x04\x25\x4e\xbb\xb4\x28\x09\x8a\x9d\x76\xe9\xcf\x18\x41\xd9\xc3\x9a\x9a\xa0\x02\xd0\x2e\xc5\x4f\x82\x8a\x00\xbf\x52\x82\xda\x40\xbb\xf4\x6a\x45\x50\x25\x20\xd1\x36\x04\xf5\x02\x16\x14\x04\x95\x03\x3d\x2f\x41\x0d\x81\xdc\x07\x3e\x09\x6a\x0a\xed\x52\x5d\x10\x54\x17\xf8\x7a\x43\x50\x67\x68\x97\x5e\x2b\x82\x8a\x43\xbb\x74\x95\x12\x44\xb3\xf5\xc5\xd0\x8c\xe5\x39\x5e\x68\x52\x0d\x0f\x1d\xa7\x0c\x4b\xbe\xe8\x56\xda\x46\x65\x69\x57\x48\x41\xde\x6c\x47\xb4\xab\x69\x97\x84\xbc\x51\x80\x1f\x2e\x49\x70\x31\x7b\x15\x0d\x67\xb3\xd0\xf5\xa3\xe7\xbe\xbd\x15\xd2\x70\xdb\xc1\x5a\xdd\x52\xc0\x39\xb6\xfc\x77\x37\x53\xc5\x20\x0e\x3e\x6d\xa4\xea\x3f\x7a\x59\x2a\x65\x78\xb1\x47\x17\x70\x8e\xed\x5f\xd6\x15\x3d\xa0\x8a\xb5\xbc\xe6\x75\x1c\x7b\xab\xa6\xaa\x33\x7e\x0f\xa9\xd0\x9d\xcc\xc7\xbd\xd0\x8d\xb0\xf8\x56\x95\xe8\x90\xea\xff\x0d\x00\x00\xff\xff\xc5\xad\x2e\x67\xf5\x38\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7b\xdd\x8f\xe4\xc8\x96\xd7\x7b\xfc\x15\x67\xea\x72\x99\x6e\xe4\xcc\xfa\xe8\x8f\xe9\xe9\xba\x79\x99\xec\x4c\x57\x96\xb7\xf3\x6b\x6c\x67\xf7\xf4\xb4\x4a\xee\x28\x3b\x32\x33\x6e\xd9\x0e\x8f\x23\x5c\xd5\x39\x42\xab\x7b\xc5\x03\x1f\x12\xe2\x01\x58\x84\xb4\x42\xdc\x07\x58\x69\x61\x61\x57\x80\x74\x2f\x5c\xe0\x61\xd8\xf7\x9e\xff\x61\x99\x65\x11\x68\xff\x05\x74\x4e\xd8\x99\xce\xea\x9a\x66\xae\xc4\xaa\xa5\x4e\x3b\x1c\x71\x22\xe2\x7c\xfe\xce\x89\xa8\x1f\xc1\x47\x1f\x7d\x04\x53\xf7\x85\xeb\x03\xfd\x37\x99\x0d\xbd\xb3\x57\x10\x9e\x7b\x01\x9c\x79\x63\x17\xbf\x33\xdb\x6b\x3e\x76\xfb\x81\x0b\x93\xfe\x73\x17\x06\xe7\xfd\xe9\xc8\x0d\x60\x36\x85\xc1\xcc\xf7\xdd\x60\x3e\x9b\x0e\xbd\xe9\x08\x06\x8b\x20\x9c\x4d\x60\x30\x9b\x9e\x79\xa3\xdb\x14\xbc\x33\x78\x35\x5b\x40\xdf\x77\x61\xde\x1f\x3c\xef\x8f\x70\xc4\xdc\x9f\xbd\xf0\x86\xae\xef\xec\x4d\x30\x7b\x89\x94\xe7\xaf\x60\x76\x06\x5e\x48\x34\xd8\x29\xf4\x8b\x02\x72\x9e\x09\x30\x6b\x6e\x40\xaf\xd5\x8d\x06\x95\x83\xb8\x16\xe5\x06\x0a\xbe\x12\x60\xa4\x49\x05\xeb\xcf\xe7\xd1\xb4\x3f\x71\xa1\x07\x23\xb5\xd2\x4f\x61\xa4\x60\x24\x0d\x04\xa2\xbc\x96\xb1\x60\xa7\x10\xae\x85\xa5\xa4\x96\x60\xd6\x02\xf4\x46\x1b\x91\x41\xa5\x45\x69\x89\x97\x55\xae\x69\x30\xf3\x17\xd3\x68\x11\xb8\x3e\xf4\x60\x25\x0d\x3b\x05\x57\x9a\xb5\x28\xe1\x20\x11\xd7\x07\x0e\x1c\x14\xa5\x4a\x0e\x40\x95\x70\x60\x84\x36\x07\xd4\x7f\x32\x1b\xe2\xe4\x89\xb8\x66\xec\x75\x29\x0a\xa5\xa5\x51\xe5\xe6\x82\x9d\x82\xaf\x94\x81\x82\x9b\x35\x2c\x55\x09\xda\xa8\x52\xe6\x2b\xd8\xf6\x91\x42\x7f\xac\x21\xe1\x86\x3b\x90\x88\x25\xaf\x52\x03\x52\xc3\xc1\xef\x1e\xfe\x04\x17\x87\x6b\xfe\xe9\xe1\x4a\xad\x74\xa7\x3d\xe4\x80\xf9\xb3\x59\x08\xbd\x7a\x67\x3a\x2e\x65\x61\xc0\x6c\x0a\x01\x5a\x94\xd7\xa2\x04\x5d\x15\x85\x2a\x8d\x76\x40\xab\x4c\x18\x99\x09\x0d\xb1\xaa\xd2\x04\x2e\x05\x1c\xe8\xf5\x01\x0b\x06\xbe\x37\x0f\xa3\xf0\xd5\x1c\x97\x7e\xc9\xf5\x9a\x9d\xc2\xb0\x5e\x42\x7f\x1a\x78\x10\xaf\x79\xa9\x85\xa1\x85\xf3\x1c\xaa\xbc\x14\xb1\x5a\xe5\xf2\x6b\x91\x34\xdf\x18\x76\x8c\x06\xe7\x7d\x3f\x70\xed\x7a\xce\x54\x19\x8b\x5a\x44\xb9\xb8\xd9\xed\x74\x03\x46\xe1\xe4\x45\x29\xaf\xb9\x11\xec\x6c\xe6\x0f\xdc\x68\xee\x7b\x2f\xfa\x21\xae\x60\xc9\x53\x8d\xa2\x1a\xa5\xea\x92\xa7\x90\xf1\xb7\x32\xab\x32\x88\x4b\xc1\x8d\x54\x39\xa4\x32\x93\x06\xe5\xd7\xa2\x58\x88\x92\x64\xe8\x40\xe7\x18\x32\xc1\x73\x0d\xb9\xb2\x3d\xd9\xa4\xff\x45\x34\xf0\xdd\x7e\xe8\xcd\xa6\xd1\xd8\x9b\x78\x21\xf4\xa0\x73\xcc\x4e\x61\x22\xcb\x12\x65\xb1\xc9\x63\xf8\xaa\x12\x95\x80\x54\xe4\x2b\xb3\x76\x40\xe6\x38\x9d\x16\x20\x97\x90\xed\x7a\xa1\xc4\xb4\xe1\xa5\xd1\xb0\xe6\xf9\x4a\xe6\x2b\x36\xf1\x7c\x7f\xe6\x47\x9f\x2f\xdc\x85\x1b\x8d\xdd\xe9\x28\x3c\x87\x1e\x1c\x1f\x1d\x1d\xb1\x53\x98\x73\x13\xaf\x01\xd5\xe3\x03\xf4\x8b\x2a\x4d\xa1\x14\x5f\x55\xd8\xad\xd8\x8e\xb8\x63\xae\xf9\x62\x3c\x8e\x7c\xf7\xf3\x85\x1b\x84\xdf\x37\x63\x29\x96\xa2\x2c\x45\x02\x63\x19\x8b\x5c\x0b\x8d\xdc\x2e\x52\x1e\x0b\xe0\x86\x54\xde\xa8\xa2\xd1\xfe\x54\x6a\x54\xec\x29\x1a\x44\x56\x69\x03\x19\x4d\xbf\x94\x69\x6d\x25\x32\x87\x58\xe5\xcb\xc3\xd4\x12\x43\x6d\x8f\x2b\x6d\x54\x76\xd8\x6e\x66\x73\xdf\x3d\x73\x7d\xdf\x1d\x46\x63\x6f\xe0\x4e\x03\x37\x80\x1e\xf4\x0b\x1e\xaf\x45\xb3\x0e\x38\xe9\x1e\x39\xc8\xfb\xfa\x1d\x75\x4c\x6a\x7e\x99\x0a\xe0\x97\x32\x95\x86\xd4\x42\xe6\x46\x94\x3c\x36\x70\x23\xcd\x7a\xcf\x38\xe0\x72\x03\xe7\x61\x38\x87\xa2\x54\x46\xc5\x2a\x65\x43\x2f\xe8\x3f\x1b\xbb\x11\xb6\x46\x23\x92\x6a\xa3\x3a\x6e\x7e\x9b\x70\x26\x57\x25\x37\xa2\xad\x33\x97\x1b\x48\x55\xcc\x53\x32\x4a\xe6\x4e\x89\xd8\x78\x36\xe8\x8f\xa3\x79\x3f\x3c\x8f\x26\xde\xc8\x27\xa5\xd9\x12\x6e\x9b\x74\x57\x24\xf8\x8b\x96\x3d\x96\x9a\xf4\x91\xd8\x26\xde\x1a\x91\x6b\xa9\x72\xbd\x75\x56\x68\x6c\x6b\x7e\x8d\xec\xce\x05\xdc\x94\xbc\xd0\xc8\x58\x14\xc0\x40\x25\xa2\xd6\x42\x4b\xaf\xcb\x4e\x21\x10\x05\xa7\xc5\xb6\x68\x11\x3f\x38\xc4\x2a\xcb\x78\x17\x42\xb5\xa3\x45\xd3\xda\x0e\xaa\x32\xbb\x31\x0e\xfc\x0c\x25\x5a\x54\xa6\x19\xc7\xc6\xde\xd4\x8d\x5e\xfa\xfd\x79\xe4\x7e\x11\xba\xd3\xc0\x9b\x4d\x51\x50\x5d\xf3\xd6\x38\xdd\x2c\x71\xba\x19\x2f\xaf\x12\x75\x93\xe3\x9b\xfd\xb9\x4a\x1c\x76\x0a\x2f\x78\x2a\x13\xbb\xbf\x4c\x25\xa2\xde\x1a\xed\x89\x43\x51\x8a\x6b\x29\x6e\xa0\x3f\xf7\x80\x6b\xad\x62\xc9\x8d\x48\xec\x8a\xcd\x5a\x64\x0e\xe8\x2a\x5e\x03\xd7\xc0\x0b\x79\x78\x7d\x7c\xd8\xcc\xb2\xb7\xd7\x6b\x9e\x56\x56\xca\xb4\x56\xdd\x45\x55\x26\xba\x86\x5f\x22\xbb\x90\x3f\x34\x3b\xdc\xa8\xfc\x63\x1b\x05\xd0\x7c\x90\x8d\xfb\x9c\x87\x44\x09\x8d\x5d\x48\x9b\x51\x39\x5f\x78\xee\x4b\x12\x2f\x06\x26\x72\xd2\xb8\xef\x66\x1d\xfb\x72\xad\x8a\x54\xf1\xe4\x62\xa7\x45\x2d\x95\xa1\x79\x6c\x07\xdd\xad\x55\x66\x08\x3d\x30\x65\x25\xac\xb9\xaf\x51\xd9\x8c\xc8\x0a\x55\xf2\x52\xa6\x1b\x72\xf4\xdb\x31\x70\xaf\x71\xed\x14\x08\x56\xc2\x68\x88\x53\xc1\x73\x91\xe0\xce\x31\xec\xd0\x56\xc9\x69\x92\xf1\xdf\x67\xa1\x3b\x99\x93\x42\x62\x5c\xe1\x86\x1f\x9a\xac\x38\xac\xe9\xa1\x9b\xc5\x25\xa1\xc3\xaf\x85\xc2\x4b\x01\x3c\x4d\xd5\x8d\x48\x6a\x3f\x6b\xfb\x8a\xc4\x01\xd1\x5d\x75\x41\x66\x7c\x25\x0e\x7f\x56\x88\xd5\xdf\xb2\x8f\x45\xbe\xea\xc2\x58\xa0\x30\x45\x56\x98\x4d\xed\x3f\x89\x08\xf0\xbc\xde\x35\x4e\xc1\xfa\xe3\xf1\xec\xa5\x3b\xa4\x58\x11\x90\x97\x9f\xd4\xde\x59\xcb\xaf\x29\xa6\x0a\xde\xf8\x0f\x99\xc3\xe4\x19\xb3\x0c\xef\x7f\x11\x05\xde\x97\xe8\xdc\x1f\xb4\xc6\xe4\x55\x76\x29\xca\xc6\x72\xb4\x75\xe2\xb4\x58\xf2\xd9\x38\x14\xc5\xf4\x88\xb1\xd7\x95\x44\x81\x4c\xb7\x03\xf6\x3c\xc3\x76\xdf\xa8\x12\x22\xc1\x99\x55\x8e\xfa\x50\xa4\xc8\x7b\xc4\x07\xcc\xfd\x62\x3e\x9e\xf9\x6e\x34\x27\xf0\x11\x4d\x17\x13\xe8\xc1\xc9\xd1\x1e\x51\xa9\x75\xf5\xfd\xe4\x88\x8c\x17\x04\x8b\x5b\x44\x8e\xf7\x89\x6c\xc3\x95\xca\x32\x69\xf4\x2d\x22\x3c\x36\xf2\x1a\x5d\xd2\x52\x88\x84\x9d\xb9\xee\x90\x98\x33\x98\x4d\x26\x5e\x58\x13\x7c\x64\x0d\xae\x22\x7e\x1e\xa0\x05\x89\x4e\xac\x52\x55\x1e\x40\x26\x0c\x07\xc3\x57\x0e\x06\x3b\x52\x99\x7e\x9e\x94\x4a\x26\xf0\xd3\x1e\x3c\xea\xe2\x4a\xfa\x39\xc8\xfc\x9a\xec\x95\x06\x41\x2a\xaf\x04\x1c\xe4\x2a\x17\x16\xac\x24\xd6\xeb\x1e\xc0\x8d\x4c\x53\x6b\xc3\x68\x42\x8d\x62\x6a\xb3\x49\x51\x97\x27\xc8\x3a\x99\x2f\xd5\x53\x58\x1b\x53\xe8\xa7\x87\x87\x89\xb8\x16\xa9\x2a\x44\xa9\xbb\x2b\xa5\x56\xa9\xe8\xc6\x2a\x3b\xbc\x11\x97\x87\x55\x91\x70\x23\xf4\xe1\xc9\xd1\xf1\xc3\xc3\xe3\xe3\xc3\xc0\x82\x8e\xce\x52\x95\x9d\xd6\x06\x3a\x32\xef\x0c\xd6\xa5\xca\x44\xe7\xc1\xa7\xf4\xb1\x5e\x3e\x0b\xcf\xdd\x89\x1b\x0d\x66\xe3\x99\x1f\x4d\xdc\xb0\x1f\x85\xfd\x11\xf4\xe0\xcd\x8f\x96\xcb\x47\x0f\x1e\x3e\x78\x63\xb5\xc6\x6a\x99\xcc\xe1\x72\x63\x84\xde\x29\x8e\xd5\xf3\x44\xea\x22\xe5\x1b\x91\xec\xac\x4c\x6a\x78\x32\x79\x76\x9f\xd4\x69\xe8\x05\xf3\x71\xff\x95\x75\x01\xb5\x36\x3e\x79\xf0\xe4\xc9\xe3\xa3\x27\xa4\x60\x5d\x9e\x64\x32\xdf\x57\x33\x84\x14\x1f\x56\x08\x04\x88\xfb\xfa\xf0\xe8\xe8\x7d\x4d\xfd\x20\x09\xdf\x9d\xcf\x3e\x48\x22\x57\x46\xc6\xff\x0f\xc5\x9c\xce\x42\x6f\x70\x5b\xbd\x1f\xed\x91\x51\xe5\x8a\xe7\xf2\x6b\x0b\xa2\x3e\x44\x6b\xe6\x8f\xde\x5b\x0f\x71\x08\xd9\x71\x87\x1d\xfe\x96\xbb\x3b\x46\x83\x6e\x7c\x6f\xcb\xcf\xae\x79\x99\xd8\xb0\x76\x59\x0a\x7e\xb5\xf3\xe7\x4d\x6c\x3e\xef\xfb\x08\x30\xa6\x6e\xf4\xcc\x77\xfb\xcf\x5b\xf1\xbe\x89\xc0\x16\x9b\xc0\xc2\x1f\x77\x82\x18\xf5\xee\x0e\xa7\xc8\x35\x4e\x72\xa5\xe1\x66\x2d\x72\x28\x45\x9e\x08\x42\xe2\x93\x26\x1a\x9c\x12\xce\x15\x6f\x79\x56\xa4\x02\xa1\xbf\x93\xf1\x55\x2e\x0c\xb3\x39\x4e\xb4\xf0\xc7\x51\x30\x40\x85\xb5\x2e\xf0\x87\x84\xff\x4b\x51\xcf\x24\x92\x43\x0c\x64\x76\x1d\xad\x29\x7f\x50\xcc\xb7\x24\x9a\x80\x7f\xa8\x5a\x21\x8f\xeb\x6d\x38\xbb\x23\xf0\x93\xce\xef\xc7\xfc\xef\x0b\xf7\x8c\xbd\xb6\x99\xc3\x05\x9b\xfb\xb3\x70\x36\x98\x8d\xa1\x47\x2e\x80\x0d\x67\x93\xbe\x87\x68\x88\x60\xd3\x5a\x69\x43\xd9\x07\x32\x04\x7a\xf0\xe3\x7b\x4d\xff\xfb\xe8\x2c\x7e\x7c\xcf\x76\xbf\xaf\x9f\xfe\xf8\x1e\x41\xb4\xf9\xcc\x0f\xef\xeb\x43\x46\x2f\xfd\xe1\x10\x13\xab\xa3\x2e\xfd\x63\xdb\x0e\x18\x22\x6a\x24\x2b\xca\x4c\x6a\xda\x1c\xca\xa3\xca\xe5\x5b\xd0\x2a\xbe\x12\x86\x2d\xa6\xde\x17\x51\x30\x1b\x3c\x77\xc3\x68\xee\xfa\x13\x2f\x08\x2c\x4c\x7b\xfc\xf8\x31\x0a\x84\x50\xdd\xbd\xe1\xe4\xcb\xfb\xa8\x0a\x34\x9c\x42\xeb\x8d\x2a\xaf\xd0\xa0\xef\x35\x80\x24\x08\xce\xc1\xfa\xae\xfb\xc0\xe3\x58\x68\x8d\x9a\x70\x23\x2e\x29\x7b\x92\xb1\x40\x88\xe2\xe5\x90\x29\x6d\x20\xe6\x88\xa6\x37\xaa\x82\x44\xa1\x4d\x42\x2e\x6c\x8c\x8d\x11\x9f\xef\x7b\x51\x42\x33\x38\xb8\x9f\x1a\x51\x02\xe6\x2b\x79\xba\x41\xb8\xb2\x51\x55\x49\xf3\xd6\xf9\x59\x8e\x88\x46\x6a\x22\x48\x09\x29\xc2\x6e\xae\x2d\xd6\xc5\x8f\x5d\x66\x31\xe9\x87\x58\xbd\x65\xe9\xfb\xdc\xde\xc1\x6c\x9c\x74\x29\xb8\xa9\x4a\x61\x75\x1f\xa7\xe4\xd7\x5c\xa6\xf8\x79\x0b\xa7\xb1\xdb\xce\xb2\x5e\xae\x05\x25\xbd\x95\x16\x70\x59\xc9\xd4\xc8\xbc\xbd\x7a\x85\x1b\x30\x5d\x16\x84\x7d\x3f\xc4\xa1\x51\xe0\xfa\x2f\x28\x67\x6e\x28\x0c\x55\xc6\x65\x5e\xa7\xef\xe4\xa8\xc5\xdb\x42\x69\xeb\x26\x90\x54\x9c\xa2\xb3\x58\xf8\x63\x86\xe3\xb7\x4a\xb6\x53\x20\x54\x06\x55\x9a\x06\x2f\xfc\x00\x22\xb5\x26\x9d\x9c\xa0\xb3\x12\x06\xe5\x6e\x53\x8b\x25\xe6\x41\x77\xec\x03\x13\x21\x91\x6b\x50\x39\x8d\x1f\x7b\x41\xe8\x4e\xa3\xf3\x59\x10\xb6\x94\x74\x7f\x19\x3f\x98\x4a\xbd\x98\x1f\xdf\x6b\x56\x46\x3b\xda\x95\x03\xd4\x92\x68\x24\xb2\x14\x31\xa2\xcc\xbd\xfc\xff\xe3\xdf\x3d\xec\x6a\xbd\xfe\xd8\x81\xcb\xca\x90\xf2\xd9\x88\xad\x48\x22\x1f\x1f\xae\x55\x26\x0e\x57\xd2\xd8\x5e\x5d\x9a\x97\x34\xc5\x22\x46\x12\x7f\x4d\x97\x54\x15\x93\x68\xb1\x05\xa8\x9b\xc6\x97\xa0\x3a\x50\x9a\x5a\x54\x97\xa9\x8c\xaf\xe0\x4a\x6c\xa0\x22\x6b\xd0\x7a\xdd\xb9\x12\x9b\x95\xc8\x31\x13\x68\x2d\xad\x2e\x9d\xec\x68\x6d\x77\x60\x97\xf1\xdc\x7d\x15\x85\x98\xa9\x6e\x97\xd2\xe0\xe3\x16\xc9\xbd\xbd\xee\xda\x3f\x06\x9e\x27\x90\x0a\x74\xa0\x22\x4d\x61\x29\xf3\x04\x30\xbd\xb9\x59\xcb\x78\x4d\xd1\x05\x77\xc3\xd3\x74\x3b\xd7\x08\x59\x6d\x61\xf2\x8e\x0e\x99\x6f\x22\x63\xdc\xf4\x4d\xad\xca\x64\xb1\x22\xbe\x82\x4c\xe6\x04\xd5\x70\xaf\x84\x2c\xc8\xe1\xc6\xaa\x2c\x85\x2e\x54\x9e\xe0\xee\x09\xf6\x4e\xbc\xa9\x37\x59\x4c\x68\x47\x88\x1c\xa2\xc1\xb9\x3b\x68\xc7\x9f\xc6\xc4\x06\xc3\x29\x82\x77\x84\x60\x4d\x7d\x08\x33\x16\x36\x3b\x3b\xa3\xb8\x55\x97\x87\xec\xb0\xc6\xe0\xfc\xd9\x22\x74\xfd\x68\x3c\x1b\xb5\x8b\x1f\x22\x17\x14\x0f\xb4\x11\x85\x7e\xca\x4e\xe1\xaf\x41\x97\xea\x3f\x10\x8b\xd2\x40\x27\xe6\x3d\xcc\x3a\xa0\x93\x54\x25\x85\xf4\xde\x93\x4f\x1e\x1f\xad\x8f\xb2\x23\x0d\x1d\xf4\xcd\xbd\x6c\x83\x3f\xdd\x3a\x90\x21\x56\x63\xa7\xec\x14\x66\x25\x2c\x4b\x95\x01\x87\x6e\xb1\x7c\xdb\x44\x2d\x84\x6b\x22\xb1\x5f\xd0\x0d\xbd\x94\x79\xa2\x6e\xec\x64\x72\x69\x19\x68\x53\x99\x7b\x89\x62\xa7\xe4\x3b\x96\xaa\x5c\x09\x83\xfc\xb4\xe3\x69\x60\x5d\xd5\x41\xa6\xde\xb7\xcb\x56\x85\xc8\xb5\x4e\xa1\xb8\x8a\xf5\xf1\x09\x74\x64\x4e\x54\x69\xf6\x0e\xca\xd4\xbe\x89\x0c\x3a\xb9\xba\x12\x1b\xfd\xc3\x46\x5d\x89\x4d\x33\x08\x3f\x68\x7c\x48\x84\x66\x03\xd7\x0f\x09\xe4\x41\xaf\xa9\x55\x10\x80\x3d\x6c\xa6\x61\x28\xc6\xbb\x3a\xd4\x14\xd9\x29\x2c\x0a\xcc\x45\x52\xc4\xbb\x54\x2a\x11\x59\x91\xe2\xa6\x50\x29\xb5\xe1\x46\xc6\x96\x6f\x54\x39\xd8\x33\x0a\x62\x01\xaa\xf9\xcd\x5a\x94\xa2\xce\xe8\x34\x88\xb7\x22\xae\x8c\x48\xd0\x51\x86\xde\xe0\xb6\x89\xb6\x93\x42\x8c\x56\xfd\xa2\xa0\x5c\x8f\x0a\x9a\xc3\x7e\xd8\x6f\x27\x80\xb6\x1e\x9a\xa2\x4c\xa8\x1c\x46\xab\x1c\x7d\xe9\xcd\x9b\x5a\x5f\x83\x97\xa8\xad\x05\x92\xb8\x55\x69\xaa\x97\x2e\xc9\x73\xe7\x9d\x54\xad\x56\x22\xb1\x40\xd7\x81\x98\xe7\x54\x16\x44\xaf\x62\xb3\x85\x3a\x89\x3a\x60\xe3\x3e\x15\x7a\x11\xca\x21\xe3\xb0\x07\x63\xaf\x91\x71\x17\xdb\x7c\x85\x96\x4e\x61\xb4\x33\x50\xb9\x29\x55\xda\xe9\x23\xea\xea\xcc\x4a\xb9\x92\x39\xac\x05\x4f\x44\xb9\x67\xf3\x14\xf6\x14\x14\xa5\xd0\x22\x37\xac\x3f\x18\xb8\x41\x10\x0d\x66\xd3\xd0\x9f\x8d\x23\xca\x37\xa3\x99\xef\x8d\x28\x24\x30\xcb\x2b\x84\x88\x5b\x34\x97\xae\x54\x29\xcd\x3a\xd3\x24\x1c\xb3\x16\xb2\xdc\x33\x6c\x5b\x71\x83\x7b\xe8\x2e\x3b\xc7\x38\x57\xd2\x94\x9d\xc8\xb8\xef\xb3\xd7\x5a\xaf\xbb\xf5\x90\xe8\x4a\x6c\x22\xf4\x05\xfa\x82\xb9\xc3\x93\x47\x8f\x8e\x3f\x25\x20\xfd\x98\xb9\x83\x61\xd0\x07\xa8\xdf\x7c\x7a\xa6\xb7\xa3\x87\x4f\xd8\x70\xfb\x7a\x7c\x74\xf2\x90\xb1\xd7\x28\xa7\x4b\xae\xc5\x45\xab\x6c\x9c\x6d\xf4\x57\x29\x15\x8e\x95\x36\xab\x52\x68\xcb\x61\xfd\x55\x2a\x8d\x78\x70\xe0\x80\x34\x1f\x6b\x8b\x0f\xe2\xb5\x92\xb1\x60\xc3\x67\x4d\x55\x96\xc6\xb2\x3a\x1e\x1d\x9f\x7c\x42\x11\xe9\xf8\xe9\x83\x07\x47\x8f\x59\x5d\xf0\x46\xdf\xc0\xea\x7a\x75\xa9\x94\x61\xf3\x7e\x10\xbc\x1c\x36\xb5\xd8\xbd\x69\xf3\x74\xe3\x80\x68\xca\xd9\x75\x42\xe8\xc0\x41\x29\xbe\xaa\x64\x59\x8b\xfe\x5a\x94\x72\xb9\xe9\x2c\xab\x34\x3d\x60\x41\x30\xde\x16\xb7\x6d\xff\x86\x6c\xb3\x7e\xe2\xff\x81\x91\xc9\xe5\x01\xa5\xa7\xc0\x2f\xb5\x4a\x2b\xb3\xb3\x87\x9c\xe2\x17\x95\x35\x10\xe1\xd4\x10\x8b\xb5\x6b\x1b\xb8\x89\x6e\x72\xc9\xd8\xeb\x3a\x1b\x43\x34\x1a\x57\xa5\x34\x9b\x0b\xe6\x4d\x83\xb0\x3f\x1e\x47\xe3\xd9\x9e\xf3\xfd\xe8\x23\x7b\x2a\x61\x0f\x2f\xc2\x19\x3c\x77\xdd\x39\xbc\x9a\x2d\x7c\x20\x76\xa0\xfd\x40\xd0\x3f\x73\x3f\xfa\x88\x05\xee\xc0\x77\x43\x74\xe4\xd0\x83\x8f\x7e\xf4\xd9\xd9\xd0\x7d\xe9\xbb\x2f\xfd\xbf\xfe\x37\xee\xa1\x59\x55\x46\xa1\x45\x48\xcc\x0b\x32\x41\x61\x3e\xe1\x1b\xcd\xc6\xb3\x91\x37\x8d\x7c\x77\xe2\x4e\x9e\xb9\x7e\x34\xec\xbf\x42\x0c\xfd\x09\x1b\xcc\x66\xcf\x3d\x97\x4e\x09\x5a\x52\x88\xf8\x8d\xd0\x68\x1f\xf5\xe7\xed\xb8\x76\x1f\xaa\x00\x27\xd2\x32\xd2\x17\xd7\xa2\xd4\xe8\x3c\xd5\xdb\x0d\xf0\xca\xac\x45\x6e\x1a\x03\xb7\x56\xb3\x3d\xb5\xa0\xa3\x0a\x7c\x61\xbe\xfb\xc2\xf5\x03\x37\x9a\xfb\xb3\x2f\x5e\x45\xfd\x45\x78\xee\x4e\x43\x6f\x60\x0b\xdd\xb5\x26\x7c\xd1\x79\xe9\x3e\xc3\x4f\x1d\x6c\xa8\xc1\xbd\x8c\xc5\x05\xeb\x0f\x42\xef\x05\xe6\xdc\x43\x37\x1a\xe3\xd3\xc4\x9b\x2e\x42\xaa\xb8\x1c\x3f\x39\x62\xbe\x1b\x20\xba\x26\x1d\xfa\xde\x4e\xa7\xb0\xa0\xd5\x34\x40\x58\xe5\x4b\x59\x66\x20\x3a\x19\x97\x29\xb9\x83\x52\xac\xa4\x36\x36\x42\x31\xdf\x1d\x21\x24\xf2\x23\x77\xd2\xf7\xc6\x11\x1d\x16\xf9\x93\x3d\xac\x28\xac\x4b\xb0\xc5\x27\x3b\x58\x94\xa4\x5a\xa4\x10\x0d\x80\xe1\x71\xac\xaa\xdc\xa2\xea\x5d\x20\x25\xf2\xb7\x6a\xb6\xf5\x12\xa9\xba\xad\xe5\x8a\x42\xb3\x51\x40\x95\x45\x9e\x6f\xcc\x5a\xe6\xab\x2e\xf3\xdd\xcf\x17\x9e\xef\x46\x81\x37\x9a\x7a\xd3\xe8\x85\xe7\xbe\x6c\x51\x98\xe0\x6e\x30\x0b\x5f\xd6\x32\x69\x3c\x2c\x66\xdd\x67\xaf\x22\xdc\x4d\xbb\x3b\x86\xc9\x44\x18\x2e\xd3\x5d\xf1\x64\x25\xcd\xba\xba\xa4\x8a\xc9\x4a\xad\xa4\xd1\xa4\xeb\x87\xb6\xe6\x74\x78\xfc\xf8\x51\x43\xf3\x43\x52\xdd\x4e\xf2\x7d\x7d\x67\xdf\xc7\x84\x3a\xc7\x8e\x79\x61\xe2\x35\x07\x2a\x10\x59\xf5\x7a\x4f\x4a\x35\xed\x41\x7f\x1e\x0e\xce\xfb\x4d\x75\x93\xbd\xbe\x11\x97\x6b\xa5\xae\xd0\xa5\x9d\x2b\x75\x05\x86\xeb\xab\x0f\x1c\x6b\xd4\xdd\x31\x03\x56\x77\x1d\x66\xdc\x7d\x7e\x31\x14\xa9\x44\x28\x6d\x64\x26\x30\xca\xcb\x1c\xb4\x88\x55\x9e\x68\x36\x74\x51\x03\xfd\x28\xf4\x26\xee\x6c\x11\xd6\x95\x32\x0a\x30\x20\x73\x72\x13\xa2\x85\x57\x70\x2b\xc1\x73\x6f\x1e\x85\xe3\x20\x7a\xe1\xfa\xde\xd9\xab\x16\x3f\x76\x25\x8c\xb5\xd4\x84\x8e\x65\xbe\x54\x65\x66\x79\x22\x73\x5b\xc8\xa4\x0a\xc6\xed\x6a\x1f\x7b\x8d\xda\x8d\x09\xf2\xae\x00\xdc\x90\x7d\x56\x2d\x97\x84\x1c\x28\xe8\xa8\x25\xe5\x86\xb9\x48\x1d\xb8\x12\xa2\xc0\x3c\x90\x6b\xfc\x5f\xea\x3a\x17\x84\x84\x8a\xd9\x57\xb9\xba\x81\x9b\x35\x37\xf6\x63\x97\x05\xee\x74\x18\x3d\x5b\x9c\x9d\x21\x32\x74\xa7\x96\x41\xcd\x51\xcd\xae\xd2\x25\x73\x20\x53\xb3\xc7\x9f\xc1\xe2\xd9\xef\xb8\x03\x9b\x6c\x34\x47\xa1\x94\x6c\x90\x02\xdb\x24\x05\xb1\x65\x46\x9a\xa9\x33\x53\x74\x57\xf8\x8c\x5a\xf9\xf4\xd1\x93\x4f\xd8\x29\x7c\xfe\x79\xfd\xe1\xab\xaf\xa8\xf5\xe1\x63\x2a\x22\x29\x23\x9c\xa6\xd8\x4e\x50\x4f\xe4\x49\x5d\xa0\x38\x78\xf8\xf8\xd1\x81\x03\xc1\x24\x9c\x07\xb6\xa6\x78\x29\xa8\x3c\xd9\x85\x05\x25\x10\x94\x1b\x86\xe3\x00\x54\x6e\xc7\x3e\x7a\xf2\x09\x32\xa0\x14\xb1\xca\x32\x91\x27\x22\xa1\xd2\xaf\x7f\x36\x80\xc7\x0f\x8f\x3e\xed\x82\x57\x9f\xcd\xee\x9f\x60\xee\x08\x49\x63\x27\xe2\xe9\x0d\xdf\xe8\xed\x7c\x75\x7c\x6c\xe1\xf1\x73\x77\x3c\x43\x24\x69\x35\xdb\xc6\x20\x04\xc5\xe4\x4b\x39\x5a\xa9\x44\x79\x89\xdc\x74\x77\xc7\x49\x38\x06\x89\x0c\x6c\x31\x69\xdb\x1f\x0d\x65\x9f\xe0\x1e\x92\x21\xe8\x6c\x73\xa2\x2e\xc3\x7e\x94\x3e\x5a\x97\x4f\xae\x8d\x1c\x9b\x0d\xaa\xb4\xbd\x36\xb4\x56\xed\x1d\x77\x61\x96\xa7\x1b\x8a\xa1\x66\x8d\x94\x55\x09\x5a\xa4\xcb\x0e\xfa\x2f\x91\xb4\x07\x6a\xab\xe2\x8d\x7a\x5b\x6f\x07\x71\x2a\x45\x6e\xda\xfd\x10\x18\x44\x88\x8c\xbd\x33\x74\x25\xbb\x24\xe4\x0e\xb4\x6c\xb5\xfb\x43\x70\xb9\xee\xb1\xc3\xcb\xa4\x5f\x36\xab\x48\x92\x52\x68\xed\x90\x34\x1f\x3d\x38\x39\xe9\x42\x88\x7b\xa8\x91\x25\x55\xa6\x78\x0e\x82\xb4\x76\xdb\x59\x95\xb4\xfd\x37\x07\xa8\xde\x07\xf0\x13\xfa\xfc\x59\x2b\x73\xf9\xe9\x1b\xb0\xd6\xc9\xce\xfc\xd9\xa4\x3e\x79\xc0\x45\xec\xc2\x21\x05\x89\x82\x6b\x7d\xa3\xca\xa4\x06\x42\x6d\x0c\x84\x8c\x31\xe2\xad\x39\x5c\x9b\x2c\xa5\xd3\xa8\xd4\x88\x32\xe7\x46\x5e\x8b\x9a\x38\x19\xac\xca\x0d\x22\xd1\xa6\xe6\x18\x4e\x10\x86\x86\x18\xe0\x31\x5e\xb6\xce\x02\x63\x1e\xaf\xf7\x01\x9e\xc8\x54\xb9\xb1\x38\x2a\x91\xfa\x80\xf6\x85\xad\xd4\xf3\x60\xff\x5c\xbf\xee\xcc\xfa\xc3\xfe\x3c\xa4\x50\x6d\x5b\x1a\x58\x55\x7f\xaf\xb1\xda\x68\x60\xeb\x17\xd7\x3c\x6d\xb9\xc4\x3d\x8a\x8f\x8f\x98\x37\x0d\x5d\xff\x45\x1f\x63\xd1\xe3\xa3\x86\x90\x5d\x8b\x45\x67\xad\xb5\xc4\x2a\xcf\x45\x6c\x01\x86\x42\xa1\x58\x59\xb0\x53\xa0\x01\x4f\x21\xb7\x75\x93\x9e\x89\x0b\x07\x3f\xf6\x9e\x3e\x7e\xf0\xc9\xa7\x4e\xc3\xe1\x5e\xc6\x63\x5e\xaa\xdc\x49\x2e\x7b\x47\x4e\xa1\x54\x4a\xb8\xb9\x77\x7c\x74\xe4\xc8\x24\x15\x51\xed\xc1\x7b\x16\x27\x34\x33\x3f\x85\x37\x3b\xf8\x7a\x7c\x7c\x72\x7c\xfc\xa6\x31\x5b\xc4\x26\x54\xef\xbb\x9b\xa7\x98\x70\xd5\x2c\x6d\xd8\x7b\x17\x3f\x9b\x6b\x25\x6d\x86\xce\x4b\x75\x2d\x11\x43\x11\x40\x59\x81\x2a\x70\xdf\xda\x2e\x4b\x95\x9b\xa7\x64\x9a\xf6\x38\x33\xdf\x34\xbd\x36\xc2\xb0\x53\xca\xf3\x9e\x42\xbd\xb2\x5d\xd6\x57\x1f\xa6\xbd\x21\xd4\x5a\x7f\xd5\x6f\xfe\xca\xb8\x87\xf0\xff\x29\xac\x54\x47\x7f\x95\x76\x92\x12\x43\xe4\x21\x35\x42\xa2\xf3\x66\xc1\xda\x94\x32\x5f\x35\x2b\xc3\x1c\xe0\x69\x33\xdf\x67\xcd\x1a\x23\x83\x8e\xf1\xcd\x96\x4d\x51\x7d\x63\xa7\xc6\xdf\xcd\x4e\xa8\x22\x6d\xb7\x1c\x2b\x75\x25\xed\x75\x80\x06\xd0\xd6\x38\x56\x46\xa9\xbc\x12\x91\x85\x33\xec\x14\xdd\x36\x46\x34\xf4\x5b\x0d\xbf\x30\xe9\x43\x00\x54\xab\x71\xdb\x5d\x5a\xf7\x63\x09\x06\xee\x60\xe1\xbb\xef\xc3\x15\x2d\x4c\x3d\xff\xde\x58\x02\x24\xb5\x81\x22\x4a\xb5\x54\x76\xe7\xb0\xcd\xd2\x47\x03\xc2\x11\x5b\xd3\xd9\x23\xf2\xe4\xf1\xc3\xa3\x23\x36\x1a\x44\x8d\xd5\x10\xb0\x80\x5e\xfd\x61\x47\x25\x95\x4b\x41\x74\xee\x18\x1e\xb8\x54\x7a\x8e\xc6\xde\x99\xbb\x3f\x9e\xbd\x2e\x64\x6c\xaa\x92\x3c\xc4\xb6\xf0\x65\x0f\x83\xf5\xf6\xa0\x13\x33\xd8\x6b\x6e\x78\xa9\x59\xff\x45\x3f\xec\xfb\xd1\x62\x3e\x9e\xf5\x87\x7b\x07\xbe\x4d\x8f\x53\x18\xac\x65\x2e\xb4\xa8\xcf\xa5\xd0\xa7\xc6\x6b\xa5\xb4\x80\x83\xa4\x52\x7a\x5d\xa9\x03\x76\x8a\x16\xc2\x9b\x93\x10\x3b\x14\xb4\xaa\xca\x58\x38\x74\x16\x68\x21\xe9\xd3\xc3\xc3\x38\xef\xae\x4a\xdb\x81\x60\xa9\x7d\x3c\x64\x23\xbf\x5e\x4a\x30\x5b\xf8\x03\x4a\x58\xea\x6e\x74\xcb\x48\x6a\x5b\xdd\xde\xc6\xfa\xa5\x2a\xe3\xed\x61\x33\xd5\xa4\x64\x0e\x6a\xb9\xa4\xa3\x9c\x8c\x2a\xd8\x4d\x6c\x6d\x48\xb7\x24\x7d\x26\x12\x2a\x74\x35\x8c\x80\x54\xa9\xab\xaa\xc0\x2d\x6a\x18\x4e\x83\x3a\x63\x8f\x15\x42\x81\xba\xcb\xee\x96\x01\x3b\xb5\x20\x84\x02\x86\x76\x40\x0b\xb1\x45\xdc\x37\x37\x37\xdd\x54\x5e\x36\x5b\x54\xe5\xea\x07\xac\x9f\x96\x75\x7b\x03\xc8\xd2\x51\x4d\x07\x65\x9f\x48\x7d\xc9\x53\x44\x1c\xb5\x12\x9e\xb9\x43\xd7\xef\x87\xee\x30\xda\xee\xaf\x06\xcd\xdc\x18\x1e\xaf\x33\x91\x9b\x8b\x56\x35\x7d\xd7\xaa\x09\x86\x08\x52\xf7\xa4\xdb\x54\x82\xe8\x48\xf3\x0d\x92\x78\x53\x4f\x71\xeb\x92\x01\xdd\xc4\xda\x11\xb9\x35\xd0\x6a\xcd\xee\xf3\x9b\xbd\x1c\xbb\xf5\x81\x9d\xc2\x2c\xa7\xed\x65\xaa\x7d\x6f\x60\x53\x08\xfd\x81\xeb\x02\xb7\xef\x01\xdc\xdd\xa9\x75\x64\xdb\xbe\x18\xb0\xbf\xd6\x07\x27\x93\x67\xac\x75\x3f\xe0\x61\x3d\xec\xfb\xef\x06\xec\x8f\x3f\x3e\x7a\xef\xae\x00\x9a\x2a\x32\x3b\x28\x44\x2c\x97\xf6\x82\xc0\x36\xc2\x23\xe3\x96\x55\x9a\x6e\x40\x55\xa6\xa8\x50\xef\xe8\xe8\x7a\x9f\xaa\x7f\x36\x38\x3e\x3e\x79\xd0\x10\xe1\x69\x03\x42\x45\xd2\x5c\x54\x41\xb1\xf5\xa7\x81\x37\x70\x60\x91\xcb\xb7\x43\x8e\x08\xd9\xaf\x2e\x37\xf5\xd3\xd9\xe0\xc9\xc9\x49\xf3\xfb\xa5\x7d\x78\x74\xe4\x34\xa4\xb7\x0f\xf6\xd3\x83\x07\x0f\x3e\xdd\x3e\x4c\x79\xae\x1c\x78\x2e\x4d\xbc\x16\xb9\x03\x81\xe1\x59\x51\xff\x4c\x64\x9a\xca\xed\x73\x5c\x2a\x8a\xeb\xf4\x8a\xa3\xea\x98\x9f\x35\x67\xf7\x4d\x3e\xc3\x2f\x31\x97\x6a\xb1\xa1\xb1\x13\x4c\x4c\x55\xca\xf3\x15\x9a\xc7\x61\x71\xb5\x3a\x44\xee\x1d\xfe\xa8\xb8\x5a\x75\x62\x95\x6b\xc3\x51\x4b\xce\x66\xfe\xa4\x6f\x43\x74\xaa\x56\x17\x6c\xbf\x7a\xd9\x84\x6a\xec\xaf\x6c\x1d\xa9\x8e\xd5\xd8\x94\xe3\x2f\x66\x14\xf5\xed\x83\xba\x30\x76\x2b\x7a\x37\x63\x1b\x00\xab\xb2\x8c\x93\xc3\x6c\x8e\x45\xb3\x2a\x35\xb2\x68\xee\x1f\xd5\xba\xd9\x0c\x73\x48\x49\x0e\x58\x5d\xa0\xaa\x5b\xff\x7f\xa6\x63\xb7\x33\x31\x0a\x10\xcd\xc6\xc3\x92\xc7\xb4\xdd\xa1\xb8\xac\x56\xf8\xe0\xe5\x4b\x85\xbf\x2f\x79\x49\xfb\x77\xcb\x52\x95\xf8\x30\x28\xa5\x91\x31\x4f\x6f\x6d\xdf\x52\x60\x63\xf7\x85\x8b\xe0\x8d\x5e\x59\x03\xe0\x1a\xde\xd4\xae\x28\x4f\x37\x24\x86\x6e\xdd\x7e\xd1\x0c\xdb\x0e\x20\x66\xdc\xee\x8d\x8d\xbb\xae\xb5\x23\xb4\x7e\x47\x03\xaf\x8c\xca\xc8\x09\xa7\x6a\x05\xa5\x32\xdc\x88\x7b\xfa\x06\x35\x90\x4c\x50\xa1\x63\xc0\x5c\xae\x46\x4e\xf7\xdf\x0f\xc7\xe3\xd9\x28\xf2\x67\xa1\xcd\x2d\x6a\x57\x85\x86\x4c\x4e\x74\x67\xcd\x98\x11\xa6\xf6\xc2\xd6\x1e\x0d\xe2\xe9\x91\x35\xe6\xb1\x37\xb5\x15\xa6\xba\xad\xe5\x48\xf4\x5a\x2e\xcd\x87\xe8\x9c\x3c\xa9\xaf\x2f\x1d\xc3\x4f\x7e\x02\x27\x4f\x1c\x38\x79\xf4\xb8\xe5\x62\xa2\xe0\xdc\x3b\xa3\xb3\xc1\x27\x14\xe2\x57\xe8\x07\x69\xd7\x09\x97\xb7\x20\x0a\xed\x62\xd8\xf7\xc6\xaf\xde\xdb\x99\xfb\xb6\x90\x25\xf9\x8e\x0d\xdd\x43\x41\x02\xb8\x96\x7b\x89\x48\x85\x11\xc0\x97\x46\x94\x90\xf1\xb7\xd4\x63\x9f\x5d\x9f\xd8\xeb\x28\x4d\x0d\xb1\x25\xe6\xfc\x2e\x19\xe7\x6d\xa9\xf9\xa2\xc6\xed\x16\xb4\xd3\x45\x05\x7b\x59\xcc\xf2\x23\x13\x5a\xf3\x95\xb8\x03\x69\xf9\xee\x60\x36\x9d\xba\x83\x30\x9a\x4d\xa3\x49\xd0\x3e\x6b\x0a\xed\xd9\x60\xb9\xa5\x4d\x79\x72\x2b\x41\x90\x1a\x52\xa5\xcd\x87\xa8\xb6\xb1\x5b\x6d\x16\x26\x2e\x50\xe5\xab\x5c\xbe\xb5\xb6\x5f\x25\xc5\x2d\xbd\xc7\x2e\xed\x6b\x06\x26\x2e\xa8\xba\xd4\xca\x47\xec\x45\x81\x2d\x97\xac\x27\xb9\xc5\x25\x6c\x6c\x73\xe9\x43\x45\x92\xfd\x05\x0c\x25\x5f\xe5\x4a\x1b\x19\x37\xac\xab\xf3\x78\x4a\xc4\x0f\x5a\x15\x95\x0f\xf7\xbc\x55\x63\xd9\x16\x22\x7e\xdb\x24\xd5\x17\xb1\x40\x70\xbf\x3b\x8b\x51\xbb\xf8\x5c\x7b\xbd\xe3\x76\x62\xec\x9c\xb4\xdf\x50\x1e\xae\xf7\xc2\xf5\x83\x16\xcb\xb6\x2e\xf7\x36\xdb\x76\x87\x14\x3b\xd6\xed\x1f\x56\xc0\xde\xb9\x01\x1b\xfa\x1e\x9d\xed\xa3\x67\xe5\x5a\x24\xa0\x72\x78\xab\xca\xcc\x2e\xec\x29\x1d\x3b\x3c\xc5\xff\x3e\xdb\xde\x10\xa1\x2a\xe7\xdf\xac\x2f\x89\xf7\x2a\xb3\x7c\xc2\x50\x63\x28\x96\xc4\xa5\x6a\xdf\xff\x29\xab\x3c\x47\x1f\x83\xcd\x54\x5c\xa4\xa8\x2f\x55\x82\x0e\x33\xdd\xdc\x71\xdf\xd2\xaf\xf2\x76\x6f\x52\x5b\x3a\x71\xb3\xa5\xc6\x2e\x5d\xc9\xef\x87\x11\x15\x8e\x76\x99\xfb\x29\x2c\xe8\xce\x47\x7d\xb3\x5b\xdb\x95\x74\xed\x45\x90\xa8\x6e\xbc\x60\xc1\xe0\xdc\x1d\x2e\x08\x7a\x7d\x66\x8d\xec\xf8\x28\x63\x24\xa4\xed\x85\xd0\xb5\xe0\xa9\x59\xdb\xf3\xe4\x9a\x4c\x29\x0a\x15\xd9\xf6\x88\xda\xef\xa2\x74\xf2\x70\xcd\x76\x75\xcc\xc7\x47\x88\xc4\xfa\xe5\xaa\xb2\x90\x10\xcd\x9a\x42\x60\x9e\xc0\xc7\x2b\x69\x60\xa9\xe3\xab\x8f\x9b\xa0\xd7\xe9\x54\x79\x89\x70\x8a\xb8\xd6\xe9\x18\xbe\xd2\x18\x38\x31\xa6\x53\xe4\x57\xf9\x36\xb6\x4b\xd3\xd1\x71\x46\xf0\x3e\x51\xb1\xa6\x06\x24\x76\x78\xdc\xfd\xa4\xfb\x88\xf5\xfd\x51\xad\x29\x03\x3a\x11\x6f\x5d\x75\xa5\x63\x4e\x54\xf7\x86\x3d\xb4\x97\x88\x76\x87\xdf\xf4\xc5\x6d\xee\x92\x50\xee\xde\x2a\x7b\xbd\x92\x04\x80\xeb\xc2\x9c\x86\xb5\x5c\xad\x53\xb9\x5a\x93\x33\xe7\x09\x25\x42\x79\x02\xa5\xc8\xd4\xb5\xfd\xab\x82\x7c\x25\xf4\x36\x71\x18\x7a\x67\x67\xd1\xb9\x37\x3a\x1f\x7b\xa3\xf3\x70\xaf\x34\xdf\xc6\x8a\x18\x6c\xf4\x16\xc6\x22\xe5\x76\xa0\x40\x47\x90\xc8\xe5\x92\x8a\xff\xe4\x84\x47\x5e\x68\x49\xb7\x43\xce\x7b\x54\x51\x7b\x79\x6c\x30\xe5\x22\x92\x69\xfb\x00\xf2\xc3\x34\xe9\x2f\x22\xfa\x83\x90\x2c\x12\x1e\xdd\x41\xdc\xc2\x5b\xbd\x56\x37\xf9\x07\x68\x35\xf8\xd6\x16\x81\x3f\xa0\x29\xab\xb8\xa5\x27\x7c\x85\x76\xab\xe5\x35\xaa\x09\xc6\xf8\xdf\x46\x4d\x56\x71\xad\x24\xa3\x41\xb4\xd3\x93\xd9\xb6\x98\x7a\x47\x85\x1e\xa5\xdc\xad\xdb\x2f\x98\xbd\x3f\xef\x92\x7e\x1f\xd5\x7f\x27\x61\xaf\x77\xb1\xc1\x78\x36\x75\xeb\xe7\xf9\x62\x3c\xae\x1f\x47\x03\x5b\xb9\x62\xaf\xad\x11\x5e\xb4\xce\xc6\xdb\xe5\xaf\xb5\xaa\x4a\x0d\x97\xc2\xdc\x08\x51\x57\xea\xad\x05\x0e\xdd\xb3\xfe\x62\x1c\x46\xad\x42\xd8\x13\x4c\xc2\x0a\xba\x3e\xbc\xcf\x78\x69\x44\xa6\x6d\x12\x68\xef\x7b\xd8\xbc\x8f\xdb\xa2\x3f\x72\xdf\xfe\x79\x53\xe0\x46\x5e\xe8\x4e\x82\xe6\x1e\xa4\x3c\x7e\x82\x21\xb9\x3f\x45\x96\x80\xc8\x3b\x8b\xc0\xf9\x7a\xdd\x19\x4c\xf1\xff\xf3\xe7\xf8\x7f\xf8\xd2\x49\x44\x67\xe8\x3a\xcb\xb2\x73\xe6\x3b\x79\xda\x99\x8e\x9d\xf4\xba\x33\x7e\xe1\x94\x55\xc7\x5f\x38\x3f\xe3\x9d\xdf\x99\x3b\x42\x77\xdc\xc0\x29\x4c\xe7\x99\xef\x14\x69\x67\x3e\x76\x2e\x57\x9d\x67\x23\x47\x9a\x8e\x17\x3a\x4b\xd9\x39\xf3\x1c\x53\x76\x42\xdf\x89\x75\x67\xf0\xa5\xa3\xcb\x4e\x30\x77\xf4\x75\x27\x70\x9d\x2b\xd5\x79\xee\x3b\xab\xb4\xe3\x06\x74\x00\x8c\x6b\x71\xf3\x55\x2a\xf5\xda\xf9\xf3\x7f\xfb\xf3\x3f\xfb\x2f\xff\xe8\xcf\x7e\xf5\x47\xdf\xfd\xde\xdf\x71\xfe\xfc\xd7\xbf\xf8\x8b\x7f\xfd\x8f\xed\xcb\x5f\xfe\xe6\xef\xfe\xc5\xbf\xfa\x67\xdf\xfd\xea\xdf\xfd\xe5\x6f\xfe\xde\xed\x0f\xff\xe3\x1f\xfe\xf1\x77\xbf\xfe\xaf\xf8\x61\x28\x2a\xa3\xe3\xb5\x73\x56\xf2\xfc\x9b\x3f\xe0\x52\x3b\x53\xcc\xd1\x53\x9e\x27\xda\x19\x73\x73\x2d\xc5\x9f\xfe\xb2\x72\xde\xfd\x8b\x6f\xff\xf6\xb7\xbf\xf8\xf6\x17\xef\xfe\xd3\xbb\x5f\xbd\xfb\xb5\xf3\xdd\x3f\xfd\x97\xdf\xfd\xfe\xbf\xf9\x9f\x7f\xf8\xcf\x1d\x57\x17\xfc\x9b\x3f\x51\xa9\x33\x57\xa5\xa9\x56\xd5\x37\x7f\xa8\x21\x51\xf0\xac\xe4\x5a\x62\x63\xaa\xaf\xa4\xf3\xee\x4f\xbe\xfd\xfb\xef\xfe\xf3\xbb\x7f\xff\xee\x8f\xbf\xfd\xb9\xa5\xe1\x78\x86\xa7\x12\x53\x9f\xa0\x52\x19\x4f\xb9\xcc\x45\xee\x84\xdf\xfc\xa6\xbc\xfa\xe6\x0f\x84\xf3\xdf\xff\x81\xf8\xd3\x5f\x1a\x99\x73\xe7\xdd\x2f\xbf\xfd\xf9\xbb\xff\x56\x0f\x0a\xae\x45\xae\xaf\xb8\xf3\x7f\xfe\xc9\xef\xff\xaf\xff\xf8\x47\xff\xfb\xf7\xfe\x83\x33\xe2\xa9\x58\x29\x66\x33\x89\x84\x2c\x04\xfd\x3a\xaa\x65\x21\xe3\x2b\x51\x5a\x11\x62\xf4\x13\x98\xf9\x5c\x30\x92\x21\xc9\x92\x91\x20\xa1\x07\x5f\xaf\x19\x49\x93\x1e\x3b\xe1\x4b\x46\xff\x6f\xdf\x48\xba\xf4\x77\x5e\x8c\x44\x8c\x0e\xa9\x64\x24\x67\xe8\x41\x9e\x32\x12\x36\xf4\x20\xbd\x66\x24\x71\xe8\x41\x59\x31\x12\x3b\xf4\xe0\x67\x9c\x91\xec\x71\x4e\xcd\x48\x01\xa0\x07\xf4\xcb\x48\x11\xf0\x2d\x65\xa4\x0d\xd0\x83\xcb\x15\x23\x95\xc0\x44\xdb\x30\xd2\x0b\x9c\x50\x32\x52\x0e\xf2\xbc\x8c\x34\x04\x73\x1f\xfc\x65\xa4\x29\xd0\x03\x5d\x32\x52\x17\x7c\xbc\x66\xa4\x33\xd0\x83\x2b\xc5\x48\x71\xa0\x07\xab\x94\x11\x9a\x6d\xae\x91\x66\xbc\x28\xe8\xda\x93\x6a\x79\xe8\x38\xe5\x54\x18\x26\xb7\xd2\x35\x2a\x4b\x7b\x32\x97\xec\xf5\xb6\x47\xb7\x1e\x76\xc1\xd8\x6b\x85\xf8\xe1\x82\x05\xe7\xb3\x97\xd1\xd9\x6c\x16\xba\x7e\xf4\xcc\xb7\x77\x47\x5a\x6e\x3b\x58\xab\x1b\x40\x9c\x63\x8b\x84\xb7\x33\x55\x0a\xe2\xe8\xd3\x46\xaa\xf9\x4b\x99\xa5\x52\x46\x94\x7b\x74\x11\xe7\xd8\x53\xce\xa6\xee\x87\x54\xa9\xe2\xd7\xbe\xb4\x63\xef\xde\xd4\xd5\xc8\xef\x21\x15\xba\x93\xf9\xb8\x1f\xba\x11\x15\xdf\xea\x42\x1e\x51\xfd\xbf\x01\x00\x00\xff\xff\xac\x7e\x9c\x95\x2a\x39\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -306,7 +306,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 14581, mode: os.FileMode(420), modTime: time.Unix(1485895560, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 14634, mode: os.FileMode(420), modTime: time.Unix(1486529842, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/routers/install.go b/routers/install.go index 06acb2647..73b0cb174 100644 --- a/routers/install.go +++ b/routers/install.go @@ -81,9 +81,6 @@ func GlobalInit() { if models.EnableSQLite3 { log.Info("SQLite3 Supported") } - if models.EnableTiDB { - log.Info("TiDB Supported") - } if setting.SupportMiniWinService { log.Info("Builtin Windows Service Supported") } @@ -108,9 +105,6 @@ func InstallInit(ctx *context.Context) { if models.EnableSQLite3 { dbOpts = append(dbOpts, "SQLite3") } - if models.EnableTiDB { - dbOpts = append(dbOpts, "TiDB") - } ctx.Data["DbOptions"] = dbOpts } @@ -131,10 +125,6 @@ func Install(ctx *context.Context) { if models.EnableSQLite3 { ctx.Data["CurDbOption"] = "SQLite3" } - case "tidb": - if models.EnableTiDB { - ctx.Data["CurDbOption"] = "TiDB" - } } // Application general settings diff --git a/templates/.VERSION b/templates/.VERSION index 72d4c5c7c..5e85b287d 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.135.0208 \ No newline at end of file +0.9.135.0209 \ No newline at end of file