diff --git a/conf/app.ini b/conf/app.ini index 315d305d0..19eaa4842 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -429,6 +429,8 @@ ORG_PAGING_NUM = 50 [ui.user] ; Number of repos that are showed in one page REPO_PAGING_NUM = 15 +; Number of news feeds that are showed in one page +NEWS_FEED_PAGING_NUM = 20 [i18n] LANGS = en-US,zh-CN,zh-HK,zh-TW,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,ja-JP,es-ES,pt-BR,pl-PL,bg-BG,it-IT,fi-FI,tr-TR,cs-CZ,sr-SP,sv-SE,ko-KR,gl-ES,uk-UA diff --git a/models/action.go b/models/action.go index 1613df5e0..6a25f542a 100644 --- a/models/action.go +++ b/models/action.go @@ -671,9 +671,14 @@ func MergePullRequestAction(actUser *User, repo *Repository, pull *Issue) error // GetFeeds returns action list of given user in given context. // actorID is the user who's requesting, ctxUserID is the user/org that is requested. // actorID can be -1 when isProfile is true or to skip the permission check. -func GetFeeds(ctxUser *User, actorID, offset int64, isProfile bool) ([]*Action, error) { - actions := make([]*Action, 0, 20) - sess := x.Limit(20, int(offset)).Desc("id").Where("user_id = ?", ctxUser.ID) +func GetFeeds(ctxUser *User, actorID int64, page int, isProfile bool) ([]*Action, error) { + if page <= 0 { + page = 1 + } + + actions := make([]*Action, 0, setting.UI.User.NewsFeedPagingNum) + sess := x.Limit(setting.UI.User.NewsFeedPagingNum, (page-1)*setting.UI.User.NewsFeedPagingNum). + Desc("id").Where("user_id = ?", ctxUser.ID) if isProfile { sess.And("is_private = ?", false).And("act_user_id = ?", ctxUser.ID) } else if actorID != -1 && ctxUser.IsOrganization() { diff --git a/models/issue.go b/models/issue.go index 1eb261193..32e20b65b 100644 --- a/models/issue.go +++ b/models/issue.go @@ -895,7 +895,7 @@ func buildIssuesQuery(opts *IssuesOptions) *xorm.Session { if len(opts.RepoIDs) == 0 { return nil } - sess.In("issue.repo_id", base.Int64sToStrings(opts.RepoIDs)).And("issue.is_closed=?", opts.IsClosed) + sess.In("issue.repo_id", opts.RepoIDs).And("issue.is_closed=?", opts.IsClosed) } else { sess.Where("issue.is_closed=?", opts.IsClosed) } @@ -930,7 +930,7 @@ func buildIssuesQuery(opts *IssuesOptions) *xorm.Session { } if len(opts.Labels) > 0 && opts.Labels != "0" { - labelIDs := base.StringsToInt64s(strings.Split(opts.Labels, ",")) + labelIDs := strings.Split(opts.Labels, ",") if len(labelIDs) > 0 { sess.Join("INNER", "issue_label", "issue.id = issue_label.issue_id").In("issue_label.label_id", labelIDs) } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 586667743..458e40fd1 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -292,7 +292,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x7b\xdd\x8f\x1b\x49\x92\xdf\x7b\xfe\x15\x31\xbd\x5e\x8f\xb4\x28\xb2\x3f\xa4\xee\xe9\x51\x6f\x2f\xa6\x44\x16\xd9\x3c\xf1\x6b\xaa\x8a\xd2\x68\x84\x46\x29\xbb\x2a\x49\xe6\x76\xb1\xb2\xa6\x32\xab\x5b\x1c\x18\x87\x5d\xf8\xc1\x1f\xb0\xe1\x07\xdb\x77\x30\x70\x30\xbc\x30\xec\x03\xce\x3e\x7b\x0f\xb6\x81\xdd\xf5\x9e\xfd\x30\xbe\x77\xe9\x7f\x38\xcf\xf9\x0c\x1b\xf7\x2f\x18\x11\x59\x45\x16\xa5\x96\x6e\x16\x58\x03\x37\x03\xa8\xc9\xaa\xcc\xc8\xcc\xf8\xfc\x45\x44\xf2\x7b\xf0\xd1\x47\x1f\xc1\xd8\x7b\xea\xf9\x40\xff\x8c\x26\xdd\x41\xef\x39\x84\x17\x83\x00\x7a\x83\xa1\x87\xef\x99\x1d\x35\x1d\x7a\x6e\xe0\xc1\xc8\x7d\xe2\x41\xe7\xc2\x1d\xf7\xbd\x00\x26\x63\xe8\x4c\x7c\xdf\x0b\xa6\x93\x71\x77\x30\xee\x43\x67\x16\x84\x93\x11\x74\x26\xe3\xde\xa0\xff\x36\x85\x41\x0f\x9e\x4f\x66\xe0\xfa\x1e\x4c\xdd\xce\x13\xb7\x8f\x33\xa6\xfe\xe4\xe9\xa0\xeb\xf9\xce\xce\x02\x93\x67\x48\x79\xfa\x1c\x26\x3d\x18\x84\x44\x83\x9d\x81\x9b\xe7\x90\xf1\x95\x00\xb3\xe4\x06\xf4\x52\xdd\x6a\x50\x19\x88\x1b\x51\xac\x21\xe7\x0b\x01\x46\x9a\x54\x30\x77\x3a\x8d\xc6\xee\xc8\x83\x73\xe8\xab\x85\x66\x67\x10\x2e\x85\x9d\xa9\xe6\x60\x96\x02\xf4\x5a\x1b\xb1\x82\x52\x8b\xc2\x12\x2b\xca\x4c\xdb\xc1\xfe\x6c\x1c\xcd\x02\xcf\x87\x73\x58\x48\xc3\xce\xc0\x93\x66\x29\x0a\xd8\x4b\xc4\xcd\x9e\x03\x7b\x79\xa1\x92\x3d\x50\x05\xec\x19\xa1\xcd\x1e\x8d\x1f\x4d\xba\xb8\x58\x22\x6e\x18\x7b\xa1\x45\x71\x23\x8a\x4b\x36\xf5\x27\xe1\xa4\x33\x19\xc2\x39\x2c\x8d\xc9\x59\x77\x32\x72\x07\x63\x38\x87\x54\xc5\x3c\x5d\x2a\x6d\x98\x3f\x99\x84\xd1\xcc\xc7\x21\xdf\xbf\x57\x8f\xbf\xaf\x1f\xed\xef\x7f\xff\x9e\x1d\x7e\x5f\x3f\xfa\xfe\xbd\x8b\x30\x9c\x46\xd3\x89\x1f\xde\xd7\xfb\x8c\xbe\xb8\xdd\x2e\x6e\xf0\xa0\x4d\xff\xb3\xcd\x00\x38\x87\x07\x07\x07\x07\xec\x0c\xa6\xa2\x58\x49\xad\xa5\xca\x60\xae\x0a\x28\x33\xf9\x0a\xb4\x8a\xaf\x85\x61\xb3\xf1\xe0\x8b\x28\x98\x74\x9e\x78\x61\x34\xf5\xfc\xd1\x20\x08\x06\x13\xdc\xd8\xc9\xc9\x09\x3b\x83\x21\x6e\x0f\xee\x75\x47\x5f\xde\x07\xdc\x1b\x4e\x47\xce\xc0\xad\x2a\xae\x45\xa1\xe1\x9e\x2e\xe3\x25\x70\x0d\x41\x70\x01\x65\x9e\x70\x23\xee\x03\x8f\x63\xa1\xb5\xcc\x16\x70\x2b\xae\x00\x79\x20\x63\xd1\x66\x67\x30\xc8\x60\xa5\xb4\x81\x98\x6b\xa1\x61\xad\x4a\x48\x14\x64\xca\x40\x26\x44\x02\x46\x41\xbc\xe4\x19\x8a\x6e\x29\x20\x11\x73\x5e\xa6\x06\x6e\x78\x5a\xd2\x64\x37\x35\xa2\x00\x69\x40\x65\xe9\x1a\xe4\x1c\xe7\x17\xb4\xae\xe5\x32\x64\x2a\x11\x20\x35\x11\x24\xc1\xa2\x90\xb9\x06\xe4\x08\xbd\x6c\xb3\xe1\xa4\xe3\x0e\xa3\x0f\xb1\x7a\xc3\xd2\x77\xb9\x7d\x06\x5d\xa9\xf9\x55\x2a\x68\xd1\xb9\xe0\xa6\x2c\x04\xdc\x2e\x45\x46\x4b\xf2\x1b\x2e\x53\x7c\xcd\xba\x83\xc0\x7d\x3c\xf4\x22\x1c\x76\x0e\x73\x9e\x6a\xc1\xce\xe0\xd9\x52\x90\xf2\x94\x5a\xc0\x55\x29\x53\x23\xb3\xe6\xee\x15\x1e\xc0\xb4\x59\x10\xba\x7e\x88\x53\xa3\xc0\xf3\x9f\x92\xee\xd5\x14\xba\x6a\xc5\x65\x56\xa9\xbd\x82\x2b\x01\xe2\x55\xae\xb4\x48\xa0\x22\x15\xa7\x2a\x13\x28\x28\x86\xf3\x37\x4a\xb6\x55\x20\x54\x06\x55\x18\xc8\xca\xd5\x15\xaa\xfb\x5f\x4f\xa4\xd2\xa4\xa3\x23\x76\x06\x63\x61\x50\xee\x20\x33\x23\x8a\x39\x8f\xef\x3c\x47\x2a\xb5\x11\x19\x1a\x23\xcd\x1f\x0e\x82\xd0\x1b\x47\x17\x93\x20\x6c\x28\xe9\xee\x36\xbe\x33\x95\x6a\x33\xdf\xbf\x57\xef\x8c\x4e\xe4\x2b\x65\x20\xe7\x66\x89\x16\x8d\x34\x12\x59\x88\xd8\xa8\x62\xed\x6c\xb4\x48\x6a\xf8\xf8\x77\xf7\xdb\x5a\x2f\x3f\x76\xe0\xaa\x34\xa4\x7c\x4b\x7e\x43\x8c\x44\x89\x7c\xbc\xbf\x54\x2b\xb1\xbf\x90\xc6\x8e\x6a\xd3\xba\xa4\x29\x53\x37\xbc\x80\x73\x76\x06\x9d\xa5\x52\xda\x6a\x67\x2c\xf3\x25\xea\xbf\x51\xa0\xcb\x3c\xc7\xc3\xa0\x6d\x10\xff\x54\x96\x89\xd8\x48\x95\x69\xb6\x15\x63\xd4\x19\x4c\x2f\x3c\x3f\x80\x73\xe0\x42\x1f\x1e\x9d\xb6\x62\x53\x38\xf4\xf9\xd3\xa3\xcd\xe7\xa3\xe3\x93\xed\xf3\xa3\xd3\xd6\x22\x5e\x7d\xa6\x72\x91\x69\xbd\x6c\xc7\x6a\xe5\x00\x2f\xe2\xb9\x2a\x8b\xa3\xe3\x93\xcd\xe7\xc3\xa3\x53\x52\xcd\xea\xcc\x64\x46\x85\xe0\x46\x80\x11\xab\x5c\x15\xbc\x58\xc3\x5c\xa6\x42\x5b\x55\x45\x4f\x05\x79\x79\x95\xca\xf8\x1a\xae\xc5\x1a\x4a\xb2\x54\xad\x97\xad\x6b\xb1\x5e\x88\xcc\x61\x67\x4d\xb6\x55\xee\x71\x4b\x6b\xc3\x5d\xcb\xa2\x27\xde\xf3\x28\xf4\x82\x06\x9b\xa6\x28\x0a\x64\xcc\x96\xe4\x8e\x1c\xb6\xcf\x3f\x06\x9e\x25\x90\x0a\x74\xe0\x22\x4d\x61\x2e\xb3\x04\x54\x69\xe0\x76\x29\xe3\x25\xa0\x1e\xe2\x69\x78\x9a\x6e\xd6\xea\xa3\x1a\xd0\x4a\x0d\xfa\xe4\x5a\x12\x19\xe3\xa1\x6f\x2b\x33\x23\x6f\x22\xe2\x6b\x58\xc9\x4c\xae\xca\x15\x9d\x55\xcb\xaf\x05\xdc\x4a\xb3\x84\x58\x15\x85\xd0\xb9\xca\x12\x3c\xbd\x59\xe7\x82\x8d\x06\xe3\xc1\x68\x36\xa2\x13\x05\x83\x2f\xbd\xa8\x73\xe1\x75\x9e\x34\xed\xaf\x32\xff\x4e\x77\x8c\x81\x26\x43\x8b\xa9\x62\xc0\x4a\x25\x82\x4d\x7a\xbd\xe1\x60\xec\xd5\x21\xc0\x4e\xab\x9d\x81\x3f\x99\x85\x9e\x1f\x0d\x27\xfd\x06\xc5\xbe\xc8\x44\x81\xbb\xd6\x46\xe4\xfa\x11\x3b\x83\xbf\x05\xed\xfd\x05\x7a\xd8\x58\x14\x06\x5a\x31\x3f\x37\x45\x29\xa0\x95\x94\x05\x47\x9d\x3a\x3f\xfd\xe4\xe4\x60\x79\xb0\x3a\xd0\xd0\xc2\xb8\x71\xbe\x5a\xe3\x9f\xb6\x78\xc5\x57\x79\x2a\x50\x4b\xd8\x19\x3b\x83\x49\x01\xf3\x42\xad\x80\x43\x3b\x9f\xbf\x22\x05\x20\x43\x2f\x8c\x48\xec\x1b\x54\xe3\x67\x32\x4b\x30\x72\xe2\x62\x72\x6e\x19\xa8\x8d\x2a\x04\xdc\x4b\x14\x3b\x23\xbf\x36\x57\xc5\x42\x18\xe4\xa7\x9d\x4f\x13\xf3\x42\xde\xe0\xe0\x6b\xb1\xbe\x6f\xb7\x6d\xd5\x34\x85\xfc\x3a\xd6\x87\x47\xd0\x92\x19\x51\xa5\xd5\x5b\x28\x53\xfb\x4d\xac\xa0\x95\xa9\x6b\xb1\xd6\xdf\x6d\xd6\xb5\x58\xd7\x93\xf0\x85\xc6\x0f\x89\xd0\xac\xe3\xf9\x61\x44\xa0\xe2\x1c\xe2\x52\x1b\xb5\xda\xc7\xc8\xaa\xf7\xeb\x65\x18\x8a\xf1\xae\x01\x15\x45\x76\x06\xb3\x3c\x47\x57\x23\x6e\x44\x4a\x60\x40\xac\xf2\x14\x0f\x85\x4a\xa9\x0d\x37\x32\xb6\x7c\x43\xdf\xb2\x6b\x14\xc4\x02\x54\xf3\xdb\xa5\x28\x84\x0d\x89\x52\x83\x78\x25\xe2\xd2\x88\x04\x9d\x78\x38\xe8\xbc\xe5\x3e\xba\xd5\x7c\x9a\x88\xde\x02\x31\x4c\xc2\x0d\x27\x90\xd2\x75\x43\xb7\xd6\x6c\x7a\x48\x18\x27\x45\x99\x60\xe0\xb6\xbb\xec\x7f\x39\x98\xd6\x0e\x87\x79\x63\x52\x2c\x7a\xb6\x55\xa9\x21\xb7\x2a\x4d\x18\x68\x4e\x51\x25\x6b\xa5\x6a\xb1\x10\x09\x61\x1c\xed\x40\xcc\x33\xf4\xfb\x7b\xe8\xf1\x2c\x7c\x11\xaf\xf2\x54\x15\x62\x8f\x0d\x5d\x02\x6f\xd1\xd4\xed\x23\xe3\x70\x04\x63\x2f\x0a\x91\x2b\x2d\xd1\xe6\x2f\x77\xfc\x2d\x92\x47\x75\xc1\xf5\x36\x63\xa4\xd0\x1f\x6b\x3a\xc2\x8e\xd9\xef\xfd\xee\xfe\x0f\x71\x7d\x8c\x5e\x3f\x22\x15\x6f\x35\xa7\xec\x11\x00\x22\x3e\x21\x40\xd3\x71\x21\x73\x43\x76\x59\x87\x84\xea\xd8\xda\x01\xad\x56\xc2\xc8\x95\xd0\x10\xab\x32\x4d\xe8\x2c\x7a\xb9\xc7\x82\x8e\x3f\x98\x86\x51\xf8\x7c\x8a\x7b\xbf\xe2\x7a\xd9\xe0\xba\x3b\x0e\x06\x88\x2f\x0a\x2d\xac\xaf\xe6\x19\x94\x59\x21\x62\xb5\xc8\xe4\xd7\x22\xa9\xdf\x31\x1c\x18\x75\x2e\x5c\x3f\xf0\xec\x7e\x7a\xaa\x88\x45\x85\x2c\x33\x71\xbb\x3d\xe9\xba\x0a\xa0\x95\x31\xb0\xde\xc4\xef\x78\xd1\xd4\x1f\x3c\x75\x43\xaf\x69\xe5\xa9\xba\xe2\x29\xac\xf8\x2b\x72\x44\xe4\x9d\x49\xa6\x72\x85\x70\x66\xde\xa4\x98\x5b\x84\x50\x38\xd0\x3a\x84\x95\xe0\x19\xe2\x19\x3b\x92\x8d\xdc\x2f\xa2\x8e\xef\xb9\xe1\x60\x32\x8e\x86\x83\xd1\x00\x83\x61\xeb\x90\x9d\xc1\x48\x16\x05\xca\x62\x9d\xc5\xf0\x55\x29\x4a\x01\xa9\xc8\x16\x66\xe9\x80\xcc\x70\x39\x2d\x10\x30\xad\xb6\xa3\xc8\xe5\x1b\x8e\x06\x85\x90\x4b\x66\x0b\x36\x1a\xf8\xfe\xc4\x8f\x3e\x9f\x79\x33\x2f\x1a\x7a\xe3\x3e\xa9\xe2\x61\x05\x21\xb9\x89\x97\x36\x76\xbc\x9f\x7e\x5e\xa6\x29\x14\xe2\xab\x92\x42\xcc\x66\xc6\x1d\x6b\x4d\x67\xc3\x61\xe4\x7b\x9f\xcf\x30\x70\xbc\x67\xc5\x42\xcc\x45\x51\x88\x04\x86\x32\x16\x19\x02\x46\xa3\x20\x4f\x11\x76\x70\xeb\x84\x8c\xca\x6b\x10\x8f\x78\x01\x11\x0a\x42\xa3\x55\xa9\x0d\xac\x68\x79\x32\x5f\xc2\x4b\xe8\x58\x54\x36\xdf\x4f\x2d\x31\xd4\xfa\xca\x2b\x34\x1f\xb3\xa9\xef\xf5\x3c\xdf\xf7\xba\xd1\x70\xd0\xf1\xc6\x81\x87\x01\xdb\xcd\x79\xbc\x14\xf5\x3e\xe0\xa8\x7d\xe0\x20\xef\xab\xef\x8d\xc0\xc0\xaf\x64\x2a\x0d\xa9\x05\x61\x24\x1e\x1b\x1b\x6d\x9a\x9a\x0e\x57\x6b\x0b\x49\xf3\x42\x19\x15\xab\x74\x13\x22\x08\x6d\xf6\x49\xaa\xb5\xea\x78\xd9\xdb\x84\x57\x72\x41\x11\xa3\xa1\x33\x57\x6b\x9b\x47\x58\x47\x55\xb9\x05\x0b\x75\xd1\xa1\x44\xa3\x41\xdf\x27\xa5\x69\x10\xee\xa8\x2c\x2e\x8b\x42\x64\xf1\x1a\xad\xb3\xd4\x16\x80\x17\xc2\x14\x52\xdc\x08\x88\xd5\x6a\x25\x8d\x06\x99\xcd\x55\xb1\x22\x7d\x6d\x43\xb8\x94\x1a\x6e\x78\x21\x69\x53\x89\x98\xcb\x0c\x69\xa1\x00\x6a\xe5\xae\x20\x1d\x8a\x85\xeb\x6b\x6d\x33\xaa\xca\xe1\x14\x65\x56\x8b\x8e\xb0\x39\xda\x70\x1b\x66\xba\xe4\x69\xba\x76\xf0\x39\x3b\xb3\x78\x1f\x12\x91\x0b\xc4\x02\x73\x58\xaa\x5b\x58\xf1\x6c\x0d\x9d\xe9\x4c\xc3\xbd\x58\x15\x42\xdf\xdf\xc0\xb7\x36\x0c\xac\x02\xd8\x69\x88\x57\x6c\xac\xfa\x5a\x14\x18\xc0\x28\xdd\x49\xd0\x9c\xfa\x93\x7e\x00\xb7\x32\x4d\x81\x97\x46\xe1\x89\x10\x57\xac\x21\x11\x46\xc4\x76\x53\xdb\xbd\xd3\x5a\x94\x5f\x54\xf0\x07\xd7\x62\x9d\xc9\x68\x34\x08\x83\xa8\xe7\x85\x9d\x8b\xa8\x33\x19\x77\x66\xbe\xef\x8d\x3b\xcf\x11\xd9\xee\xb8\xc9\xb6\x48\xf0\x2f\x7a\xcb\xa1\xd4\x64\xe3\x55\x04\x46\x54\x8b\xd0\x70\x93\xb7\xa2\x03\x23\x20\x9a\xca\x4c\xc0\x6d\xc1\x73\x64\x3a\xed\xa7\xa3\x12\x51\x59\xb6\xa5\x87\x69\x50\x20\x72\x4e\x0a\xd0\xa0\x45\x3a\xc6\x49\x66\xbc\x0d\xa1\xda\xd2\xaa\x91\x9f\x34\x4b\x8c\xa6\x9b\x39\x0e\xfc\xb8\x24\x1c\x68\xea\x79\x8c\xa0\xcb\x33\xdf\x9d\x46\xde\x17\xa1\x37\xc6\x3c\x10\x95\xbf\x6d\x5e\x19\xa7\xbd\x4a\x9c\xf6\x8a\x17\xd7\x89\xba\xcd\xf0\x9b\xfd\x73\x9d\x20\x58\x7c\xca\x53\x99\xd8\xf3\x21\x0c\xaa\x8e\x46\x67\xe2\x90\x17\xe2\x46\x8a\x5b\x70\xa7\x03\xe0\x5a\xab\x58\x72\x44\x20\xb4\x63\xb3\x14\x2b\x07\xea\x0c\x92\xe7\x72\xff\xe6\x70\xbf\x5e\x65\xe7\xac\x24\x5d\xb2\x1c\xda\xab\x6e\xa3\x7b\x20\xba\x86\x5f\x21\xbb\x90\x3f\xb4\x3a\xdc\xaa\xec\x63\x5b\x10\x40\x97\x84\x6c\xdc\xe5\x3c\x24\x4a\x68\x1c\x42\x1e\x02\x0d\xfe\xe9\xc0\x7b\x46\x26\x83\x68\x81\xc0\x1b\x9e\xbb\xde\xc7\xae\x5c\xcb\x3c\x55\x3c\xb9\xdc\x5a\x66\xc3\x0c\x69\x1d\x3b\x40\xb7\x2b\x33\xec\xc2\x39\x20\x80\x6b\xc0\xe2\x1a\x49\xcb\x74\x5d\x61\xad\x6a\x0e\xdc\x4b\x9a\x08\x61\x21\x8c\x86\x38\x15\x3c\x13\x09\x9e\xdc\x82\x8c\xba\xc4\x41\x0e\xf5\x3e\x0b\xbd\xd1\xb4\x89\x1a\xf6\xcd\x2a\xdf\xaf\xe8\x61\xe8\xc2\x2d\x61\x10\xad\x84\xc2\x0b\x01\x3c\x4d\xd5\xad\xb5\xf6\xab\x7a\x6d\x91\x38\x20\xda\x8b\x36\xc8\x15\x5f\x88\xfd\x1f\xe7\x62\xf1\x77\xec\xc7\x3c\x5b\xb4\x61\x28\x50\x98\x62\x95\x9b\x75\x15\x93\x88\x08\xa0\x59\xce\xeb\x25\x98\x3b\x1c\x4e\x9e\x79\x5d\x8a\xbf\x01\x45\xce\x51\xe5\x14\x08\x76\xab\x39\x08\x5e\xfb\x64\x99\xc1\xe8\x31\xb3\x0c\x77\xbf\x20\xb8\x0d\xe7\xf0\xa0\x31\x67\x6b\x8c\x56\x85\x29\x30\xd2\x66\x29\x0e\xe2\x54\x14\xd3\x31\x15\x83\x8c\xe1\xf1\x72\x25\x32\x83\xe6\x8f\x01\x47\x53\x88\x2f\x44\x8a\xb1\x49\xa3\x08\xe9\x53\x9b\x6f\x46\x5e\x36\x52\xf2\xed\x53\x4d\x2c\x12\x24\xdb\xa4\x5d\x83\x07\x0a\x3d\x2f\x51\x8e\x2f\xdf\x23\x57\x02\x14\x5b\x2a\x6f\xcd\x24\xc9\x34\x5e\xbf\x64\x4d\x91\x35\x5e\x20\x70\xcf\x28\x38\xad\x54\x53\x54\x28\xc1\x0f\x48\xe8\x6d\xd6\xc3\x0f\xf6\x7f\x60\x59\xf9\x2e\xeb\x77\xb7\xf6\xe0\x68\xf4\x98\x35\x25\x70\x54\xcd\x7b\x3f\xfb\x77\x09\x1c\x1e\xec\x88\xe3\x10\xfd\x60\x6d\x3a\x0d\x33\x59\xf2\x22\xb1\x5e\xe9\xaa\x10\xfc\x7a\x6b\x8e\x75\xb8\xba\x70\x7d\x8c\xb9\x63\x2f\x7a\xec\x7b\x6e\x33\xeb\xaa\x1d\xa8\x0d\xd7\x30\xf3\x87\xad\x20\x5e\x8a\xd5\x5d\x3a\xcd\x35\x2e\x72\x5d\xa5\xba\x85\x40\xd7\x8f\xf0\x63\x54\x1b\xf3\x19\x49\xaa\x4a\x96\x60\x21\x8d\xb3\xe2\x8b\x4c\x18\x66\xab\x95\xd1\xcc\x1f\x46\x41\xe7\xc2\x1b\x55\x1a\xfc\x5d\xbc\x37\x46\x36\x5a\x49\x24\xfb\xe8\x87\xec\x3e\x1a\x4b\x7e\x27\x97\x6d\x49\xd4\xfe\x7a\x5f\x35\x3c\x16\xd7\x1b\x6f\x74\x87\xdf\x26\x23\xda\x75\xd9\xef\xf3\xd6\x8c\xbd\xd0\x2b\x5e\x98\x75\xce\x33\xa3\x2f\x1b\xba\x6c\x99\xdd\xf3\xdd\x4e\x58\x11\x21\xed\xee\xba\xc1\x85\xb7\xf9\x36\x74\x43\xef\x8b\x68\xf7\x99\x3b\xee\x0f\xbd\x6e\xf4\xf9\x6c\x12\x6e\x1f\xb2\x17\x98\x6a\x5d\xda\xd8\x50\xda\x34\xc4\xa5\xa2\x60\xab\xa3\x32\x53\xa8\xb4\xe5\xa2\xc4\x5a\x93\x42\x2e\x64\x06\x4b\xc1\x29\x46\x37\xd2\x05\x2a\xe2\x29\x0c\x1f\x5a\x64\x86\xb9\x9d\x8e\x17\x04\x18\x73\x43\x7f\x32\x8c\x48\xdf\xa3\x89\x3f\xe8\x53\x81\x8b\x59\x9c\x8f\xea\xb5\xd1\x84\x74\xa1\x0a\x69\x96\x2b\x4d\xe9\x9c\x59\x0a\x59\xec\x94\x02\x2c\x80\x85\x7b\xa5\x16\x08\xb5\x8d\x82\xa4\x46\x71\x64\x6f\xf7\xd9\x0b\xad\x97\xed\x6a\x4a\x74\x2d\xd6\x11\xda\x12\x72\xad\x7b\x74\x7c\x7c\xf8\x29\x9c\xc3\xd1\xf1\x09\xf3\x3a\xdd\xc0\x05\xa8\xbe\xf9\xf4\x99\xbe\x1d\x3c\x3c\x65\xdd\xcd\xd7\xc3\x83\xa3\x87\x8c\xbd\x40\x83\xbf\xe2\x5a\x5c\x36\x8a\xc9\xab\xb5\xfe\x2a\xa5\x72\xb2\xd2\x66\x51\x08\x6d\x73\x32\xfd\x55\x2a\x8d\x78\xb0\xe7\x10\xd8\x41\x08\x55\x55\x96\x70\xaf\xa1\xec\x3e\xb6\x3a\x34\x5a\x07\x9f\x0f\x1b\x58\xf2\x71\x9d\xff\x10\x59\x56\x15\xde\x0e\x8f\x3e\xa1\xd2\xdb\xe1\xa3\x07\x0f\x0e\x4e\x58\x55\x11\xc7\x2c\x8c\x55\x05\xee\x42\x29\xc3\xa6\x6e\x10\x3c\xeb\xd6\x59\xcf\xce\x8e\x32\x84\x68\xa2\xae\x7f\x5b\x56\xe1\xa6\x11\xef\xcb\xa2\xca\x23\x6f\x44\x21\xe7\xeb\xd6\xbc\x4c\xd3\x3d\x16\x04\xc3\x4d\x35\xdc\x8e\xaf\xc9\xd6\x47\x23\xd1\xec\x19\x99\x5c\xed\x39\x54\x85\xe3\x57\x5a\xa5\xa5\xd9\x26\xd7\x19\x1d\x9e\x82\x1d\x9a\x41\x55\x4b\xde\x71\x9f\x78\x88\x76\x72\xc5\xd8\x0b\x9e\xac\x24\x39\x9d\x1a\x8f\x17\x62\x51\xa6\xbc\x80\x7b\x98\x03\xd3\xdb\xfb\x36\x07\x6e\x14\xc9\x54\xb1\xe0\x99\xfc\x9a\xdb\x82\xdd\xa6\x5a\xe3\xf5\x67\x43\xd7\x8f\x26\x7e\x7f\x93\x72\x6d\xcc\x84\xbd\xd0\x22\x2e\x0b\x69\xd6\x97\x6c\x30\x0e\x42\x77\x38\x44\xb8\xdd\x74\x5a\x1f\x7d\x64\xfb\x22\xb6\x7d\x12\x4e\xe0\x89\xe7\x4d\xe1\xf9\x64\xe6\x03\xf1\x1b\xb3\x7d\x08\xdc\x9e\xf7\xd1\x47\x2c\xf0\x3a\xbe\x17\x46\x4f\x3c\xc4\x91\x1f\x7d\xef\xb3\x5e\xd7\x7b\xe6\x7b\xcf\xfc\xbf\xfd\x83\x7b\x18\xdb\x4a\xa3\x30\x7f\x97\xe8\xcf\x56\x82\xbc\x72\xc2\xd7\x9a\x0d\x27\xfd\xc1\x38\xf2\xbd\x91\x37\x7a\xec\xf9\x51\xd7\x7d\x8e\xf6\xf7\x09\xeb\x4c\x26\x4f\x06\x1e\xf5\x2d\x1a\x62\x8e\xf8\xad\xc0\xbc\xb9\x7e\xbd\x99\xd7\x1c\x43\xc9\x5c\x22\x51\x52\xd5\xb0\xc0\xeb\xcc\xfc\x66\x2e\xeb\x23\xfc\xd0\x98\xf3\xaa\x57\x6b\x84\xd2\x4b\x91\x99\xba\x48\x61\xed\x78\xd3\x5d\xa1\x96\x0a\x7e\x61\xbe\xf7\xd4\xf3\x03\xcc\x8d\x27\x5f\x3c\x8f\xdc\x59\x78\xe1\x8d\xc3\x41\xc7\x66\xb2\x95\x02\x7e\xd1\x7a\xe6\x3d\xc6\x57\x2d\x7c\x50\x35\x4f\x64\x2c\x2e\x19\x3a\xa5\xa7\x5e\xd4\x99\x74\xbd\x68\x88\x9f\x46\x83\xf1\xcc\xba\x9b\xc3\xd3\x03\xe6\x7b\x81\x17\x46\x56\x75\xdf\x3b\xe8\x0c\x66\xb4\x9b\xba\xd1\xa0\xb2\xb9\x2c\x56\x20\x5a\x2b\x2e\xd3\x0a\x2c\x2c\xa4\x36\xb6\xca\xc6\x7c\xaf\x3f\x08\x42\xcf\x8f\xbc\x91\x3b\x18\x46\xd4\xc4\xf2\x47\x3b\xb5\x78\x61\x9d\x94\x45\x42\x76\x32\x42\x89\x2c\x01\xd2\xb4\x5a\xbf\x78\x1c\xab\x32\xb3\x5d\x8b\xa6\x7a\x0d\x82\xf0\x9d\xa4\x8c\xb6\x48\xe9\xab\x96\x0b\x2a\x2f\x1a\x05\x04\x73\x79\xb6\x36\x4b\x99\x2d\xda\x0c\xb3\xe6\x81\xef\x45\xc1\xa0\x3f\x1e\x8c\x23\x04\xaf\x0d\x0a\x23\x3c\x4d\xa6\xaa\x62\x5e\x23\xbe\x8e\x27\xe1\xa0\xf7\x3c\xc2\xd3\x34\x87\x23\xca\x48\x84\xe1\x32\x7d\x44\x9d\x29\xfd\x68\x7f\x7f\x21\xcd\xb2\xbc\x6a\xc7\x6a\x85\xb6\x25\x8d\x26\x13\xdb\x97\x5a\x97\x42\xef\x1f\x9e\x1c\xd7\x34\x3f\x24\xd5\xcd\x22\xef\x1b\x3b\x79\x1f\x13\x2a\xc4\x10\xf3\xdc\xc4\x4b\x8e\xd0\x5f\x26\x56\xbd\xde\x91\x52\x45\xbb\xe3\x4e\xc3\xce\x85\xbb\x8d\x3e\xb7\xe2\x6a\xa9\xd4\x35\xba\x82\x90\xc0\x6f\x03\xd4\xd9\x16\x58\xed\x04\x4a\x2d\xb6\xf5\x30\x3c\x26\xba\x34\x9d\xf2\xf8\x1a\x3f\x24\x52\xc7\xaa\x48\xf6\x58\x8d\xab\x70\x84\x03\xf4\xde\x81\xea\x2d\x3b\x83\x0b\xa5\xae\x29\xdf\xfd\x40\x71\xa4\xda\x13\x82\x06\x75\x57\x49\xe4\xee\x2a\x48\x57\xa4\xf2\x46\x14\x94\x2a\x63\x02\x27\x33\xd0\x22\x56\x59\xa2\x59\xd7\x43\x35\xf7\xa3\x70\x30\xf2\x26\xb3\x90\xb0\xf0\x19\x50\x5c\x05\x99\x91\x87\x12\x8d\xc2\x2e\xf2\x2b\x78\x32\x98\x46\xe1\x30\x88\x9e\x7a\xfe\xa0\xf7\xbc\xc1\xf4\xf1\x06\xee\x2d\xa5\xa6\x6c\xa6\x91\xf8\x53\xd6\x81\xf8\x31\xe7\x0b\xf4\xbd\xfd\xc1\xb8\x1f\x8d\x67\xa3\x2d\xde\x93\xa9\x28\xde\x85\x13\x67\xf0\xb8\x9c\xcf\xa9\xc4\x4a\xb1\x16\x41\xdc\x92\x67\x99\x48\x1d\xb8\x16\x22\x07\x49\x4e\x5d\x52\xc0\xb7\x0d\x3d\x48\x28\x7d\xbb\xce\xd4\x2d\xdc\x22\xc6\xa2\x97\x6d\x16\x78\xe3\x6e\xf4\x78\xd6\xeb\x79\x3e\xf2\xc8\x32\xa8\x2e\xf8\x24\x52\xe7\x29\x5f\xdb\x16\x16\xd9\xb3\xed\xfd\x06\xb3\xc7\xbf\xe3\x75\x6c\xc7\xa8\xee\x03\x53\xc7\x88\xac\xc4\x96\x15\xd9\x19\xf4\x57\xa4\xfe\x7a\x65\xf2\xf6\x02\x3f\xa3\xea\x3f\x3a\x3e\xfd\x84\x9d\xc1\xe7\x9f\x57\x2f\xbe\xfa\x8a\x9e\x3e\x3c\x41\x26\x8f\x95\x11\x4e\x9d\x5e\x52\x4d\x5c\x64\x49\x85\xe9\xf6\x1e\x9e\x1c\xef\x39\x10\x8c\xc2\x69\x55\x6f\xc0\x2c\x4b\x63\x36\x31\xa3\x4e\x0b\x35\xf8\xc2\x61\x00\x2a\xb3\x73\x8f\x4f\x3f\x41\x06\x14\x02\xf1\x1c\xa2\xc0\x84\xd0\xb6\xdf\xeb\xc0\xc9\xc3\x83\x4f\x37\x25\x8e\xb7\xea\xa0\x5b\x42\xd2\x54\x85\x8d\xf4\x96\xaf\xf5\x66\xbd\x2a\xf6\x37\xe2\xe1\x85\x37\x9c\x80\xca\x85\x35\x1f\x1b\x5f\x97\x4a\x1b\x72\xd8\x68\x23\x89\x44\x79\x89\xcc\xb4\xb7\x45\x29\x9c\x43\xdd\x2f\x8b\xbf\x37\xe3\xd1\x8e\x76\x09\xee\x00\x38\xea\x31\xd8\xea\x49\x9b\xe1\x38\xea\x01\xda\x68\x43\xfe\x93\xbc\xa7\x05\x0c\xb6\xa5\xd6\xe8\x41\xa8\xe6\x89\xdb\x30\xc9\xd2\x35\xe1\x03\xb3\x94\x36\xb3\xd3\x22\x9d\xb7\xd0\x49\x8a\xa4\x39\x51\x5b\x15\xaf\xd5\xdb\xba\x54\x88\x53\x89\xa9\x61\x63\x1c\x82\x9e\xa8\xe3\xf9\xe1\xa0\x87\xfe\x6a\x1b\xe0\xee\x68\x2b\x58\xed\xfe\x50\x5f\xa1\x1a\xb1\x6d\x2c\x90\x7e\xd9\xf6\x4b\x92\x14\x42\x6b\x87\xa4\x79\xfc\xe0\xe8\xa8\x2a\xa2\x55\x2e\x87\xc0\x3c\xcf\x40\x90\xd6\x6e\x06\xab\x82\x8e\xff\x72\x0f\xd5\x7b\x0f\x7e\x48\xaf\x3f\x6b\xb4\x78\x7e\xf4\x12\xac\x75\xb2\x9e\x3f\x19\x55\xb9\x36\x6e\x62\x1b\x73\x29\x12\xe5\x5c\xeb\x5b\xf4\x51\x36\xc6\x36\xf1\x1d\x32\xc6\x88\x57\x66\x3f\x4f\xb9\xa4\x1c\xc3\x52\x24\x2b\x55\x99\x41\xd4\x8d\x5c\x9a\x0e\xdd\xc1\x38\x0a\xbd\x2f\xc2\x06\xfe\x89\x79\xbc\xdc\xc5\xb0\x62\xa5\x8a\xb5\xc5\x83\x89\x44\x2f\xaa\xec\x53\x1a\xb9\xb7\xdb\x09\xa8\x06\x33\xb7\xeb\x4e\x43\x8a\xfd\xf6\x49\x0d\x0f\xab\xf7\x15\xe6\xec\x77\x6c\x31\xf5\x86\xa7\x0d\xf7\xb7\x43\xf1\xe4\x80\x0d\xc6\xa1\xe7\x3f\x75\x31\xb8\x9d\x1c\xd4\x84\xec\x5e\x2c\xca\x6c\xec\x65\xdb\xa1\x25\x6d\xae\xf9\xce\xce\x80\x26\x3c\x82\xcc\x36\xba\xcf\x4d\x9c\x3b\xf8\xf2\xfc\xd1\xc9\x83\x4f\x3e\x75\x6a\x6e\x9e\xaf\x78\xcc\x0b\x95\x39\xc9\xd5\xf9\x81\x93\x2b\x95\x52\x6a\x70\x7e\x78\x70\xe0\xc8\x24\x15\x51\xe5\xad\xcf\x2d\xf0\xa8\x57\x7e\x04\x2f\xb7\x30\xfc\xf0\xf0\xe8\xf0\xf0\x65\x6d\xa2\x08\x76\xe8\x82\xc6\xdd\x3c\xc5\xa4\xb0\x62\x69\xcd\xde\xbb\xf8\x59\xdf\x9f\x69\x32\x74\x5a\xa8\x1b\x89\xa0\x8c\x10\xcf\x02\x54\x6e\x81\xee\x59\x35\xe4\x11\x99\xa1\x2d\xd6\x65\xeb\x7a\xd4\x5a\x18\x4c\x95\x65\x2a\x1e\x41\xb5\xb3\x6d\x2b\xac\x2a\x44\xd8\xaa\x46\xf5\x56\xbf\xfc\xff\xc6\x3d\x4c\x63\x1e\xc1\x42\xb5\xf4\x57\x69\x2b\x29\x30\x1c\xee\xd3\x43\x48\x74\x56\x6f\x58\x1b\xcc\xf3\xeb\x9d\x61\x2e\xf3\xa8\x5e\xef\xb3\x7a\x8f\x91\x41\x27\xf8\x72\xc3\xa6\xa8\xba\x9a\x54\xe5\x11\xf5\x49\x28\x61\xb7\x47\x8e\x95\xba\x96\xb6\x81\x50\x03\xe2\x0a\x2e\xcb\x28\x95\xd7\x22\xb2\xf8\x88\x9d\xa1\x8b\xc6\xe8\x85\x3e\xaa\xe6\x17\xe6\xb5\x88\xa8\x2a\x35\x6e\xba\x46\xeb\x6a\xde\x83\xb0\x2b\xfc\xa3\x85\xa9\xd6\xdf\x99\x4b\x08\xa7\xc2\x3d\x08\x7b\x2d\x95\x6d\x35\xaa\xde\x7a\xbf\x43\x98\x61\x63\x3a\x3b\x44\x4e\x4f\x1e\x1e\x1c\xb0\x7e\x27\xaa\xad\x86\x40\x04\x9c\x57\x2f\xb6\x54\x52\x39\xb7\x65\xfa\x3b\xa6\x07\x1e\xdd\x15\x8a\x86\x83\x9e\xf7\xf6\xfc\xce\x96\x71\xe4\xae\x3b\x81\xdf\x63\xf8\x4f\xb4\xcb\xc6\x28\xd6\xc5\x9c\xb1\x17\xb9\x8c\x4d\x59\x90\x47\xd9\xdc\x1e\xb0\xa5\x51\xbd\xa9\x3b\x61\x52\x7f\xc3\x0d\x2f\x34\x73\x9f\xba\xa1\xeb\x47\xb3\xe9\x70\xe2\x76\x77\xca\x9f\xf5\x88\x33\xe8\x2c\x65\x26\xb4\xa8\xa0\x1e\xa5\xcf\xf6\xfa\xc6\x5e\x52\x2a\xbd\x2c\xd5\x9e\x6d\x0f\xf0\xba\xb0\x64\xa7\x82\x56\x65\x11\x0b\x07\x50\xbe\x16\x13\x3f\xda\xdf\x8f\xb3\xf6\xa2\xb0\x03\x08\x17\xdb\x8f\xfb\xac\xef\x57\x5b\x09\x26\x33\xbf\x43\x79\x54\x35\x8c\xfa\x98\xd4\x2d\x49\x4b\xb1\xc1\x01\x73\x55\xc4\x9b\xd2\x2b\x35\xf6\x65\x06\x6a\x3e\xa7\xca\xd8\x8a\xae\x28\xd5\x71\xb7\x26\xdd\xd0\x8c\x9e\x48\xe8\xb6\x40\xcd\x08\x48\x95\xba\x2e\x73\x3c\xa2\x86\xee\x38\xa8\x8a\x18\xb1\x42\x98\x50\x0d\xd9\xd6\xdc\xd9\x99\x05\x28\x14\x4c\x10\xc5\x0a\xb1\x81\xfc\xb7\xb7\xb7\xed\x54\x5e\xd5\x47\x54\xc5\xe2\x3b\xec\x9f\xb6\xf5\xf6\x01\x90\xa5\xfd\x8a\x0e\xea\x4a\x22\xf5\x15\x4f\x11\x8d\x54\x4a\xdb\xf3\xba\x9e\xef\x86\x5e\x37\xda\x9c\xcf\xa2\xf6\xf7\x97\x71\x6d\xe6\xc1\x5e\xfc\xb6\x8a\xb7\x7f\xb3\x6b\xb7\x77\x0e\xfa\x4e\xc5\xdc\x87\xbb\xb5\xdc\x87\xbf\x61\x29\xf7\xf8\xed\xc2\xfa\x0b\xb4\x7c\x64\x75\x90\x8b\x58\xce\xa5\xb0\x17\x1f\x2a\x9c\x80\x6c\x9b\x97\x69\xba\x06\x55\x9a\xbc\x44\xb5\x4c\x10\x82\xed\x12\xf5\x7b\x9d\xc3\xc3\xa3\x07\x35\x11\x9e\xd6\xf8\x55\x24\x75\x57\x07\x85\xe6\x8e\x83\x41\xc7\x81\x59\x26\x5f\x75\x39\x82\x6b\xbf\xbc\x5a\x57\x9f\x7a\x9d\xd3\xa3\xa3\xfa\xef\x97\xf6\xc3\xf1\x81\x53\x93\xde\x7c\xb0\xaf\x1e\x3c\x78\xf0\xe9\xe6\xc3\x98\x67\xca\x81\x27\xd2\xc4\x4b\x91\x39\x10\x18\xbe\xca\xab\x3f\x23\x99\xa6\x72\xf3\x39\x2e\x14\xc1\x04\xfa\x8a\xb3\x2a\x08\x41\xa2\x6c\xa6\x42\xfc\x0a\xd3\xb0\x06\x1b\x6a\x33\xc2\xc4\x59\xa5\x3c\x5b\xa0\xf5\xec\xe7\xd7\x8b\x7d\xe4\xde\xfe\xf7\xf2\xeb\x45\x2b\x56\x99\x36\x1c\x75\xa4\x37\xf1\x47\x2e\x45\xfc\xfa\xf2\x4f\xba\xd5\x75\x35\x07\xba\xa8\x51\x68\xf6\x22\x55\x8b\x4b\xf6\xd6\xf5\xb3\x2a\x4d\x45\x6a\x2a\x15\x15\xae\xa9\xb0\x41\x13\x0f\xd4\x03\x6a\xf8\xab\x56\x2b\x4e\x2e\xb5\xae\x43\xaf\xca\xd4\xc8\xbc\xee\xd7\x55\xca\x59\x4f\x73\x48\x4d\xf6\x58\x55\xba\xab\x9e\xfe\x36\x93\xb9\x3b\xf2\xb8\x1a\xf3\x84\x05\x8f\xa9\xac\x38\xc8\xe6\x0a\xff\x3e\xe3\x45\x86\x7f\xbd\xa2\x50\x05\x7e\xe8\x71\xc3\xd3\xb7\x0e\x6c\x67\xb1\xa1\xf7\xd4\x43\x00\x48\x5f\x59\x0d\x02\x37\xec\xb2\xee\x29\x4b\xd7\xc4\xdd\x76\xf5\x1c\xf5\x3b\x6d\xf4\xb7\xa8\x77\xbf\x14\x85\x34\x35\xbd\x0d\x25\xe2\xcb\xdb\x64\xf0\xe1\x77\xa0\x51\xb9\x53\xeb\x9c\x74\xdd\x83\x16\x09\x4a\x1c\x0a\x65\x50\x2c\xf7\xf4\x2d\x6a\x2a\x59\xaa\x42\xf7\x81\xe9\x62\x05\xd8\xee\xb3\xe1\xa4\x1f\xf9\x93\xd0\x66\x2b\x9b\x68\xbf\x20\x77\x89\x44\x12\x2e\xd3\x35\xeb\xba\x83\xe1\xf3\x77\xc6\x6d\x9c\x87\x5e\xca\x39\x41\x7c\x4c\x45\x53\xdb\x1b\xdd\xe1\xe5\xd1\x69\xd5\xe1\x3b\x84\x1f\xfe\x10\x8e\x4e\x1d\x38\x3a\x3e\x69\xf8\x95\x28\xb8\x18\xf4\xe8\x46\xe8\x69\x45\x97\x5c\xff\xd6\xc7\x34\x08\xd3\xa4\xe1\x60\x5c\x75\x86\xe8\x3f\x94\xf5\xab\x5c\x16\xe4\x2d\xd6\xb5\xce\x5b\x70\x79\x2f\x11\xa9\x30\x02\xf8\xdc\x88\x02\x56\xfc\x15\x0d\xb9\x4f\x64\x36\xe5\xcd\x4d\x0d\x99\x8a\x34\x6f\x4b\x83\x9e\x7e\x27\x71\x3c\xab\xea\x31\x33\x7f\xc8\xec\x5d\x60\xcc\x6b\x0a\xd5\xec\x5a\x15\x65\x96\xa1\x0c\xf0\x71\x75\x9f\x21\x17\x85\x54\x89\xbd\x3b\x70\x47\x93\xd7\x2f\xb3\xe6\x68\xca\xb0\xa9\x71\x6b\xab\x3d\x6d\xba\x22\xee\x86\x11\xe5\xee\xdb\x84\xea\x0c\x66\x74\x77\xba\xba\xa2\xa3\xed\x4e\xda\xf6\x42\x75\x54\x3d\xbc\x64\x41\xe7\xc2\xeb\xce\x28\x80\x7d\x66\xdb\xc0\x87\x07\x2b\x46\x55\xd9\x4d\x17\x7a\x29\x78\x6a\x96\xf6\xee\x63\x45\xa6\x10\xb9\x8a\xec\xf3\x88\x9e\xdf\x45\xe9\xe8\xe1\x92\x6d\x4b\x49\x27\x07\x18\xcf\xdc\x62\x51\xda\xc0\x8a\xce\x9e\xfc\x48\x96\xc0\xc7\x0b\x69\x60\xae\xe3\xeb\x8f\x6b\xcf\xd1\x6a\x95\x59\x81\x41\x89\xb8\xd6\x6a\x19\xbe\xd0\xe8\x7d\xd0\x37\x92\x07\x55\xd9\xc6\x47\x4a\xd3\xd2\xf1\x8a\x50\x54\xa2\x62\x4d\x0f\x90\xd8\xfe\x61\xfb\x93\xf6\x31\x73\xfd\x7e\x60\x4d\xae\x43\xb7\x37\x1b\xfd\x75\xba\x92\xa7\x8d\x8c\x6b\xf6\xd0\x59\x22\x3a\x1d\xbe\xd3\x97\x6f\x73\x97\x84\x72\xf7\x51\x71\x81\x54\xf0\xac\xcc\x9b\x4b\xf0\x22\x5e\xca\x1b\xa1\x9b\x8c\xab\x9e\x45\xb1\x1d\xfe\xce\x22\x56\x84\x77\xaf\x72\x06\x21\x82\xf0\xfa\xf2\xe6\xf6\x52\xaa\x9c\xd7\x6b\x35\xba\x88\x55\xb3\x9f\x4d\x86\x98\x9d\x84\x17\x2e\xfa\x47\xda\xec\x8b\x85\x34\x8d\xc6\x86\x86\xa5\x5c\x2c\x53\xb9\x58\x92\x2d\xf3\x84\xc0\x71\x96\x40\x21\x56\xea\xc6\xde\x65\xcb\x16\x62\xdb\xce\xe8\x0e\x7a\xbd\xe8\x62\xd0\xbf\x18\x0e\xfa\x17\xe1\x4e\xbd\xb8\x89\x0f\xd0\x94\xf5\x06\xb9\x20\xe5\xa6\x39\x23\xd4\x4b\xe4\x7c\x4e\x15\x69\x32\xca\xfe\x20\xb4\xa4\x9b\x46\xfe\x0e\xd5\x78\xc9\x0b\x1e\x1b\x84\xe1\x44\x32\x6d\xf6\xe9\x3e\x4c\x93\xee\xe1\xb9\x9d\xd0\x5e\x9c\x3e\xbe\x83\xb8\x85\x34\x7a\xa9\x6e\xb3\x0f\xd0\xda\xb6\xa7\x0f\x3e\xac\xd6\x8b\xb8\xa1\xd4\x7c\xb1\x28\x30\x11\xba\x41\x9d\x46\x8f\xfd\x9b\xe8\xf4\x22\xae\x34\xba\xdf\x89\xb6\x4a\x3d\xd9\x14\xdf\xee\xa8\xe8\xa2\x94\xdb\xd5\xf3\x4b\x66\x6f\x6d\x79\x64\x8c\x07\xd5\xed\x3c\xfb\x9b\x0e\xd6\x19\x4e\xc6\x5e\xf5\x79\x3a\x1b\x0e\xab\x8f\xfd\x8e\xad\x7e\xb0\x17\xd6\x63\x5c\x36\xae\x3f\x36\x4b\x28\x4b\x55\x16\x1a\xae\x84\xb9\x15\xa2\xaa\xec\x5a\x77\xd1\xf5\x7a\xee\x6c\x18\x46\x8d\x62\xca\x29\x63\x2f\x78\x2e\x2f\xdf\x61\xbc\x34\x62\xa5\x6d\x62\x60\x2f\x52\xdb\x5c\x80\xdb\x22\x31\x72\xdf\xfe\x16\x28\xf0\xa2\x41\xe8\x8d\xac\xfc\x18\x7b\x51\x12\xad\x6d\xbd\x79\xe7\x6a\xdc\xa6\xa1\x8f\x02\xb5\xda\xa1\x32\xba\xb8\x9c\x22\xcb\x89\xb4\xf7\xc5\x74\x38\xf1\xbd\x68\xa7\x0e\x7d\x74\xb0\x43\xd4\x66\x0c\xef\x23\x47\x64\x06\x41\x30\x7b\x8b\xc8\xe1\x2e\x91\xcd\x7d\xcd\xea\x2a\xdc\x2e\x11\x1e\x1b\x79\x23\xcd\x1a\xe6\x42\x24\xac\xe7\x79\x5d\xba\xc9\x62\xef\x88\x55\x04\x8f\x37\x1d\x70\x35\x87\x3d\xb3\x14\x2b\xd1\x8a\x55\xaa\x8a\x3d\x58\x09\xc3\xc1\xf0\x85\x63\xaf\xde\x5d\xad\xc1\xcd\x92\x42\xc9\x04\x7e\x74\x0e\xc7\xf4\x13\x09\x17\x35\x9a\xda\x1f\x40\x93\x28\x25\x85\xbd\x4c\x65\x55\xb7\xb5\xee\xc2\x5a\x29\xd8\x5f\x33\x34\x7e\x39\xa3\xcd\x3a\xdd\x34\x79\x10\xc3\x6e\x5b\x3c\x89\xb8\x11\xa9\xca\x45\xa1\xdb\x0b\xa5\x16\xb6\xa8\xb8\x7f\x2b\xae\xf6\x6d\xc8\xd1\xfb\x47\x07\x87\x0f\xf7\x0f\x0f\xf7\x03\x8b\xd6\x5b\x73\x55\xb4\x1a\x07\x68\xc9\xac\xd5\x59\x16\x6a\x25\x5a\x0f\x3e\xa5\x97\xd5\xf6\x59\x78\xe1\x8d\xbc\xa8\x33\x19\x4e\xfc\x68\xe4\x85\x6e\x14\xba\x7d\x38\x87\x97\xdf\x9b\xcf\x8f\x1f\x3c\x7c\xf0\xb2\x89\x46\x64\x06\x57\x6b\x23\xf4\xd6\x90\x6d\x66\xb9\x2d\xe8\xdf\x6b\x96\x1d\x46\x8f\x2b\x2c\x30\x08\xa6\x43\xd7\x56\x61\xeb\x64\xe7\xf4\xc1\xe9\xe9\xc9\xc1\x29\x29\x58\x7b\xd3\x08\xde\x0a\xb3\xea\xf8\x7c\x40\x21\x66\x81\xe7\xef\xea\xc3\xf1\xc1\xbb\x9a\xfa\x41\x12\xbe\x37\x9d\x7c\x90\x44\xa6\x8c\x8c\xff\x1a\xc5\x1c\x4f\xc2\x41\xe7\x6d\xf5\x3e\xde\x21\xd3\xec\x59\x7f\x90\xd6\xc4\xef\xbf\xb3\x1f\xe2\x10\xb2\xe3\x0e\x3b\xfc\x0d\x4f\x77\x88\x49\xa2\x3c\x3c\xcd\x2e\xd9\xd0\x1d\xa3\x8f\x03\x91\xb5\x66\x81\xf3\xf5\xb2\xd5\x19\xe3\xbf\x17\x4f\xf0\xdf\xf0\x99\x93\x88\x56\xd7\x73\xe6\x45\xab\xe7\x3b\x59\xda\x1a\x0f\x9d\xf4\xa6\x35\x7c\xea\x14\x65\xcb\x9f\x39\x3f\xe6\xad\xdf\x99\x3a\x42\xb7\xbc\xc0\xc9\x4d\xeb\xb1\xef\xe4\x69\x6b\x3a\x74\xae\x16\xad\xc7\x7d\x47\x9a\xd6\x20\x74\xe6\xb2\xd5\x1b\x38\xa6\x68\x85\xbe\x13\xeb\x56\xe7\x4b\x47\x17\xad\x60\xea\xe8\x9b\x56\xe0\x39\xd7\xaa\xf5\xc4\x77\x16\x29\x52\x28\xaf\x5b\x33\x97\xee\x38\xe0\x8e\xbc\x6c\x91\x4a\xbd\x74\xfe\xe2\x3f\xfc\xe4\xcf\xff\xf4\x9f\xfe\xf9\x2f\xfe\xf8\xdb\xdf\xfb\x7b\xce\x5f\xfc\xf2\xa7\x7f\xf9\xef\xfe\x99\xfd\xf2\x57\xbf\xfe\xfb\x7f\xf9\x6f\xff\xc5\xb7\xbf\xf8\x8f\x7f\xf5\xeb\x7f\xf0\xf6\x8b\xff\xf9\x4f\x7e\xfe\xed\x2f\xff\x1b\xbe\xe8\x8a\xd2\xe8\x78\xe9\xf4\x0a\x9e\x7d\xf3\x87\x5c\x6a\x67\x2c\x12\x51\xa4\x3c\x4b\xb4\x33\xe4\xe6\x46\x8a\x3f\xfb\x59\xe9\xbc\xfe\x57\x6f\xfe\xee\x9b\x9f\xbe\xf9\xe9\xeb\x5f\xbd\xfe\xc5\xeb\x5f\x3a\xdf\xfe\xfe\xbf\xf9\xf6\x0f\xfe\xfd\xff\xfa\xa3\x7f\xe9\x78\x3a\xe7\xdf\xfc\x89\x4a\x9d\xa9\x2a\x4c\xb9\x28\xbf\xf9\x23\x0d\x89\x82\xc7\x05\xd7\x12\x1f\xa6\xfa\x5a\x3a\xaf\xff\xe4\xcd\x3f\x7c\xfd\x5f\x5f\xff\xa7\xd7\x3f\x7f\xf3\x13\x4b\xc3\x19\x18\x9e\x4a\x4c\x63\x83\x52\xad\x78\xca\x65\x26\x32\x27\xfc\xe6\xd7\xc5\xf5\x37\x7f\x28\x9c\xff\xf1\x8f\xc5\x9f\xfd\xcc\xc8\x8c\x3b\xaf\x7f\xf6\xe6\x27\xaf\xff\x7b\x35\x29\xb8\x11\x99\xbe\xe6\xce\xff\xfd\xe7\x7f\xf0\xbf\xff\xcb\x1f\xff\x9f\xdf\xfb\xcf\x4e\x9f\xa7\x62\xa1\x9c\xd7\xff\xfa\xf5\xaf\xde\xfc\xe4\xf5\xcf\xdf\xfc\xfe\xeb\x3f\x7d\xf3\xd3\x37\xff\xe8\xf5\xaf\x5e\xff\x9c\xd9\x3c\xd1\x76\x46\xd1\xfa\x31\x04\xe5\x32\xbe\x16\x85\x95\x6e\x1b\x1f\x62\x6a\x7b\xc9\x48\xbc\x24\x66\x46\x32\x86\x73\xf8\x7a\xc9\x48\xd0\xf4\xb1\x15\x3e\x63\xf4\xef\xe6\x1b\x09\x9e\x7e\x10\xc9\x48\xfa\x08\x3e\x0a\x46\x2a\x00\xe7\x90\xa5\x8c\xf4\x00\xce\x21\xbd\x61\xa4\x0c\x70\x0e\x45\xc9\x48\x23\xe0\x1c\x7e\xcc\x19\xa9\x05\xae\xa9\x19\xe9\x06\x9c\x03\xfd\x65\xa4\x23\xf8\x2d\x65\xa4\x28\x70\x0e\x57\x0b\x46\xda\x02\xe7\x20\x0d\x23\x95\xc1\x05\x25\x23\xbd\x21\x48\xc8\x48\x79\x30\xb3\xc5\xbf\x8c\x94\x08\xce\x41\x17\x8c\x34\x09\x3f\xde\x30\x52\x27\x38\x87\x6b\xc5\x48\xa7\xe0\x1c\x16\x29\x23\xc5\x82\x73\x28\xaf\x19\xe5\x31\xf5\x05\xad\x15\xcf\x73\xfa\x19\x91\x6a\x00\xb3\x38\xe5\xd4\x53\x20\x34\xd1\x36\x6a\x95\x9e\xcb\x4c\xb2\x17\x9b\x11\xed\x6a\xda\x25\x63\x2f\x14\xa6\xbf\x97\x2c\xb8\x98\x3c\x8b\x7a\x93\x49\xe8\xf9\xd1\x63\xdf\xfe\x16\xa3\x81\xd6\x82\xa5\xba\x85\x1b\x51\x54\xf5\xe5\xb7\xab\x12\x94\x68\x20\x94\xe9\xab\xfa\x0a\xf1\x5c\x29\x23\x8a\x1d\xba\x4f\x3d\xbf\xfa\x8d\x67\x9d\x44\x22\x55\x2a\x16\x37\x7f\x04\x63\x7f\xcb\x52\x15\xb2\xdf\x43\x2a\xf4\x46\xd3\xa1\x1b\x7a\x11\xd5\x61\xab\x1a\x30\x51\xfd\x7f\x01\x00\x00\xff\xff\x53\x82\x6a\xa6\x4e\x3c\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x7b\x5b\x8f\xdc\x48\x96\xde\x7b\xfc\x8a\xe8\x1a\x8f\x5b\x1a\x30\xb3\x2e\x52\x55\x57\xab\x26\x07\x4d\x65\x32\xb3\xb8\xca\x5b\x93\x4c\xa9\xd5\x85\x02\x15\x45\x46\x26\x63\x8a\x64\xb0\x19\xc1\x2a\x65\xc3\x58\xcc\xc0\x0f\xbe\xc0\x86\x1f\x6c\xef\xc2\xc0\xc2\xf0\xc0\xb0\x17\x58\x7b\xed\x59\xd8\x06\x66\xc6\xb3\xf6\x43\x7b\xdf\xa5\xff\xb0\xee\xf5\x1a\x36\xf6\x2f\x18\xe7\x04\x99\xc9\x2c\x95\x34\x3d\xc0\x1a\xd8\x6e\x40\x95\x49\x46\x9c\x88\x38\xd7\xef\x9c\x13\xf9\x3d\xfa\xd1\x47\x1f\xd1\xa9\xf3\xdc\xf1\x28\xfe\x33\x99\x0d\xdc\xe1\x4b\x1a\x9c\xbb\x3e\x1d\xba\x63\x07\xde\x13\x33\x6a\x3e\x76\x6c\xdf\xa1\x13\xfb\x99\x43\xfb\xe7\xf6\x74\xe4\xf8\x74\x36\xa5\xfd\x99\xe7\x39\xfe\x7c\x36\x1d\xb8\xd3\x11\xed\x2f\xfc\x60\x36\xa1\xfd\xd9\x74\xe8\x8e\xee\x52\x70\x87\xf4\xe5\x6c\x41\x6d\xcf\xa1\x73\xbb\xff\xcc\x1e\xc1\x8c\xb9\x37\x7b\xee\x0e\x1c\xcf\xda\x59\x60\xf6\x02\x28\xcf\x5f\xd2\xd9\x90\xba\x01\xd2\x20\x67\xd4\x2e\x0a\x9a\xb3\x8c\x53\x9d\x30\x4d\x55\x22\x6f\x15\x95\x39\xe5\x37\xbc\x5c\xd3\x82\xad\x38\xd5\x42\xa7\x9c\xd8\xf3\x79\x38\xb5\x27\x0e\xed\xd1\x91\x5c\x29\x72\x46\x83\x84\x9b\x99\x72\x49\x75\xc2\xa9\x5a\x2b\xcd\x33\x5a\x29\x5e\x1a\x62\x65\x95\x2b\x33\xd8\x5b\x4c\xc3\x85\xef\x78\xb4\x47\x57\x42\x93\x33\xea\x08\x9d\xf0\x92\xee\xc5\xfc\x66\xcf\xa2\x7b\x45\x29\xe3\x3d\x2a\x4b\xba\xa7\xb9\xd2\x7b\x38\x7e\x32\x1b\xc0\x62\x31\xbf\x21\xe4\x42\xf1\xf2\x86\x97\x97\x64\xee\xcd\x82\x59\x7f\x36\xa6\x3d\x9a\x68\x5d\x90\xc1\x6c\x62\xbb\x53\xda\xa3\xa9\x8c\x58\x9a\x48\xa5\x89\x37\x9b\x05\xe1\xc2\x83\x21\xdf\x7f\xd0\x8c\x7f\xa8\x9e\xec\xef\x7f\xff\x81\x19\xfe\x50\x3d\xf9\xfe\x83\xf3\x20\x98\x87\xf3\x99\x17\x3c\x54\xfb\x04\xbf\xd8\x83\x01\x6c\xf0\xa0\x8b\xff\x93\xcd\x00\xda\xa3\x8f\x0e\x0e\x0e\xc8\x19\x9d\xf3\x32\x13\x4a\x09\x99\xd3\xa5\x2c\x69\x95\x8b\xd7\x54\xc9\xe8\x9a\x6b\xb2\x98\xba\x5f\x84\xfe\xac\xff\xcc\x09\xc2\xb9\xe3\x4d\x5c\xdf\x77\x67\xb0\xb1\x93\x93\x13\x72\x46\xc7\xb0\x3d\xfa\x60\x30\xf9\xf2\x21\x85\xbd\xc1\x74\xe0\x0c\xbd\x95\xe5\x35\x2f\x15\x7d\xa0\xaa\x28\xa1\x4c\x51\xdf\x3f\xa7\x55\x11\x33\xcd\x1f\x52\x16\x45\x5c\x29\x91\xaf\xe8\x2d\xbf\xa2\xc0\x03\x11\xf1\x2e\x39\xa3\x6e\x4e\x33\xa9\x34\x8d\x98\xe2\x8a\xae\x65\x45\x63\x49\x73\xa9\x69\xce\x79\x4c\xb5\xa4\x51\xc2\x72\x10\x5d\xc2\x69\xcc\x97\xac\x4a\x35\xbd\x61\x69\x85\x93\xed\x54\xf3\x92\x0a\x4d\x65\x9e\xae\xa9\x58\xc2\xfc\x12\xd7\x35\x5c\xa6\xb9\x8c\x39\x15\x0a\x09\xa2\x60\x41\xc8\x4c\x51\xe0\x08\xbe\xec\x92\xf1\xac\x6f\x8f\xc3\x0f\xb1\x7a\xc3\xd2\x77\xb9\x7d\x46\x07\x42\xb1\xab\x94\xe3\xa2\x4b\xce\x74\x55\x72\x7a\x9b\xf0\x1c\x97\x64\x37\x4c\xa4\xf0\x9a\x0c\x5c\xdf\x7e\x3a\x76\x42\x18\xd6\xa3\x4b\x96\x2a\x4e\xce\xe8\x8b\x84\xa3\xf2\x54\x8a\xd3\xab\x4a\xa4\x5a\xe4\xed\xdd\x4b\x38\x80\xee\x12\x3f\xb0\xbd\x00\xa6\x86\xbe\xe3\x3d\x47\xdd\x6b\x28\x0c\x64\xc6\x44\x5e\xab\xbd\xa4\x57\x9c\xf2\xd7\x85\x54\x3c\xa6\x35\xa9\x28\x95\x39\x07\x41\x11\x98\xbf\x51\xb2\xad\x02\x81\x32\xc8\x52\xd3\xbc\xca\xae\x40\xdd\x7f\x33\x91\x5a\x93\x8e\x8e\xc8\x19\x9d\x72\x0d\x72\xa7\x22\xd7\xbc\x5c\xb2\xe8\xde\x73\xa4\x42\x69\x9e\x83\x31\xe2\xfc\xb1\xeb\x07\xce\x34\x3c\x9f\xf9\x41\x4b\x49\x77\xb7\xf1\x9d\xa9\xd4\x9b\xf9\xfe\x83\x66\x67\x78\x22\x4f\x4a\x4d\x0b\xa6\x13\xb0\x68\xa0\x11\x8b\x92\x47\x5a\x96\x6b\x6b\xa3\x45\x42\xd1\x8f\x7f\x77\xbf\xab\x54\xf2\xb1\x45\xaf\x2a\x8d\xca\x97\xb0\x1b\x64\x24\x48\xe4\xe3\xfd\x44\x66\x7c\x7f\x25\xb4\x19\xd5\xc5\x75\x51\x53\xe6\x76\x70\x4e\x7b\xe4\x8c\xf6\x13\x29\x95\xd1\xce\x48\x14\x09\xe8\xbf\x96\x54\x55\x45\x01\x87\x01\xdb\x40\xfe\xc9\x3c\xe7\x91\x16\x32\x57\x64\x2b\xc6\xb0\xef\xce\xcf\x1d\xcf\xa7\x3d\xca\xb8\x3a\x3c\x3a\xed\x44\xba\xb4\xf0\xf3\xa7\x47\x9b\xcf\x47\xc7\x27\xdb\xe7\x47\xa7\x9d\x55\x94\x7d\x26\x0b\x9e\x2b\x95\x74\x23\x99\x59\x94\x95\xd1\x52\x56\xe5\xd1\xf1\xc9\xe6\xf3\xe1\xd1\x29\xaa\x66\x7d\x66\x34\xa3\x92\x33\xcd\xa9\xe6\x59\x21\x4b\x56\xae\xe9\x52\xa4\x5c\x19\x55\x05\x4f\x45\x8b\xea\x2a\x15\xd1\x35\xbd\xe6\x6b\x5a\xa1\xa5\x2a\x95\x74\xae\xf9\x7a\xc5\x73\x8b\x9c\xb5\xd9\x56\xbb\xc7\x2d\xad\x0d\x77\x0d\x8b\x9e\x39\x2f\xc3\xc0\xf1\x5b\x6c\x9a\x83\x28\x80\x31\x5b\x92\x3b\x72\xd8\x3e\xff\x98\xb2\x3c\xa6\x29\x07\x07\xce\xd3\x94\x2e\x45\x1e\x53\x59\x69\x7a\x9b\x88\x28\xa1\xa0\x87\x70\x1a\x96\xa6\x9b\xb5\x46\xa0\x06\xb8\x52\x8b\x3e\xba\x96\x58\x44\x70\xe8\xdb\xda\xcc\xd0\x9b\xf0\xe8\x9a\x66\x22\x17\x59\x95\xe1\x59\x95\xf8\x9a\xd3\x5b\xa1\x13\x1a\xc9\xb2\xe4\xaa\x90\x79\x0c\xa7\xd7\xeb\x82\x93\x89\x3b\x75\x27\x8b\x09\x9e\xc8\x77\xbf\x74\xc2\xfe\xb9\xd3\x7f\xd6\xb6\xbf\xda\xfc\xfb\x83\x29\x04\x9a\x1c\x2c\xa6\x8e\x01\x99\x8c\x39\x99\x0d\x87\x63\x77\xea\x34\x21\xc0\x4c\x6b\x9c\x81\x37\x5b\x04\x8e\x17\x8e\x67\xa3\x16\xc5\x11\xcf\x79\x09\xbb\x56\x9a\x17\xea\x09\x39\xa3\x7f\x8b\x76\xf7\x57\xe0\x61\x23\x5e\x6a\xda\x89\x58\x4f\x97\x15\xa7\x9d\xb8\x2a\x19\xe8\x54\xef\xf4\x93\x93\x83\xe4\x20\x3b\x50\xb4\x03\x71\xa3\x97\xad\xe1\x4f\x97\xbf\x66\x59\x91\x72\xd0\x12\x72\x46\xce\xe8\xac\xa4\xcb\x52\x66\x94\xd1\x6e\xb1\x7c\x8d\x0a\x80\x86\x5e\x6a\x1e\x9b\x37\xa0\xc6\x2f\x44\x1e\x43\xe4\x84\xc5\xc4\xd2\x30\x50\x69\x59\x72\xfa\x20\x96\xe4\x0c\xfd\xda\x52\x96\x2b\xae\x81\x9f\x66\x3e\x4e\x2c\x4a\x71\x03\x83\xaf\xf9\xfa\xa1\xd9\xb6\x51\xd3\x94\x16\xd7\x91\x3a\x3c\xa2\x1d\x91\x23\x55\x5c\xbd\x03\x32\x35\xdf\x78\x46\x3b\xb9\xbc\xe6\x6b\xf5\xdd\x66\x5d\xf3\x75\x33\x09\x5e\x28\xf8\x10\x73\x45\xfa\x8e\x17\x84\x08\x2a\x7a\x34\xaa\x94\x96\xd9\x3e\x44\x56\xb5\xdf\x2c\x43\x40\x8c\xf7\x0d\xa8\x29\x92\x33\xba\x28\x0a\x70\x35\xfc\x86\xa7\x08\x06\x78\x56\xa4\x70\x28\x50\x4a\xa5\x99\x16\x91\xe1\x1b\xf8\x96\x5d\xa3\x40\x16\x80\x9a\xdf\x26\xbc\xe4\x26\x24\x0a\x45\xf9\x6b\x1e\x55\x9a\xc7\xe0\xc4\x03\xb7\x7f\xc7\x7d\x0c\xea\xf9\x38\x11\xbc\x05\x60\x98\x98\x69\x86\x20\x65\x60\x07\x76\xa3\xd9\xf8\x10\x31\x4e\x0a\x32\x81\xc0\x6d\x76\x39\xfa\xd2\x9d\x37\x0e\x87\x38\x53\x54\x2c\x7c\xb6\x55\xa9\x31\x33\x2a\x8d\x18\x68\x89\x51\x25\xef\xa4\x72\xb5\xe2\x31\x62\x1c\x65\xd1\x88\xe5\xe0\xf7\xf7\xc0\xe3\x19\xf8\xc2\x5f\x17\xa9\x2c\xf9\x1e\x19\xdb\x08\xde\xc2\xb9\x3d\x02\xc6\xc1\x08\x42\x2e\x4a\x5e\x48\x25\xc0\xe6\x2f\x77\xfc\x2d\x90\x07\x75\x81\xf5\x36\x63\x04\x57\x1f\x2b\x3c\xc2\x8e\xd9\xef\xfd\xee\xfe\x0f\x61\x7d\x88\x5e\x3f\x42\x15\xef\xb4\xa7\xec\x21\x00\x42\x3e\x01\x40\x53\x51\x29\x0a\x8d\x76\xd9\x84\x84\xfa\xd8\xca\xa2\x4a\x66\x5c\x8b\x8c\x2b\x1a\xc9\x2a\x8d\xf1\x2c\x2a\xd9\x23\x7e\xdf\x73\xe7\x41\x18\xbc\x9c\xc3\xde\xaf\x98\x4a\x5a\x5c\xb7\xa7\xbe\x0b\xf8\xa2\x54\xdc\xf8\x6a\x96\xd3\x2a\x2f\x79\x24\x57\xb9\xf8\x9a\xc7\xcd\x3b\x02\x03\xc3\xfe\xb9\xed\xf9\x8e\xd9\xcf\x50\x96\x11\xaf\x91\x65\xce\x6f\xb7\x27\x5d\xd7\x01\xb4\x36\x06\x32\x9c\x79\x7d\x27\x9c\x7b\xee\x73\x3b\x70\xda\x56\x9e\xca\x2b\x96\xd2\x8c\xbd\x46\x47\x84\xde\x19\x65\x2a\x32\x80\x33\xcb\x36\xc5\xc2\x20\x84\xd2\xa2\x9d\x43\x9a\x71\x96\x03\x9e\x31\x23\xc9\xc4\xfe\x22\xec\x7b\x8e\x1d\xb8\xb3\x69\x38\x76\x27\x2e\x04\xc3\xce\x21\x39\xa3\x13\x51\x96\x20\x8b\x75\x1e\xd1\xaf\x2a\x5e\x71\x9a\xf2\x7c\xa5\x13\x8b\x8a\x1c\x96\x53\x1c\x00\x53\xb6\x1d\x85\x2e\x5f\x33\x30\x28\x80\x5c\x22\x5f\x91\x89\xeb\x79\x33\x2f\xfc\x7c\xe1\x2c\x9c\x70\xec\x4c\x47\xa8\x8a\x87\x35\x84\x64\x3a\x4a\x4c\xec\x78\x3f\xfd\xa2\x4a\x53\x5a\xf2\xaf\x2a\x0c\x31\x9b\x19\xf7\xac\x35\x5f\x8c\xc7\xa1\xe7\x7c\xbe\x80\xc0\xf1\x9e\x15\x4b\xbe\xe4\x65\xc9\x63\x3a\x16\x11\xcf\x01\x30\x6a\x49\x8b\x14\x60\x07\x33\x4e\x48\xcb\xa2\x01\xf1\x80\x17\x00\xa1\x00\x34\xca\x2a\xa5\x69\x86\xcb\xa3\xf9\x22\x5e\x02\xc7\x22\xf3\xe5\x7e\x6a\x88\x81\xd6\xd7\x5e\xa1\xfd\x98\xcc\x3d\x67\xe8\x78\x9e\x33\x08\xc7\x6e\xdf\x99\xfa\x0e\x04\x6c\xbb\x60\x51\xc2\x9b\x7d\xd0\xa3\xee\x81\x05\xbc\xaf\xbf\xb7\x02\x03\xbb\x12\xa9\xd0\xa8\x16\x88\x91\x58\xa4\x4d\xb4\x69\x6b\x3a\xbd\x5a\x1b\x48\x5a\x94\x52\xcb\x48\xa6\x9b\x10\x81\x68\x73\x84\x52\x6d\x54\xc7\xc9\xef\x12\xce\xc4\x0a\x23\x46\x4b\x67\xae\xd6\x26\x8f\x30\x8e\xaa\x76\x0b\x06\xea\x82\x43\x09\x27\xee\xc8\x43\xa5\x69\x11\xee\xcb\x3c\xaa\xca\x92\xe7\xd1\x1a\xac\xb3\x52\x06\x80\x97\x5c\x97\x82\xdf\x70\x1a\xc9\x2c\x13\x5a\x51\x91\x2f\x65\x99\xa1\xbe\x76\x69\x90\x08\x45\x6f\x58\x29\x70\x53\x31\x5f\x8a\x1c\x68\x81\x00\x1a\xe5\xae\x21\x1d\x88\x85\xa9\x6b\x65\x32\xaa\xda\xe1\x94\x55\xde\x88\x0e\xb1\x39\xd8\x70\x97\x2e\x54\xc5\xd2\x74\x6d\xc1\x73\x72\x66\xf0\x3e\x8d\x79\xc1\x01\x0b\x2c\x69\x22\x6f\x69\xc6\xf2\x35\xed\xcf\x17\x8a\x3e\x88\x64\xc9\xd5\xc3\x0d\x7c\xeb\x52\xd7\x28\x80\x99\x06\x78\xc5\xc4\xaa\xaf\x79\x09\x01\x0c\xd3\x9d\x18\xcc\x69\x34\x1b\xf9\xf4\x56\xa4\x29\x65\x95\x96\x70\x22\xc0\x15\x6b\x1a\x73\xcd\x23\xb3\xa9\xed\xde\x71\x2d\xcc\x2f\x6a\xf8\x03\x6b\x91\xfe\x6c\x32\x71\x03\x3f\x1c\x3a\x41\xff\x3c\xec\xcf\xa6\xfd\x85\xe7\x39\xd3\xfe\x4b\x40\xb6\x3b\x6e\xb2\xcb\x63\xf8\x0b\xde\x72\x2c\x14\xda\x78\x1d\x81\x01\xd5\x02\x34\xdc\xe4\xad\xe0\xc0\x10\x88\xa6\x22\xe7\xf4\xb6\x64\x05\x30\x1d\xf7\xd3\x97\x31\xaf\x2d\xdb\xd0\x83\x34\xc8\xe7\x05\x43\x05\x68\xd1\x42\x1d\x63\x28\x33\xd6\xa5\x81\xdc\xd2\x6a\x90\x9f\xd0\x09\x44\xd3\xcd\x1c\x8b\xfe\xb8\x42\x1c\xa8\x9b\x79\x04\xa1\xcb\x0b\xcf\x9e\x87\xce\x17\x81\x33\x85\x3c\x10\x94\xbf\xab\x5f\x6b\xab\x9b\xc5\x56\x37\x63\xe5\x75\x2c\x6f\x73\xf8\x66\xfe\x5c\xc7\x00\x16\x9f\xb3\x54\xc4\xe6\x7c\x00\x83\xea\xa3\xe1\x99\x18\x2d\x4a\x7e\x23\xf8\x2d\xb5\xe7\x2e\x65\x4a\xc9\x48\x30\x40\x20\xb8\x63\x9d\xf0\xcc\xa2\x4d\x06\xc9\x0a\xb1\x7f\x73\xb8\xdf\xac\xb2\x73\x56\x94\x2e\x5a\x0e\xee\x55\x75\xc1\x3d\x20\x5d\xcd\xae\x80\x5d\xc0\x1f\x5c\x9d\xde\xca\xfc\x63\x53\x10\x00\x97\x04\x6c\xdc\xe5\x3c\x8d\x25\x57\x30\x04\x3d\x04\x18\xfc\x73\xd7\x79\x81\x26\x03\x68\x01\xc1\x1b\x9c\xbb\xd9\xc7\xae\x5c\xab\x22\x95\x2c\xbe\xdc\x5a\x66\xcb\x0c\x71\x1d\x33\x40\x75\x6b\x33\x1c\xd0\x1e\x05\x00\xd7\x82\xc5\x0d\x92\x16\xe9\xba\xc6\x5a\xf5\x1c\xfa\x20\x6e\x23\x84\x15\xd7\x8a\x46\x29\x67\x39\x8f\xe1\xe4\x06\x64\x34\x25\x0e\x74\xa8\x0f\x49\xe0\x4c\xe6\x6d\xd4\xb0\xaf\xb3\x62\xbf\xa6\x07\xa1\x0b\xb6\x04\x41\xb4\x16\x0a\x2b\x39\x65\x69\x2a\x6f\x8d\xb5\x5f\x35\x6b\xf3\xd8\xa2\xbc\xbb\xea\x52\x91\xb1\x15\xdf\xff\x71\xc1\x57\x7f\xc7\x7c\x2c\xf2\x55\x97\x8e\x39\x08\x93\x67\x85\x5e\xd7\x31\x09\x89\x50\x30\xcb\x65\xb3\x04\xb1\xc7\xe3\xd9\x0b\x67\x80\xf1\xd7\xc7\xc8\x39\xa9\x9d\x02\xc2\x6e\xb9\xa4\x9c\x35\x3e\x59\xe4\x74\xf2\x94\x18\x86\xdb\x5f\x20\xdc\xa6\x3d\xfa\xa8\x35\x67\x6b\x8c\x46\x85\x31\x30\xe2\x66\x31\x0e\xc2\x54\x10\xd3\x31\x16\x83\xb4\x66\x51\x92\xf1\x5c\x83\xf9\x43\xc0\x51\x18\xe2\x4b\x9e\x42\x6c\x52\x20\x42\xfc\xd4\x65\x9b\x91\x97\xad\x94\x7c\xfb\x54\x21\x8b\x38\xca\x36\xee\x36\xe0\x01\x43\xcf\x2b\x90\xe3\xab\xf7\xc8\x15\x01\xc5\x96\xca\x9d\x99\x28\x99\xd6\xeb\x57\xa4\x2d\xb2\xd6\x0b\x00\xee\x39\x06\xa7\x4c\xb6\x45\x05\x12\xfc\x80\x84\xee\xb2\x9e\xfe\x60\xff\x07\x86\x95\xef\xb2\x7e\x77\x6b\x8f\x8e\x26\x4f\x49\x5b\x02\x47\xf5\xbc\xf7\xb3\x7f\x97\xc0\xe1\xc1\x8e\x38\x0e\xc1\x0f\x36\xa6\xd3\x32\x93\x84\x95\xb1\xf1\x4a\x57\x25\x67\xd7\x5b\x73\x6c\xc2\xd5\xb9\xed\x41\xcc\x9d\x3a\xe1\x53\xcf\xb1\xdb\x59\x57\xe3\x40\x4d\xb8\xa6\x0b\x6f\xdc\xf1\xa3\x84\x67\xf7\xe9\x34\x53\xb0\xc8\x75\x9d\xea\x96\x1c\x5c\x3f\xc0\x8f\x49\x63\xcc\x67\x28\xa9\x3a\x59\xa2\x2b\xa1\xad\x8c\xad\x72\xae\x89\xa9\x56\x86\x0b\x6f\x1c\xfa\xfd\x73\x67\x52\x6b\xf0\x77\xf1\xde\x10\xd9\x70\x25\x1e\xef\x83\x1f\x32\xfb\x68\x2d\xf9\x9d\x5c\xb6\x21\xd1\xf8\xeb\x7d\xd9\xf2\x58\x4c\x6d\xbc\xd1\x3d\x7e\x1b\x8d\x68\xd7\x65\xbf\xcf\x5b\x13\x72\xa1\x32\x56\xea\x75\xc1\x72\xad\x2e\x5b\xba\x6c\x98\x3d\xf4\xec\x7e\x50\x13\x41\xed\x1e\xd8\xfe\xb9\xb3\xf9\x36\xb6\x03\xe7\x8b\x70\xf7\x99\x3d\x1d\x8d\x9d\x41\xf8\xf9\x62\x16\x6c\x1f\x92\x0b\x48\xb5\x2e\x4d\x6c\xa8\x4c\x1a\x62\x63\x51\xb0\xd3\x97\xb9\x2e\x65\xda\xb1\x41\x62\x9d\x59\x29\x56\x22\xa7\x09\x67\x18\xa3\x5b\xe9\x02\x16\xf1\x24\x84\x0f\xc5\x73\x4d\xec\x7e\xdf\xf1\x7d\x88\xb9\x81\x37\x1b\x87\xa8\xef\xe1\xcc\x73\x47\x58\xe0\x22\x06\xe7\x83\x7a\x6d\x34\x21\x5d\xc9\x52\xe8\x24\x53\x98\xce\xe9\x84\x8b\x72\xa7\x14\x60\x00\x2c\x7d\x50\x29\x0e\x50\x5b\x4b\x1a\x37\x28\x0e\xed\xed\x21\xb9\x50\x2a\xe9\xd6\x53\xc2\x6b\xbe\x0e\xc1\x96\x80\x6b\x83\xa3\xe3\xe3\xc3\x4f\x69\x8f\x1e\x1d\x9f\x10\xa7\x3f\xf0\x6d\x4a\xeb\x6f\x1e\x7e\xc6\x6f\x07\x8f\x4f\xc9\x60\xf3\xf5\xf0\xe0\xe8\x31\x21\x17\x60\xf0\x57\x4c\xf1\xcb\x56\x31\x39\x5b\xab\xaf\x52\x2c\x27\x4b\xa5\x57\x25\x57\x26\x27\x53\x5f\xa5\x42\xf3\x47\x7b\x16\x82\x1d\x80\x50\x75\x65\x09\xf6\x1a\x88\xc1\x53\xa3\x43\x93\xb5\xff\xf9\xb8\x85\x25\x9f\x36\xf9\x0f\x92\x25\x75\xe1\xed\xf0\xe8\x13\x2c\xbd\x1d\x3e\x79\xf4\xe8\xe0\x84\xd4\x15\x71\xc8\xc2\x48\x5d\xe0\x2e\xa5\xd4\x64\x6e\xfb\xfe\x8b\x41\x93\xf5\xec\xec\x28\x07\x88\xc6\x9b\xfa\xb7\x61\x15\x6c\x1a\xf0\xbe\x28\xeb\x3c\xf2\x86\x97\x62\xb9\xee\x2c\xab\x34\xdd\x23\xbe\x3f\xde\x54\xc3\xcd\xf8\x86\x6c\x73\x34\x14\xcd\x9e\x16\xf1\xd5\x9e\x85\x55\x38\x76\xa5\x64\x5a\xe9\x6d\x72\x9d\xe3\xe1\x31\xd8\x81\x19\xd4\xb5\xe4\x1d\xf7\x09\x87\xe8\xc6\x57\x84\x5c\xb0\x38\x13\xe8\x74\x1a\x3c\x5e\xf2\x55\x95\xb2\x92\x3e\x80\x1c\x18\xdf\x3e\x34\x39\x70\xab\x48\x26\xcb\x15\xcb\xc5\xd7\xcc\x14\xec\x36\xd5\x1a\x67\xb4\x18\xdb\x5e\x38\xf3\x46\x9b\x94\x6b\x63\x26\xe4\x42\xf1\xa8\x2a\x85\x5e\x5f\x12\x77\xea\x07\xf6\x78\x0c\x70\xbb\xed\xb4\x3e\xfa\xc8\xf4\x45\x4c\xfb\x24\x98\xd1\x67\x8e\x33\xa7\x2f\x67\x0b\x8f\x22\xbf\x21\xdb\xa7\xbe\x3d\x74\x3e\xfa\x88\xf8\x4e\xdf\x73\x82\xf0\x99\x03\x38\xf2\xa3\xef\x7d\x36\x1c\x38\x2f\x3c\xe7\x85\xf7\xb7\x7f\xf0\x00\x62\x5b\xa5\x25\xe4\xef\x02\xfc\x59\xc6\xd1\x2b\xc7\x6c\xad\xc8\x78\x36\x72\xa7\xa1\xe7\x4c\x9c\xc9\x53\xc7\x0b\x07\xf6\x4b\xb0\xbf\x4f\x48\x7f\x36\x7b\xe6\x3a\xd8\xb7\x68\x89\x39\x64\xb7\x1c\xf2\xe6\xe6\xf5\x66\x5e\x7b\x0c\x26\x73\xb1\x00\x49\xd5\xc3\x7c\xa7\xbf\xf0\xda\xb9\xac\x07\xf0\x43\x41\xce\x2b\x5f\xaf\x01\x4a\x27\x3c\xd7\x4d\x91\xc2\xd8\xf1\xa6\xbb\x82\x2d\x15\xf8\x42\x3c\xe7\xb9\xe3\xf9\x90\x1b\xcf\xbe\x78\x19\xda\x8b\xe0\xdc\x99\x06\x6e\xdf\x64\xb2\xb5\x02\x7e\xd1\x79\xe1\x3c\x85\x57\x1d\x78\x50\x37\x4f\x44\xc4\x2f\x09\x38\xa5\xe7\x4e\xd8\x9f\x0d\x9c\x70\x0c\x9f\x26\xee\x74\x61\xdc\xcd\xe1\xe9\x01\xf1\x1c\xdf\x09\x42\xa3\xba\xef\x1d\x74\x46\x17\xb8\x9b\xa6\xd1\x20\xf3\xa5\x28\x33\xca\x3b\x19\x13\x69\x0d\x16\x56\x42\x69\x53\x65\x23\x9e\x33\x72\xfd\xc0\xf1\x42\x67\x62\xbb\xe3\x10\x9b\x58\xde\x64\xa7\x16\xcf\x8d\x93\x32\x48\xc8\x4c\x06\x28\x91\xc7\x14\x35\xad\xd1\x2f\x16\x45\xb2\xca\x4d\xd7\xa2\xad\x5e\xae\x1f\xbc\x93\x94\xe1\x16\x31\x7d\x55\x62\x85\xe5\x45\x2d\x29\xc2\x5c\x96\xaf\x75\x22\xf2\x55\x97\x40\xd6\xec\x7a\x4e\xe8\xbb\xa3\xa9\x3b\x0d\x01\xbc\xb6\x28\x4c\xe0\x34\xb9\xac\x8b\x79\xad\xf8\x3a\x9d\x05\xee\xf0\x65\x08\xa7\x69\x0f\x07\x94\x11\x73\xcd\x44\xfa\x04\x3b\x53\xea\xc9\xfe\xfe\x4a\xe8\xa4\xba\xea\x46\x32\x03\xdb\x12\x5a\xa1\x89\xed\x0b\xa5\x2a\xae\xf6\x0f\x4f\x8e\x1b\x9a\x1f\x92\xea\x66\x91\xf7\x8d\x9d\xbd\x8f\x09\x35\x62\x88\x58\xa1\xa3\x84\x01\xf4\x17\xb1\x51\xaf\x77\xa4\x54\xd3\xee\xdb\xf3\xa0\x7f\x6e\x6f\xa3\xcf\x2d\xbf\x4a\xa4\xbc\x06\x57\x10\x20\xf8\x6d\x81\x3a\xd3\x02\x6b\x9c\x40\xa5\xf8\xb6\x1e\x06\xc7\x04\x97\xa6\x52\x16\x5d\xc3\x87\x58\xa8\x48\x96\xf1\x1e\x69\x70\x15\x8c\xb0\x28\xbe\xb7\x68\xfd\x96\x9c\xd1\x73\x29\xaf\x31\xdf\xfd\x40\x71\xa4\xde\x13\x80\x06\x79\x5f\x49\xe4\xfe\x2a\xc8\x80\xa7\xe2\x86\x97\x98\x2a\x43\x02\x27\x72\xaa\x78\x24\xf3\x58\x91\x81\x03\x6a\xee\x85\x81\x3b\x71\x66\x8b\x00\xb1\xf0\x19\xc5\xb8\x4a\x45\x8e\x1e\x8a\xb7\x0a\xbb\xc0\x2f\xff\x99\x3b\x0f\x83\xb1\x1f\x3e\x77\x3c\x77\xf8\xb2\xc5\xf4\xe9\x06\xee\x25\x42\x61\x36\xd3\x4a\xfc\x31\xeb\x00\xfc\x58\xb0\x15\xf8\xde\x91\x3b\x1d\x85\xd3\xc5\x64\x8b\xf7\x44\xca\xcb\x77\xe1\xc4\x19\x7d\x5a\x2d\x97\x58\x62\xc5\x58\x0b\x20\x2e\x61\x79\xce\x53\x8b\x5e\x73\x5e\x50\x81\x4e\x5d\x60\xc0\x37\x0d\x3d\x1a\x63\xfa\x76\x9d\xcb\x5b\x7a\x0b\x18\x0b\x5f\x76\x89\xef\x4c\x07\xe1\xd3\xc5\x70\xe8\x78\xc0\x23\xc3\xa0\xa6\xe0\x13\x0b\x55\xa4\x6c\x6d\x5a\x58\x68\xcf\xa6\xf7\xeb\x2f\x9e\xfe\x8e\xd3\x37\x1d\xa3\xa6\x0f\x8c\x1d\x23\xb4\x12\x53\x56\x24\x67\x74\x94\xa1\xfa\xab\x4c\x17\xdd\x15\x7c\x06\xd5\x7f\x72\x7c\xfa\x09\x39\xa3\x9f\x7f\x5e\xbf\xf8\xea\x2b\x7c\xfa\xf8\x04\x98\x3c\x95\x9a\x5b\x4d\x7a\x89\x35\x71\x9e\xc7\x35\xa6\xdb\x7b\x7c\x72\xbc\x67\x51\x7f\x12\xcc\xeb\x7a\x03\x64\x59\x0a\xb2\x89\x05\x76\x5a\xb0\xc1\x17\x8c\x7d\x2a\x73\x33\xf7\xf8\xf4\x13\x60\x40\xc9\x01\xcf\x01\x0a\x8c\x11\x6d\x7b\xc3\x3e\x3d\x79\x7c\xf0\xe9\xa6\xc4\x71\xa7\x0e\xba\x25\x24\x74\x5d\xd8\x48\x6f\xd9\x5a\x6d\xd6\xab\x63\x7f\x2b\x1e\x9e\x3b\xe3\x19\x95\x05\x37\xe6\x63\xe2\x6b\x22\x95\x46\x87\x0d\x36\x12\x0b\x90\x17\xcf\x75\x77\x5b\x94\x82\x39\xd8\xfd\x32\xf8\x7b\x33\x1e\xec\x68\x97\xe0\x0e\x80\xc3\x1e\x83\xa9\x9e\x74\x09\x8c\xc3\x1e\xa0\x89\x36\xe8\x3f\xd1\x7b\x1a\xc0\x60\x5a\x6a\xad\x1e\x84\x6c\x9f\xb8\x4b\x67\x79\xba\x46\x7c\xa0\x13\x61\x32\x3b\xc5\xd3\x65\x07\x9c\x24\x8f\xdb\x13\x95\x51\xf1\x46\xbd\x8d\x4b\xa5\x51\x2a\x20\x35\x6c\x8d\x03\xd0\x13\xf6\x1d\x2f\x70\x87\xe0\xaf\xb6\x01\xee\x9e\xb6\x82\xd1\xee\x0f\xf5\x15\xea\x11\xdb\xc6\x02\xea\x97\x69\xbf\xc4\x71\xc9\x95\xb2\x50\x9a\xc7\x8f\x8e\x8e\xea\x22\x5a\xed\x72\x10\xcc\xb3\x9c\x72\xd4\xda\xcd\x60\x59\xe2\xf1\x5f\xed\x81\x7a\xef\xd1\x1f\xe2\xeb\xcf\x5a\x2d\x9e\x1f\xbd\xa2\xc6\x3a\xc9\xd0\x9b\x4d\xea\x5c\x1b\x36\xb1\x8d\xb9\x18\x89\x0a\xa6\xd4\x2d\xf8\x28\x13\x63\xdb\xf8\x0e\x18\xa3\xf9\x6b\xbd\x5f\xa4\x4c\x60\x8e\x61\x28\xa2\x95\xca\x5c\x03\xea\x06\x2e\xcd\xc7\xb6\x3b\x0d\x03\xe7\x8b\xa0\x85\x7f\x22\x16\x25\xbb\x18\x96\x67\xb2\x5c\x1b\x3c\x18\x0b\xf0\xa2\xd2\x3c\xc5\x91\x7b\xbb\x9d\x80\x7a\x30\xb1\x07\xf6\x3c\xc0\xd8\x6f\x9e\x34\xf0\xb0\x7e\x5f\x63\xce\x51\xdf\x14\x53\x6f\x58\xda\x72\x7f\x3b\x14\x4f\x0e\x88\x3b\x0d\x1c\xef\xb9\x0d\xc1\xed\xe4\xa0\x21\x64\xf6\x62\x50\x66\x6b\x2f\xdb\x0e\x2d\x6a\x73\xc3\x77\x72\x46\x71\xc2\x13\x9a\x9b\x46\x77\x4f\x47\x85\x05\x2f\x7b\x4f\x4e\x1e\x7d\xf2\xa9\xd5\x70\xb3\x97\xb1\x88\x95\x32\xb7\xe2\xab\xde\x81\x55\x48\x99\x62\x6a\xd0\x3b\x3c\x38\xb0\x44\x9c\xf2\xb0\xf6\xd6\x3d\x03\x3c\x9a\x95\x9f\xd0\x57\x5b\x18\x7e\x78\x78\x74\x78\xf8\xaa\x31\x51\x00\x3b\x78\x41\xe3\x7e\x9e\x42\x52\x58\xb3\xb4\x61\xef\x7d\xfc\x6c\xee\xcf\xb4\x19\x3a\x2f\xe5\x8d\x00\x50\x86\x88\x67\x45\x65\x61\x80\xee\x59\x3d\xe4\x09\x9a\xa1\x29\xd6\xe5\xeb\x66\xd4\x9a\x6b\x48\x95\x45\xca\x9f\xd0\x7a\x67\xdb\x56\x58\x5d\x88\x30\x55\x8d\xfa\xad\x7a\xf5\xff\x8d\x7b\x90\xc6\x3c\xa1\x2b\xd9\x51\x5f\xa5\x9d\xb8\x84\x70\xb8\x8f\x0f\x69\xac\xf2\x66\xc3\x4a\x43\x9e\xdf\xec\x0c\x72\x99\x27\xcd\x7a\x9f\x35\x7b\x0c\x35\x38\xc1\x57\x1b\x36\x85\xf5\xd5\xa4\x3a\x8f\x68\x4e\x82\x09\xbb\x39\x72\x24\xe5\xb5\x30\x0d\x84\x06\x10\xd7\x70\x59\x84\xa9\xb8\xe6\xa1\xc1\x47\xe4\x0c\x5c\x34\x44\x2f\xf0\x51\x0d\xbf\x20\xaf\x05\x44\x55\xab\x71\xdb\x35\x1a\x57\xf3\x1e\x84\x5d\xe3\x1f\xc5\x75\xbd\xfe\xce\x5c\x44\x38\x35\xee\x01\xd8\x6b\xa8\x6c\xab\x51\xcd\xd6\x47\x7d\xc4\x0c\x1b\xd3\xd9\x21\x72\x7a\xf2\xf8\xe0\x80\x8c\xfa\x61\x63\x35\x08\x22\x68\xaf\x7e\xb1\xa5\x92\x8a\xa5\x29\xd3\xdf\x33\xdd\x77\xf0\xae\x50\x38\x76\x87\xce\xdd\xf9\xfd\x2d\xe3\xd0\x5d\xf7\x7d\x6f\x48\xe0\x9f\x70\x97\x8d\x61\xa4\xca\x25\x21\x17\x85\x88\x74\x55\xa2\x47\xd9\xdc\x1e\x30\xa5\x51\xb5\xa9\x3b\x41\x52\x7f\xc3\x34\x2b\x15\xb1\x9f\xdb\x81\xed\x85\x8b\xf9\x78\x66\x0f\x76\xca\x9f\xcd\x88\x33\xda\x4f\x44\xce\x15\xaf\xa1\x1e\xa6\xcf\xe6\xfa\xc6\x5e\x5c\x49\x95\x54\x72\xcf\xb4\x07\x58\x53\x58\x32\x53\xa9\x92\x55\x19\x71\x8b\x82\x7c\x0d\x26\x7e\xb2\xbf\x1f\xe5\xdd\x55\x69\x06\x20\x2e\x36\x1f\xf7\xc9\xc8\xab\xb7\xe2\xcf\x16\x5e\x1f\xf3\xa8\x7a\x18\xf6\x31\xb1\x5b\x92\x56\x7c\x83\x03\x96\xb2\x8c\x36\xa5\x57\x6c\xec\x8b\x9c\xca\xe5\x12\x2b\x63\x19\x5e\x51\x6a\xe2\x6e\x43\xba\xa5\x19\x43\x1e\xe3\x6d\x81\x86\x11\x34\x95\xf2\xba\x2a\xe0\x88\x8a\x0e\xa6\x7e\x5d\xc4\x88\x24\xc0\x84\x7a\xc8\xb6\xe6\x4e\xce\x0c\x40\xc1\x60\x02\x28\x96\xf3\x0d\xe4\xbf\xbd\xbd\xed\xa6\xe2\xaa\x39\xa2\x2c\x57\xdf\x61\xff\xb8\xad\xbb\x07\x00\x96\x8e\x6a\x3a\xa0\x2b\xb1\x50\x57\x2c\x05\x34\x52\x2b\xed\xd0\x19\x38\x9e\x1d\x38\x83\x70\x73\x3e\x83\xda\xdf\x5f\xc6\x35\x99\x07\xb9\xf8\xeb\x2a\xde\xfe\xcd\xae\xdd\xde\x3b\xe8\x3b\x15\x73\x1f\xef\xd6\x72\x1f\xff\x96\xa5\xdc\xe3\xbb\x85\xf5\x0b\xb0\x7c\x60\xb5\x5f\xf0\x48\x2c\x05\x37\x17\x1f\x6a\x9c\x00\x6c\x5b\x56\x69\xba\xa6\xb2\xd2\x45\x05\x6a\x19\x03\x04\xdb\x25\xea\x0d\xfb\x87\x87\x47\x8f\x1a\x22\x2c\x6d\xf0\x2b\x8f\x9b\xae\x0e\x08\xcd\x9e\xfa\x6e\xdf\xa2\x8b\x5c\xbc\x1e\x30\x00\xd7\x5e\x75\xb5\xae\x3f\x0d\xfb\xa7\x47\x47\xcd\xdf\x2f\xcd\x87\xe3\x03\xab\x21\xbd\xf9\x60\x5e\x3d\x7a\xf4\xe8\xd3\xcd\x87\x29\xcb\xa5\x45\x9f\x09\x1d\x25\x3c\xb7\xa8\xaf\x59\x56\xd4\x7f\x26\x22\x4d\xc5\xe6\x73\x54\x4a\x84\x09\xf8\x15\x66\xd5\x10\x02\x45\xd9\x4e\x85\xd8\x15\xa4\x61\x2d\x36\x34\x66\x04\x89\xb3\x4c\x59\xbe\x02\xeb\xd9\x2f\xae\x57\xfb\xc0\xbd\xfd\xef\x15\xd7\xab\x4e\x24\x73\xa5\x19\xe8\xc8\x70\xe6\x4d\x6c\x8c\xf8\xcd\xe5\x9f\x74\xab\xeb\x72\x49\xf1\xa2\x46\xa9\xc8\x45\x2a\x57\x97\xe4\xce\xf5\xb3\x3a\x4d\x05\x6a\x32\xe5\x35\xae\xa9\xb1\x41\x1b\x0f\x34\x03\x1a\xf8\x2b\xb3\x8c\xa1\x4b\x6d\xea\xd0\x59\x95\x6a\x51\x34\xfd\xba\x5a\x39\x9b\x69\x16\xaa\xc9\x1e\xa9\x4b\x77\xf5\xd3\xbf\xce\x64\xee\x9e\x3c\xae\xc1\x3c\x41\xc9\x22\x2c\x2b\xba\xf9\x52\xc2\xdf\x17\xac\xcc\xe1\xaf\x53\x96\xb2\x84\x0f\x43\xa6\x59\x7a\xe7\xc0\x66\x16\x19\x3b\xcf\x1d\x00\x80\xf8\x95\x34\x20\x70\xc3\x2e\xe3\x9e\xf2\x74\x8d\xdc\xed\xd6\xcf\x41\xbf\xd3\x56\x7f\x0b\x7b\xf7\x09\x2f\x85\x6e\xe8\x6d\x28\x21\x5f\xee\x92\x81\x87\xdf\x81\x46\xed\x4e\x8d\x73\x52\x4d\x0f\x9a\xc7\x20\x71\x5a\x4a\x0d\x62\x79\xa0\x6e\x41\x53\xd1\x52\x25\xb8\x0f\x48\x17\x6b\xc0\xf6\x90\x8c\x67\xa3\xd0\x9b\x05\x26\x5b\xd9\x44\xfb\x15\xba\x4b\x20\x12\x33\x91\xae\xc9\xc0\x76\xc7\x2f\xdf\x19\xb7\x71\x1e\x2a\x11\x4b\x84\xf8\x90\x8a\xa6\xa6\x37\xba\xc3\xcb\xa3\xd3\xba\xc3\x77\x48\x7f\xf8\x43\x7a\x74\x6a\xd1\xa3\xe3\x93\x96\x5f\x09\xfd\x73\x77\x88\x37\x42\x4f\x6b\xba\xe8\xfa\xb7\x3e\xa6\x45\x18\x27\x8d\xdd\x69\xdd\x19\xc2\xff\x40\xd6\xaf\x0b\x51\xa2\xb7\x58\x37\x3a\x6f\xc0\xe5\x83\x98\xa7\x5c\x73\xca\x96\x9a\x97\x34\x63\xaf\x71\xc8\x43\x24\xb3\x29\x6f\x6e\x6a\xc8\x58\xa4\xb9\x2b\x0d\x7c\xfa\x9d\xc4\xf1\xa2\xae\xc7\x2c\xbc\x31\x31\x77\x81\x21\xaf\x29\x65\xbb\x6b\x55\x56\x79\x0e\x32\x80\xc7\xf5\x7d\x86\x82\x97\x42\xc6\xe6\xee\xc0\x3d\x4d\x5e\xaf\xca\xdb\xa3\x31\xc3\xc6\xc6\xad\xa9\xf6\x74\xf1\x8a\xb8\x1d\x84\x98\xbb\x6f\x13\xaa\x33\xba\xc0\xbb\xd3\xf5\x15\x1d\x65\x76\xd2\x35\x17\xaa\xc3\xfa\xe1\x25\xf1\xfb\xe7\xce\x60\x81\x01\xec\x33\xd3\x06\x3e\x3c\xc8\x08\x56\x65\x37\x5d\xe8\x84\xb3\x54\x27\xe6\xee\x63\x4d\xa6\xe4\x85\x0c\xcd\xf3\x10\x9f\xdf\x47\xe9\xe8\x71\x42\xb6\xa5\xa4\x93\x03\x88\x67\x76\xb9\xaa\x4c\x60\x05\x67\x8f\x7e\x24\x8f\xe9\xc7\x2b\xa1\xe9\x52\x45\xd7\x1f\x37\x9e\xa3\xd3\xa9\xf2\x12\x82\x12\x72\xad\xd3\xd1\x6c\xa5\xc0\xfb\x80\x6f\x44\x0f\x2a\xf3\x8d\x8f\x14\xba\xa3\xa2\x0c\x51\x54\x2c\x23\x85\x0f\x80\xd8\xfe\x61\xf7\x93\xee\x31\xb1\xbd\x91\x6f\x4c\xae\x8f\xb7\x37\x5b\xfd\x75\xbc\x92\xa7\xb4\x88\x1a\xf6\xe0\x59\x42\x3c\x1d\xbc\x53\x97\x77\xb9\x8b\x42\xb9\xff\xa8\xb0\x40\xca\x59\x5e\x15\xed\x25\x58\x19\x25\xe2\x86\xab\x36\xe3\xea\x67\x61\x64\x86\xbf\xb3\x88\x11\xe1\xfd\xab\x9c\xd1\x00\x40\x78\x73\x79\x73\x7b\x29\x55\x2c\x9b\xb5\x5a\x5d\xc4\xba\xd9\x4f\x66\x63\xc8\x4e\x82\x73\x1b\xfc\x23\x6e\xf6\x62\x25\x74\xab\xb1\xa1\x68\x22\x56\x49\x2a\x56\x09\xda\x32\x8b\x11\x1c\xe7\x31\x2d\x79\x26\x6f\xcc\x5d\xb6\x7c\xc5\xb7\xed\x8c\x81\x3b\x1c\x86\xe7\xee\xe8\x7c\xec\x8e\xce\x83\x9d\x7a\x71\x1b\x1f\x80\x29\xab\x0d\x72\x01\xca\x6d\x73\x06\xa8\x17\x8b\xe5\x12\x2b\xd2\x68\x94\x23\x37\x30\xa4\xdb\x46\xfe\x0e\xd5\x28\x61\x25\x8b\x34\xc0\x70\x24\x99\xb6\xfb\x74\x1f\xa6\x89\xf7\xf0\xec\x7e\x60\x2e\x4e\x1f\xdf\x43\xdc\x40\x1a\x95\xc8\xdb\xfc\x03\xb4\xb6\xed\xe9\x83\x0f\xab\xf5\x2a\x6a\x29\x35\x5b\xad\x4a\x48\x84\x6e\x40\xa7\xc1\x63\xff\x36\x3a\xbd\x8a\x6a\x8d\x1e\xf5\xc3\xad\x52\xcf\x36\xc5\xb7\x7b\x2a\xba\x20\xe5\x6e\xfd\xfc\x92\x98\x5b\x5b\x0e\x1a\xe3\x41\x7d\x3b\xcf\xfc\xa6\x83\xf4\xc7\xb3\xa9\x53\x7f\x9e\x2f\xc6\xe3\xfa\xe3\xa8\x6f\xaa\x1f\xe4\xc2\x78\x8c\xcb\xd6\xf5\xc7\x76\x09\x25\x91\x55\xa9\xe8\x15\xd7\xb7\x9c\xd7\x95\x5d\xe3\x2e\x06\xce\xd0\x5e\x8c\x83\xb0\x55\x4c\x39\x25\xe4\x82\x15\xe2\xf2\x1d\xc6\x0b\xcd\x33\x65\x12\x03\x73\x91\xda\xe4\x02\xcc\x14\x89\x81\xfb\xe6\xb7\x40\xbe\x13\xba\x81\x33\x31\xf2\x23\xe4\xa2\x42\x5a\xdb\x7a\xf3\xce\xd5\xb8\x4d\x43\x1f\x04\x6a\xb4\x43\xe6\x78\x71\x39\x05\x96\x23\x69\xe7\x8b\xf9\x78\xe6\x39\xe1\x4e\x1d\xfa\xe8\x60\x87\xa8\xc9\x18\xde\x47\x0e\xc9\xb8\xbe\xbf\xb8\x43\xe4\x70\x97\xc8\xe6\xbe\x66\x7d\x15\x6e\x97\x08\x8b\xb4\xb8\x11\x7a\x4d\x97\x9c\xc7\x64\xe8\x38\x03\xbc\xc9\x62\xee\x88\xd5\x04\x8f\x37\x1d\x70\xb9\xa4\x7b\x3a\xe1\x19\xef\x44\x32\x95\xe5\x1e\xcd\xb8\x66\x54\xb3\x95\x65\xae\xde\x5d\xad\xa9\x9d\xc7\xa5\x14\x31\xfd\x51\x8f\x1e\xe3\x4f\x24\x6c\xd0\x68\x6c\x7f\x50\x9c\x84\x29\x29\xdd\xcb\x65\x5e\x77\x5b\x9b\x2e\xac\x91\x82\xf9\x35\x43\xeb\x97\x33\x4a\xaf\xd3\x4d\x93\x07\x30\xec\xb6\xc5\x13\xf3\x1b\x9e\xca\x82\x97\xaa\xbb\x92\x72\x65\x8a\x8a\xfb\xb7\xfc\x6a\xdf\x84\x1c\xb5\x7f\x74\x70\xf8\x78\xff\xf0\x70\xdf\x37\x68\xbd\xb3\x94\x65\xa7\x75\x80\x8e\xc8\x3b\xfd\xa4\x94\x19\xef\x3c\xfa\x14\x5f\xd6\xdb\x27\xc1\xb9\x33\x71\xc2\xfe\x6c\x3c\xf3\xc2\x89\x13\xd8\x61\x60\x8f\x68\x8f\xbe\xfa\xde\x72\x79\xfc\xe8\xf1\xa3\x57\x6d\x34\x22\x72\x7a\xb5\xd6\x5c\x6d\x0d\xd9\x64\x96\xdb\x82\xfe\x83\x76\xd9\x61\xf2\xb4\xc6\x02\xae\x3f\x1f\xdb\xa6\x0a\xdb\x24\x3b\xa7\x8f\x4e\x4f\x4f\x0e\x4e\x51\xc1\xba\x9b\x46\xf0\x56\x98\x75\xc7\xe7\x03\x0a\xb1\xf0\x1d\x6f\x57\x1f\x8e\x0f\xde\xd5\xd4\x0f\x92\xf0\x9c\xf9\xec\x83\x24\x72\xa9\x45\xf4\x1b\x14\x73\x3a\x0b\xdc\xfe\x5d\xf5\x3e\xde\x21\xd3\xee\x59\x7f\x90\xd6\xcc\x1b\xbd\xb3\x1f\xe4\x10\xb0\xe3\x1e\x3b\xfc\x2d\x4f\x77\xb8\xbb\xad\x9c\xdf\x2a\x34\x87\xdf\x70\x40\xe7\x85\x1f\xa2\xc1\xdc\x35\x61\x72\x21\x0e\x4f\xf3\x4b\x32\xb6\xa7\xe0\x30\x29\xcf\x3b\x0b\xdf\xfa\x3a\xe9\xf4\xa7\xf0\xef\xf9\x33\xf8\x37\x78\x61\xc5\xbc\x33\x70\xac\x65\xd9\x19\x7a\x56\x9e\x76\xa6\x63\x2b\xbd\xe9\x8c\x9f\x5b\x65\xd5\xf1\x16\xd6\x8f\x59\xe7\x77\xe6\x16\x57\x1d\xc7\xb7\x0a\xdd\x79\xea\x59\x45\xda\x99\x8f\xad\xab\x55\xe7\xe9\xc8\x12\xba\xe3\x06\xd6\x52\x74\x86\xae\xa5\xcb\x4e\xe0\x59\x91\xea\xf4\xbf\xb4\x54\xd9\xf1\xe7\x96\xba\xe9\xf8\x8e\x75\x2d\x3b\xcf\x3c\x6b\x95\x02\x85\xea\xba\xb3\xb0\xf1\xc2\x04\xec\xc8\xc9\x57\xa9\x50\x89\xf5\x17\xff\xe1\x27\x7f\xfe\xa7\xff\xf4\xcf\x7f\xf1\xc7\xdf\xfe\xde\xdf\xb3\xfe\xe2\x97\x3f\xfd\xcb\x7f\xf7\xcf\xcc\x97\xbf\xfa\xf5\xdf\xff\xcb\x7f\xfb\x2f\xbe\xfd\xc5\x7f\xfc\xab\x5f\xff\x83\xbb\x2f\xfe\xe7\x3f\xf9\xf9\xb7\xbf\xfc\x6f\xf0\x62\xc0\x2b\xad\xa2\xc4\x1a\x96\x2c\xff\xe6\x0f\x99\x50\xd6\x94\xc7\xbc\x4c\x59\x1e\x2b\x6b\xcc\xf4\x8d\xe0\x7f\xf6\xb3\xca\x7a\xf3\xaf\xde\xfe\xdd\xb7\x3f\x7d\xfb\xd3\x37\xbf\x7a\xf3\x8b\x37\xbf\xb4\xbe\xfd\xfd\x7f\xf3\xed\x1f\xfc\xfb\xff\xf5\x47\xff\xd2\x72\x54\xc1\xbe\xf9\x13\x99\x5a\x73\x59\xea\x6a\x55\x7d\xf3\x47\x8a\xc6\x92\x3e\x2d\x99\x12\xf0\x30\x55\xd7\xc2\x7a\xf3\x27\x6f\xff\xe1\x9b\xff\xfa\xe6\x3f\xbd\xf9\xf9\xdb\x9f\x18\x1a\x96\xab\x59\x2a\x20\x27\xf6\x2b\x99\xb1\x94\x89\x9c\xe7\x56\xf0\xcd\xaf\xcb\xeb\x6f\xfe\x90\x5b\xff\xe3\x1f\xf3\x3f\xfb\x99\x16\x39\xb3\xde\xfc\xec\xed\x4f\xde\xfc\xf7\x7a\x92\x7f\xc3\x73\x75\xcd\xac\xff\xfb\xcf\xff\xe0\x7f\xff\x97\x3f\xfe\x3f\xbf\xf7\x9f\xad\x11\x4b\xf9\x4a\x5a\x6f\xfe\xf5\x9b\x5f\xbd\xfd\xc9\x9b\x9f\xbf\xfd\xfd\x37\x7f\xfa\xf6\xa7\x6f\xff\xd1\x9b\x5f\xbd\xf9\x39\x31\x49\xa7\x69\xb3\x82\x2b\x81\x78\x56\x88\xe8\x9a\x97\x46\xba\x5d\x78\x08\x79\xf2\x25\x41\xf1\xa2\x98\x09\xca\x98\xf6\xe8\xd7\x09\x41\x41\xe3\xc7\x4e\xf0\x82\xe0\xbf\x9b\x6f\x28\x78\xfc\x75\x25\x41\xe9\x03\x92\x29\x09\xaa\x00\xed\xd1\x3c\x25\xa8\x07\xb4\x47\xd3\x1b\x82\xca\x40\x7b\xb4\xac\x08\x6a\x04\xed\xd1\x1f\x33\x82\x6a\x01\x6b\x2a\x82\xba\x41\x7b\x14\xff\x12\xd4\x11\xf8\x96\x12\x54\x14\xda\xa3\x57\x2b\x82\xda\x42\x7b\x54\x68\x82\x2a\x03\x0b\x0a\x82\x7a\x83\xf8\x92\xa0\xf2\x40\x9a\x0c\x7f\x09\x2a\x11\xed\x51\x55\x12\xd4\x24\xf8\x78\x43\x50\x9d\x68\x8f\x5e\x4b\x82\x3a\x45\x7b\x74\x95\x12\x54\x2c\xda\xa3\xd5\x35\xc1\xa4\xa8\xb9\xed\x95\xb1\xa2\xc0\xdf\x24\xc9\x16\xca\x8b\x52\x86\x0d\x0a\x84\x26\x5d\x2d\xb3\xb4\x27\x72\x41\x2e\x36\x23\xba\xf5\xb4\x4b\x42\x2e\x24\xe4\xd2\x97\xc4\x3f\x9f\xbd\x08\x87\xb3\x59\xe0\x78\xe1\x53\xcf\xfc\xb0\xa3\x05\xfd\xfc\x44\xde\xd2\x1b\x5e\xd6\xc5\xea\xbb\x25\x0e\xcc\x5a\x00\x17\x8d\x64\x73\x1f\x79\x29\xa5\xe6\xe5\x0e\xdd\xe7\x8e\x57\xff\x60\xb4\xc9\x48\x81\x2a\x56\x9e\xdb\xbf\xa8\x31\x3f\x8c\xa9\xab\xe2\xef\x21\x15\x38\x93\xf9\xd8\x0e\x9c\x10\x8b\xba\x75\x41\x19\xa9\xfe\xbf\x00\x00\x00\xff\xff\x1a\x13\xdb\xa0\x9b\x3c\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -307,7 +307,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 15438, mode: os.FileMode(420), modTime: time.Unix(1489384074, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 15515, mode: os.FileMode(420), modTime: time.Unix(1489710166, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4327,7 +4327,7 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 90217, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 90217, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4347,7 +4347,7 @@ func confLocaleLocale_csCzIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 64323, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 64323, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4367,7 +4367,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 64859, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 64859, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4407,7 +4407,7 @@ func confLocaleLocale_esEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 65775, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 65775, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4427,7 +4427,7 @@ func confLocaleLocale_fiFiIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 62539, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 62539, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4447,7 +4447,7 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 65947, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 65947, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4467,7 +4467,7 @@ func confLocaleLocale_glEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 64470, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 64470, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4487,7 +4487,7 @@ func confLocaleLocale_itItIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 62907, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 62907, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4507,7 +4507,7 @@ func confLocaleLocale_jaJpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 69659, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 69659, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4527,7 +4527,7 @@ func confLocaleLocale_koKrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ko-KR.ini", size: 65888, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ko-KR.ini", size: 65888, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4547,7 +4547,7 @@ func confLocaleLocale_lvLvIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 65532, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 65532, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4567,7 +4567,7 @@ func confLocaleLocale_nlNlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 61631, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 61631, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4587,7 +4587,7 @@ func confLocaleLocale_plPlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 63114, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 63114, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4607,7 +4607,7 @@ func confLocaleLocale_ptBrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 63631, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 63631, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4627,7 +4627,7 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 92448, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 92448, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4647,7 +4647,7 @@ func confLocaleLocale_srSpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_sr-SP.ini", size: 82902, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sr-SP.ini", size: 82902, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4667,7 +4667,7 @@ func confLocaleLocale_svSeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_sv-SE.ini", size: 61598, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sv-SE.ini", size: 61598, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4687,7 +4687,7 @@ func confLocaleLocale_trTrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 63079, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 63079, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4707,7 +4707,7 @@ func confLocaleLocale_ukUaIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_uk-UA.ini", size: 90506, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_uk-UA.ini", size: 90506, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4727,7 +4727,7 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 58051, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 58051, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4747,7 +4747,7 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 58097, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 58097, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4767,7 +4767,7 @@ func confLocaleLocale_zhTwIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 57721, mode: os.FileMode(420), modTime: time.Unix(1489462812, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 57721, mode: os.FileMode(420), modTime: time.Unix(1489511048, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 3945fa90a..766651ec3 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -278,7 +278,8 @@ var ( OrgPagingNum int } `ini:"ui.admin"` User struct { - RepoPagingNum int + RepoPagingNum int + NewsFeedPagingNum int } `ini:"ui.user"` } diff --git a/routers/user/home.go b/routers/user/home.go index 39123da2b..5dc834669 100644 --- a/routers/user/home.go +++ b/routers/user/home.go @@ -52,8 +52,8 @@ func getDashboardContextUser(ctx *context.Context) *models.User { // retrieveFeeds loads feeds from database by given context user. // The user could be organization so it is not always the logged in user, // which is why we have to explicitly pass the context user ID. -func retrieveFeeds(ctx *context.Context, ctxUser *models.User, userID, offset int64, isProfile bool) { - actions, err := models.GetFeeds(ctxUser, userID, offset, isProfile) +func retrieveFeeds(ctx *context.Context, ctxUser *models.User, userID int64, page int, isProfile bool) { + actions, err := models.GetFeeds(ctxUser, userID, page, isProfile) if err != nil { ctx.Handle(500, "GetFeeds", err) return @@ -143,7 +143,7 @@ func Dashboard(ctx *context.Context) { ctx.Data["MirrorCount"] = len(mirrors) ctx.Data["Mirrors"] = mirrors - retrieveFeeds(ctx, ctxUser, ctx.User.ID, 0, false) + retrieveFeeds(ctx, ctxUser, ctx.User.ID, 1, false) if ctx.Written() { return }