diff --git a/conf/app.ini b/conf/app.ini index a97173527..6157c0893 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -44,6 +44,10 @@ NOTICE_PAGING_NUM = 25 ; Number of organization that are showed in one page ORG_PAGING_NUM = 50 +[ui.user] +; Number of repos that are showed in one page +REPO_PAGING_NUM = 15 + [markdown] ; Enable hard line break extension ENABLE_HARD_LINE_BREAK = false diff --git a/models/action.go b/models/action.go index d4a07ced3..62252c6c5 100644 --- a/models/action.go +++ b/models/action.go @@ -470,8 +470,8 @@ func CommitRepoAction( } } - if len(commit.Commits) > setting.FeedMaxCommitNum { - commit.Commits = commit.Commits[:setting.FeedMaxCommitNum] + if len(commit.Commits) > setting.UI.FeedMaxCommitNum { + commit.Commits = commit.Commits[:setting.UI.FeedMaxCommitNum] } bs, err := json.Marshal(commit) diff --git a/models/issue.go b/models/issue.go index 74d535615..f3cbb71e8 100644 --- a/models/issue.go +++ b/models/issue.go @@ -521,7 +521,7 @@ func Issues(opts *IssuesOptions) ([]*Issue, error) { opts.Page = 1 } - sess := x.Limit(setting.IssuePagingNum, (opts.Page-1)*setting.IssuePagingNum) + sess := x.Limit(setting.UI.IssuePagingNum, (opts.Page-1)*setting.UI.IssuePagingNum) if opts.RepoID > 0 { sess.Where("issue.repo_id=?", opts.RepoID).And("issue.is_closed=?", opts.IsClosed) @@ -579,7 +579,7 @@ func Issues(opts *IssuesOptions) ([]*Issue, error) { } } - issues := make([]*Issue, 0, setting.IssuePagingNum) + issues := make([]*Issue, 0, setting.UI.IssuePagingNum) return issues, sess.Find(&issues) } @@ -1143,10 +1143,10 @@ func GetAllRepoMilestones(repoID int64) ([]*Milestone, error) { // GetMilestones returns a list of milestones of given repository and status. func GetMilestones(repoID int64, page int, isClosed bool) ([]*Milestone, error) { - miles := make([]*Milestone, 0, setting.IssuePagingNum) + miles := make([]*Milestone, 0, setting.UI.IssuePagingNum) sess := x.Where("repo_id=? AND is_closed=?", repoID, isClosed) if page > 0 { - sess = sess.Limit(setting.IssuePagingNum, (page-1)*setting.IssuePagingNum) + sess = sess.Limit(setting.UI.IssuePagingNum, (page-1)*setting.UI.IssuePagingNum) } return miles, sess.Find(&miles) } diff --git a/models/user.go b/models/user.go index 1050f2231..44dedccad 100644 --- a/models/user.go +++ b/models/user.go @@ -988,7 +988,7 @@ type SearchUserOptions struct { Type UserType OrderBy string Page int - PageSize int // Can be smaller than or equal to setting.ExplorePagingNum + PageSize int // Can be smaller than or equal to setting.UI.ExplorePagingNum } // SearchUserByName takes keyword and part of user name to search, @@ -999,8 +999,8 @@ func SearchUserByName(opts *SearchUserOptions) (users []*User, _ int64, _ error) } opts.Keyword = strings.ToLower(opts.Keyword) - if opts.PageSize <= 0 || opts.PageSize > setting.ExplorePagingNum { - opts.PageSize = setting.ExplorePagingNum + if opts.PageSize <= 0 || opts.PageSize > setting.UI.ExplorePagingNum { + opts.PageSize = setting.UI.ExplorePagingNum } if opts.Page <= 0 { opts.Page = 1 diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 462277d93..cc8a7ae77 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -286,7 +286,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5a\x5b\x6f\xe3\x48\x76\x7e\xe7\xaf\xa8\xf1\x64\xd2\xee\x80\x92\x7c\x69\xbb\x3d\x9e\xf5\x66\x64\x89\xb2\xb5\xad\xdb\x92\x72\xf7\xf4\x34\x0c\x9a\x16\x4b\x12\xc7\x14\xa9\x61\x51\x76\x7b\x10\x04\xbb\xc8\x43\x2e\x40\x90\x87\x04\x09\x02\x04\x41\xf2\x90\x2c\xb0\xb9\xed\x22\x2f\x3b\xc9\x24\x2f\x93\xbc\xf7\xfc\x87\xcd\x6c\xf6\x69\xff\x42\xbe\x73\xaa\x28\x51\x6e\x8f\x37\x0b\x24\x73\xb1\x8a\xc5\xaa\x53\x55\xe7\xfa\x9d\x53\x7c\x57\xf4\x9c\xe7\x8e\x2b\xf8\x4f\xb7\xdf\x6c\xb7\x5e\x8a\xe1\x69\xdb\x13\xad\x76\xc7\xb1\xde\x15\x83\x8e\x53\xf7\x1c\xd1\xad\x3f\x73\x44\xe3\xb4\xde\x3b\x71\x3c\xd1\xef\x89\x46\xdf\x75\x1d\x6f\xd0\xef\x35\xdb\xbd\x13\xd1\x38\xf3\x86\xfd\x2e\x3a\x7b\xad\xf6\x89\x9e\x69\x7d\x20\xea\xf3\xb9\x48\x82\x99\x14\xf9\x34\xc8\x85\x9a\xa6\x37\x4a\xa4\x89\x90\xd7\x32\xbb\x15\xf3\x60\x82\x17\x51\x1e\x4b\xab\x3e\x18\xf8\xbd\x7a\xd7\x11\x47\xe2\x24\x9d\xa8\x43\xfc\x15\x27\x51\x2e\x3c\x99\x5d\x47\x23\x09\x4a\x8d\x69\x90\x60\x38\xfa\xa2\xb1\xb8\x4d\x17\x22\x5b\x24\x22\x4e\x47\x41\x1c\xdf\x5a\xee\x59\xcf\x3f\xf3\xb0\xfb\x23\x31\x89\x72\x8c\x76\xa2\x7c\x2a\x33\xb1\x11\xca\xeb\x0d\x5b\x6c\xcc\xb3\x34\xdc\x10\x29\x3a\x72\xa9\x72\xf4\x84\x72\x1c\x2c\x62\xd0\x52\x7a\x0c\x53\xc0\xd1\x69\x03\x78\xb6\xac\x57\x99\x9c\xa7\x2a\xca\xd3\xec\xf6\xdc\x72\xfb\xfd\xa1\x38\xb2\xbc\x86\xdb\x1e\x0c\xfd\xe1\xcb\x01\x0d\xbb\x0c\xd4\x14\x2b\x35\x0d\xa5\x7a\xcf\x6b\x8b\xd1\x34\xc8\x94\xcc\x2d\x7a\xf0\xc1\x2a\xd7\x73\x68\xe2\x07\xa2\x95\x66\x23\x69\x8e\x9d\xc8\x1b\xb1\xa2\x2e\xf2\x54\x5c\x4a\x31\xcf\xa2\xeb\x20\x97\x56\xab\xef\x36\x1c\x7f\xe0\xb6\x9f\xd7\x87\xb4\xca\x38\x88\x15\x1d\xff\x24\x4e\x2f\x83\x58\xcc\x82\xd7\xd1\x6c\x31\x13\xa3\x4c\x06\x79\x04\x4e\xc6\xd1\x0c\x2c\x49\xc7\x65\x8a\x73\x9c\x7c\xa1\x64\x66\x8b\xca\xb6\x98\xc9\x20\x51\x22\x49\xf5\x48\xab\x5b\xff\xc8\x6f\xb8\x4e\x7d\xd8\xee\xf7\xfc\x4e\xbb\xdb\xc6\xfe\x30\x0c\x2b\x0c\x82\x7c\x34\x15\xc4\x1f\xf1\xe9\x42\x2e\xa4\x88\x65\x32\xc9\xa7\x36\xd6\xbc\x62\xbe\x07\x4a\xc4\x41\x06\x19\xa0\x81\xb5\x54\x74\x09\xc1\x0d\xce\x3a\x1d\xdf\x75\xbe\x7b\xe6\x78\x43\x1f\x7f\xcf\x1c\xbf\xe3\xf4\x4e\x86\xa7\x20\xbb\xbd\x85\x7f\xc0\xca\x45\x74\x0e\xfa\xbd\xc5\xec\x12\x1b\x2b\x6f\x35\x92\x4a\x2b\x46\x90\x49\x56\x0e\x19\x8a\x28\x81\x82\x80\x55\xaf\xe7\x71\x8a\x5e\xd2\x11\xcb\xf9\x68\xd0\xe9\xbb\x60\x4b\xfd\x04\xaa\xe6\xf7\xce\xba\xa0\xbe\xb3\xb5\x46\x34\x52\x6a\xf1\xcd\xe4\x98\x4c\xdb\xf3\xce\xee\x10\xd9\x5e\x27\xb2\x64\x6f\x3a\x03\xb3\xd4\x1d\x22\xc1\x28\x8f\xae\xa3\xfc\x56\x8c\xa5\x0c\xad\x96\xe3\x34\x7d\x66\x67\xbf\x0b\x36\x1a\x82\x7b\xa0\xf7\x3c\x88\xc1\x3e\x90\xbb\x80\x12\xce\x64\x65\x94\xe2\x28\x17\x90\x44\x1e\x88\x3c\x98\xd8\x24\x9c\x50\x5c\xde\x8a\x7a\x12\x66\x69\x14\x8a\x6f\x63\x5e\x95\x76\x52\x4f\xb0\xd6\x75\x10\xa3\x8f\x27\x41\x68\xe0\xfd\x46\x82\xd5\xb5\xfa\x86\x91\x0a\xc0\xf6\x0d\x71\x13\xc5\xb1\x98\x06\xd7\x64\x59\x72\xa9\xce\x2a\xbf\x8d\x49\x5b\xba\xc4\xba\x28\x19\xa7\x87\x62\x9a\xe7\x73\x75\x58\xab\x41\xab\x65\x9c\x42\x35\x54\x75\x92\xa6\x93\x58\x56\x71\xc8\xda\x8d\xbc\xac\x2d\xe6\x21\x34\x4f\xd5\x76\xb6\xb6\x9f\xd4\xb6\xb7\x6b\xde\x62\x3e\x4f\xb3\xbc\x32\x4e\xb3\x4a\xe9\x00\x95\x28\xa9\x34\xa6\x59\x8a\xe7\xdd\xf7\xf9\xa5\xd9\xbe\x35\x3c\x75\xba\x0e\xd8\x00\x19\xf9\x5d\x67\x58\xf7\x87\xf5\x13\xb0\xe2\xe2\xdd\xf1\x78\x6f\xf7\xc9\xee\x05\x6d\x28\x78\x2d\x54\xf4\x19\x73\x65\x1c\xc5\x24\x28\x56\x7b\x9c\x67\x1e\x07\xb7\x60\xc7\xa6\x39\x83\x22\x9b\x3c\xe8\x46\xc7\x8f\x59\x57\x9b\x6d\x6f\xd0\xa9\xbf\xf4\xc9\xa1\xf8\x5e\xfb\x63\xb2\x89\x83\xdd\x83\x83\xfd\xad\x03\xd6\xac\x6a\x10\xce\xa2\x64\x5d\xbf\x48\xf7\x1f\xd6\x04\xf2\x15\xeb\x8a\xb0\xb7\xf5\xb6\x8a\x3e\x48\xc2\x75\x06\xfd\x07\x49\x24\x69\x0e\xcf\xf5\x30\x91\x5e\x7f\xd8\x6e\xdc\xd5\xeb\xbd\x35\x32\x69\x36\x09\x92\xe8\x33\x6d\xed\x0f\xd1\xea\xbb\x27\x6f\xed\xc7\x7a\x35\x0b\xb2\xab\x30\xbd\x61\x0e\x39\x09\xe9\x0e\xb4\x26\x0b\xa1\x58\x98\x77\x09\x2f\x72\x05\x53\xcb\x65\xa2\x40\xde\x72\x7a\xf5\x63\xb0\x19\x7e\xab\x09\xdf\xd0\x73\xfc\x63\x78\x8a\x67\x25\x2f\xd4\x89\x14\x3b\x9b\xd1\x42\xe5\xe9\x4c\x9c\xb9\x9d\x8a\x37\x22\x15\x29\x1d\x13\x0e\x99\xf7\x46\xee\x22\x4a\xae\x94\xb8\x99\xca\x04\x0c\x4d\x42\x99\x45\xc9\x04\xaa\xa0\x77\x04\x72\x50\x22\xac\x1e\xcc\xe6\xd8\x15\xfc\xb6\x3d\x0b\x26\x09\xbc\xa7\x0e\x25\x3e\xa8\xfb\x5e\x83\x74\xcb\x83\x0f\xb5\x5e\x41\xaa\xf0\x9f\xe7\xd6\xc0\xed\x0f\xfb\xd0\x36\xec\x8b\x94\xdb\x6a\xf6\xbb\xf5\x76\x0f\x4f\x1c\x0d\xa6\xa9\xca\xd9\x61\xd3\x7c\x74\xbe\xb7\x59\x8c\x7f\x4c\x66\xf0\xde\xa6\x1e\x8e\x87\xf7\x36\x4f\x87\xc3\x81\x3f\xe8\xbb\xc3\xc7\xaa\x66\xf1\x43\xbd\xd9\xa4\x20\xb2\x55\xe5\x7f\xad\xe5\x00\xf4\xed\x92\x33\x03\x0b\x68\x11\xb1\xd9\xec\x7e\xfc\x98\xce\xcf\x67\xa0\x90\x25\x6e\xd2\xec\x8a\xf4\x6e\x53\x2d\xe0\x47\x71\x7a\xcf\x3b\x15\xda\xb6\x1e\xc3\x75\x40\x15\x14\x1d\x1f\x16\x27\x94\x8e\x6a\x55\x90\x6b\x27\x62\x86\x1d\x8b\x51\xa0\xc0\x44\x8a\x6b\x61\x4a\xaa\x83\x28\x01\x1e\xc2\x48\x46\x3a\xee\x95\xad\xfc\x9a\xfc\x0b\x4d\xae\xc7\x39\x94\x84\xfc\x7f\x12\xdf\x9a\xb8\x98\xf1\xba\x9a\x57\x20\x14\x4a\xb2\x27\x22\x48\x14\x14\x85\x62\x6c\x8d\xce\xc5\x2f\xab\x56\xa7\xdf\xa8\xc3\x83\x3f\xc0\xb0\x25\x63\xde\xe6\x19\xc2\x9f\x76\x48\xbc\xe8\x18\x31\x69\x01\x0d\x60\x81\xd3\x92\xc1\x75\x10\xc5\xf4\xda\x82\x19\xb3\x6a\xd1\xb0\x95\x3a\xbd\x98\x4a\x0e\xd3\x30\x58\x71\xb9\x88\xe2\x1c\xfa\x5c\xda\x7d\x4a\x07\xc8\xab\x96\x37\xac\xbb\x43\x9a\xea\xc3\x6c\x9f\x73\x94\x2f\x28\x34\xd3\x59\x80\x49\x1a\x62\xb0\x47\x41\xe0\x48\x95\x36\x8d\x51\x4c\xc6\x81\x53\x59\x34\x77\xa9\x26\x2b\x15\xa0\xa8\x07\x4f\x27\x12\x6d\x6d\xbf\x84\x80\xd1\x83\x9d\x9d\x3b\xd3\xee\xd9\x79\x0c\x3b\x81\x4d\x41\x2e\x3c\xb3\xd3\xf6\x86\x4e\xaf\x20\xf0\xde\x66\x41\x8d\x77\xe0\xa6\xe0\xd4\x3c\xc8\xa7\x64\x58\x44\x23\x8c\x32\x39\xa2\x40\xbe\x06\x53\x1e\xfd\x76\xad\xaa\xd4\xf4\x91\x8d\xf5\x72\x56\x14\xed\xfd\x53\xe6\xde\xa3\xda\x14\x8e\xb9\x06\x23\xd2\xa3\xaa\xbc\x2e\x4b\x75\x50\xa7\x60\xcc\xa2\x32\x74\x59\xad\x08\x40\x60\xba\x9c\xc1\xd7\x07\xe8\xd3\x5e\x99\x45\xc7\x18\x60\xbe\xb8\x8c\xa3\xd1\x95\xb8\x92\xb7\x58\x81\x34\x17\x74\x2b\x78\x9a\xc8\xc4\x06\xb5\xd2\xd6\xd4\x2d\x4e\x3b\x2b\xd1\x5a\x9e\x40\x6f\xe3\x99\xf3\xd2\x1f\x12\x3e\x58\x6e\x65\x40\xc7\xc5\x2e\x4a\x24\xd7\xce\xba\xea\x7f\x24\x82\x04\xde\x4a\x12\x78\x94\x08\x79\xe3\x08\x8f\x29\x38\x70\x33\x8d\x60\x66\x24\x1f\x3a\x0d\x9c\xce\x72\xad\x13\x62\x35\xaf\x54\xa2\xcf\xa6\x16\x46\x23\x3a\xf4\x8d\x51\x3b\xb6\x2e\x89\x33\x22\x82\x70\xd8\xa7\xb3\x72\x94\xba\x01\x7c\x44\x04\xce\x32\xa9\xe6\x29\xa6\xe1\xf4\xf9\xed\x5c\x5a\xdd\x76\xaf\xdd\x3d\xeb\xf2\x89\x28\x18\x01\xe3\x39\x8d\xb2\x83\x2c\xcc\xa1\xd1\xec\x11\xda\xa3\x70\x5e\xa0\xcf\x19\xcc\xcd\xea\xb7\x5a\xec\x58\x0d\xd4\xd4\xd3\x0a\xe3\x70\xfb\x67\x43\xc4\xa5\x4e\xff\xa4\x0c\xfc\x64\x22\x33\xda\x35\x78\x8c\x40\x8e\x9e\x5f\x13\xd5\xda\x84\x3c\xce\x48\x42\x09\x2b\xa3\xe0\x28\xcf\x80\x37\x2a\xe1\x22\xe3\x28\x71\x74\xf0\x74\x7f\x6b\xba\x35\xdb\x52\xa2\x42\xde\xf0\x68\x76\x4b\x3f\x55\xe3\x69\x29\xee\x5b\x1f\x80\x4e\x3f\x13\x63\x84\x73\x11\x88\xea\x7c\xfc\x9a\x15\x80\x95\x3f\xcb\xa1\xfd\xfc\x86\x5c\xc6\x0b\x30\x9c\x50\x3b\x2d\x16\x8d\x35\x03\xe1\xfc\x61\xe6\x9b\x61\x0a\x2a\x64\xe7\xf0\x81\x13\x48\x08\xfc\xd4\xf3\x79\xa2\x41\xb4\xc4\xd4\xc7\x7a\xdb\x40\x1f\x89\x52\xb1\x98\x5f\x8d\xd4\xf6\x8e\xa8\x90\x85\x81\x2a\xaf\x5e\x21\x99\xea\x27\xa8\x52\x25\x49\x31\x4d\xfd\xef\x66\x61\x64\x31\x89\x5e\x28\x6a\x84\x52\x59\x0d\x07\x5e\x83\x70\x03\xb8\xa9\x03\x56\x8d\xc1\x50\xad\x58\xc6\x22\x31\xde\x37\xc0\x50\xc4\xf2\x67\x73\x02\xd3\x31\x61\x27\x32\x4f\x52\xf1\x98\x0e\x45\x4a\xa9\x72\xb0\x7b\xa4\xf9\x46\xf6\xbb\x6e\x14\xcc\x02\x52\x73\x68\x1b\x98\xc5\x21\x02\xdd\xf2\xb5\x1c\x2d\xc0\x60\x72\x6a\x88\xfd\x77\x4d\xd4\xcc\xe7\x89\x14\x59\x28\x7f\x42\x04\x09\x38\x41\x6a\xd6\x81\xad\x8c\x66\x73\x27\xe7\x57\x31\xc9\x84\x53\x01\xde\xe5\xc9\xc7\xed\x81\x50\x1a\xc2\x15\x01\x9d\xfb\x4a\x51\x3c\xd0\x2a\xcd\xf9\xd7\x98\xbd\x6c\x52\x89\xd3\xc9\x04\x72\x67\xec\x64\xc3\xa0\x12\xf2\x85\x1b\xe4\x55\x34\xf2\x34\x80\x7c\xc3\xea\xd4\x39\xe1\x23\xac\x41\x8c\xa3\x11\x96\xde\x3a\x41\x8a\x65\xf4\x8f\x27\xc0\xf7\xf9\x74\xa6\x98\x57\xe0\x46\x94\xad\xd9\x99\xce\x2e\xc4\x26\x79\x2f\xa4\x29\xd0\x1d\x83\x6d\xa1\x8f\x64\x6b\x8f\x11\xf0\xd5\xb4\x6a\xa6\xf8\x98\xe2\x93\x69\xaa\x73\xcb\x69\xee\xec\xed\x6d\xbf\xcf\x50\x69\xdf\x72\x1a\x4d\xaf\x2e\x84\x79\x72\xb9\xcd\x4f\x5b\x4f\x0e\xac\xe6\xf2\x71\x7b\x6b\xe7\x09\x30\x04\xb1\x0d\x89\x9b\x3c\x2f\xe5\x88\xb3\x5b\xf5\x69\xcc\x59\x22\xac\x64\x02\x93\xd7\x07\x46\x67\x94\xcb\x5d\xbc\x88\xf2\x47\x4a\x87\xd6\xd1\x34\xa5\x6c\xb4\x79\x5c\x24\x81\x3c\xd7\x3a\xed\x7b\xe4\xd8\xb7\x77\x9e\x32\x6e\xd8\x3e\xdc\xdd\xdd\xda\xb7\x4c\x3e\x4b\xa6\x6a\x99\xe4\x34\x83\xaf\xb7\x06\x75\xcf\x7b\xd1\x2c\xd2\xc2\xb5\x65\x11\xc6\x6d\x21\x8b\xdc\xd5\x60\x7d\xec\x2c\x93\x9f\x2e\xe0\x53\xf5\xc6\x10\x60\xa2\xf1\x6d\x65\xbc\x88\xe3\x0d\xf8\xbc\xce\x32\x6f\xd5\xe3\x0b\xb2\xc5\xfe\x99\xff\x1b\x79\x14\x5e\x6e\x70\xe6\x21\x82\x4b\x95\xc6\xd0\xc1\xa5\x7a\x26\x1c\x4e\xa0\xce\x19\x27\x79\x06\x9d\x58\x25\x4d\x63\x7f\x53\x0d\x2f\xc1\x41\x83\xb7\x09\x8e\x8d\x16\x90\x30\xd2\xe3\x76\x0f\xca\x8c\x34\x10\x50\xa2\xec\x0b\xdf\x79\x47\x17\x0b\x74\x2d\x61\xd8\x17\xcf\x1c\x67\x20\x5e\xf6\xcf\x5c\xc1\xec\x20\x75\x16\x5e\xbd\xe5\xbc\xf3\x8e\xe5\x39\x48\x4a\x87\xe4\x57\x41\xe0\x9d\x77\x3f\x6c\x35\x9d\x17\x2e\xfe\xfb\xf5\xdf\xd8\x24\x2d\x5f\xe4\x29\x29\x68\x44\x38\x72\x26\x39\xea\x86\x01\xfc\x03\x5c\x65\xbb\x87\xf4\xb3\xeb\x74\x8f\xe1\x39\x9b\xf5\x97\x80\x8a\xe2\xa9\xd5\xe8\xf7\x9f\xb5\x1d\x2e\x09\x94\xa4\xe0\x07\x37\x52\x91\xba\x9a\xd7\xcb\x79\xe5\x31\x51\x82\xd0\x18\x46\x9a\x91\x2e\x65\xec\x8a\x7c\x59\xfa\xfa\x56\x04\x0b\x08\x26\xc9\x0b\x7b\x9b\xca\x20\x24\x8c\x45\xd8\xc3\x64\x1d\xfc\x80\xd4\x00\x20\xc5\xa3\x2c\xbe\xff\xd1\x4b\xbf\x7e\x86\xfc\xa8\x07\x5b\xd7\x39\xb7\xd1\x84\x8f\x2a\x2f\x9c\x63\x7a\x55\xa1\x0e\x83\x6e\xc1\xf5\x73\xab\xde\x18\xb6\x9f\x53\x3a\xd5\x44\x2a\x4d\x2d\x04\x1d\xc4\x05\x3a\xd8\xf6\xc1\x16\x88\x7b\x0e\x79\x0c\xd2\xa1\x6f\x1c\x04\xc7\xc5\xbb\x29\x30\x64\x9a\x8c\xa3\x6c\x26\x64\x05\x68\x29\x66\x93\xcf\xe4\x04\x18\x45\x07\x0c\xd0\x3c\x21\x84\xe2\xfa\x0e\x70\x51\xc7\xe7\x1a\x8e\xdb\x5d\x83\x59\x52\x83\x48\x36\x6f\x33\x19\x0b\x90\x6a\xb1\x42\x14\x78\x02\x38\x37\x5d\x24\x1a\x90\xae\xe2\x1a\x93\x77\xf9\xfc\x25\xa2\xbc\xc5\x19\xfc\x2e\x62\xee\x84\x23\x25\xb6\x7a\x1d\xc9\x1b\x90\xbd\xcd\xa7\xf0\x50\x55\x8b\x2a\x0b\x6d\x97\x32\xbf\x93\x1e\x24\xfd\xbc\xed\xbc\x28\x51\xe8\xd2\x69\x28\xcf\x1a\x1b\x99\x14\x0e\x8f\xf2\xaa\xd6\x4b\x9f\x4e\x53\x1e\x4e\x51\x2b\x44\x16\x1e\xc5\xab\xbc\x18\x90\x69\xba\xb8\xe4\x64\x18\xf2\x47\xd2\xcf\xba\x5e\xd3\xe5\x84\xda\xf6\xfe\x5e\x41\xf3\x21\xa9\x2e\x17\xf9\xa6\xb1\xfd\x6f\x62\x82\xc9\xc9\x46\xc1\x3c\x07\xd2\x17\x9c\xfb\x6b\xf5\x7a\x4b\x4a\x86\x76\xa3\x3e\x18\xc2\xb0\x40\x83\xc2\x3e\x34\x07\x19\xc5\x34\x4d\xaf\xc8\xa5\x9d\xe2\x57\xe4\x81\xba\x5a\x2b\xe1\x58\xf7\xd4\x65\xd8\x63\xc7\x11\x81\xd5\x3c\x9a\x49\x8a\xa3\x10\x00\x6c\x1a\x70\x47\x59\x4d\x87\x94\xca\xf5\x87\xed\xae\x03\x50\x62\xea\x1a\x75\x16\x7e\x94\xb0\xe5\xcb\x12\x22\xa0\xdd\x79\xcf\xda\x03\x7f\xd8\xf1\x7c\xcc\xa3\x02\xe2\xea\x88\xab\x5c\x76\x1a\x29\xc6\x9f\x54\x99\xc8\x66\xfa\x98\x58\x55\x06\x40\x72\x9c\xc3\xde\xad\xcd\x50\xfe\x8a\xf0\x8a\xa4\x4f\x1f\xbe\x59\x22\x7b\xbc\x18\x8f\x39\x36\x73\x1c\xa1\xa4\x14\x99\x52\x22\x63\x1b\xe1\x45\xce\x4d\xc1\x2a\xe2\x58\x6c\x2a\x86\x61\x9a\x3c\x02\x5c\x48\x70\x88\x1b\xca\x56\xf9\x25\x60\xa3\xd3\x6b\xfa\xc7\x67\xad\x16\x61\x2f\xa7\xa7\x19\x44\xfb\x26\xc3\x5e\x15\x28\xb0\x51\xb6\x1e\x5d\xb0\xf4\xce\x8e\xbf\xe3\x34\x34\x9c\x2f\x8a\x97\x0c\xe7\x59\x27\x75\x1a\x40\xe8\x6d\xc6\xca\xa6\x66\xf9\xbc\x3a\xa1\x36\x29\xda\xe1\xde\xc1\x53\xbc\xfb\xee\x77\xcd\x8b\x4f\x3f\xe5\xde\x27\xfb\x9c\xf9\xa7\xb9\xb4\x69\xc7\x0c\x20\x08\x4c\x21\x73\x56\x1a\x91\x6e\x60\x08\x9c\xb8\xd7\x1d\x0e\x3c\x5d\x01\x42\x8c\xa6\x62\x52\x15\xc6\x44\x11\x9d\x33\x25\x08\x81\x6a\xac\x3c\x17\x2b\x11\x03\x00\xc7\xd3\xd9\x8c\x52\xf0\x90\xab\x83\x6e\xab\x21\xf6\x9f\x6c\xbd\x5f\x15\x6d\xbd\x90\xc9\x5b\x0c\x6e\x50\x2b\x42\xe0\x11\x2f\x14\xc4\x37\x70\xb8\xcb\xf5\x4c\xc8\x2b\x21\xde\x53\xa7\xd3\x27\xac\xa6\x95\x55\x87\x15\x82\x9d\xec\x1e\xa9\x2e\x10\x46\x24\x2f\xf8\xcf\xea\xd2\x31\xf0\x1c\x22\xd2\xd0\xf5\x84\xe5\x78\xd2\xfd\x75\x82\x6b\xf9\x01\x83\x53\x9d\x75\x60\x27\x18\xe7\xd3\x76\xb4\x17\x67\x6f\xc5\xbe\x4a\xc7\x49\x3e\x5e\x19\xbc\xa6\xe5\x13\x57\x45\x9f\x52\x67\x0a\x8b\xf0\x38\x8a\x17\x56\x32\x1e\x57\xc8\x25\x81\x59\xa5\x89\x4a\xab\x78\xa1\xde\xda\x81\x21\x45\x8c\x70\xa4\xf2\x38\x8a\xf5\x3e\x61\xcf\x76\x8b\xbc\xc3\x0a\xe6\xdf\x83\x47\xb5\x76\x3f\x04\x48\xcd\x88\x15\x22\x65\xfd\xd2\xb8\x3d\x0c\x81\x1a\x00\xd6\x48\x9a\x7b\xbb\x3b\x3b\x55\x31\xa4\x33\x18\xec\xf6\x09\x79\x56\x34\x25\x6b\xed\x72\x30\x0e\x48\xc7\xbf\xd8\x20\xf5\xde\x10\xdf\xe2\xd7\x1f\x96\x72\x83\x6f\x5f\x08\x6d\x9d\x56\xcb\xed\x77\xf9\xa0\x5d\xde\xc4\x2a\xc2\xb1\xdf\x9f\x07\x4a\xdd\xa4\x59\x68\xb0\x4d\x19\xd6\x10\x63\x72\xf9\x3a\x07\x9c\x9e\xc5\x64\x86\x01\x15\x2a\x12\x08\xf2\x5a\x1a\xe2\x6c\xb0\x69\x82\x2c\x79\x89\x52\x4f\x87\xdd\x8e\x5f\xef\x0c\x29\x66\x53\x08\x5c\x32\xce\x7a\x35\x82\x87\x58\xc7\x6c\x72\x06\x47\xa2\xa1\x11\x4c\x74\x83\xcf\x45\xbd\x3c\xf2\x4e\x81\xdf\x0c\xb6\xea\x4d\xb8\x4e\x8e\xbe\xba\xa7\x40\x4a\xe6\xbd\x81\x5f\x27\x0d\x98\x3a\xb6\x0b\x57\x5c\x72\x89\x6b\x14\xf7\xb7\x80\x79\x40\xe9\x79\x9d\xc2\xcb\xfe\x56\x41\x48\xef\x45\x03\xae\xd2\x5e\x40\x20\x41\x3e\xcc\x98\x81\x6a\x3d\x46\x16\x98\xc5\x13\x0e\x11\xa7\x73\xaa\x1e\x1d\xe5\xa3\xb9\x4d\x2f\x8f\x0e\xf7\x77\x9f\xbe\x6f\x17\x1c\x3e\x9a\x05\xa3\x20\x83\x0d\x84\x97\x47\x5b\xf6\x3c\x4d\x63\x86\xc2\x47\x70\x53\x76\x14\xc6\xd2\x37\x1e\xfc\x48\x87\xfe\x62\xe5\x43\x71\xb1\x42\xa4\xdb\xdb\x3b\xdb\xdb\x17\x85\xd9\x12\xdc\x50\x54\xf2\xbb\x9f\xa7\x94\xd2\x18\x96\x16\xec\xbd\x8f\x9f\x88\x6e\xcf\xdb\xcd\x75\x86\x0e\xb2\xf4\x3a\x22\x58\xc4\x98\x63\x02\x03\xa6\x73\x2b\xbd\x2d\x0c\x39\x64\xd3\xe4\xd2\x05\xa2\x7c\x31\xea\x56\xd2\xa5\x0d\x2d\x0b\x97\xa8\x77\xb6\xca\xab\x80\x88\xab\x93\xaa\xb8\x60\x20\x6a\xde\xaa\x8b\xff\x37\xee\x11\xa2\x3f\x04\x16\xac\xe0\xb7\x12\x66\x14\x22\x6b\xdc\x29\x42\x95\x14\x1b\x46\x50\x86\xbf\x2d\x76\x46\xb0\xfe\xb0\x58\xef\xc3\x62\x8f\x7e\x4e\x8e\xf1\x62\xc9\x26\xdf\xdc\x8d\x19\x48\x5d\x9c\x04\x6b\x7a\xe6\xc8\x23\x84\xef\x48\x6a\x10\x69\x30\xaa\x81\xa6\x91\x4f\x37\x01\xbe\x46\x28\x54\xcb\xd0\x11\x8d\xfc\x56\xc1\x2f\xe8\x2a\x63\x1a\xa3\xc6\x65\x77\xa9\xdd\x8f\x26\x08\xa4\x7d\xe6\x3a\x6f\x23\x10\x85\x04\x5e\xaf\xbf\x36\x97\x31\x86\x31\x50\x02\x9e\x9a\x4a\x01\x3e\x56\x5b\x87\xd5\x10\x1f\x97\xa6\xb3\x46\xe4\x00\xb1\x66\xcb\x3a\x69\xf8\x85\xd5\x30\xb0\xa0\x4a\x3e\xbf\x58\x51\x89\xa3\xb1\x64\x3a\xf7\x4c\xf7\x1c\xcf\xd3\x97\x56\x2d\x67\x7d\xbe\xf5\x6a\x1e\x8d\xa8\xf2\x08\xf0\xfc\x1c\x49\x85\xeb\x9f\x0d\x3a\xfd\x7a\xb3\x9c\x2b\xd7\x82\x6b\xfc\xcd\x14\xdf\x24\x22\x51\x55\xd2\x5c\x13\x90\xb7\x44\x5a\x97\xa2\x63\x23\x5c\xa4\x6a\xba\x48\x37\x30\x08\xba\x1f\x14\x65\x6e\x3d\x55\x28\x64\x80\x23\xec\x8c\x24\xa1\xf1\x23\xe0\xe3\x28\xa9\x4e\x32\x3d\x80\x31\xa4\x6e\xd6\xac\x13\xd7\x6c\xc5\x43\xbe\xd3\xe0\xec\xc2\x0c\x5b\x46\xbf\x62\x48\xc9\xcf\x05\x79\x0e\xcb\x45\xa0\xce\xcf\x4b\xe5\xd1\x55\xaf\xe2\x48\x2a\x59\x62\x08\xfa\xcd\xe2\xca\x04\xc0\xf9\x82\x04\x72\x61\x44\xb5\x92\xcf\xa0\xa8\x24\x94\x88\xdc\x99\xa8\xd9\xb3\x7a\x7d\xb1\x96\xf9\x95\x5e\x50\xcd\x08\x29\x3e\x88\xcd\xd2\x52\xa1\x9f\xb2\x75\x65\x4c\x21\x9a\x01\xc6\xd5\x3e\x99\xcb\xc9\x6f\xe9\xe6\x3c\x99\x58\xc8\x0d\xfb\x2f\x9c\x26\xe7\xcc\x94\xa1\xdc\x3b\x68\xfd\x8e\x88\x21\x21\x79\x80\xf5\xbd\xee\xee\x74\x8f\xf9\x5a\xc8\xdc\x04\x3d\x31\xd3\x92\x25\xc4\xd4\x65\x4c\xbe\x01\x9d\xc7\x69\x70\x87\x49\x80\x94\x34\x9b\x42\xac\xc7\xa0\xd6\x7a\x45\xda\x46\xcc\xf6\xe6\x72\x84\x08\x2e\x75\xe5\xc6\x04\x29\x62\x1c\xe5\xd9\xb7\x54\x72\x9c\x53\xdd\x46\xf0\x5d\xd9\x3a\x55\xc4\x5f\xb8\xd7\xdd\x82\x08\xe2\x86\xc1\x51\x18\xce\xb5\x7a\x2d\x36\xba\x14\x6e\xd8\xe2\x2c\x89\x5e\x37\x03\x02\x79\xee\xe2\xf2\xd6\xb4\x5a\x8d\x83\x9d\x9d\xe2\xf7\x63\xdd\xd8\xdb\xb2\x0b\xd2\xcb\x86\x7e\xb5\xbb\xbb\xfb\xfe\xb2\xd1\x0b\x92\xd4\x16\xcf\x22\xe4\x0f\x54\x46\xf5\x72\x44\x72\xf3\xd3\x05\x72\x8b\x96\xed\x51\x96\x72\x68\xe2\x47\x9a\x65\xc2\xd6\xac\xb8\x2c\x2c\x20\x79\x70\x49\xe9\x40\x89\x0d\x4a\xca\x42\xdf\x27\x69\x1c\x20\x31\x4b\xb3\x49\x6d\x7e\x35\xa9\x11\xf7\x6a\xef\xa2\x55\x81\x63\x54\x79\x40\x5a\xd2\xea\xbb\xdd\xba\x8e\x32\xc8\xd9\xf5\xed\xf9\xaa\xc4\x55\x44\x1b\x1a\x9f\xea\xea\x86\x09\x37\xd4\x95\xd0\x2f\x81\x62\x73\xdd\x69\xca\x35\x77\x02\x50\x31\xb7\xc0\x60\xc0\xb6\x01\x97\x93\xe5\x3c\xe0\x5a\xe9\x0c\x23\x23\xba\x55\xa2\xa2\x6b\xa1\x9b\xc5\x34\x9b\x95\x64\xc3\x32\x65\x13\xd3\xfb\x7f\x99\x51\xdc\x4d\x26\xd8\xc7\x15\x07\x1f\x66\xc1\x88\x8f\xdb\x94\x97\x8b\x09\x35\xda\xe0\x3d\xfd\xbe\x08\x32\x3e\xbf\x93\x65\x69\x46\x8d\x46\x16\x51\xb5\x21\xbe\x73\x7c\x4d\xc1\xea\x20\xc9\x24\xfc\xc1\x8f\x56\x81\x41\x0a\xde\xf0\xd1\x75\x1e\x4e\x62\xa8\x9a\xfe\xf3\x62\xda\x72\x02\x33\xe3\xee\x68\xea\x5c\x0d\xfd\x40\x03\x4b\xed\x77\x14\xd5\x41\x52\xa8\x05\xb4\x1b\x43\x45\x96\xe6\x68\x6f\xaa\x1b\xd2\x40\x36\xc1\x94\x1c\x03\xa5\x23\x26\xf8\x3f\x7e\x3b\xa2\x74\xfa\x27\xbe\xdb\x1f\x6a\x78\x6c\x5c\x15\x19\x32\x5f\x4b\xae\xac\x99\x92\x1a\x48\x91\x76\xb3\x46\x83\x79\xba\xa5\x8d\x99\xea\xe9\x5e\xc1\x67\xe6\xf4\xd2\x91\xa8\x69\x34\xce\x1f\xa2\xb3\x73\x60\xbe\x8f\xd8\x16\xdf\xfa\x16\x9e\x6c\x2a\x22\x96\x5c\x8c\xef\x9d\xb6\x5b\x7c\xe9\x73\xc0\x51\x6a\x42\x7e\x90\x4f\x1d\x02\x12\xdf\xbe\x7d\xae\x66\xbd\xdd\x79\xf9\xd6\xc9\x9c\xd7\xf3\x28\x63\xdf\x81\x14\x0a\xdb\x21\x02\xb4\x97\xcd\x50\xc6\x92\xaa\x26\x63\x2a\xa6\xcc\xb0\x6d\x1a\xb1\xce\xae\xa7\xfa\x1a\xbc\xa8\x6c\x95\xc4\x9c\xdc\x27\xe3\xa4\x2c\x35\x57\x1a\xe8\xa9\x71\x27\x5f\xb7\xf2\x27\x28\x86\x1f\x33\x84\x5d\xf8\xdf\x7b\xc0\x82\xeb\x00\xac\xf4\x90\xe0\xfa\x88\xb8\x5d\xaf\x7c\x21\x31\xd4\x17\x48\xd9\x92\x36\xa7\x7a\x25\x8c\x0b\x22\x31\x96\x7b\x88\x6a\x19\x7e\x18\xb3\x00\x7a\x23\x95\x5f\xc0\x3b\x6a\xdb\x5f\x84\xf3\x3b\x7a\x4f\x43\xca\xb7\xbf\x78\xe6\x9a\x47\x09\x52\xeb\xfb\xdb\x25\x97\xb4\x27\xb9\xc3\x25\xea\x2c\x73\xe9\xa1\x3c\x7f\x7d\x03\xcd\x28\x98\x24\x58\x2e\x1a\x15\xac\x33\xa9\x28\xe7\x92\x1b\xa5\xa2\xc0\xc3\x23\xef\x94\x09\x96\xb9\xf4\xaf\x9a\x67\x41\xbe\x92\xf0\xe9\xaa\x60\x9f\xae\xe2\xb3\xf1\x7a\xaf\x36\xb6\xcb\xd9\xdd\x86\xbd\xb1\xb3\xf6\x7c\x4e\x52\x71\xa8\xda\xe3\x95\x18\xb7\x74\xbc\x77\x99\xb7\x2a\xa0\xaf\x18\xb8\x5e\x48\x17\x6b\x35\x6d\xab\xe9\xb6\xf9\xca\x96\xfc\x6b\x40\xf7\xaa\xd0\x90\xd7\x08\x2b\x7a\x7b\x87\x5c\x12\x3f\xa4\x3f\x1f\x2e\xaf\xef\xb9\x02\xf7\x9b\xe6\x5b\xaa\xa3\x45\x3e\x3e\xb0\x48\x6f\x38\xa2\x20\x88\x95\xbf\x65\xc8\x16\x49\x42\x9e\x86\xba\xb9\xf0\xc5\xb1\x3f\x4a\xe9\xa6\x0f\x61\xbb\x5a\xaa\x1b\x19\x5b\x74\x17\x49\x79\x34\x2b\x2f\x5f\xce\x70\xfd\x1b\xce\x9b\xbe\x04\xab\x0f\x7d\xae\x80\xac\xa0\x19\x5d\x05\x85\x1c\x5a\x22\xf2\xce\x4a\xef\xa4\xaa\xef\xf7\x7d\xd3\x79\x6e\xd1\xf7\x0a\xcd\x33\x06\x60\x1f\x6a\x53\xdb\xde\x9a\x59\x2c\xaa\xe5\xe7\x59\x53\x89\x74\x78\xaa\xaf\x1e\x0d\x19\xfa\xdc\xc4\xd7\xfd\x3e\xf7\xdf\x47\x69\xe7\xc9\xd4\x5a\x15\xe4\xf6\xb7\x08\x8f\xd5\xb3\xc9\x42\x03\x43\x32\x6e\x0e\x84\x50\x99\x47\xc8\x12\xc4\x58\x8d\xae\x1e\x15\xa1\xaf\x52\x59\x24\x19\x81\x2a\xe6\x5a\xa5\x92\x07\x13\x45\xe1\x93\x22\x3b\xc7\xff\x34\x59\x46\xf8\x28\xaf\xa8\xd1\x8c\xd1\x6c\x98\x8e\x14\x77\x10\xb1\xda\x76\xf5\x69\x75\xcf\xaa\xbb\x27\x46\x53\x1a\x7c\x79\x5a\xfa\xf0\x8c\x6f\xc4\x48\xe9\x0b\xf6\xf0\x59\x7c\x3e\x1d\xbd\x03\x83\xee\x70\x97\x85\x72\xff\x51\xad\x57\x58\xf8\xfc\x2d\x80\x47\x11\x42\x2d\xb1\x27\x3a\x82\xb2\x77\x27\xeb\xa5\x42\x13\xd7\x91\xab\xec\x3a\x4f\xda\x43\xbf\xd9\x6e\xb5\xd6\x02\xc5\x5b\x64\x49\xdb\x82\x51\x4e\x19\x01\xd3\x8c\xcb\x97\x59\xbf\x84\x28\x7f\xe9\x57\x6f\x0c\xd9\x84\xc4\xde\x3d\xd4\x35\x2a\xa5\x8f\x76\x92\x87\x88\x15\xb8\x54\xd7\x1f\x1f\x90\xed\x64\x54\x92\x6c\x30\x21\x4b\x53\x54\x5b\xc1\x03\x62\xf3\xaf\x22\xd8\xc9\xc8\x88\x15\xd9\xd9\x4a\xb2\xfd\x65\x1d\xef\x9e\xe2\x30\xc9\xa5\x6a\xfa\xcf\xad\x6e\x1b\x79\x0c\x07\xbb\x7d\x0a\xc8\x6d\xd7\xed\xbb\xfa\x6b\x19\xab\xd1\xe9\xf7\x1c\xd3\xa6\xef\x04\x4d\x13\x69\xce\x3c\x7a\x5b\xb0\x51\x2e\x67\x4a\x17\x1b\xf5\xb5\xbb\x62\x69\x06\xba\x32\x4c\x7c\xd2\x5f\x9b\x7a\x8e\xdf\x1e\x3a\x5d\xaf\xf8\xc2\x29\xda\x3e\xa0\xa0\x57\xef\xd1\xe6\x81\x51\x2a\x67\x9e\xfd\xd9\xb4\xd2\xe8\xd1\xdf\xd3\x67\xf4\x77\xf8\xc2\x0e\x65\xa5\xe9\xd8\xe3\xac\xd2\x72\xed\x24\xae\xf4\x3a\x76\x7c\x5d\xe9\x3c\xb7\xb3\x45\xc5\x3d\xb3\x3f\x09\x2a\xdf\x19\xd8\x52\x55\x1c\xcf\x9e\xe7\x95\x63\xd7\x9e\xc7\x95\x41\xc7\xbe\x9c\x54\x8e\x4f\x6c\xb0\xa9\x3d\xb4\xc7\x51\xa5\xd5\xb6\xf3\xac\x32\x74\xed\x91\xaa\x34\x3e\xe6\x0b\x3e\x5a\xd3\x81\xfa\x45\x6a\x6a\xff\xec\x1f\xbf\xf7\xd3\x7f\xfb\xe3\x9f\xfe\xe4\x1f\xbe\xfe\xd3\xdf\xb5\x7f\xf6\xf9\xf7\x7f\xfe\x77\x7f\xa2\x1f\x7e\xf1\xc5\xef\xfd\xfc\x6f\xff\xfc\xeb\x9f\xfc\xd3\x2f\xbe\xf8\xfd\xbb\x2f\xfe\xeb\x8f\x7e\xf4\xf5\xe7\xff\x4e\x2f\x9a\x72\x91\xab\xd1\xd4\x6e\x65\x41\xf2\xe5\x0f\x82\x48\xd9\x3d\x19\xca\x0c\x78\x3b\x54\x76\x27\xc8\xa1\x30\xff\xf9\xd7\x0b\xfb\xcd\x5f\x7d\xf5\x3b\x5f\x7d\xff\xab\xef\xbf\xf9\x97\x37\x3f\x79\xf3\xb9\xfd\xf5\x9f\xfd\xcd\xd7\x7f\xf1\xf7\xff\xfd\xc3\xbf\xb4\x1d\x35\x0f\xbe\xfc\x71\x1a\xdb\xf4\x71\xca\x62\xb2\xf8\xf2\x87\x8a\x3e\x26\x3a\xce\x02\x15\x51\x67\xac\xae\x22\xfb\xcd\x8f\xbf\xfa\x83\x37\xff\xfa\xe6\x9f\xdf\xfc\xe8\xab\xef\x69\x1a\x76\x3b\x0f\xe2\x88\x92\x08\x6f\x01\x58\x17\x07\xd0\xfc\xc4\x1e\x7e\xf9\x45\x76\xf5\xe5\x0f\xa4\xfd\x1f\x7f\x88\x55\xf3\x28\x09\x2c\x8d\xb6\x43\xd6\x46\xf2\x7a\xa4\x02\x48\xbc\xaf\x10\xc1\x58\x08\x14\x1b\x24\x65\x07\xe7\x16\x4b\x81\xa5\x61\xb1\x28\xd0\xfc\x6c\x6a\xb1\x3c\xb8\x09\x89\x58\xfc\x77\xf9\xc4\xf2\xe1\x8f\x6f\x2d\x16\x12\x79\xde\xcc\x62\x49\xa1\x99\xc4\x16\x8b\x8b\x3e\xf2\xba\xb6\x58\x66\x74\x9b\xba\xb0\x58\x70\x68\x7e\x12\x58\x2c\x3d\x5a\x53\x59\x2c\x42\x34\xf9\xd7\x62\x51\xd2\x53\x6c\xb1\x3c\xd1\xbc\x9c\x58\x2c\x54\x4a\x46\x73\x8b\x25\x4b\x0b\x46\x16\x8b\x97\xfd\x92\xc5\x32\xa6\xfc\x80\x65\xcd\x28\xce\x7c\x27\x07\x7c\x30\x9f\xf3\x37\x21\xa9\x98\x46\x93\x69\x8c\xff\x73\x31\x8a\x03\xae\xe9\xb1\x59\x56\x81\x90\xe3\xa3\x28\x89\xac\x57\xcb\x11\x55\x33\x8d\x2e\x4f\x53\x8a\x98\x70\xf2\xa7\xfd\x17\x7e\x0b\xf9\x11\xb2\x85\x63\x57\x5f\xac\x97\xb0\x91\x07\x87\x41\x65\x6c\x53\xdf\xb9\x9b\xa1\xf1\x47\x20\xe4\x13\x26\x29\xdf\x9e\x71\xc2\x96\xc2\x87\xad\xd1\xa5\xc8\xae\xef\x9c\xd8\xd9\xfe\x4f\x00\x00\x00\xff\xff\x2b\xf3\xbf\x0a\xed\x2d\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5a\x5b\x6f\x23\x47\x76\x7e\xef\x5f\x51\x96\xe3\x8c\x26\x68\x92\xba\x8c\x34\xb2\xbc\xda\x98\x22\x9b\x12\x77\x78\xdb\x6e\x6a\xc6\xe3\x81\xd0\x6a\xb1\x8b\x64\x5b\xcd\x6e\xba\xab\x29\x8d\x8c\x20\xd8\x45\x1e\x72\x01\x82\x3c\x24\x48\x10\x20\x08\x92\x87\x64\x81\xcd\x6d\x17\x79\xd9\x4d\x9c\xbc\x38\x79\x1f\xff\x87\x8d\x37\xfb\xb4\x7f\x21\xdf\x39\x55\x4d\x36\x35\xb2\x36\x06\x12\x5f\xc4\xbe\x54\x9d\x3a\x75\xae\xdf\x39\xd5\xef\x8a\x9e\xf3\xdc\x71\x05\xff\xe9\xf6\x9b\xed\xd6\x4b\x31\x3c\x6d\x7b\xa2\xd5\xee\x38\xd6\xbb\x62\xd0\x71\xea\x9e\x23\xba\xf5\x67\x8e\x68\x9c\xd6\x7b\x27\x8e\x27\xfa\x3d\xd1\xe8\xbb\xae\xe3\x0d\xfa\xbd\x66\xbb\x77\x22\x1a\x67\xde\xb0\xdf\xc5\xc3\x5e\xab\x7d\xa2\x67\x5a\x1f\x88\xfa\x7c\x2e\x92\x60\x26\x45\x3e\x0d\x72\xa1\xa6\xe9\x8d\x12\x69\x22\xe4\xb5\xcc\x6e\xc5\x3c\x98\xe0\x45\x94\xc7\xd2\xaa\x0f\x06\x7e\xaf\xde\x75\xc4\x91\x38\x49\x27\xea\x10\x7f\xc5\x49\x94\x0b\x4f\x66\xd7\xd1\x48\x82\x52\x63\x1a\x24\x18\x8e\x67\xd1\x58\xdc\xa6\x0b\x91\x2d\x12\x11\xa7\xa3\x20\x8e\x6f\x2d\xf7\xac\xe7\x9f\x79\xe0\xfe\x48\x4c\xa2\x1c\xa3\x9d\x28\x9f\xca\x4c\x6c\x84\xf2\x7a\xc3\x16\x1b\xf3\x2c\x0d\x37\x44\x8a\x07\xb9\x54\x39\x9e\x84\x72\x1c\x2c\x62\xd0\x52\x7a\x0c\x53\xc0\xd6\x89\x01\xdc\x5b\xd6\xab\x4c\xce\x53\x15\xe5\x69\x76\x7b\x6e\xb9\xfd\xfe\x50\x1c\x59\x5e\xc3\x6d\x0f\x86\xfe\xf0\xe5\x80\x86\x5d\x06\x6a\x8a\x95\x9a\x86\x52\xbd\xe7\xb5\xc5\x68\x1a\x64\x4a\xe6\x16\xdd\xf8\x10\x95\xeb\x39\x34\xf1\x03\xd1\x4a\xb3\x91\x34\xdb\x4e\xe4\x8d\x58\x51\x17\x79\x2a\x2e\xa5\x98\x67\xd1\x75\x90\x4b\xab\xd5\x77\x1b\x8e\x3f\x70\xdb\xcf\xeb\x43\x5a\x65\x1c\xc4\x8a\xb6\x7f\x12\xa7\x97\x41\x2c\x66\xc1\xeb\x68\xb6\x98\x89\x51\x26\x83\x3c\x82\x24\xe3\x68\x06\x91\xa4\xe3\x32\xc5\x39\x76\xbe\x50\x32\xb3\x45\x65\x5b\xcc\x64\x90\x28\x91\xa4\x7a\xa4\xd5\xad\x7f\xe4\x37\x5c\xa7\x3e\x6c\xf7\x7b\x7e\xa7\xdd\x6d\x83\x3f\x0c\xc3\x0a\x83\x20\x1f\x4d\x05\xc9\x47\x7c\xba\x90\x0b\x29\x62\x99\x4c\xf2\xa9\x8d\x35\xaf\x58\xee\x81\x12\x71\x90\x41\x07\xb8\xc0\x5a\x2a\xba\x84\xe2\x06\x67\x9d\x8e\xef\x3a\xdf\x3d\x73\xbc\xa1\x8f\xbf\x67\x8e\xdf\x71\x7a\x27\xc3\x53\x90\xdd\xde\xc2\x3f\x10\xe5\x22\x3a\x07\xfd\xde\x62\x76\x09\xc6\xca\xac\x46\x52\x69\xc3\x08\x32\xc9\xc6\x21\x43\x11\x25\x30\x10\x88\xea\xf5\x3c\x4e\xf1\x94\x6c\xc4\x72\x3e\x1a\x74\xfa\x2e\xc4\x52\x3f\x81\xa9\xf9\xbd\xb3\x2e\xa8\xef\x6c\xad\x11\x8d\x94\x5a\x7c\x3d\x39\x26\xd3\xf6\xbc\xb3\x3b\x44\xb6\xd7\x89\x2c\xc5\x9b\xce\x20\x2c\x75\x87\x48\x30\xca\xa3\xeb\x28\xbf\x15\x63\x29\x43\xab\xe5\x38\x4d\x9f\xc5\xd9\xef\x42\x8c\x86\xe0\x1e\xe8\x3d\x0f\x62\x88\x0f\xe4\x2e\x60\x84\x33\x59\x19\xa5\xd8\xca\x05\x34\x91\x07\x22\x0f\x26\x36\x29\x27\x14\x97\xb7\xa2\x9e\x84\x59\x1a\x85\xe2\xdb\x98\x57\x25\x4e\xea\x09\xd6\xba\x0e\x62\x3c\xe3\x49\x50\x1a\x64\xbf\x91\x60\x75\x6d\xbe\x61\xa4\x02\x88\x7d\x43\xdc\x44\x71\x2c\xa6\xc1\x35\x79\x96\x5c\x9a\xb3\xca\x6f\x63\xb2\x96\x2e\x89\x2e\x4a\xc6\xe9\xa1\x98\xe6\xf9\x5c\x1d\xd6\x6a\xb0\x6a\x19\xa7\x30\x0d\x55\x9d\xa4\xe9\x24\x96\x55\x6c\xb2\x76\x23\x2f\x6b\x8b\x79\x08\xcb\x53\xb5\x9d\xad\xed\x27\xb5\xed\xed\x9a\xb7\x98\xcf\xd3\x2c\xaf\x8c\xd3\xac\x52\xda\x40\x25\x4a\x2a\x8d\x69\x96\xe2\x7e\xf7\x7d\x7e\x69\xd8\xb7\x86\xa7\x4e\xd7\x81\x18\xa0\x23\xbf\xeb\x0c\xeb\xfe\xb0\x7e\x02\x51\x5c\xbc\x3b\x1e\xef\xed\x3e\xd9\xbd\x20\x86\x82\xd7\x42\x45\x9f\xb1\x54\xc6\x51\x4c\x8a\x62\xb3\xc7\x7e\xe6\x71\x70\x0b\x71\x6c\x9a\x3d\x28\xf2\xc9\x83\x6e\x74\xfc\x98\x6d\xb5\xd9\xf6\x06\x9d\xfa\x4b\x9f\x02\x8a\xef\xb5\x3f\x26\x9f\x38\xd8\x3d\x38\xd8\xdf\x3a\x60\xcb\xaa\x06\xe1\x2c\x4a\xd6\xed\x8b\x6c\xff\x61\x4b\xa0\x58\xb1\x6e\x08\x7b\x5b\x6f\x9b\xe8\x83\x24\x5c\x67\xd0\x7f\x90\x44\x92\xe6\x88\x5c\x0f\x13\xe9\xf5\x87\xed\xc6\x5d\xbb\xde\x5b\x23\x93\x66\x93\x20\x89\x3e\xd3\xde\xfe\x10\xad\xbe\x7b\xf2\x16\x3f\x2c\x21\x12\xc7\x3d\x0e\xf8\x0d\x77\xb7\xbd\x07\x6a\xb3\x20\xbb\x0a\xd3\x1b\x96\xb7\x93\x90\x25\xc2\x06\xb3\x10\x66\x8a\x89\x97\x88\x49\x57\x70\xdc\x5c\x26\x0a\xcc\x5a\x4e\xaf\x7e\x0c\xa5\x21\x0a\x36\x11\x69\x7a\x8e\x7f\x8c\xb8\xf3\xac\x14\xd3\x3a\x91\xe2\xd0\x35\x5a\xa8\x3c\x9d\x89\x33\xb7\x53\xf1\x46\x64\x70\x25\xde\x10\xde\x99\x39\x0a\x3e\x51\x72\xa5\xc4\xcd\x54\x26\xd8\x40\x12\xca\x2c\x4a\x26\x30\x2c\xcd\x11\xc8\xc1\x24\xb1\x7a\x30\x9b\x83\x2b\x64\x01\x7b\x16\x4c\x12\xc4\x62\x9d\x98\x7c\x50\xf7\xbd\x06\x59\xaa\x87\x88\x6c\xbd\x82\x50\xae\x49\x2e\x03\xb7\x3f\xec\xc3\x76\xc1\x17\xb9\x8a\xd5\xec\x77\xeb\xed\x1e\xee\x38\xb7\x4c\x53\x95\x73\xf8\xa7\xf9\x78\xf8\xde\x66\x31\xfe\x31\x39\xd5\x7b\x9b\x7a\x38\x6e\xde\xdb\x3c\x1d\x0e\x07\xfe\xa0\xef\x0e\x1f\xab\x9a\xc5\x37\xf5\x66\x93\x52\xd2\x56\x95\xff\xb5\x96\x03\xf0\x6c\x97\x42\x23\x44\x40\x8b\x88\xcd\x66\xf7\xe3\xc7\xb4\x7f\xde\x03\x25\x40\x71\x93\x66\x57\x64\xc5\x9b\x6a\x81\xa8\x8c\xdd\x7b\xde\xa9\xd0\x9e\xfa\x18\x81\x08\x86\xa5\x68\xfb\xf0\x5f\xa1\x74\x8e\xac\x82\x5c\x3b\x11\x33\x70\x2c\x46\x81\x82\x10\x29\x4b\x86\x29\x19\x22\x72\x0e\x64\x08\x97\x1b\xe9\x2c\x5a\x8e\x19\xd7\x14\xad\x68\x72\x3d\xce\x61\x1e\x94\x4d\x92\xf8\xd6\x64\xd9\x8c\xd7\xd5\xb2\x02\xa1\x50\x92\x77\x12\x41\xa2\xa0\x28\xb1\x83\x35\xda\x17\xbf\xac\x5a\x9d\x7e\xa3\x8e\x7c\xf0\x80\xc0\x96\x82\x79\x5b\x66\x48\xa6\x3a\xbc\xf1\xa2\x63\x64\xb8\x05\x2c\x80\x15\x4e\x4b\x06\xd7\x41\x14\xd3\x6b\x0b\x41\x81\x4d\x8b\x86\xad\xcc\xe9\xc5\x54\x72\xd2\x87\xbd\x8b\xcb\x45\x14\xe7\x30\xe8\x12\xf7\x29\x6d\x20\xaf\x5a\xde\xb0\xee\x0e\x69\xaa\x8f\x20\xf0\x9c\x31\x43\x41\xa1\x99\xce\x02\x4c\xd2\x80\x85\xe3\x13\xd2\x50\xaa\xb4\x6f\x8c\x62\xf2\x0e\xec\xca\xa2\xb9\x4b\x33\x59\x99\x00\xe5\x50\xc4\x4d\x91\x68\x3f\xfb\x15\x04\x8c\x1d\xec\xec\xdc\x99\x76\x0f\xe7\x31\xfc\x04\x3e\x05\xbd\xf0\xcc\x4e\xdb\x1b\x3a\xbd\x82\xc0\x7b\x9b\x05\x35\xe6\xc0\x4d\x21\xa9\x79\x90\x4f\xc9\xb1\x88\x46\x18\x65\x72\x44\xb0\x60\x0d\xf4\x3c\xfa\xed\x5a\x55\xa9\xe9\x23\x1b\xeb\xe5\x6c\x28\x3a\x97\xa4\x2c\xbd\x47\xb5\x29\xc2\x7c\x0d\x4e\xa4\x47\x55\x79\x5d\xd6\xea\xa0\x4e\xa9\x9d\x55\x65\xe8\xb2\x59\x11\x1c\xc1\x74\x39\x43\xe6\x08\xf0\x4c\xc7\x78\x56\x1d\x23\x8a\xf9\xe2\x32\x8e\x46\x57\xe2\x4a\xde\x62\x05\xb2\x5c\xd0\xad\xe0\x6e\x22\x13\x1b\xd4\x4a\xac\xa9\x5b\xec\x76\x56\xa2\xb5\xdc\x81\x66\xe3\x99\xf3\xd2\x1f\x12\xda\x58\xb2\x32\xa0\xed\x82\x8b\x12\xc9\xb5\xbd\xae\x9e\x3f\x12\x41\x82\x68\x25\x09\x8a\x4a\x24\xd0\x71\x84\xdb\x14\x12\xb8\x99\x46\x70\x33\xd2\x0f\xed\x06\x41\x67\xb9\xd6\x09\x89\x9a\x57\x2a\xd1\x67\x57\x0b\xa3\x11\x6d\xfa\xc6\x98\x1d\x7b\x97\xc4\x1e\x91\x8f\x18\x44\xd0\x5e\x39\xe7\xdd\x00\x8c\x22\x9f\x67\x99\x54\xf3\x14\xd3\xb0\xfb\xfc\x76\x2e\xad\x6e\xbb\xd7\xee\x9e\x75\x79\x47\x94\xda\x80\x18\x9d\x46\x39\x40\x16\xee\xd0\x68\xf6\x08\x3b\x12\x38\x28\xb0\xec\x0c\xee\x66\xf5\x5b\x2d\x0e\xac\x06\xb8\xea\x69\x85\x73\xb8\xfd\xb3\x21\xb2\x5c\xa7\x7f\x52\x86\x91\x32\x91\x19\x71\x0d\x19\x03\x16\xe0\xc9\xaf\x89\x6a\x6d\x42\x11\x67\x24\x61\x84\x95\x51\x70\x94\x67\x40\x2f\x95\x70\x91\x71\xce\x39\x3a\x78\xba\xbf\x35\xdd\x9a\x6d\x29\x51\xa1\x68\x78\x34\xbb\xa5\x9f\xaa\x89\xb4\x84\x22\xac\x0f\x40\xa7\x9f\x89\x31\xc0\x81\x08\x44\x75\x3e\x7e\xcd\x06\xc0\xc6\x9f\xe5\xb0\x7e\x7e\x43\x21\xe3\x05\x04\x4e\x35\x00\x2d\x16\x8d\xb5\x00\x11\xfc\xe1\xe6\x9b\x61\x0a\x2a\xe4\xe7\x88\x81\x13\x68\x08\xf2\xd4\xf3\x79\xa2\xc1\xc7\x24\xd4\xc7\x9a\x6d\x60\x99\x44\xa9\x58\xcc\xaf\x46\x6a\x7b\x47\x54\xc8\xc3\x40\x95\x57\xaf\x90\x4e\xf5\x1d\x4c\xa9\x92\xa4\x98\xa6\xfe\x77\xb3\x30\xb2\x98\x44\x2f\x14\x5d\x84\x52\x59\x0d\x07\x51\x83\x50\x08\xa4\xa9\x13\x56\x8d\xa1\x55\xad\x58\xc6\x22\x35\xde\x37\xc0\x50\xc4\xf2\x67\x73\x82\xe6\x31\x21\x31\x72\x4f\x32\xf1\x98\x36\x45\x46\xa9\x72\x88\x7b\xa4\xe5\x46\xfe\xbb\xee\x14\x2c\x02\x32\x73\x58\x1b\x84\xc5\x29\x02\x8f\xe5\x6b\x39\x5a\x40\xc0\x14\xd4\x80\x24\xee\xba\xa8\x99\xcf\x13\x29\xb3\x50\x35\x86\x0c\x12\x70\xb9\xd5\xac\x03\xa9\x19\xcb\xe6\x87\x5c\xad\xc5\xa4\x13\x2e\x2c\x98\xcb\x93\x8f\xdb\x03\xa1\x34\x20\x2c\x12\x3a\x3f\x2b\x65\xf1\x40\x9b\x34\x57\x73\x63\x8e\xb2\x49\x25\x4e\x27\x13\xe8\x9d\x91\x98\x0d\x87\x4a\x28\x16\x6e\x50\x54\xd1\x38\xd6\xc0\xfb\x0d\xab\x53\xe7\xf2\x91\xb0\x06\x09\x8e\x46\x58\x9a\x75\x82\x14\xcb\xec\x1f\x4f\x50\x2d\xe4\xd3\x99\x62\x59\x41\x1a\x51\xb6\xe6\x67\xba\x56\x11\x9b\x14\xbd\x50\xf4\xc0\x76\x0c\x52\x86\x3d\x92\xaf\x3d\x46\xc2\x57\xd3\xaa\x99\xe2\x63\x8a\x4f\xae\xa9\xce\x2d\xa7\xb9\xb3\xb7\xb7\xfd\x3e\x03\xaf\x7d\xcb\x69\x34\xbd\xba\x10\xe6\xce\xe5\x6b\xbe\xdb\x7a\x72\x60\x35\x97\xb7\xdb\x5b\x3b\x4f\x80\x21\x48\x6c\x28\x03\xe5\x79\xa9\xe2\x9c\xdd\xaa\x4f\x63\xae\x39\xe1\x25\x13\xb8\xbc\xde\x30\x1e\x46\xb9\xdc\xc5\x8b\x28\x7f\xa4\x74\x6a\x1d\x4d\x53\xaa\x6d\x9b\xc7\x45\x49\xc9\x73\xad\xd3\xbe\x47\x81\x7d\x7b\xe7\x29\xe3\x86\xed\xc3\xdd\xdd\xad\x7d\xcb\x54\xc7\xe4\xaa\x96\x29\x75\x33\xc4\x7a\x6b\x50\xf7\xbc\x17\xcd\xa2\xc8\x5c\x5b\x16\x69\xdc\x16\xb2\xa8\x84\x4d\xe5\x00\xce\x32\xf9\xe9\x02\x31\x55\x33\x86\x04\x13\x8d\x6f\x2b\xe3\x45\x1c\x6f\x20\xe6\x75\x96\x55\xb0\x1e\x5f\x90\x2d\xf8\x67\xf9\x6f\xe4\x51\x78\xb9\xc1\x75\x8c\x08\x2e\x55\x1a\xc3\x06\x97\xe6\x99\x70\x3a\x81\x39\x67\x5c\x32\x1a\x74\x62\x95\x2c\x8d\xe3\x4d\x35\xbc\x84\x04\x0d\x7a\x27\x38\x36\x5a\x40\xc3\x28\xb6\xdb\x3d\x18\x33\x8a\x4a\x40\x89\x72\x2c\x7c\xe7\x1d\xdd\x7a\xd0\x9d\x89\x61\x5f\x3c\x73\x9c\x81\x78\xd9\x3f\x73\x05\x8b\x83\xcc\x59\x78\xf5\x96\xf3\xce\x3b\x96\xe7\xa0\xc4\x1d\x52\x5c\x05\x81\x77\xde\xfd\xb0\xd5\x74\x5e\xb8\xf8\xef\xd7\x7f\x63\x93\xac\x7c\x91\xa7\x64\xa0\x11\xe1\xc8\x99\xe4\xac\x1b\x06\x88\x0f\x08\x95\xed\x1e\x8a\xd9\xae\xd3\x3d\x46\xe4\x6c\xd6\x5f\x02\x2a\x8a\xa7\x56\xa3\xdf\x7f\xd6\x76\xb8\xc1\x50\xd2\x82\x1f\xdc\x48\x45\xe6\x6a\x5e\x2f\xe7\x95\xc7\x44\x09\x52\x63\x18\x69\x41\xba\x54\xff\x2b\x8a\x65\xe9\xeb\x5b\x11\x2c\xa0\x98\x24\x2f\xfc\x6d\x2a\x83\x90\x30\x16\x61\x0f\x53\xc3\xf0\x0d\xa0\x38\x40\x8a\x47\x3d\x81\xfe\x47\x2f\xfd\xfa\x19\xaa\xad\x1e\x7c\x5d\x57\xf0\xc6\x12\x3e\xaa\xbc\x70\x8e\xe9\x55\x85\x1e\x18\x74\x0b\xa9\x9f\x5b\xf5\xc6\xb0\xfd\x9c\x8a\xb3\x26\x0a\x73\xba\x42\xd2\x41\x5e\xa0\x8d\x6d\x1f\x6c\x81\xb8\xe7\x50\xc4\x20\x1b\xfa\xda\x41\x08\x5c\xcc\x4d\x81\x21\xd3\x64\x1c\x65\x33\x21\x2b\x40\x4b\x31\xbb\x7c\x26\x27\xc0\x28\x3a\x61\x80\xe6\x09\x21\x14\xd7\x77\x80\x8b\x3a\x3e\x77\x84\xdc\xee\x1a\xcc\x92\x1a\x44\xb2\x7b\x9b\xc9\x58\x80\x4c\x8b\x0d\xa2\xc0\x13\xc0\xb9\xe9\x22\xd1\x80\x74\x95\xd7\x98\xbc\xcb\xfb\x2f\x11\x65\x16\x67\x88\xbb\xc8\xb9\x13\xce\x94\x60\xf5\x3a\x92\x37\x20\x7b\x9b\x4f\x11\xa1\xaa\x16\xf5\x29\xda\x2e\xd5\x91\x27\x3d\x68\xfa\x79\xdb\x79\x51\xa2\xd0\xa5\xdd\x50\xd5\x36\x36\x3a\x29\x02\x1e\x55\x69\xad\x97\x3e\xed\xa6\x3c\x9c\xb2\x56\x88\x9a\x3e\x8a\x57\x55\x36\x20\xd3\x74\x71\xc9\xa5\x35\xf4\x1f\xe5\x8a\x6d\xbd\xa6\x9b\x13\xb5\xed\xfd\xbd\x82\xe6\x43\x5a\x5d\x2e\xf2\x75\x63\xfb\x5f\x27\x04\x53\x93\x8d\x82\x79\x0e\xa4\x2f\xb8\x93\xa0\xcd\xeb\x2d\x2d\x19\xda\x8d\xfa\x60\x08\xc7\x02\x0d\x4a\xfb\xb0\x1c\x54\x14\xd3\x34\xbd\xa2\x90\x76\x8a\x5f\x91\x07\xea\x6a\xad\x21\x64\xdd\xd3\xe5\xe1\x88\x1d\x47\x04\x56\xf3\x68\x26\x29\x8f\x42\x01\xf0\x69\xc0\x1d\x65\x35\x1d\x32\x2a\xd7\x1f\xb6\xbb\x0e\x40\x89\xe9\x92\xd4\x59\xf9\x51\xc2\x9e\x2f\x4b\x88\x80\xb8\xf3\x9e\xb5\x07\xfe\xb0\xe3\xf9\x98\x47\xed\xc8\xd5\x16\x57\x55\xec\x34\x52\x8c\x3f\xa9\xcf\x91\xcd\xf4\x36\xb1\xaa\x0c\x80\xe4\xb8\x88\xbd\xdb\xe9\xa1\xfa\x15\xe9\x15\x45\x9f\xde\x7c\xb3\x44\xf6\x78\x31\x1e\x73\x6e\xe6\x3c\x42\x45\x29\x2a\xa5\x44\xc6\x36\xd2\x8b\x9c\x9b\xf6\x57\xc4\xb9\xd8\xf4\x1f\xc3\x34\x79\x04\xb8\x90\x60\x13\x37\x54\xad\xf2\x4b\xc0\x46\xa7\xd7\xf4\x8f\xcf\x5a\x2d\xc2\x5e\x4e\x4f\x0b\x88\xf8\x26\xc7\x5e\xb5\x3b\xc0\x28\x7b\x8f\x6e\x7f\x7a\x67\xc7\xdf\x71\x1a\x1a\xce\x17\xad\x50\x86\xf3\x6c\x93\xba\x0c\x20\xf4\x36\x63\x63\x53\xb3\x7c\x5e\x9d\xd0\x35\x19\xda\xe1\xde\xc1\x53\xbc\xfb\xee\x77\xcd\x8b\x4f\x3f\xe5\xa7\x4f\xf6\xb9\x8f\x90\xe6\xd2\x26\x8e\x19\x40\x10\x98\x42\xe5\xac\x34\x22\xdd\xc0\x10\x04\x71\xaf\x3b\x1c\x78\xba\x9f\x84\x1c\x4d\xad\xa9\x2a\x9c\x89\x32\x3a\x57\x4a\x50\x02\x75\x6c\x79\x2e\x56\x22\x01\x00\x8e\xa7\xb3\x19\x95\xe0\x21\xf7\x1a\xdd\x56\x43\xec\x3f\xd9\x7a\xbf\x2a\xda\x7a\x21\x53\xb7\x18\xdc\xa0\x56\x84\x20\x23\x5e\x28\x88\x6f\x10\x70\x97\xeb\x99\x94\x57\x42\xbc\xa7\x4e\xa7\x4f\x58\x4d\x1b\xab\x4e\x2b\x04\x3b\x39\x3c\x52\x5f\x20\x8c\x48\x5f\x88\x9f\xd5\x65\x60\xe0\x39\x44\xa4\xa1\xfb\x09\xcb\xf1\x64\xfb\xeb\x04\xd7\xea\x03\x06\xa7\xba\xea\x00\x27\x18\xe7\x13\x3b\x3a\x8a\x73\xb4\xe2\x58\xa5\xf3\x24\x6f\xaf\x0c\x5e\xd3\xf2\x8e\xab\xa2\x4f\xa5\x33\xa5\x45\x44\x1c\xc5\x0b\x2b\x19\x8f\x2b\x14\x92\x20\xac\xd2\x44\xa5\x4d\xbc\x30\x6f\x1d\xc0\x50\x22\x46\xd8\x52\x79\x1c\xe5\x7a\x9f\xb0\x67\xbb\x45\xd1\x61\x05\xf3\xef\xc1\xa3\xda\xba\x1f\x02\xa4\x66\xc4\x0a\x91\xb2\x7d\x69\xdc\x1e\x86\x40\x0d\x00\x6b\xa4\xcd\xbd\xdd\x9d\x9d\xaa\x18\xd2\x1e\x0c\x76\xfb\x84\x22\x2b\x2e\x25\x5b\xed\x72\x30\x36\x48\xdb\xbf\xd8\x20\xf3\xde\x10\xdf\xe2\xd7\x1f\x96\x6a\x83\x6f\x5f\x08\xed\x9d\x56\xcb\xed\x77\x79\xa3\x5d\x66\x62\x95\xe1\x38\xee\xcf\x03\xa5\x6e\xd2\x2c\x34\xd8\xa6\x0c\x6b\x48\x30\xb9\x7c\x9d\x03\x4e\xcf\x62\x72\xc3\x80\x1a\x15\x09\x14\x79\x2d\x0d\x71\x76\xd8\x34\x41\x95\xbc\x44\xa9\xa7\xc3\x6e\xc7\xaf\x77\x86\x94\xb3\x29\x05\x2e\x05\x67\xbd\x1a\x21\x42\xac\x63\x36\x39\x43\x20\xd1\xd0\x08\x2e\xba\xc1\xfb\xa2\xa7\x3c\xf2\xce\x71\x81\x19\x6c\xd5\x9b\x08\x9d\x9c\x7d\xf5\x93\x02\x29\x99\xf7\x06\x7e\x9d\x34\xe0\xea\x60\x17\xa1\xb8\x14\x12\xd7\x28\xee\x6f\x01\xf3\x80\xd2\xf3\x3a\xa5\x97\xfd\xad\x82\x90\xe6\x45\x03\xae\x12\x2f\x20\x90\xa0\x1e\x66\xcc\x40\xbd\x1e\xa3\x0b\xcc\xe2\x09\x87\xc8\xd3\x39\x75\x8f\x8e\xf2\xd1\xdc\xa6\x97\x47\x87\xfb\xbb\x4f\xdf\xb7\x0b\x09\x1f\xcd\x82\x51\x90\xc1\x07\xc2\xcb\xa3\x2d\x7b\x9e\xa6\x31\x43\xe1\x23\x84\x29\x3b\x0a\x63\xe9\x9b\x08\x7e\xa4\x53\x7f\xb1\xf2\xa1\xb8\x58\x21\xd2\xed\xed\x9d\xed\xed\x8b\xc2\x6d\x09\x6e\x28\x6a\xf9\xdd\x2f\x53\x2a\x69\x8c\x48\x0b\xf1\xde\x27\x4f\x64\xb7\xe7\xed\xe6\xba\x40\x07\x59\x7a\x1d\x11\x2c\x62\xcc\x31\x81\x03\xd3\xbe\x95\x66\x0b\x43\x0e\xd9\x35\xb9\x75\x81\x2c\x5f\x8c\xba\x95\x74\x04\x44\xcb\x22\x24\x6a\xce\x56\x75\x15\x10\x71\x75\x52\x15\x17\x0c\x44\xcd\x5b\x75\xf1\xff\x26\x3d\x42\xf4\x87\xc0\x82\x15\xfc\x56\xc2\x8c\x52\x64\x8d\x1f\x8a\x50\x25\x05\xc3\x48\xca\x88\xb7\x05\x67\x04\xeb\x0f\x8b\xf5\x3e\x2c\x78\xf4\x73\x0a\x8c\x17\x4b\x31\xf9\xe6\xa4\xcd\x40\xea\x62\x27\x58\xd3\x33\x5b\x1e\x21\x7d\x47\x52\x83\x48\x83\x51\x0d\x34\x8d\x7c\x3a\x57\xf0\x35\x42\xa1\x5e\x86\xce\x68\x14\xb7\x0a\x79\xc1\x56\x19\xd3\x18\x33\x2e\x87\x4b\x1d\x7e\x34\x41\x20\xed\x33\xd7\x79\x1b\x81\x28\x14\xf0\x7a\xfd\xb5\xb9\x8c\x31\x8c\x83\x12\xf0\xd4\x54\x0a\xf0\xb1\x62\x1d\x5e\x43\x72\x5c\xba\xce\x1a\x91\x03\xe4\x9a\x2d\xeb\xa4\xe1\x17\x5e\xc3\xc0\x82\xce\x05\xf8\xc5\x8a\x4a\x1c\x8d\x25\xd3\xb9\x67\xba\xe7\x78\x9e\x3e\x02\x6b\x39\xeb\xf3\xad\x57\xf3\x68\x44\x9d\x47\x80\xe7\xe7\x28\x2a\x5c\xff\x6c\xd0\xe9\xd7\x9b\xe5\x5a\xb9\x16\x5c\xe3\x6f\xa6\xf8\x5c\x12\x85\xaa\x92\xe6\xd0\x81\xa2\x25\xca\xba\x14\x0f\x36\xc2\x45\xaa\xa6\x8b\x74\x03\x83\x60\xfb\x41\xd1\xe6\xd6\x53\x85\x42\x05\x38\x02\x67\xa4\x09\x8d\x1f\x01\x1f\x47\x49\x75\x92\xe9\x01\x8c\x21\xf5\x65\xcd\x3a\x71\x0d\x2b\x1e\xea\x9d\x06\x57\x17\x66\xd8\x32\xfb\x15\x43\x4a\x71\x2e\xc8\x73\x78\x2e\x12\x75\x7e\x5e\x6a\x8f\xae\x9e\x2a\xce\xa4\x92\x35\x86\xa4\xdf\x2c\x0e\x60\x00\x9c\x2f\x48\x21\x17\x46\x55\x2b\xfd\x0c\x8a\x4e\x42\x89\xc8\x9d\x89\x5a\x3c\xab\xd7\x17\x6b\x95\x5f\xe9\x05\xf5\x8c\x50\xe2\x83\xd8\x2c\x2d\x35\xfa\xa9\x5a\x57\xc6\x15\xa2\x19\x60\x5c\xed\x93\xb9\x9c\xfc\x96\xbe\x9c\x27\x13\x0b\xb5\x61\xff\x85\xd3\xe4\x9a\x99\x2a\x94\x7b\x07\xad\x9f\x38\x31\x24\xa4\x08\xb0\xce\xeb\xee\x4e\xf7\x98\x0f\x99\xcc\xb9\xd2\x13\x33\x2d\x59\x42\x4c\xdd\xc6\xe4\xf3\xd4\x79\x9c\x06\x77\x84\x04\x48\x49\xb3\x29\xc5\x7a\x0c\x6a\xad\x57\x64\x6d\x24\x6c\x6f\x2e\x47\xc8\xe0\x52\x77\x6e\x4c\x92\x22\xc1\x51\x9d\x7d\x4b\x2d\xc7\x39\xf5\x6d\x04\x9f\xbc\xad\x53\x45\xfe\x45\x78\xdd\x2d\x88\x20\x6f\x18\x1c\x85\xe1\xdc\xab\xd7\x6a\xa3\x23\xe6\x86\x2d\xce\x92\xe8\x75\x33\x20\x90\xe7\x2e\x2e\x6f\xcd\x55\xab\x71\xb0\xb3\x53\xfc\x7e\xac\x2f\xf6\xb6\xec\x82\xf4\xf2\x42\xbf\xda\xdd\xdd\x7d\x7f\x79\xd1\x0b\x92\xd4\x16\xcf\x22\xd4\x0f\xd4\x46\xf5\x72\x64\x72\xf3\xd3\x05\x72\x8b\x96\xd7\xa3\x2c\xe5\xd4\xc4\xb7\x34\xcb\xa4\xad\x59\x71\xf4\x58\x40\xf2\xe0\x92\xca\x81\x92\x18\x94\x94\x85\xbd\x4f\xd2\x38\x40\x61\x96\x66\x93\xda\xfc\x6a\x52\x23\xe9\xd5\xde\xc5\x55\x05\x81\x51\xe5\x01\x59\x49\xab\xef\x76\xeb\x3a\xcb\xa0\x66\xd7\x67\xf1\xab\x16\x57\x91\x6d\x68\x7c\xaa\xbb\x1b\x26\xdd\xd0\xa3\x84\x7e\x09\x14\x9b\xc3\x53\xd3\xae\xb9\x93\x80\x8a\xb9\x05\x06\x03\xb6\x0d\xb8\x9d\x2c\xe7\x01\xf7\x4a\x67\x18\x19\xd1\xa9\x12\x35\x5d\x0b\xdb\x2c\xa6\xd9\x6c\x24\x1b\x96\x69\x9b\x98\xa7\xff\x97\x15\xc5\xdd\x62\x82\x63\x5c\xb1\xf1\x61\x16\x8c\x78\xbb\x4d\x79\xb9\x98\xd0\x45\x1b\xb2\xa7\xdf\x17\x41\xc6\xfb\x77\xb2\x2c\xcd\xe8\xa2\x91\x45\xd4\x6d\x88\xef\x6c\x5f\x53\xb0\x3a\x28\x32\x09\x7f\xf0\xad\x55\x60\x90\x42\x36\xbc\x75\x5d\x87\x93\x1a\xaa\xe6\xf9\x79\x31\x6d\x39\x81\x85\x71\x77\x34\x3d\x5c\x0d\xfd\x40\x03\x4b\x1d\x77\x14\xf5\x41\x52\x98\x05\xac\x1b\x43\x45\x96\xe6\xb8\xde\x54\x37\x64\x81\xec\x82\x29\x05\x06\x2a\x47\x4c\xf2\x7f\xfc\x76\x46\xe9\xf4\x4f\x7c\xb7\x3f\xd4\xf0\xd8\x84\x2a\x72\x64\x3e\x96\x5c\x79\x33\x15\x35\xd0\x22\x71\xb3\x46\x83\x65\xba\xa5\x9d\x99\xfa\xe9\x5e\x21\x67\x96\xf4\x32\x90\xa8\x69\x34\xce\x1f\xa2\xb3\x73\x60\xbe\xb6\xd8\x16\xdf\xfa\x16\xee\x6c\x6a\x22\x96\x42\x8c\xef\x9d\xb6\x5b\x7c\xe8\x73\xc0\x59\x6a\x42\x71\x90\x77\x1d\x02\x12\xdf\xbe\xbd\xaf\x66\xbd\xdd\x79\xf9\xd6\xce\x9c\xd7\xf3\x28\xe3\xd8\x81\x12\x0a\xec\x10\x01\xe2\x65\x33\x94\xb1\xa4\xae\xc9\x98\x9a\x29\x33\xb0\x4d\x23\xd6\xc5\xf5\x54\x1f\xaa\x17\x9d\xad\x92\x9a\x93\xfb\x74\x9c\x94\xb5\xe6\x4a\x03\x3d\x35\xee\xe4\xe3\x56\xfe\xa0\xc5\xc8\x63\x86\xb4\x8b\xf8\x7b\x0f\x58\x70\x1d\x80\x95\x1e\x0a\x5c\x1f\x19\xb7\xeb\x95\x0f\x24\x86\xfa\x00\x29\x5b\xd2\xe6\x52\xaf\x84\x71\x41\x24\xc6\x72\x0f\x51\x2d\xc3\x0f\xe3\x16\x40\x6f\x64\xf2\x0b\x44\x47\xed\xfb\x8b\x70\x7e\xc7\xee\x69\x48\xf9\xf4\x17\xf7\xdc\xf3\x28\x41\x6a\x7d\x7e\xbb\x94\x92\x8e\x24\x77\xa4\x44\x0f\xcb\x52\x7a\xa8\xce\x5f\x67\xa0\x19\x05\x93\x04\xcb\x45\xa3\x42\x74\xa6\x14\xe5\x5a\x72\xa3\xd4\x14\x78\x78\xe4\x9d\x36\xc1\xb2\x96\xfe\xa6\x75\x16\xf4\x2b\x09\x9f\xae\x1a\xf6\xe9\x2a\x3f\x9b\xa8\xf7\x6a\x63\xbb\x5c\xdd\x6d\xd8\x1b\x3b\x6b\xf7\xe7\xa4\x15\x87\xba\x3d\x5e\x49\x70\xcb\xc0\x7b\x57\x78\xab\x06\xfa\x4a\x80\xeb\x8d\x74\xb1\xd6\xd3\xb6\x9a\x6e\x9b\x8f\x6c\x29\xbe\x06\x74\xae\x0a\x0b\x79\x8d\xb4\xa2\xd9\x3b\xe4\x96\xf8\x21\xfd\xf9\x70\x79\x7c\xcf\x1d\xb8\xdf\x34\x5f\x66\x1d\x2d\xf2\xf1\x81\x45\x76\xc3\x19\x05\x49\xac\xfc\x2d\x43\xb6\x48\x12\x8a\x34\xf4\x98\x1b\x5f\x9c\xfb\xa3\x94\x4e\xfa\x90\xb6\xab\xa5\xbe\x91\xf1\x45\x77\x91\x94\x47\xb3\xf1\xf2\xe1\x0c\xf7\xbf\x11\xbc\xe9\xbb\xb2\xfa\xd0\xe7\x0e\xc8\x0a\x9a\xd1\x51\x50\xc8\xa9\x25\xa2\xe8\xac\x34\x27\x55\x7d\xbe\xef\x9b\x87\xe7\x16\x7d\xaf\xd0\x3c\x63\x00\xf6\xa1\x76\xb5\xed\xad\x99\xc5\xaa\x5a\x7e\xec\x35\x95\x28\x87\xa7\xfa\xe8\xd1\x90\xa1\xcf\x3b\x7c\xfd\xdc\xe7\xe7\xf7\x51\xda\x79\x32\xb5\x56\x0d\xb9\xfd\x2d\xc2\x63\xf5\x6c\xb2\xd0\xc0\x90\x9c\x9b\x13\x21\x4c\xe6\x11\xaa\x04\x31\x56\xa3\xab\x47\x45\xea\xab\x54\x16\x49\x46\xa0\x8a\xa5\x56\xa9\xe4\xc1\x44\x51\xfa\xa4\xcc\xce\xf9\x3f\x4d\x96\x19\x3e\xca\x2b\x6a\x34\x63\x34\x1b\xa6\x23\xc5\x0f\x88\x58\x6d\xbb\xfa\xb4\xba\x67\xd5\xdd\x13\x63\x29\x0d\x3e\x3c\x2d\x7d\xc6\xc6\x27\x62\x64\xf4\x85\x78\x78\x2f\x3e\xef\x8e\xde\x41\x40\x77\xa4\xcb\x4a\xb9\x7f\xab\xd6\x2b\x2c\x7c\xfe\x16\xc0\xa3\x0c\xa1\x96\xd8\x13\x0f\x82\x72\x74\x27\xef\xa5\x46\x13\xf7\x91\xab\x1c\x3a\x4f\xda\x43\xbf\xd9\x6e\xb5\xd6\x12\xc5\x5b\x64\xc9\xda\x82\x51\x4e\x15\x01\xd3\x8c\xcb\x87\x59\xbf\x82\x28\x7f\x37\x58\x6f\x0c\xd9\x85\xc4\xde\x3d\xd4\x35\x2a\xa5\xaf\x76\x92\x87\x88\x15\xb8\x54\xf7\x1f\x1f\xd0\xed\x64\x54\xd2\x6c\x30\x21\x4f\x53\xd4\x5b\xc1\x0d\x72\xf3\x37\x51\xec\x64\x64\xd4\x8a\xea\x6c\xa5\xd9\xfe\xb2\x8f\x77\x4f\x73\x98\xf4\x52\x35\xcf\xcf\xad\x6e\x1b\x75\x0c\x27\xbb\x7d\x4a\xc8\x6d\xd7\xed\xbb\xfa\x6b\x19\xab\xd1\xe9\xf7\x1c\x73\x4d\x5f\x1d\x9a\x4b\x94\x39\xf3\xe8\x6d\xc5\x46\xb9\x9c\x29\xdd\x6c\xd4\xc7\xee\x8a\xb5\x19\xe8\xce\x30\xc9\x49\x7f\xbb\xea\x39\x7e\x7b\xe8\x74\xbd\xe2\x7b\xa9\x68\xfb\x80\x92\x5e\xbd\x47\xcc\x03\xa3\x54\xce\x3c\xfb\xb3\x69\xa5\xd1\xa3\xbf\xa7\xcf\xe8\xef\xf0\x85\x1d\xca\x4a\xd3\xb1\xc7\x59\xa5\xe5\xda\x49\x5c\xe9\x75\xec\xf8\xba\xd2\x79\x6e\x67\x8b\x8a\x7b\x66\x7f\x12\x54\xbe\x33\xb0\xa5\xaa\x38\x9e\x3d\xcf\x2b\xc7\xae\x3d\x8f\x2b\x83\x8e\x7d\x39\xa9\x1c\x9f\xd8\x10\x53\x7b\x68\x8f\xa3\x4a\xab\x6d\xe7\x59\x65\xe8\xda\x23\x55\x69\x7c\xcc\x07\x7c\xb4\xa6\x03\xf3\x8b\xd4\xd4\xfe\xf9\x3f\x7e\xef\x67\xff\xf6\xc7\x3f\xfb\xc9\x3f\x7c\xf5\xa7\xbf\x6b\xff\xfc\xa7\xdf\xff\xc5\xdf\xfd\x89\xbe\xf9\xe5\xe7\xbf\xf7\x8b\xbf\xfd\xf3\xaf\x7e\xf2\x4f\xbf\xfc\xfc\xf7\xef\xbe\xf8\xaf\x3f\xfa\xd1\x57\x3f\xfd\x77\x7a\xd1\x94\x8b\x5c\x8d\xa6\x76\x2b\x0b\x92\x2f\x7e\x10\x44\xca\xee\xc9\x50\x66\xc0\xdb\xa1\xb2\x3b\x41\x0e\x83\xf9\xcf\xbf\x5e\xd8\x6f\xfe\xea\xcb\xdf\xf9\xf2\xfb\x5f\x7e\xff\xcd\xbf\xbc\xf9\xc9\x9b\x9f\xda\x5f\xfd\xd9\xdf\x7c\xf5\x17\x7f\xff\xdf\x3f\xfc\x4b\xdb\x51\xf3\xe0\x8b\x1f\xa7\xb1\x4d\x1f\xa7\x2c\x26\x8b\x2f\x7e\xa8\xe8\x63\xa2\xe3\x2c\x50\x11\x3d\x8c\xd5\x55\x64\xbf\xf9\xf1\x97\x7f\xf0\xe6\x5f\xdf\xfc\xf3\x9b\x1f\x7d\xf9\x3d\x4d\xc3\x6e\xe7\x41\x1c\x51\x11\xe1\x2d\x00\xeb\xe2\x00\x96\x9f\xd8\xc3\x2f\x3e\xcf\xae\xbe\xf8\x81\xb4\xff\xe3\x0f\xb1\x6a\x1e\x25\x81\xa5\xd1\x76\xc8\xd6\x48\x51\x8f\x4c\x00\x85\xf7\x15\x32\x18\x2b\x81\x72\x83\xa4\xea\xe0\xdc\x62\x2d\xb0\x36\x2c\x56\x05\x2e\x3f\x9b\x5a\xac\x0f\xbe\x84\x46\x2c\xfe\xbb\xbc\x63\xfd\xf0\xa7\xbc\x16\x2b\x89\x22\x6f\x66\xb1\xa6\x70\x99\xc4\x16\xab\x8b\x3e\xf2\xba\xb6\x58\x67\x74\x9a\xba\xb0\x58\x71\xb8\xfc\x24\xb0\x58\x7b\xb4\xa6\xb2\x58\x85\xb8\xe4\x5f\x8b\x55\x49\x77\xb1\xc5\xfa\xc4\xe5\xe5\xc4\x62\xa5\x52\x31\x9a\x5b\xac\x59\x5a\x30\xb2\x58\xbd\x1c\x97\x2c\xd6\x31\xd5\x07\xac\x6b\x46\x71\xe6\x3b\x39\xe0\x83\xf9\x9c\xbf\x09\x49\xc5\x34\x9a\x4c\x63\xfc\x9f\x8b\x51\x1c\x70\x4f\x8f\xdd\xb2\x0a\x84\x1c\x1f\x45\x49\x64\xbd\x5a\x8e\xa8\x9a\x69\x74\x78\x9a\x52\xc6\x44\x90\x3f\xed\xbf\xf0\x5b\xa8\x8f\x50\x2d\x1c\xbb\xfa\x60\xbd\x84\x8d\x3c\x04\x0c\x6a\x63\x9b\xfe\xce\xdd\x0a\x8d\x3f\x02\xa1\x98\x30\x49\xf9\xf4\x8c\x0b\xb6\x14\x31\x6c\x8d\x2e\x65\x76\x7d\xe6\xc4\xc1\xf6\x7f\x02\x00\x00\xff\xff\x94\x7c\x9c\x51\x3b\x2e\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -301,7 +301,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 11757, mode: os.FileMode(420), modTime: time.Unix(1469276003, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 11835, mode: os.FileMode(420), modTime: time.Unix(1469290290, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 5c396a7d6..0de1963c5 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -115,15 +115,23 @@ var ( ScriptType string // UI settings - ExplorePagingNum int - IssuePagingNum int - FeedMaxCommitNum int - AdminUserPagingNum int - AdminRepoPagingNum int - AdminNoticePagingNum int - AdminOrgPagingNum int - ThemeColorMetaTag string - MaxDisplayFileSize int64 + UI struct { + ExplorePagingNum int + IssuePagingNum int + FeedMaxCommitNum int + ThemeColorMetaTag string + MaxDisplayFileSize int64 + + Admin struct { + UserPagingNum int + RepoPagingNum int + NoticePagingNum int + OrgPagingNum int + } `ini:"ui.admin"` + User struct { + RepoPagingNum int + } `ini:"ui.user"` + } // Markdown sttings Markdown struct { @@ -437,20 +445,6 @@ func NewContext() { log.Fatal(4, "Fail to map Repository settings: %v", err) } - // UI settings. - sec = Cfg.Section("ui") - ExplorePagingNum = sec.Key("EXPLORE_PAGING_NUM").MustInt(20) - IssuePagingNum = sec.Key("ISSUE_PAGING_NUM").MustInt(10) - FeedMaxCommitNum = sec.Key("FEED_MAX_COMMIT_NUM").MustInt(5) - MaxDisplayFileSize = sec.Key("MAX_DISPLAY_FILE_SIZE").MustInt64(8388608) - - sec = Cfg.Section("ui.admin") - AdminUserPagingNum = sec.Key("USER_PAGING_NUM").MustInt(50) - AdminRepoPagingNum = sec.Key("REPO_PAGING_NUM").MustInt(50) - AdminNoticePagingNum = sec.Key("NOTICE_PAGING_NUM").MustInt(50) - AdminOrgPagingNum = sec.Key("ORG_PAGING_NUM").MustInt(50) - ThemeColorMetaTag = sec.Key("THEME_COLOR_META_TAG").MustString("#ff5343") - sec = Cfg.Section("picture") AvatarUploadPath = sec.Key("AVATAR_UPLOAD_PATH").MustString(path.Join(AppDataPath, "avatars")) forcePathSeparator(AvatarUploadPath) @@ -470,7 +464,9 @@ func NewContext() { DisableGravatar = true } - if err = Cfg.Section("markdown").MapTo(&Markdown); err != nil { + if err = Cfg.Section("ui").MapTo(&UI); err != nil { + log.Fatal(4, "Fail to map UI settings: %v", err) + } else if err = Cfg.Section("markdown").MapTo(&Markdown); err != nil { log.Fatal(4, "Fail to map Markdown settings: %v", err) } else if err = Cfg.Section("cron").MapTo(&Cron); err != nil { log.Fatal(4, "Fail to map Cron settings: %v", err) diff --git a/modules/template/template.go b/modules/template/template.go index 5702d1dd3..ed5b08a2e 100644 --- a/modules/template/template.go +++ b/modules/template/template.go @@ -102,7 +102,7 @@ func NewFuncMap() []template.FuncMap { }, "RenderCommitMessage": RenderCommitMessage, "ThemeColorMetaTag": func() string { - return setting.ThemeColorMetaTag + return setting.UI.ThemeColorMetaTag }, }} } diff --git a/routers/admin/notice.go b/routers/admin/notice.go index 09222eb84..5d4e807ee 100644 --- a/routers/admin/notice.go +++ b/routers/admin/notice.go @@ -29,9 +29,9 @@ func Notices(ctx *context.Context) { if page <= 1 { page = 1 } - ctx.Data["Page"] = paginater.New(int(total), setting.AdminNoticePagingNum, page, 5) + ctx.Data["Page"] = paginater.New(int(total), setting.UI.Admin.NoticePagingNum, page, 5) - notices, err := models.Notices(page, setting.AdminNoticePagingNum) + notices, err := models.Notices(page, setting.UI.Admin.NoticePagingNum) if err != nil { ctx.Handle(500, "Notices", err) return diff --git a/routers/admin/orgs.go b/routers/admin/orgs.go index 28e9d79f0..320007210 100644 --- a/routers/admin/orgs.go +++ b/routers/admin/orgs.go @@ -25,7 +25,7 @@ func Organizations(ctx *context.Context) { Type: models.USER_TYPE_ORGANIZATION, Counter: models.CountOrganizations, Ranger: models.Organizations, - PageSize: setting.AdminOrgPagingNum, + PageSize: setting.UI.Admin.OrgPagingNum, OrderBy: "id ASC", TplName: ORGS, }) diff --git a/routers/admin/repos.go b/routers/admin/repos.go index 8b5caa8d7..dc259c634 100644 --- a/routers/admin/repos.go +++ b/routers/admin/repos.go @@ -26,7 +26,7 @@ func Repos(ctx *context.Context) { Counter: models.CountRepositories, Ranger: models.Repositories, Private: true, - PageSize: setting.AdminRepoPagingNum, + PageSize: setting.UI.Admin.RepoPagingNum, OrderBy: "id ASC", TplName: REPOS, }) diff --git a/routers/admin/users.go b/routers/admin/users.go index 9b017fa53..b7056957e 100644 --- a/routers/admin/users.go +++ b/routers/admin/users.go @@ -33,7 +33,7 @@ func Users(ctx *context.Context) { Type: models.USER_TYPE_INDIVIDUAL, Counter: models.CountUsers, Ranger: models.Users, - PageSize: setting.AdminUserPagingNum, + PageSize: setting.UI.Admin.UserPagingNum, OrderBy: "id ASC", TplName: USERS, }) diff --git a/routers/api/v1/repo/issue.go b/routers/api/v1/repo/issue.go index bf2c8e9dd..a3f69d3f8 100644 --- a/routers/api/v1/repo/issue.go +++ b/routers/api/v1/repo/issue.go @@ -31,7 +31,7 @@ func ListIssues(ctx *context.APIContext) { apiIssues[i] = convert.ToIssue(issues[i]) } - ctx.SetLinkHeader(ctx.Repo.Repository.NumIssues, setting.IssuePagingNum) + ctx.SetLinkHeader(ctx.Repo.Repository.NumIssues, setting.UI.IssuePagingNum) ctx.JSON(200, &apiIssues) } diff --git a/routers/home.go b/routers/home.go index 16967521d..93b24083c 100644 --- a/routers/home.go +++ b/routers/home.go @@ -109,7 +109,7 @@ func ExploreRepos(ctx *context.Context) { RenderRepoSearch(ctx, &RepoSearchOptions{ Counter: models.CountPublicRepositories, Ranger: models.GetRecentUpdatedRepositories, - PageSize: setting.ExplorePagingNum, + PageSize: setting.UI.ExplorePagingNum, OrderBy: "updated_unix DESC", TplName: EXPLORE_REPOS, }) @@ -174,7 +174,7 @@ func ExploreUsers(ctx *context.Context) { Type: models.USER_TYPE_INDIVIDUAL, Counter: models.CountUsers, Ranger: models.Users, - PageSize: setting.ExplorePagingNum, + PageSize: setting.UI.ExplorePagingNum, OrderBy: "updated_unix DESC", TplName: EXPLORE_USERS, }) diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 52524297d..1562845ba 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -163,7 +163,7 @@ func Issues(ctx *context.Context) { } else { total = int(issueStats.ClosedCount) } - pager := paginater.New(total, setting.IssuePagingNum, page, 5) + pager := paginater.New(total, setting.UI.IssuePagingNum, page, 5) ctx.Data["Page"] = pager // Get issues. @@ -1017,7 +1017,7 @@ func Milestones(ctx *context.Context) { } else { total = int(closedCount) } - ctx.Data["Page"] = paginater.New(total, setting.IssuePagingNum, page, 5) + ctx.Data["Page"] = paginater.New(total, setting.UI.IssuePagingNum, page, 5) miles, err := models.GetMilestones(ctx.Repo.Repository.ID, page, isShowClosed) if err != nil { diff --git a/routers/repo/view.go b/routers/repo/view.go index e787879d8..7bcdc1293 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -105,7 +105,7 @@ func Home(ctx *context.Context) { case isImageFile: ctx.Data["IsImageFile"] = true case isTextFile: - if blob.Size() >= setting.MaxDisplayFileSize { + if blob.Size() >= setting.UI.MaxDisplayFileSize { ctx.Data["IsFileTooLarge"] = true } else { ctx.Data["IsFileTooLarge"] = false diff --git a/routers/user/home.go b/routers/user/home.go index eb6a6f099..aaf660d48 100644 --- a/routers/user/home.go +++ b/routers/user/home.go @@ -253,7 +253,7 @@ func Issues(ctx *context.Context) { } else { total = int(issueStats.ClosedCount) } - ctx.Data["Page"] = paginater.New(total, setting.IssuePagingNum, page, 5) + ctx.Data["Page"] = paginater.New(total, setting.UI.IssuePagingNum, page, 5) // Get issues. issues, err := models.Issues(&models.IssuesOptions{