diff --git a/models/access.go b/models/access.go index 0d3259dea..54816c7bd 100644 --- a/models/access.go +++ b/models/access.go @@ -53,7 +53,7 @@ func ParseAccessMode(permission string) AccessMode { // that is not in this table is the real owner of a repository. In case of an organization // repository, the members of the owners team are in this table. type Access struct { - ID int64 `xorm:"pk autoincr"` + ID int64 UserID int64 `xorm:"UNIQUE(s)"` RepoID int64 `xorm:"UNIQUE(s)"` Mode AccessMode diff --git a/models/admin.go b/models/admin.go index 8816786d6..4daf80f63 100644 --- a/models/admin.go +++ b/models/admin.go @@ -15,8 +15,8 @@ import ( "github.com/go-xorm/xorm" log "gopkg.in/clog.v1" - "github.com/gogits/gogs/pkg/tool" "github.com/gogits/gogs/pkg/setting" + "github.com/gogits/gogs/pkg/tool" ) type NoticeType int @@ -27,7 +27,7 @@ const ( // Notice represents a system notice for admin. type Notice struct { - ID int64 `xorm:"pk autoincr"` + ID int64 Type NoticeType Description string `xorm:"TEXT"` Created time.Time `xorm:"-"` diff --git a/models/attachment.go b/models/attachment.go index 583cb10b6..fb4ec88db 100644 --- a/models/attachment.go +++ b/models/attachment.go @@ -20,7 +20,7 @@ import ( // Attachment represent a attachment of issue/comment/release. type Attachment struct { - ID int64 `xorm:"pk autoincr"` + ID int64 UUID string `xorm:"uuid UNIQUE"` IssueID int64 `xorm:"INDEX"` CommentID int64 diff --git a/models/comment.go b/models/comment.go index d18b14df9..673ca7803 100644 --- a/models/comment.go +++ b/models/comment.go @@ -49,7 +49,7 @@ const ( // Comment represents a comment in commit and issue page. type Comment struct { - ID int64 `xorm:"pk autoincr"` + ID int64 Type CommentType PosterID int64 Poster *User `xorm:"-"` diff --git a/models/issue.go b/models/issue.go index cf49f1734..ea7f3d22b 100644 --- a/models/issue.go +++ b/models/issue.go @@ -16,8 +16,8 @@ import ( api "github.com/gogits/go-gogs-client" "github.com/gogits/gogs/models/errors" - "github.com/gogits/gogs/pkg/tool" "github.com/gogits/gogs/pkg/setting" + "github.com/gogits/gogs/pkg/tool" ) var ( @@ -26,7 +26,7 @@ var ( // Issue represents an issue or pull request of repository. type Issue struct { - ID int64 `xorm:"pk autoincr"` + ID int64 RepoID int64 `xorm:"INDEX UNIQUE(repo_index)"` Repo *Repository `xorm:"-"` Index int64 `xorm:"UNIQUE(repo_index)"` // Index in one repository. @@ -1007,7 +1007,7 @@ func GetParticipantsByIssueID(issueID int64) ([]*User, error) { // IssueUser represents an issue-user relation. type IssueUser struct { - ID int64 `xorm:"pk autoincr"` + ID int64 UID int64 `xorm:"INDEX"` // User ID. IssueID int64 RepoID int64 `xorm:"INDEX"` diff --git a/models/issue_label.go b/models/issue_label.go index 1ce5df077..8c56a7fd8 100644 --- a/models/issue_label.go +++ b/models/issue_label.go @@ -54,7 +54,7 @@ func GetLabelTemplateFile(name string) ([][2]string, error) { // Label represents a label of repository for issues. type Label struct { - ID int64 `xorm:"pk autoincr"` + ID int64 RepoID int64 `xorm:"INDEX"` Name string Color string `xorm:"VARCHAR(7)"` @@ -213,7 +213,7 @@ func DeleteLabel(repoID, labelID int64) error { // IssueLabel represetns an issue-lable relation. type IssueLabel struct { - ID int64 `xorm:"pk autoincr"` + ID int64 IssueID int64 `xorm:"UNIQUE(s)"` LabelID int64 `xorm:"UNIQUE(s)"` } diff --git a/models/login_source.go b/models/login_source.go index 9da9ff943..12db78648 100644 --- a/models/login_source.go +++ b/models/login_source.go @@ -103,7 +103,7 @@ func (cfg *PAMConfig) ToDB() ([]byte, error) { // LoginSource represents an external way for authorizing users. type LoginSource struct { - ID int64 `xorm:"pk autoincr"` + ID int64 Type LoginType Name string `xorm:"UNIQUE"` IsActived bool `xorm:"NOT NULL DEFAULT false"` @@ -327,16 +327,16 @@ func LoginViaLDAP(user *User, login, password string, source *LoginSource, autoR IsActive: true, IsAdmin: isAdmin, } - + ok, err := IsUserExist(0, user.Name) if err != nil { return user, err } - + if ok { return user, UpdateUser(user) } - + return user, CreateUser(user) } diff --git a/models/milestone.go b/models/milestone.go index dbba03123..544ef8265 100644 --- a/models/milestone.go +++ b/models/milestone.go @@ -18,7 +18,7 @@ import ( // Milestone represents a milestone of repository. type Milestone struct { - ID int64 `xorm:"pk autoincr"` + ID int64 RepoID int64 `xorm:"INDEX"` Name string Content string `xorm:"TEXT"` diff --git a/models/mirror.go b/models/mirror.go index 778632b41..f48e8efa4 100644 --- a/models/mirror.go +++ b/models/mirror.go @@ -27,7 +27,7 @@ var MirrorQueue = sync.NewUniqueQueue(setting.Repository.MirrorQueueLength) // Mirror represents mirror information of a repository. type Mirror struct { - ID int64 `xorm:"pk autoincr"` + ID int64 RepoID int64 Repo *Repository `xorm:"-"` Interval int // Hour. diff --git a/models/org.go b/models/org.go index 9bf57ad9b..c93671cdb 100644 --- a/models/org.go +++ b/models/org.go @@ -237,7 +237,7 @@ func DeleteOrganization(org *User) (err error) { // OrgUser represents an organization-user relation. type OrgUser struct { - ID int64 `xorm:"pk autoincr"` + ID int64 Uid int64 `xorm:"INDEX UNIQUE(s)"` OrgID int64 `xorm:"INDEX UNIQUE(s)"` IsPublic bool diff --git a/models/org_team.go b/models/org_team.go index a7fe3a338..1b23f3a3f 100644 --- a/models/org_team.go +++ b/models/org_team.go @@ -16,7 +16,7 @@ const OWNER_TEAM = "Owners" // Team represents a organization team. type Team struct { - ID int64 `xorm:"pk autoincr"` + ID int64 OrgID int64 `xorm:"INDEX"` LowerName string Name string @@ -406,7 +406,7 @@ func DeleteTeam(t *Team) error { // TeamUser represents an team-user relation. type TeamUser struct { - ID int64 `xorm:"pk autoincr"` + ID int64 OrgID int64 `xorm:"INDEX"` TeamID int64 `xorm:"UNIQUE(s)"` UID int64 `xorm:"UNIQUE(s)"` diff --git a/models/pull.go b/models/pull.go index cc94ee3e3..b2a7b44ca 100644 --- a/models/pull.go +++ b/models/pull.go @@ -43,7 +43,7 @@ const ( // PullRequest represents relation between pull request and repositories. type PullRequest struct { - ID int64 `xorm:"pk autoincr"` + ID int64 Type PullRequestType Status PullRequestStatus diff --git a/models/release.go b/models/release.go index 1d387fb43..0307ab69c 100644 --- a/models/release.go +++ b/models/release.go @@ -22,7 +22,7 @@ import ( // Release represents a release of repository. type Release struct { - ID int64 `xorm:"pk autoincr"` + ID int64 RepoID int64 Repo *Repository `xorm:"-"` PublisherID int64 diff --git a/models/repo.go b/models/repo.go index 808ef1a46..0aa6afda8 100644 --- a/models/repo.go +++ b/models/repo.go @@ -141,7 +141,7 @@ func NewRepoContext() { // Repository contains information of a repository. type Repository struct { - ID int64 `xorm:"pk autoincr"` + ID int64 OwnerID int64 `xorm:"UNIQUE(s)"` Owner *User `xorm:"-"` LowerName string `xorm:"UNIQUE(s) INDEX NOT NULL"` @@ -2055,7 +2055,7 @@ func (repos MirrorRepositoryList) LoadAttributes() error { // Watch is connection request for receiving repository notification. type Watch struct { - ID int64 `xorm:"pk autoincr"` + ID int64 UserID int64 `xorm:"UNIQUE(watch)"` RepoID int64 `xorm:"UNIQUE(watch)"` } @@ -2161,7 +2161,7 @@ func NotifyWatchers(act *Action) error { // \/ \/ type Star struct { - ID int64 `xorm:"pk autoincr"` + ID int64 UID int64 `xorm:"UNIQUE(s)"` RepoID int64 `xorm:"UNIQUE(s)"` } diff --git a/models/repo_collaboration.go b/models/repo_collaboration.go index 240334096..c3135013b 100644 --- a/models/repo_collaboration.go +++ b/models/repo_collaboration.go @@ -14,7 +14,7 @@ import ( // Collaboration represent the relation between an individual and a repository. type Collaboration struct { - ID int64 `xorm:"pk autoincr"` + ID int64 RepoID int64 `xorm:"UNIQUE(s) INDEX NOT NULL"` UserID int64 `xorm:"UNIQUE(s) INDEX NOT NULL"` Mode AccessMode `xorm:"DEFAULT 2 NOT NULL"` diff --git a/models/repo_editor.go b/models/repo_editor.go index 3d01de6e2..643cc3828 100644 --- a/models/repo_editor.go +++ b/models/repo_editor.go @@ -307,7 +307,7 @@ func (repo *Repository) DeleteRepoFile(doer *User, opts DeleteRepoFileOptions) ( // Upload represent a uploaded file to a repo to be deleted when moved type Upload struct { - ID int64 `xorm:"pk autoincr"` + ID int64 UUID string `xorm:"uuid UNIQUE"` Name string } diff --git a/models/ssh_key.go b/models/ssh_key.go index 187193905..814f0db04 100644 --- a/models/ssh_key.go +++ b/models/ssh_key.go @@ -43,7 +43,7 @@ const ( // PublicKey represents a user or deploy SSH public key. type PublicKey struct { - ID int64 `xorm:"pk autoincr"` + ID int64 OwnerID int64 `xorm:"INDEX NOT NULL"` Name string `xorm:"NOT NULL"` Fingerprint string `xorm:"NOT NULL"` @@ -566,7 +566,7 @@ func RewriteAllPublicKeys() error { // DeployKey represents deploy key information and its relation with repository. type DeployKey struct { - ID int64 `xorm:"pk autoincr"` + ID int64 KeyID int64 `xorm:"UNIQUE(s) INDEX"` RepoID int64 `xorm:"UNIQUE(s) INDEX"` Name string diff --git a/models/token.go b/models/token.go index 9a69a6017..940d76f41 100644 --- a/models/token.go +++ b/models/token.go @@ -15,7 +15,7 @@ import ( // AccessToken represents a personal access token. type AccessToken struct { - ID int64 `xorm:"pk autoincr"` + ID int64 UID int64 `xorm:"INDEX"` Name string Sha1 string `xorm:"UNIQUE VARCHAR(40)"` diff --git a/models/user.go b/models/user.go index b6e187f77..95462a9e0 100644 --- a/models/user.go +++ b/models/user.go @@ -44,7 +44,7 @@ const ( // User represents the object of individual and member of organization. type User struct { - ID int64 `xorm:"pk autoincr"` + ID int64 LowerName string `xorm:"UNIQUE NOT NULL"` Name string `xorm:"UNIQUE NOT NULL"` FullName string @@ -1087,7 +1087,7 @@ func SearchUserByName(opts *SearchUserOptions) (users []*User, _ int64, _ error) // Follow represents relations of user and his/her followers. type Follow struct { - ID int64 `xorm:"pk autoincr"` + ID int64 UserID int64 `xorm:"UNIQUE(follow)"` FollowID int64 `xorm:"UNIQUE(follow)"` } diff --git a/models/user_mail.go b/models/user_mail.go index 7c1cdd16e..e9169d71e 100644 --- a/models/user_mail.go +++ b/models/user_mail.go @@ -14,7 +14,7 @@ import ( // EmailAdresses is the list of all email addresses of a user. Can contain the // primary email address, but is not obligatory. type EmailAddress struct { - ID int64 `xorm:"pk autoincr"` + ID int64 UID int64 `xorm:"INDEX NOT NULL"` Email string `xorm:"UNIQUE NOT NULL"` IsActivated bool diff --git a/models/webhook.go b/models/webhook.go index e4e774909..9a5fece3d 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -92,7 +92,7 @@ const ( // Webhook represents a web hook object. type Webhook struct { - ID int64 `xorm:"pk autoincr"` + ID int64 RepoID int64 OrgID int64 URL string `xorm:"url TEXT"` @@ -407,7 +407,7 @@ type HookResponse struct { // HookTask represents a hook task. type HookTask struct { - ID int64 `xorm:"pk autoincr"` + ID int64 RepoID int64 `xorm:"INDEX"` HookID int64 UUID string diff --git a/pkg/bindata/bindata.go b/pkg/bindata/bindata.go index 199c3b316..20eaef6b0 100644 --- a/pkg/bindata/bindata.go +++ b/pkg/bindata/bindata.go @@ -292,7 +292,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\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\x2f\x17\x5b\x22\xab\xd9\x3c\xf1\x6b\xaa\x8a\xd2\x68\x04\xa1\x94\x5d\x95\x24\x73\xbb\x58\x59\x53\x99\xd5\x2d\x0e\x8c\xc3\x0c\xee\xc1\x1f\xb0\xe1\x07\xdb\x77\x30\x70\x30\x70\x0f\xf6\x01\x67\x9f\xbd\x07\xdb\xc0\xee\x7a\xcf\x7e\x18\xdf\xbb\xf4\x3f\x9c\xe7\x7c\x86\x8d\xfb\x17\x8c\x88\xac\x22\x8b\xad\x96\x76\x16\x38\x03\x9e\x01\xd4\x64\x55\x66\x64\x66\x7c\xfe\x22\x22\xf9\x03\xf8\xe8\xa3\x8f\x60\xec\x3d\xf5\x7c\xa0\x7f\x46\x93\xde\xe0\xfc\x39\x84\x17\x83\x00\xce\x07\x43\x0f\xdf\x33\x3b\x6a\x3a\xf4\xdc\xc0\x83\x91\xfb\xc4\x83\xee\x85\x3b\xee\x7b\x01\x4c\xc6\xd0\x9d\xf8\xbe\x17\x4c\x27\xe3\xde\x60\xdc\x87\xee\x2c\x08\x27\x23\xe8\x4e\xc6\xe7\x83\xfe\x6d\x0a\x83\x73\x78\x3e\x99\x81\xeb\x7b\x30\x75\xbb\x4f\xdc\x3e\xce\x98\xfa\x93\xa7\x83\x9e\xe7\x3b\x3b\x0b\x4c\x9e\x21\xe5\xe9\x73\x98\x9c\xc3\x20\x24\x1a\xec\x0c\xdc\x3c\x87\x8c\xaf\x04\x98\x25\x37\xa0\x97\xea\x46\x83\xca\x40\x5c\x8b\x62\x0d\x39\x5f\x08\x30\xd2\xa4\x82\xb9\xd3\x69\x34\x76\x47\x1e\x74\xa0\xaf\x16\x9a\x9d\x41\xb8\x14\x76\xa6\x9a\x83\x59\x0a\xd0\x6b\x6d\xc4\x0a\x4a\x2d\x0a\x4b\xac\x28\x33\x6d\x07\xfb\xb3\x71\x34\x0b\x3c\x1f\x3a\xb0\x90\x86\x9d\x81\x27\xcd\x52\x14\xb0\x97\x88\xeb\x3d\x07\xf6\xf2\x42\x25\x7b\xa0\x0a\xd8\x33\x42\x9b\x3d\x1a\x3f\x9a\xf4\x70\xb1\x44\x5c\x33\xf6\x42\x8b\xe2\x5a\x14\x2f\xd9\xd4\x9f\x84\x93\xee\x64\x08\x1d\x58\x1a\x93\xb3\xde\x64\xe4\x0e\xc6\xd0\x81\x54\xc5\x3c\x5d\x2a\x6d\x98\x3f\x99\x84\xd1\xcc\xc7\x21\x3f\xbc\x57\x8f\xbf\xaf\x1f\xed\xef\xff\xf0\x9e\x1d\x7e\x5f\x3f\xfa\xe1\xbd\x8b\x30\x9c\x46\xd3\x89\x1f\xde\xd7\xfb\x8c\xbe\xb8\xbd\x1e\x6e\xf0\xa0\x4d\xff\xb3\xcd\x00\xe8\xc0\x83\x83\x83\x03\x76\x06\x53\x51\xac\xa4\xd6\x52\x65\x30\x57\x05\x94\x99\x7c\x0d\x5a\xc5\x57\xc2\xb0\xd9\x78\xf0\x79\x14\x4c\xba\x4f\xbc\x30\x9a\x7a\xfe\x68\x10\x04\x83\x09\x6e\xec\xe4\xe4\x84\x9d\xc1\x10\xb7\x07\xf7\x7a\xa3\x2f\xee\x03\xee\x0d\xa7\x23\x67\xe0\x46\x15\x57\xa2\xd0\x70\x4f\x97\xf1\x12\xb8\x86\x20\xb8\x80\x32\x4f\xb8\x11\xf7\x81\xc7\xb1\xd0\x5a\x66\x0b\xb8\x11\x97\x80\x3c\x90\xb1\x68\xb3\x33\x18\x64\xb0\x52\xda\x40\xcc\xb5\xd0\xb0\x56\x25\x24\x0a\x32\x65\x20\x13\x22\x01\xa3\x20\x5e\xf2\x0c\x45\xb7\x14\x90\x88\x39\x2f\x53\x03\xd7\x3c\x2d\x69\xb2\x9b\x1a\x51\x80\x34\xa0\xb2\x74\x0d\x72\x8e\xf3\x0b\x5a\xd7\x72\x19\x32\x95\x08\x90\x9a\x08\x92\x60\x51\xc8\x5c\x03\x72\x84\x5e\xb6\xd9\x70\xd2\x75\x87\xd1\x87\x58\xbd\x61\xe9\xbb\xdc\x3e\x83\x9e\xd4\xfc\x32\x15\xb4\xe8\x5c\x70\x53\x16\x02\x6e\x96\x22\xa3\x25\xf9\x35\x97\x29\xbe\x66\xbd\x41\xe0\x3e\x1e\x7a\x11\x0e\xeb\xc0\x9c\xa7\x5a\xb0\x33\x78\xb6\x14\xa4\x3c\xa5\x16\x70\x59\xca\xd4\xc8\xac\xb9\x7b\x85\x07\x30\x6d\x16\x84\xae\x1f\xe2\xd4\x28\xf0\xfc\xa7\xa4\x7b\x35\x85\x9e\x5a\x71\x99\x55\x6a\xaf\xe0\x52\x80\x78\x9d\x2b\x2d\x12\xa8\x48\xc5\xa9\xca\x04\x0a\x8a\xe1\xfc\x8d\x92\x6d\x15\x08\x95\x41\x15\x06\xb2\x72\x75\x89\xea\xfe\x9b\x89\x54\x9a\x74\x74\xc4\xce\x60\x2c\x0c\xca\x1d\x64\x66\x44\x31\xe7\xf1\x9d\xe7\x48\xa5\x36\x22\x43\x63\xa4\xf9\xc3\x41\x10\x7a\xe3\xe8\x62\x12\x84\x0d\x25\xdd\xdd\xc6\xf7\xa6\x52\x6d\xe6\x87\xf7\xea\x9d\xd1\x89\x7c\xa5\x0c\xe4\xdc\x2c\xd1\xa2\x91\x46\x22\x0b\x11\x1b\x55\xac\x9d\x8d\x16\x49\x0d\x1f\xff\xee\x7e\x5b\xeb\xe5\xc7\x0e\x5c\x96\x86\x94\x6f\xc9\xaf\x89\x91\x28\x91\x8f\xf7\x97\x6a\x25\xf6\x17\xd2\xd8\x51\x6d\x5a\x97\x34\x65\xea\x86\x17\xd0\x61\x67\xd0\x5d\x2a\xa5\xad\x76\xc6\x32\x5f\xa2\xfe\x1b\x05\xba\xcc\x73\x3c\x0c\xda\x06\xf1\x4f\x65\x99\x88\x8d\x54\x99\x66\x5b\x31\x46\xdd\xc1\xf4\xc2\xf3\x03\xe8\x00\x17\xfa\xf0\xe8\xb4\x15\x9b\xc2\xa1\xcf\x9f\x1e\x6d\x3e\x1f\x1d\x9f\x6c\x9f\x1f\x9d\xb6\x16\xf1\xea\xa7\x2a\x17\x99\xd6\xcb\x76\xac\x56\x0e\xf0\x22\x9e\xab\xb2\x38\x3a\x3e\xd9\x7c\x3e\x3c\x3a\x25\xd5\xac\xce\x4c\x66\x54\x08\x6e\x04\x18\xb1\xca\x55\xc1\x8b\x35\xcc\x65\x2a\xb4\x55\x55\xf4\x54\x90\x97\x97\xa9\x8c\xaf\xe0\x4a\xac\xa1\x24\x4b\xd5\x7a\xd9\xba\x12\xeb\x85\xc8\x1c\x76\xd6\x64\x5b\xe5\x1e\xb7\xb4\x36\xdc\xb5\x2c\x7a\xe2\x3d\x8f\x42\x2f\x68\xb0\x69\x8a\xa2\x40\xc6\x6c\x49\xee\xc8\x61\xfb\xfc\x63\xe0\x59\x02\xa9\x40\x07\x2e\xd2\x14\xe6\x32\x4b\x40\x95\x06\x6e\x96\x32\x5e\x02\xea\x21\x9e\x86\xa7\xe9\x66\xad\x3e\xaa\x01\xad\xd4\xa0\x4f\xae\x25\x91\x31\x1e\xfa\xa6\x32\x33\xf2\x26\x22\xbe\x82\x95\xcc\xe4\xaa\x5c\xd1\x59\xb5\xfc\x4a\xc0\x8d\x34\x4b\x88\x55\x51\x08\x9d\xab\x2c\xc1\xd3\x9b\x75\x2e\xd8\x68\x30\x1e\x8c\x66\x23\x3a\x51\x30\xf8\xc2\x8b\xba\x17\x5e\xf7\x49\xd3\xfe\x2a\xf3\xef\xf6\xc6\x18\x68\x32\xb4\x98\x2a\x06\xac\x54\x22\xd8\xe4\xfc\x7c\x38\x18\x7b\x75\x08\xb0\xd3\x6a\x67\xe0\x4f\x66\xa1\xe7\x47\xc3\x49\xbf\x41\xb1\x2f\x32\x51\xe0\xae\xb5\x11\xb9\x7e\xc4\xce\xe0\xef\x40\x7b\x7f\x81\x1e\x36\x16\x85\x81\x56\xcc\x3b\xa6\x28\x05\xb4\x92\xb2\xe0\xa8\x53\x9d\xd3\x4f\x4e\x0e\x96\x07\xab\x03\x0d\x2d\x8c\x1b\x9d\xd5\x1a\xff\xb4\xc5\x6b\xbe\xca\x53\x81\x5a\xc2\xce\xd8\x19\x4c\x0a\x98\x17\x6a\x05\x1c\xda\xf9\xfc\x35\x29\x00\x19\x7a\x61\x44\x62\xdf\xa0\x1a\x3f\x93\x59\x82\x91\x13\x17\x93\x73\xcb\x40\x6d\x54\x21\xe0\x5e\xa2\xd8\x19\xf9\xb5\xb9\x2a\x16\xc2\x20\x3f\xed\x7c\x9a\x98\x17\xf2\x1a\x07\x5f\x89\xf5\x7d\xbb\x6d\xab\xa6\x29\xe4\x57\xb1\x3e\x3c\x82\x96\xcc\x88\x2a\xad\xde\x42\x99\xda\x6f\x62\x05\xad\x4c\x5d\x89\xb5\xfe\x7e\xb3\xae\xc4\xba\x9e\x84\x2f\x34\x7e\x48\x84\x66\x5d\xcf\x0f\x23\x02\x15\x1d\x88\x4b\x6d\xd4\x6a\x1f\x23\xab\xde\xaf\x97\x61\x28\xc6\xbb\x06\x54\x14\xd9\x19\xcc\xf2\x1c\x5d\x8d\xb8\x16\x29\x81\x01\xb1\xca\x53\x3c\x14\x2a\xa5\x36\xdc\xc8\xd8\xf2\x0d\x7d\xcb\xae\x51\x10\x0b\x50\xcd\x6f\x96\xa2\x10\x36\x24\x4a\x0d\xe2\xb5\x88\x4b\x23\x12\x74\xe2\xe1\xa0\x7b\xcb\x7d\xf4\xaa\xf9\x34\x11\xbd\x05\x62\x98\x84\x1b\x4e\x20\xa5\xe7\x86\x6e\xad\xd9\xf4\x90\x30\x4e\x8a\x32\xc1\xc0\x6d\x77\xd9\xff\x62\x30\xad\x1d\x0e\xf3\xc6\xa4\x58\xf4\x6c\xab\x52\x43\x6e\x55\x9a\x30\xd0\x9c\xa2\x4a\xd6\x4a\xd5\x62\x21\x12\xc2\x38\xda\x81\x98\x67\xe8\xf7\xf7\xd0\xe3\x59\xf8\x22\x5e\xe7\xa9\x2a\xc4\x1e\x1b\xba\x04\xde\xa2\xa9\xdb\x47\xc6\xe1\x08\xc6\x5e\x14\x22\x57\x5a\xa2\xcd\xbf\xdc\xf1\xb7\x48\x1e\xd5\x05\xd7\xdb\x8c\x91\x42\x7f\xac\xe9\x08\x3b\x66\xbf\xf7\xbb\xfb\x3f\xc6\xf5\x31\x7a\xfd\x84\x54\xbc\xd5\x9c\xb2\x47\x00\x88\xf8\x84\x00\x4d\xc7\x85\xcc\x0d\xd9\x65\x1d\x12\xaa\x63\x6b\x07\xb4\x5a\x09\x23\x57\x42\x43\xac\xca\x34\xa1\xb3\xe8\xe5\x1e\x0b\xba\xfe\x60\x1a\x46\xe1\xf3\x29\xee\xfd\x92\xeb\x65\x83\xeb\xee\x38\x18\x20\xbe\x28\xb4\xb0\xbe\x9a\x67\x50\x66\x85\x88\xd5\x22\x93\x5f\x89\xa4\x7e\xc7\x70\x60\xd4\xbd\x70\xfd\xc0\xb3\xfb\x39\x57\x45\x2c\x2a\x64\x99\x89\x9b\xed\x49\xd7\x55\x00\xad\x8c\x81\x9d\x4f\xfc\xae\x17\x4d\xfd\xc1\x53\x37\xf4\x9a\x56\x9e\xaa\x4b\x9e\xc2\x8a\xbf\x26\x47\x44\xde\x99\x64\x2a\x57\x08\x67\xe6\x4d\x8a\xb9\x45\x08\x85\x03\xad\x43\x58\x09\x9e\x21\x9e\xb1\x23\xd9\xc8\xfd\x3c\xea\xfa\x9e\x1b\x0e\x26\xe3\x68\x38\x18\x0d\x30\x18\xb6\x0e\xd9\x19\x8c\x64\x51\xa0\x2c\xd6\x59\x0c\x5f\x96\xa2\x14\x90\x8a\x6c\x61\x96\x0e\xc8\x0c\x97\xd3\x02\x01\xd3\x6a\x3b\x8a\x5c\xbe\xe1\x68\x50\x08\xb9\x64\xb6\x60\xa3\x81\xef\x4f\xfc\xe8\xb3\x99\x37\xf3\xa2\xa1\x37\xee\x93\x2a\x1e\x56\x10\x92\x9b\x78\x69\x63\xc7\xfb\xe9\xe7\x65\x9a\x42\x21\xbe\x2c\x29\xc4\x6c\x66\xdc\xb1\xd6\x74\x36\x1c\x46\xbe\xf7\xd9\x0c\x03\xc7\x7b\x56\x2c\xc4\x5c\x14\x85\x48\x60\x28\x63\x91\x21\x60\x34\x0a\xf2\x14\x61\x07\xb7\x4e\xc8\xa8\xbc\x06\xf1\x88\x17\x10\xa1\x20\x34\x5a\x95\xda\xc0\x8a\x96\x27\xf3\x25\xbc\x84\x8e\x45\x65\xf3\xfd\xd4\x12\x43\xad\xaf\xbc\x42\xf3\x31\x9b\xfa\xde\xb9\xe7\xfb\x5e\x2f\x1a\x0e\xba\xde\x38\xf0\x30\x60\xbb\x39\x8f\x97\xa2\xde\x07\x1c\xb5\x0f\x1c\xe4\x7d\xf5\xbd\x11\x18\xf8\xa5\x4c\xa5\x21\xb5\x20\x8c\xc4\x63\x63\xa3\x4d\x53\xd3\xe1\x72\x6d\x21\x69\x5e\x28\xa3\x62\x95\x6e\x42\x04\xa1\xcd\x3e\x49\xb5\x56\x1d\x2f\xbb\x4d\x78\x25\x17\x14\x31\x1a\x3a\x73\xb9\xb6\x79\x84\x75\x54\x95\x5b\xb0\x50\x17\x1d\x4a\x34\x1a\xf4\x7d\x52\x9a\x06\xe1\xae\xca\xe2\xb2\x28\x44\x16\xaf\xd1\x3a\x4b\x6d\x01\x78\x21\x4c\x21\xc5\xb5\x80\x58\xad\x56\xd2\x68\x90\xd9\x5c\x15\x2b\xd2\xd7\x36\x84\x4b\xa9\xe1\x9a\x17\x92\x36\x95\x88\xb9\xcc\x90\x16\x0a\xa0\x56\xee\x0a\xd2\xa1\x58\xb8\xbe\xd2\x36\xa3\xaa\x1c\x4e\x51\x66\xb5\xe8\x08\x9b\xa3\x0d\xb7\x61\xa6\x4b\x9e\xa6\x6b\x07\x9f\xb3\x33\x8b\xf7\x21\x11\xb9\x40\x2c\x30\x87\xa5\xba\x81\x15\xcf\xd6\xd0\x9d\xce\x34\xdc\x8b\x55\x21\xf4\xfd\x0d\x7c\x6b\xc3\xc0\x2a\x80\x9d\x86\x78\xc5\xc6\xaa\xaf\x44\x81\x01\x8c\xd2\x9d\x04\xcd\xa9\x3f\xe9\x07\x70\x23\xd3\x14\x78\x69\x14\x9e\x08\x71\xc5\x1a\x12\x61\x44\x6c\x37\xb5\xdd\x3b\xad\x45\xf9\x45\x05\x7f\x70\x2d\xd6\x9d\x8c\x46\x83\x30\x88\xce\xbd\xb0\x7b\x11\x75\x27\xe3\xee\xcc\xf7\xbd\x71\xf7\x39\x22\xdb\xad\xb0\x0a\x81\x2b\x12\x24\x20\x47\x53\xf0\x1b\x52\xc4\x5a\x32\xbe\xfb\x8c\x02\x53\xe4\x7b\xe3\x9e\xe7\xef\xc2\x85\xa6\xb3\x6d\x8b\x04\xff\xa2\xcf\x1d\x4a\x4d\x9e\xa2\x8a\xe3\x88\x8d\x11\x60\x6e\xb2\x5f\x74\x83\x04\x67\x53\x99\x09\xb8\x29\x78\x8e\xa2\xa3\x53\x75\x55\x22\x2a\xff\x60\xe9\x61\x32\x15\x88\x9c\x93\x1a\x35\x68\x91\xa6\x72\x92\x3c\x6f\x43\xa8\xb6\xb4\x6a\xfc\x28\xcd\x12\x63\xf2\x66\x8e\x03\x3f\x2b\x09\x4d\x9a\x7a\x1e\x23\x00\xf4\xcc\x77\xa7\x91\xf7\x79\xe8\x8d\x31\x9b\x44\x13\x6a\x9b\xd7\xc6\x69\xaf\x12\xa7\xbd\xe2\xc5\x55\xa2\x6e\x32\xfc\x66\xff\x5c\x25\x08\x39\x9f\xf2\x54\x26\xf6\x7c\xc8\xb9\xea\x68\x74\x26\x0e\x79\x21\xae\xa5\xb8\x01\x77\x3a\x00\xae\xb5\x8a\x25\x47\x1c\x43\x3b\x36\x4b\xb1\x72\xa0\xce\x43\x79\x2e\xf7\xaf\x0f\xf7\xeb\x55\x76\xce\x4a\x3a\x42\xf6\x47\x7b\xd5\x6d\x74\x32\x44\xd7\xf0\x4b\x64\x17\xf2\xc7\xca\xed\x46\x65\x1f\xdb\xb2\x02\x3a\x36\x64\xe3\x2e\xe7\x21\x51\x42\xe3\x10\xf2\x33\xe8\x36\x9e\x0e\xbc\x67\x24\x5e\x12\x2d\xca\x14\xcf\x5d\xef\x63\x57\xae\x65\x9e\x2a\x9e\xbc\x6c\xaa\xcc\xc6\x98\x69\x1d\x3b\x40\xb7\x2b\x95\xe9\x41\x07\x10\x06\x36\xc0\x75\x8d\xc7\x65\xba\xae\x10\x5b\x35\x07\xee\x25\x4d\x9c\xb1\x10\x46\x43\x9c\x0a\x9e\x89\x04\x4f\x6e\xa1\x4a\x5d\x28\x21\xb7\x7c\x9f\x85\xde\x68\xda\xc4\x1e\xfb\x66\x95\xef\x57\xf4\x30\x00\xe2\x96\x30\x14\x57\x42\xe1\x85\x00\x9e\xa6\xea\xc6\xfa\x8c\xcb\x7a\x6d\x91\x38\x20\xda\x8b\x36\xc8\x15\x5f\x88\xfd\x9f\xe5\x62\xf1\xf7\xec\xc7\x3c\x5b\xb4\x61\x28\x50\x98\x62\x95\x9b\x75\x15\xd9\x88\x08\xa0\x71\xcf\xeb\x25\x98\x3b\x1c\x4e\x9e\x79\x3d\x8a\xe2\x01\xc5\xdf\x51\xe5\x5a\x08\xbc\xab\x39\x08\x5e\x7b\x76\x99\xc1\xe8\x31\xb3\x0c\x77\x3f\x27\xd0\x0e\x1d\x78\xd0\x98\xb3\x35\x69\xab\xc2\x14\x5e\x69\xb3\x14\x4d\x71\x2a\x8a\xe9\x98\x4a\x4a\xc6\xf0\x78\xb9\x12\x99\x41\x27\x82\x61\x4b\x5b\xfb\x15\x29\x46\x38\x8d\x22\xa4\x4f\x6d\xbe\x19\xf9\xb2\x91\xd8\x6f\x9f\x6a\x62\x91\x20\xd9\x26\xed\x1a\x82\x50\x00\x7b\x85\x72\x7c\xf5\x1e\xb9\x12\x2c\xd9\x52\xb9\x35\x93\x24\xd3\x78\xfd\x8a\x35\x45\xd6\x78\x81\xf0\x3f\xa3\x10\xb7\x52\x4d\x51\xa1\x04\x3f\x20\xa1\xdb\xac\x87\x1f\xed\xff\xc8\xb2\xf2\x5d\xd6\xef\x6e\xed\xc1\xd1\xe8\x31\x6b\x4a\xe0\xa8\x9a\xf7\x7e\xf6\xef\x12\x38\x3c\xd8\x11\xc7\xe1\x01\x63\x2f\x6a\xd3\x69\x98\xc9\x92\x17\x89\xf5\x4a\x97\x85\xe0\x57\x5b\x73\xac\x5d\xeb\x85\xeb\x63\xe4\x1e\x7b\xd1\x63\xdf\x73\x9b\xb9\x5b\xed\x40\x6d\xd0\x87\x99\x3f\x6c\x05\xf1\x52\xac\xee\xd2\x69\xae\x71\x91\xab\x2a\x61\xb6\xee\x1c\x41\xcc\xa8\x36\xe6\x33\x92\x54\x95\x72\xc1\x42\x1a\x67\xc5\x17\x99\x30\xcc\xd6\x3c\xa3\x99\x3f\x8c\x82\xee\x85\x37\xaa\x34\xf8\xfb\x78\xef\xcb\x3a\x70\x88\x64\x1f\xfd\x90\xdd\x47\x63\xc9\xef\xe5\xb2\xab\xd8\x53\xf9\xeb\x7d\xd5\xf0\x58\x5c\x6f\xbc\xd1\x1d\x7e\x9b\x8c\x68\xd7\x65\xbf\xcf\x5b\x33\xf6\x42\xaf\x78\x61\xd6\x39\xcf\x8c\x7e\xd9\xd0\x65\xcb\xec\x73\xdf\xed\x86\x15\x11\xd2\xee\x9e\x1b\x5c\x78\x9b\x6f\x43\x37\xf4\x3e\x8f\x76\x9f\xb9\xe3\xfe\xd0\xeb\x45\x9f\xcd\x26\xe1\xf6\x21\x7b\x81\x09\xdb\x4b\x1b\x1b\x4a\x1b\x4b\x5d\x2a\x2d\xb6\xba\x2a\x33\x85\x4a\x5b\x2e\x4a\xac\x35\x29\xe4\x42\x66\xb0\x14\x9c\x22\x7d\x23\xe9\xa0\x52\xa0\xc2\xf0\xa1\x45\x66\x98\xdb\xed\x7a\x41\x80\x91\x3b\xf4\x27\xc3\x88\xf4\x3d\x9a\xf8\x83\x3e\x95\xc9\x98\xcd\x16\x50\xbd\x36\x9a\x90\x2e\x54\x21\xcd\x72\xa5\x29\x29\x34\x4b\x21\x8b\x9d\x82\x82\x85\xc1\x70\xaf\xd4\x02\x01\xbb\x51\x90\xd4\x58\x90\xec\xed\x3e\x7b\xa1\xf5\xb2\x5d\x4d\x89\xae\xc4\x3a\x42\x5b\x42\xae\xf5\x8e\x8e\x8f\x0f\x3f\x85\x0e\x1c\x1d\x9f\x30\xaf\xdb\x0b\x5c\x80\xea\x9b\x4f\x9f\xe9\xdb\xc1\xc3\x53\xd6\xdb\x7c\x3d\x3c\x38\x7a\xc8\xd8\x0b\x34\xf8\x4b\xae\xc5\xcb\x46\x49\x7a\xb5\xd6\x5f\xa6\x54\x94\x56\xda\x2c\x0a\xa1\x6d\x66\xa7\xbf\x4c\xa5\x11\x0f\xf6\x1c\x82\x4c\x08\xc4\xaa\xfa\x14\xee\x35\x94\xbd\xc7\x56\x87\x46\xeb\xe0\xb3\x61\x03\x91\x3e\xae\xb3\x28\x22\xcb\xaa\xf2\xdd\xe1\xd1\x27\x54\xc0\x3b\x7c\xf4\xe0\xc1\xc1\x09\xab\xea\xea\x98\xcb\xb1\xaa\x4c\x5e\x28\x65\xd8\xd4\x0d\x82\x67\xbd\x3a\x77\xda\xd9\x51\x86\x40\x4f\xd4\x55\x74\xcb\x2a\xdc\x34\x66\x0d\xb2\xa8\xb2\xd1\x6b\x51\xc8\xf9\xba\x35\x2f\xd3\x74\x8f\x05\xc1\x70\x53\x53\xb7\xe3\x6b\xb2\xf5\xd1\x48\x34\x7b\x46\x26\x97\x7b\x0e\xd5\xf2\xf8\xa5\x56\x69\x69\xb6\x29\x7a\x46\x87\xa7\x60\x87\x66\x50\x55\xa4\x77\xdc\x27\x1e\xa2\x9d\x5c\x32\xf6\x82\x27\x2b\x49\x4e\xa7\x46\xf5\x85\x58\x94\x29\x2f\xe0\x1e\x66\xd2\xf4\xf6\xbe\xcd\xa4\x1b\xa5\x36\x55\x2c\x78\x26\xbf\xe2\xb6\xec\xb7\xa9\xf9\x78\xfd\xd9\xd0\xf5\xa3\x89\xdf\xdf\x24\x6e\x0d\xa4\xa7\x45\x5c\x16\xd2\xac\x5f\xb2\xc1\x38\x08\xdd\xe1\x10\x41\x7b\xd3\x69\x7d\xf4\x91\xed\xae\xd8\x26\x4c\x38\x81\x27\x9e\x37\x85\xe7\x93\x99\x0f\xc4\xef\x9e\x1b\xba\x10\xb8\xe7\xde\x47\x1f\xb1\xc0\xeb\xfa\x5e\x18\x3d\xf1\x10\x8d\x7e\xf4\x83\x9f\x9e\xf7\xbc\x67\xbe\xf7\xcc\xff\xbb\x3f\xba\x87\xb1\xad\x34\xaa\x95\x2a\x34\x93\x42\xac\x04\x79\xe5\x84\xaf\x35\x1b\x4e\xfa\x83\x71\xe4\x7b\x23\x6f\xf4\xd8\xf3\xa3\x9e\xfb\x1c\xed\xef\x13\xd6\x9d\x4c\x9e\x0c\x3c\xea\x7e\x34\xc4\x1c\xf1\x1b\x81\xd9\x77\xfd\x7a\x33\xaf\x39\x86\x52\xc2\x44\xa2\xa4\xaa\x61\x81\xd7\x9d\xf9\xcd\x8c\xd8\x47\xf8\xa1\x31\x73\x56\xaf\xd7\x08\xc8\x97\x22\x33\x75\xa9\xc3\xda\xf1\xa6\x47\x43\x8d\x19\xfc\xc2\x7c\xef\xa9\xe7\x07\x98\x61\x4f\x3e\x7f\x1e\xb9\xb3\xf0\xc2\x1b\x87\x83\xae\xcd\x87\x2b\x05\xfc\xbc\xf5\xcc\x7b\x8c\xaf\x5a\xf8\x60\x1b\x3a\x8c\xa2\xcc\x20\x56\xea\x4a\x0a\x9b\xa0\x55\x05\x43\xa2\x6f\x59\xa3\x0d\x37\xa5\xde\x66\x50\xc8\x9a\x20\x74\xc3\x19\xfa\x0c\x3c\xc9\xe6\x08\x77\xbc\xab\x79\x40\xa4\xa2\x8a\x94\x6d\x01\xc9\x58\xbc\x64\xe8\x14\x9f\x7a\x51\x77\xd2\xf3\xa2\x21\x7e\x1a\x0d\xc6\x33\xeb\xee\x0e\x4f\x0f\x98\xef\x05\x5e\x18\x59\xd3\x79\xef\xa0\x33\x98\x11\x37\xea\x76\x89\xca\xe6\xb2\x58\x81\x68\xad\xb8\x4c\x2b\xb0\xb2\x90\xda\xd8\x5a\x21\xf3\xbd\xfe\x20\x08\x3d\x3f\xf2\x46\xee\x60\x18\x51\x2b\xce\x1f\xed\x74\x14\x84\x75\x92\x16\x89\xd9\xc9\x08\x65\xb2\x04\x48\xd3\x6b\xfd\xe6\x71\xac\xca\xcc\xf6\x5e\x9a\xea\x3d\x08\xc2\x77\x52\x4b\xda\x22\x25\xe1\x5a\x2e\xa8\x48\x6a\x14\x10\xcc\xe6\xd9\xda\x2c\x65\xb6\x68\x33\xcc\xfd\x07\xbe\x17\x05\x83\xfe\x78\x30\x8e\x10\x3c\x37\x28\x8c\xf0\x34\x99\xaa\x4a\x92\x8d\xf8\x3e\x9e\x84\x83\xf3\xe7\x11\x9e\xa6\x39\x1c\x51\x4e\x22\x0c\x97\xe9\x23\xea\xaf\xe9\x47\xfb\xfb\x0b\x69\x96\xe5\x65\x3b\x56\x2b\xb4\x6d\x69\x34\x99\xf8\xbe\xd4\xba\x14\x7a\xff\xf0\xe4\x78\x93\x8e\x7d\x40\xab\x36\x8b\xbc\x6f\xec\xe4\x7d\x4c\xa8\xd4\x2e\xe6\xb9\x89\x97\x1c\x53\x0f\x99\x58\xf5\x7e\x47\x4a\x15\xed\xae\x3b\x0d\xbb\x17\xee\x36\xfa\xdd\x88\xcb\xa5\x52\x57\xe8\x8a\x42\x02\xdf\x0d\x50\x69\x1b\x79\xb5\x13\x2a\xb5\xd8\x56\xf5\xf0\x98\xe8\x52\x75\xca\xe3\x2b\xfc\x90\x48\x1d\xab\x22\xd9\x63\x35\xae\xc3\x11\x0e\xd0\x7b\x07\xaa\xb7\xec\x0c\x2e\x94\xba\xa2\xac\xfd\x03\x25\x9e\x6a\x4f\x08\x5a\xd4\x5d\x85\x9d\xbb\x6b\x39\x3d\x91\xca\x6b\x51\x50\xc2\x8f\x09\x24\x9a\x9a\x88\x55\x96\x68\xd6\xf3\x50\xcd\xfd\x28\x1c\x8c\xbc\xc9\x2c\x24\x2c\x7e\x06\x14\xd7\x41\x66\xe4\x21\x45\xa3\x3c\x8d\xfc\x0a\x9e\x0c\xa6\x51\x38\x0c\xa2\xa7\x9e\x3f\x38\x7f\xde\x60\xfa\x78\x03\x37\x97\x52\x53\x36\xd5\x28\x5f\x50\xd6\x83\xf8\x35\xe7\x0b\xf4\xfd\xfd\xc1\xb8\x1f\x8d\x67\xa3\x2d\xde\x94\xa9\x28\xde\x85\x33\x67\xf0\xb8\x9c\xcf\xa9\x50\x4c\xb1\x1e\x41\xe4\x92\x67\x99\x48\x1d\xb8\x12\x22\x07\x49\x41\x45\x12\xe0\xb0\x6d\x49\x48\x28\x7d\xbc\xca\xd4\x0d\xdc\x20\xc6\xa3\x97\x6d\x16\x78\xe3\x5e\xf4\x78\x76\x7e\xee\xf9\xc8\x23\xcb\xa0\xba\x6c\x95\x48\x9d\xa7\x7c\x6d\x1b\x71\x64\xcf\xb6\x83\x1d\xcc\x1e\xff\x8e\xd7\xb5\x7d\xaf\xba\x9b\x4d\x7d\x2f\xb2\x12\x5b\x1c\x65\x67\xd0\x5f\x91\xfa\xeb\x95\xc9\xdb\x0b\xfc\x8c\xaa\xff\xe8\xf8\xf4\x13\x76\x06\x9f\x7d\x56\xbd\xf8\xf2\x4b\x7a\xfa\xf0\x04\x99\x3c\x56\x46\x38\x75\x7a\x4b\x95\x7d\x91\x25\x15\xa6\xdc\x7b\x78\x72\xbc\xe7\x40\x30\x0a\xa7\x55\xd5\xe4\x92\x3c\x65\xd2\x86\x19\xf5\x8b\xa8\x4d\x19\x0e\x03\x50\x99\x9d\x7b\x7c\xfa\x09\x32\xa0\x10\x88\x27\x11\x85\x26\x84\xf6\xfd\xf3\x2e\x9c\x3c\x3c\xf8\x74\x53\xa8\xb9\x55\xcd\xdd\x12\x92\xa6\x2a\xcf\xa4\x37\x7c\xad\x37\xeb\x55\xd8\xa3\x11\x8f\x2f\xbc\xe1\x04\x54\x2e\xac\xf9\xd8\xf8\xbe\x54\xda\x50\xc0\x40\x1b\x49\x24\xca\x4b\x64\xa6\xbd\x2d\xad\xe1\x1c\xea\xe1\x59\xfc\xbf\x19\x8f\x76\xb4\x4b\x70\x07\x40\x52\xa7\xc4\xd6\x80\xda\x0c\xc7\x51\x27\xd3\x7a\x7a\xf2\x9f\xe4\x3d\x2d\x60\xb1\x8d\xc1\x46\x27\x45\x35\x4f\xdc\x86\x49\x96\xae\x09\x9f\x98\xa5\xb4\x99\xa5\x16\xe9\xbc\x85\x4e\x52\x24\xcd\x89\xda\xaa\x78\xad\xde\xd6\xa5\x42\x9c\x4a\x4c\x4d\x1b\xe3\x10\x74\x45\x5d\xcf\x0f\x07\xe7\xe8\xaf\xb6\xd1\xe9\x8e\xe6\x88\xd5\xee\x0f\x75\x47\xaa\x11\xdb\xf6\x08\xe9\x97\x6d\x22\x25\x49\x21\xb4\x76\x48\x9a\xc7\x0f\x8e\x8e\xaa\x52\x60\xe5\x72\x28\x99\xe0\x19\x08\xd2\xda\xcd\x60\x55\xd0\xf1\x5f\xed\xa1\x7a\xef\xc1\x8f\xe9\xf5\x4f\x1b\x8d\xaa\x9f\xbc\x02\x6b\x9d\xec\xdc\x9f\x8c\xaa\x5c\x1f\x37\xb1\x8d\xf9\x14\x89\x72\xae\xf5\x0d\xfa\x28\x1b\xe3\x9b\xf8\x12\x19\x63\xc4\x6b\xb3\x9f\xa7\x5c\x52\x8e\x63\x29\x92\x95\xaa\xcc\x20\xea\x47\x2e\x4d\x87\xee\x60\x1c\x85\xde\xe7\x61\x03\x7f\xc5\x3c\x5e\xee\x62\x68\xb1\x52\xc5\xda\xe2\xd1\x44\xa2\x17\x55\xf6\x29\x8d\xdc\xdb\xed\x67\x54\x83\x99\xdb\x73\xa7\x21\x61\x0f\xfb\xa4\x86\xa7\xd5\xfb\x0a\xf3\xf6\xbb\xb6\x24\x7c\xcd\xd3\x86\xfb\xdb\xa1\x78\x72\xc0\x06\xe3\xd0\xf3\x9f\xba\x18\xdc\x4e\x0e\x6a\x42\x76\x2f\x16\xe5\x36\xf6\xb2\xed\x33\x93\x36\xd7\x7c\x67\x67\x40\x13\x1e\x41\x66\xdb\xf5\x1d\x13\xe7\x0e\xbe\xec\x3c\x3a\x79\xf0\xc9\xa7\x4e\xcd\xcd\xce\x8a\xc7\xbc\x50\x99\x93\x5c\x76\x0e\x9c\x5c\xa9\x94\x52\x93\xce\xe1\xc1\x81\x23\x93\x54\x44\x95\xb7\xee\x58\xe0\x51\xaf\xfc\x08\x5e\x6d\xd3\x80\xc3\xc3\xa3\xc3\xc3\x57\xb5\x89\x22\xd8\xa1\x6b\x26\x77\xf3\x14\x93\xd2\x8a\xa5\x35\x7b\xef\xe2\x67\x7d\x0b\xa8\xc9\xd0\x69\xa1\xae\x25\x82\x42\x42\x3c\x0b\x50\xb9\x05\xda\x67\xd5\x90\x47\x64\x86\xb6\x58\x98\xad\xeb\x51\x6b\x61\x30\x55\x97\xa9\x78\x04\xd5\xce\xb6\x0d\xbd\xaa\x10\x62\xab\x2a\xd5\x5b\xfd\xea\xff\x19\xf7\x30\x8d\x7a\x04\x0b\xd5\xd2\x5f\xa6\xad\xa4\xc0\x70\xb8\x4f\x0f\x21\xd1\x59\xbd\x61\x6d\x0a\x99\x2d\xea\x9d\x61\x2e\xf5\xa8\x5e\xef\xa7\xf5\x1e\x23\x83\x4e\xf0\xd5\x86\x4d\x51\x75\xc1\xaa\xca\x63\xea\x93\x50\xc1\xc0\x1e\xb9\xc2\xbc\x04\xa1\x77\xa1\xaa\x8c\x52\x79\x25\x22\x8b\x8f\xd8\x19\xba\x68\x8c\x5e\xe8\xa3\x6a\x7e\x61\x5e\x8d\x88\xaa\x52\xe3\xa6\x6b\xb4\xae\xe6\x3d\x08\xbf\xc2\x3f\x5b\xcc\xbd\x33\x97\x10\x4e\x85\x7b\x10\xf6\x6e\xd0\x75\x55\x0d\xab\xb7\xde\xef\x12\x66\xd8\x98\xce\x0e\x91\x07\x27\x07\x07\xac\xdf\x8d\x6a\xa3\x21\x0c\x01\x1d\xfb\x7c\x4b\x23\x95\x73\xdb\x6a\xd8\x99\x7c\x7a\xf2\xf0\xe0\x80\x05\x1e\xdd\x77\x8a\x86\x83\x73\xaf\x9e\x6e\xdf\x9c\x41\x77\xcb\x36\x72\xd6\xdd\xc0\x3f\x67\xf8\xcf\x2d\xbc\x1f\xc5\xba\x98\x33\xf6\x22\x97\xb1\x29\x0b\xf2\x27\x9b\x1b\x10\xb6\x30\xab\x37\x55\x2f\x91\x00\xbf\xe6\x86\x17\x9a\xb9\x4f\xdd\xd0\xf5\xa3\xd9\x74\x38\x71\x7b\x3b\xc5\xd7\x7a\xc4\x19\x74\x97\x32\x13\x5a\x54\x40\x8f\x92\x77\x7b\x05\x65\x2f\x29\x95\x5e\x96\x6a\xcf\xb6\x38\x78\x5d\xd6\xb2\x53\x41\xab\xb2\x88\x85\x03\x28\x5d\x8b\x88\x1f\xed\xef\xc7\x59\x7b\x51\xd8\x01\x84\x8a\xed\xc7\x7d\xd6\xf7\xab\xad\x04\x93\x99\xdf\xa5\x2c\xae\x1a\x46\xbd\x58\xea\xf8\xa4\xa5\xd8\xa0\x80\xb9\x2a\xe2\x4d\xe1\x97\x2e\x27\xc8\x0c\xd4\x7c\x4e\x75\xb9\x15\x5d\xb3\xaa\xa3\x6e\x4d\xba\xa1\x17\xe7\x22\xa1\x1b\x0f\x35\x23\x20\x55\xea\xaa\xcc\xf1\x88\x1a\x7a\xe3\xa0\x2a\xa1\xc4\x0a\x41\x42\x35\x64\x5b\xf1\x67\x67\x16\x9e\x50\x28\x41\x0c\x2b\xc4\x06\xf0\xdf\xdc\xdc\xb4\x53\x79\x59\x1f\x51\x15\x8b\xef\xb1\x7f\xda\xd6\xed\x03\x20\x4b\xfb\x15\x1d\xd4\x95\x44\xea\x4b\x9e\x22\x16\xa9\x54\xf6\xdc\xeb\x79\xbe\x1b\x7a\xbd\x68\x73\x3e\x8b\xd9\xdf\x5f\x44\xb6\x79\x07\x7b\xf1\xb7\x55\x3a\xfe\xff\xbb\x72\x7c\xe7\xa0\xef\x55\x4a\x7e\xb8\x5b\x49\x7e\xf8\x5b\x16\x92\x8f\x6f\x97\xf5\x5f\xa0\xe5\x23\xab\x83\x5c\xc4\x72\x2e\x85\xbd\xbc\x51\xa1\x04\x64\xdb\xbc\x4c\xd3\x35\xa8\xd2\xe4\x25\xaa\x65\x82\x00\x6c\x97\xa8\x7f\xde\x3d\x3c\x3c\x7a\x50\x13\xe1\x69\x8d\x5e\x45\x52\xf7\x94\x50\x68\xee\x38\x18\x74\x1d\x98\x65\xf2\x75\x8f\x23\xb4\xf6\xcb\xcb\x75\xf5\xe9\xbc\x7b\x7a\x74\x54\xff\xfd\xc2\x7e\x38\x3e\x70\x6a\xd2\x9b\x0f\xf6\xd5\x83\x07\x0f\x3e\xdd\x7c\x18\xf3\x4c\x39\xf0\x44\x9a\x78\x29\x32\x07\x02\xc3\x57\x79\xf5\x67\x24\xd3\x54\x6e\x3e\xc7\x85\x22\x90\x40\x5f\x71\x56\x05\x20\x48\x94\xcd\x44\x88\x5f\x62\x12\xd6\x60\x43\x6d\x46\x98\x36\xab\x94\x67\x0b\xb4\x9e\xfd\xfc\x6a\xb1\x8f\xdc\xdb\xff\x41\x7e\xb5\x68\xc5\x2a\xd3\x86\xa3\x8e\x9c\x4f\xfc\x91\x4b\xf1\xbe\xbe\xc0\x94\x6e\x75\x5d\xcd\x81\x2e\x9b\x14\x9a\xbd\x48\xd5\xe2\x25\xbb\x75\x85\xae\x4a\x52\x91\x9a\x4a\x45\x85\x6a\x2a\x64\xd0\x44\x03\xf5\x80\x1a\xfc\xaa\xd5\x8a\xdb\x22\x4e\x55\x05\x5f\x95\xa9\x91\x79\xdd\x2d\xac\x94\xb3\x9e\xe6\x90\x9a\xec\xb1\xaa\x70\x58\x3d\xfd\xdb\x4c\xe5\xee\xc8\xe2\x6a\xc4\x13\x16\x3c\xa6\xa2\xe6\x20\x9b\x2b\xfc\xfb\x8c\x17\x19\xfe\xf5\x8a\x42\x15\xf8\xe1\x9c\x1b\x9e\xde\x3a\xb0\x9d\xc5\x86\xde\x53\x0f\xe1\x1f\x7d\x65\x35\x04\xdc\xb0\xcb\xba\xa7\x2c\x5d\x13\x77\xdb\xd5\x73\xd4\xef\xb4\xd1\x5d\xa3\xf2\xd6\x52\x14\xd2\xd4\xf4\x36\x94\x88\x2f\xb7\xc9\xe0\xc3\xef\x41\xa3\x72\xa7\xd6\x39\xe9\xba\x8f\x2e\x12\x94\x38\x14\xca\xa0\x58\xee\xe9\x1b\xd4\x54\xb2\x54\x85\xee\x03\x93\xc5\x0a\xae\xdd\x67\xc3\x49\x3f\xf2\x27\xa1\xcd\x55\x36\xb1\x7e\x41\xee\x12\x89\x24\x5c\xa6\x6b\xd6\x73\x07\xc3\xe7\xef\x8c\xdb\x38\x0f\xbd\x94\x73\x02\xf8\x98\x88\xa6\xb6\x33\xbb\xc3\xcb\xa3\xd3\xaa\xbf\x78\x08\x3f\xfe\x31\x1c\x9d\x3a\x70\x74\x7c\xd2\xf0\x2b\x51\x70\x31\x38\xa7\x5b\xad\xa7\x15\x5d\x72\xfd\x5b\x1f\xd3\x20\x4c\x93\x86\x83\x71\xd5\x97\xa2\xff\x50\xd6\xaf\x73\x59\x90\xb7\x58\xd7\x3a\x6f\xa1\xe5\xbd\x44\xa4\xc2\x08\xe0\x73\x23\x0a\x58\xf1\xd7\x34\xe4\x3e\x91\xd9\x14\x57\x37\x15\x6c\x2a\xd1\xdc\x96\x06\x3d\xfd\x5e\xe2\x78\x56\x55\x63\x66\xfe\x90\xd9\xfb\xcc\xcc\x92\x78\xad\x8a\x55\xa3\x6f\x46\x3b\x23\x01\x51\x55\xf0\x16\x63\x7d\x2b\x39\xdb\x11\x4e\xf8\xba\x1a\x10\x91\x18\xde\x19\xa6\xb2\xb8\x22\x48\xc2\x10\xaf\x63\xa1\x31\x76\xbf\x86\x5d\xcf\x6d\x6d\xa2\xee\xc3\x12\x9f\x8c\xb2\x56\x66\x1d\x84\xf5\xe4\x4d\xc6\x3c\xc0\x9c\xac\x50\xcd\x8e\x5f\x51\x66\x19\x6a\x10\x3e\xae\x6e\x94\xe4\xa2\x90\x2a\xb1\xb7\x37\xee\x68\x90\xfb\x65\xd6\x1c\x4d\xd5\x01\x6a\x7a\xdb\x4a\x55\x9b\x2e\xe9\xbb\x61\x44\x75\x87\x6d\x32\x78\x06\x33\xba\xbd\x5e\x5d\x92\xd2\x76\x27\x6d\x7b\xa5\x3d\xaa\x1e\xbe\x64\x41\xf7\xc2\xeb\xcd\x28\xfc\xfe\xd4\x32\xec\xf0\x60\xc5\xa8\xa2\xbd\xe9\xe0\x2f\x05\x4f\xcd\xd2\xde\x3e\xad\xc8\x14\x22\x57\x91\x7d\x1e\xd1\xf3\xbb\x28\x1d\x3d\x5c\xb2\x6d\x19\xec\xe4\x00\xa3\xb1\x5b\x2c\x4a\x0b\x0b\x30\x54\x91\x17\xcc\x12\xf8\x78\x21\x0d\xcc\x75\x7c\xf5\x71\xed\xf7\x5a\xad\x32\x2b\x30\xa4\x12\xd7\x5a\x2d\xc3\x17\x1a\x7d\x27\x7a\x76\xf2\xff\x2a\xdb\x78\x78\x69\x5a\x3a\x5e\x11\x06\x4c\x54\xac\xe9\x01\x12\xdb\x3f\x6c\x7f\xd2\x3e\x66\xae\xdf\x0f\xac\xc3\xe8\xd2\xfd\xd9\xc6\xdd\x04\xba\x14\xa9\x8d\x8c\x6b\xf6\xd0\x59\x22\x3a\x1d\xbe\xd3\x2f\x6f\x73\x97\x84\x72\xf7\x51\x71\x81\x54\xf0\xac\xcc\x9b\x4b\xf0\x22\x5e\xca\x6b\xa1\x9b\x8c\xab\x9e\x45\xb1\x1d\xfe\xce\x22\x56\x84\x77\xaf\x72\x06\x21\x26\x10\xf5\xf5\xd9\xed\xb5\x60\x39\xaf\xd7\x6a\x74\x60\xab\x8b\x12\x6c\x32\xc4\xcc\x2a\xbc\x70\xd1\xbb\xd3\x66\x5f\x2c\xa4\x69\x34\x85\x34\x2c\xe5\x62\x99\xca\xc5\x92\x3c\x11\x4f\x08\xda\x67\x09\x14\x62\xa5\xae\xed\x6d\xc2\x6c\x21\xb6\xad\xa0\xde\xe0\xfc\x3c\xba\x18\xf4\x2f\x86\x83\xfe\x45\xb8\x53\xeb\x6e\xa2\x1b\x74\x44\x7a\x83\xbb\x90\x72\xd3\x19\x21\x50\x4d\xe4\x7c\x4e\xd5\x74\xb2\x9c\xfe\x20\xb4\xa4\x9b\x2e\xea\x1d\xaa\xf1\x92\x17\x3c\x36\x98\x44\x10\xc9\xb4\xd9\xe3\xfc\x30\x4d\xba\x09\xe9\x76\x43\x7b\x75\xfd\xf8\x0e\xe2\x16\x90\xe9\xa5\xba\xc9\x3e\x40\x6b\xdb\xda\x3f\xf8\xb0\x5a\x2f\xe2\x86\x52\xf3\xc5\xa2\xc0\x34\xee\x1a\x75\x1a\xe3\xcd\x6f\xa3\xd3\x8b\xb8\xd2\xe8\x7e\x37\xda\x2a\xf5\x64\x53\x38\xbc\xa3\x1a\x8d\x52\x6e\x57\xcf\x5f\x32\x7b\x6f\xce\x23\x63\x3c\xa8\xee\x47\xda\x5f\xd5\xb0\xee\x70\x32\xf6\xaa\xcf\xd3\xd9\x70\x58\x7d\xec\x77\x6d\xe5\x86\xbd\xb0\x1e\xe3\x65\xe3\x02\x6a\xb3\xfc\xb3\x54\x65\xa1\xe1\x52\x98\x1b\x21\xaa\xaa\xb4\x75\x17\x3d\xef\xdc\x9d\x0d\xc3\xa8\x51\x08\x3a\x65\xec\x05\xcf\xe5\xcb\x77\x18\x2f\x8d\x58\x69\x9b\xd6\xd8\xab\xec\x36\x93\xe1\xb6\xc0\x8d\xdc\xb7\xbf\xc6\x0a\xbc\x68\x10\x7a\x23\x2b\x3f\xc6\x5e\x94\x44\x6b\x5b\x2b\xdf\xb9\x9c\xb8\xb9\x0c\x81\x02\xb5\xda\xa1\x32\xba\x3a\x9e\x22\xcb\x89\xb4\xf7\xf9\x74\x38\xf1\xbd\x68\xa7\x86\x7e\x74\xb0\x43\xd4\xe6\x3b\xef\x23\x47\x64\x06\x41\x30\xbb\x45\xe4\x70\x97\xc8\xe6\xc6\x6c\x75\x19\x71\x97\x08\x8f\x8d\xbc\x96\x66\x0d\x73\x21\x12\x76\xee\x79\x3d\xba\x05\x64\x6f\xe9\x55\x04\x8f\x37\xb7\x07\xd4\x1c\xf6\xcc\x52\xac\x44\x2b\x56\xa9\x2a\xf6\x60\x25\x0c\x07\xc3\x17\x8e\xbd\xfc\x78\xb9\x06\x37\x4b\x0a\x25\x13\xf8\x49\x07\x8e\xe9\x47\x2a\x2e\x6a\x34\xb5\x6e\x80\x26\x51\x42\x0d\x7b\x99\xca\xaa\x4e\x75\xdd\xc1\xb6\x52\xb0\xbf\x27\x69\xfc\x76\x49\x9b\x75\xba\x69\x50\x21\x02\xdf\xb6\xa7\x12\x71\x2d\x52\x95\x8b\x42\xb7\x17\x4a\x2d\x6c\x41\x74\xff\x46\x5c\xee\xdb\x90\xa3\xf7\x8f\x0e\x0e\x1f\xee\x1f\x1e\xee\x07\x36\xd7\x68\xcd\x55\xd1\x6a\x1c\xa0\x25\xb3\x56\x77\x59\xa8\x95\x68\x3d\xf8\x94\x5e\x56\xdb\x67\xe1\x85\x37\xf2\xa2\xee\x64\x38\xf1\xa3\x91\x17\xba\x51\xe8\xf6\xa1\x03\xaf\x7e\x30\x9f\x1f\x3f\x78\xf8\xe0\x55\x13\x4b\xc9\x0c\x2e\xd7\x46\xe8\xad\x21\xdb\xbc\x78\xdb\x8c\xb8\xd7\x2c\x9a\x8c\x1e\x57\x48\x66\x10\x4c\x87\xae\xad\x20\xd7\x01\xff\xf4\xc1\xe9\xe9\xc9\xc1\x29\x29\x58\x7b\xd3\x44\xdf\x0a\xb3\xea\x56\x7d\x40\x21\x66\x81\xe7\xef\xea\xc3\xf1\xc1\xbb\x9a\xfa\x41\x12\xbe\x37\x9d\x7c\x90\x44\xa6\x8c\x8c\x7f\x83\x62\x8e\x27\xe1\xa0\x7b\x5b\xbd\x8f\x77\xc8\x34\xfb\xfd\x1f\xa4\x35\xf1\xfb\xef\xec\x87\x38\x84\xec\xb8\xc3\x0e\x7f\xcb\xd3\x1d\xee\x6e\x2b\x13\x37\x9a\xcc\xe1\x37\x1c\xd0\x7b\x16\x44\x64\x30\x1f\x32\xe1\xda\xea\x3e\x44\xa9\xbe\x12\xbb\x43\xe7\x01\x1e\x51\x1e\x9e\x66\x2f\xd9\xd0\x1d\xa3\xe3\x05\x91\xb5\x66\x81\xf3\xd5\xb2\xd5\x1d\xe3\xbf\x17\x4f\xf0\xdf\xf0\x99\x93\x88\x56\xcf\x73\xe6\x45\xeb\xdc\x77\xb2\xb4\x35\x1e\x3a\xe9\x75\x6b\xf8\xd4\x29\xca\x96\x3f\x73\x7e\xc6\x5b\xbf\x33\x75\x84\x6e\x79\x81\x93\x9b\xd6\x63\xdf\xc9\xd3\xd6\x74\xe8\x5c\x2e\x5a\x8f\xfb\x8e\x34\xad\x41\xe8\xcc\x65\xeb\x7c\xe0\x98\xa2\x15\xfa\x4e\xac\x5b\xdd\x2f\x1c\x5d\xb4\x82\xa9\xa3\xaf\x5b\x81\xe7\x5c\xa9\xd6\x13\xdf\x59\xa4\x48\xa1\xbc\x6a\xcd\x5c\xba\xb4\x82\x3b\xf2\xb2\x45\x2a\xf5\xd2\xf9\xab\x7f\xff\xf5\x5f\xfe\xf9\x3f\xfb\xcb\x5f\xfc\xe9\x77\xbf\xff\xf7\x9d\xbf\xfa\xe5\x37\x7f\xfd\x6f\xff\xb9\xfd\xf2\x37\xbf\xfe\x07\x7f\xfd\x6f\xfe\xe5\x77\xbf\xf8\x0f\x7f\xf3\xeb\x7f\x78\xfb\xc5\xff\xf8\xa7\x3f\xff\xee\x97\xff\x15\x5f\xf4\x44\x69\x74\xbc\x74\xe6\x05\xcf\xbe\xfd\x63\x2e\xb5\x33\x16\x89\x28\x52\x9e\x25\xda\x49\xb9\xb9\x96\xe2\x2f\xfe\xa8\x74\xde\x7e\xfd\xf6\xf7\xde\x7e\xf3\xf6\x9b\x37\xbf\x7a\xf3\x8b\x37\xbf\x74\xbe\xfb\x83\x7f\xfd\xdd\x1f\xfe\xbb\xff\xf9\x27\xff\xca\x11\x3a\xe7\xdf\xfe\x99\x4a\x1d\xb4\xf1\x72\x51\x7e\xfb\x27\x1a\x12\x05\x8f\x0b\xae\x25\x3e\x4c\xf5\x95\x74\xde\xfc\xd9\xdb\x7f\xf4\xe6\xbf\xbc\xf9\x8f\x6f\x7e\xfe\xf6\x6b\x4b\xc3\x91\x86\xa7\x92\x67\xca\xd1\xa5\x5a\x49\x27\xfc\xf6\xd7\xc5\xd5\xb7\x7f\x2c\x9c\xff\xfe\x4f\xc4\x5f\xfc\x91\x91\x19\x77\xde\x7e\xf3\xf6\xeb\x37\xff\xad\x1a\xae\xaf\x45\xa6\xaf\xb8\xf3\x7f\xfe\xc5\x1f\xfe\xaf\xff\xfc\xa7\xff\xfb\xf7\xff\x93\xb3\xe0\xa9\x58\x28\xe7\xed\xef\xbd\xf9\xd5\xdb\xaf\xdf\xfc\xfc\xed\x1f\xbc\xf9\xf3\xb7\xdf\xbc\xfd\xc7\x6f\x7e\xf5\xe6\xe7\xcc\x26\xdd\xb6\xc9\x8c\xce\x08\x23\x62\x2e\xe3\x2b\x51\x58\xb9\xb6\xf1\x61\xca\xb3\xc5\x4b\x46\x82\x25\x01\x33\x92\x2e\x74\xe0\xab\x25\x23\x11\xd3\xc7\x56\xf8\x8c\xd1\xbf\x9b\x6f\x24\x72\xfa\x85\x2c\x23\xb9\x23\x16\x2a\x18\x09\x1f\x3a\x90\xa5\x8c\x34\x00\x3a\x90\x5e\x33\x52\x03\xe8\x40\x51\x32\xd2\x05\xe8\xc0\xcf\x38\x23\x85\xc0\x35\x35\x23\xad\x80\x0e\xd0\x5f\x46\xda\x81\xdf\x52\x46\x2a\x02\x1d\xb8\x5c\x30\xd2\x13\xe8\x80\x34\x8c\x94\x05\x17\x94\x8c\x34\x86\x10\x2a\x23\xb5\x81\x0e\xd0\x5f\x46\xea\x03\x1d\xd0\x05\x23\x1d\xc2\x8f\xd7\x8c\x14\x09\x3a\x70\xa5\x18\x69\x13\x74\x60\x91\x32\x52\x29\xe8\x40\x79\xc5\x28\x29\xac\xef\xda\xad\x78\x9e\xd3\xef\xca\x54\x03\x27\xc6\x29\xa7\xf6\x0c\x81\x9b\xb6\x51\xab\xb4\x23\x33\xc9\x5e\x6c\x46\xb4\xab\x69\x2f\x19\x7b\xa1\xcc\x12\xfd\x43\x70\x31\x79\x16\x9d\x4f\x26\xa1\xe7\x47\x8f\x7d\xfb\xe3\x9c\x06\x78\x0c\x96\xea\x06\xae\x45\x51\x95\xea\x6f\x97\x78\x28\xef\x41\x64\xd5\x57\xf5\x6d\xf0\xb9\x52\x46\x14\x3b\x74\x9f\x7a\x7e\xf5\xa3\xdf\x3a\x23\x47\xaa\x54\x77\x6f\xfe\x2a\xca\xfe\xb8\xa9\xea\x09\xbc\x87\x54\xe8\x8d\xa6\x43\xcc\x1d\xa9\xa8\x5d\x15\xd4\x89\xea\xff\x0d\x00\x00\xff\xff\x6e\x92\xaa\x75\x5f\x3e\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7b\xdd\x8f\xdc\x48\x92\xdf\x7b\xfe\x15\x31\xbd\x5e\x8f\xb4\x60\x55\x7f\xa9\x7b\x7a\xd4\x5b\x8b\xa5\xaa\xd8\xd5\x75\xaa\xaf\x21\x59\xd2\x68\x04\x81\xca\x26\xb3\xaa\x72\x9b\xc5\xe4\x30\x93\xdd\xaa\x81\x71\x98\xc1\x3d\xf8\x03\x36\xfc\x60\xfb\x0e\x06\x0e\x06\xee\xc1\x3e\xe0\xec\xb3\xf7\x60\x1b\xd8\x5d\xef\xd9\x0f\xe3\x7b\x97\xfe\x87\xf3\x9c\xcf\xb0\x71\xff\x82\x11\x91\x64\x15\x4b\x6a\x69\x67\x81\x33\x60\x09\xe8\x62\x91\x99\xc1\xcc\xf8\xfc\x45\x44\xd6\x0f\xe0\xa3\x8f\x3e\x82\xb1\xf7\xc4\xf3\x81\xfe\x8c\x26\xbd\xc1\xc5\x33\x08\x2f\x07\x01\x5c\x0c\x86\x1e\x3e\x67\x76\xd4\x74\xe8\xb9\x81\x07\x23\xf7\xb1\x07\xdd\x4b\x77\xdc\xf7\x02\x98\x8c\xa1\x3b\xf1\x7d\x2f\x98\x4e\xc6\xbd\xc1\xb8\x0f\xdd\x59\x10\x4e\x46\xd0\x9d\x8c\x2f\x06\xfd\xb7\x29\x0c\x2e\xe0\xd9\x64\x06\xae\xef\xc1\xd4\xed\x3e\x76\xfb\x38\x63\xea\x4f\x9e\x0c\x7a\x9e\xef\xec\xbc\x60\xf2\x14\x29\x4f\x9f\xc1\xe4\x02\x06\x21\xd1\x60\xe7\xe0\xe6\x39\x64\x7c\x25\xc0\x2c\xb9\x01\xbd\x54\xb7\x1a\x54\x06\xe2\x46\x14\x6b\xc8\xf9\x42\x80\x91\x26\x15\xcc\x9d\x4e\xa3\xb1\x3b\xf2\xa0\x03\x7d\xb5\xd0\xec\x1c\xc2\xa5\xb0\x33\xd5\x1c\xcc\x52\x80\x5e\x6b\x23\x56\x50\x6a\x51\x58\x62\x45\x99\x69\x3b\xd8\x9f\x8d\xa3\x59\xe0\xf9\xd0\x81\x85\x34\xec\x1c\x3c\x69\x96\xa2\x80\xbd\x44\xdc\xec\x39\xb0\x97\x17\x2a\xd9\x03\x55\xc0\x9e\x11\xda\xec\xd1\xf8\xd1\xa4\x87\x2f\x4b\xc4\x0d\x63\xcf\xb5\x28\x6e\x44\xf1\x82\x4d\xfd\x49\x38\xe9\x4e\x86\xd0\x81\xa5\x31\x39\xeb\x4d\x46\xee\x60\x0c\x1d\x48\x55\xcc\xd3\xa5\xd2\x86\xf9\x93\x49\x18\xcd\x7c\x1c\xf2\xc3\x7b\xf5\xf8\xfb\xfa\xe1\xfe\xfe\x0f\xef\xd9\xe1\xf7\xf5\xc3\x1f\xde\xbb\x0c\xc3\x69\x34\x9d\xf8\xe1\x7d\xbd\xcf\xe8\x8b\xdb\xeb\xe1\x02\x0f\xda\xf4\x9f\x6d\x06\x40\x07\x8e\x0f\x0e\x0e\xd8\x39\x4c\x45\xb1\x92\x5a\x4b\x95\xc1\x5c\x15\x50\x66\xf2\x15\x68\x15\x5f\x0b\xc3\x66\xe3\xc1\xe7\x51\x30\xe9\x3e\xf6\xc2\x68\xea\xf9\xa3\x41\x10\x0c\x26\xb8\xb0\xd3\xd3\x53\x76\x0e\x43\x5c\x1e\xdc\xeb\x8d\xbe\xb8\x0f\xb8\x36\x9c\x8e\x9c\x81\x5b\x55\x5c\x8b\x42\xc3\x3d\x5d\xc6\x4b\xe0\x1a\x82\xe0\x12\xca\x3c\xe1\x46\xdc\x07\x1e\xc7\x42\x6b\x99\x2d\xe0\x56\x5c\x01\xf2\x40\xc6\xa2\xcd\xce\x61\x90\xc1\x4a\x69\x03\x31\xd7\x42\xc3\x5a\x95\x90\x28\xc8\x94\x81\x4c\x88\x04\x8c\x82\x78\xc9\x33\x14\xdd\x52\x40\x22\xe6\xbc\x4c\x0d\xdc\xf0\xb4\xa4\xc9\x6e\x6a\x44\x01\xd2\x80\xca\xd2\x35\xc8\x39\xce\x2f\xe8\xbd\x96\xcb\x90\xa9\x44\x80\xd4\x44\x90\x04\x8b\x42\xe6\x1a\x90\x23\xf4\xb0\xcd\x86\x93\xae\x3b\x8c\x3e\xc4\xea\x0d\x4b\xdf\xe5\xf6\x39\xf4\xa4\xe6\x57\xa9\xa0\x97\xce\x05\x37\x65\x21\xe0\x76\x29\x32\x7a\x25\xbf\xe1\x32\xc5\xc7\xac\x37\x08\xdc\x47\x43\x2f\xc2\x61\x1d\x98\xf3\x54\x0b\x76\x0e\x4f\x97\x82\x94\xa7\xd4\x02\xae\x4a\x99\x1a\x99\x35\x57\xaf\x70\x03\xa6\xcd\x82\xd0\xf5\x43\x9c\x1a\x05\x9e\xff\x84\x74\xaf\xa6\xd0\x53\x2b\x2e\xb3\x4a\xed\x15\x5c\x09\x10\xaf\x72\xa5\x45\x02\x15\xa9\x38\x55\x99\x40\x41\x31\x9c\xbf\x51\xb2\xad\x02\xa1\x32\xa8\xc2\x40\x56\xae\xae\x50\xdd\x7f\x33\x91\x4a\x93\x8e\x8e\xd8\x39\x8c\x85\x41\xb9\x83\xcc\x8c\x28\xe6\x3c\xbe\x73\x1f\xa9\xd4\x46\x64\x68\x8c\x34\x7f\x38\x08\x42\x6f\x1c\x5d\x4e\x82\xb0\xa1\xa4\xbb\xcb\xf8\xde\x54\xaa\xc5\xfc\xf0\x5e\xbd\x32\xda\x91\xaf\x94\x81\x9c\x9b\x25\x5a\x34\xd2\x48\x64\x21\x62\xa3\x8a\xb5\xb3\xd1\x22\xa9\xe1\xe3\xdf\xdd\x6f\x6b\xbd\xfc\xd8\x81\xab\xd2\x90\xf2\x2d\xf9\x0d\x31\x12\x25\xf2\xf1\xfe\x52\xad\xc4\xfe\x42\x1a\x3b\xaa\x4d\xef\x25\x4d\x99\xba\xe1\x25\x74\xd8\x39\x74\x97\x4a\x69\xab\x9d\xb1\xcc\x97\xa8\xff\x46\x81\x2e\xf3\x1c\x37\x83\xb6\x41\xfc\x53\x59\x26\x62\x23\x55\xa6\xd9\x56\x8c\x51\x77\x30\xbd\xf4\xfc\x00\x3a\xc0\x85\x3e\x3c\x3a\x6b\xc5\xa6\x70\xe8\xfa\xd3\xa3\xcd\xf5\xd1\xc9\xe9\xf6\xfe\xd1\x59\x6b\x11\xaf\x7e\xaa\x72\x91\x69\xbd\x6c\xc7\x6a\xe5\x00\x2f\xe2\xb9\x2a\x8b\xa3\x93\xd3\xcd\xf5\xe1\xd1\x19\xa9\x66\xb5\x67\x32\xa3\x42\x70\x23\xc0\x88\x55\xae\x0a\x5e\xac\x61\x2e\x53\xa1\xad\xaa\xa2\xa7\x82\xbc\xbc\x4a\x65\x7c\x0d\xd7\x62\x0d\x25\x59\xaa\xd6\xcb\xd6\xb5\x58\x2f\x44\xe6\xb0\xf3\x26\xdb\x2a\xf7\xb8\xa5\xb5\xe1\xae\x65\xd1\x63\xef\x59\x14\x7a\x41\x83\x4d\x53\x14\x05\x32\x66\x4b\x72\x47\x0e\xdb\xfb\x1f\x03\xcf\x12\x48\x05\x3a\x70\x91\xa6\x30\x97\x59\x02\xaa\x34\x70\xbb\x94\xf1\x12\x50\x0f\x71\x37\x3c\x4d\x37\xef\xea\xa3\x1a\xd0\x9b\x1a\xf4\xc9\xb5\x24\x32\xc6\x4d\xdf\x56\x66\x46\xde\x44\xc4\xd7\xb0\x92\x99\x5c\x95\x2b\xda\xab\x96\x5f\x09\xb8\x95\x66\x09\xb1\x2a\x0a\xa1\x73\x95\x25\xb8\x7b\xb3\xce\x05\x1b\x0d\xc6\x83\xd1\x6c\x44\x3b\x0a\x06\x5f\x78\x51\xf7\xd2\xeb\x3e\x6e\xda\x5f\x65\xfe\xdd\xde\x18\x03\x4d\x86\x16\x53\xc5\x80\x95\x4a\x04\x9b\x5c\x5c\x0c\x07\x63\xaf\x0e\x01\x76\x5a\xed\x0c\xfc\xc9\x2c\xf4\xfc\x68\x38\xe9\x37\x28\xf6\x45\x26\x0a\x5c\xb5\x36\x22\xd7\x0f\xd9\x39\xfc\x1d\x68\xef\x2f\xd0\xc3\xc6\xa2\x30\xd0\x8a\x79\xc7\x14\xa5\x80\x56\x52\x16\x1c\x75\xaa\x73\xf6\xc9\xe9\xc1\xf2\x60\x75\xa0\xa1\x85\x71\xa3\xb3\x5a\xe3\x47\x5b\xbc\xe2\xab\x3c\x15\xa8\x25\xec\x9c\x9d\xc3\xa4\x80\x79\xa1\x56\xc0\xa1\x9d\xcf\x5f\x91\x02\x90\xa1\x17\x46\x24\xf6\x09\xaa\xf1\x53\x99\x25\x18\x39\xf1\x65\x72\x6e\x19\xa8\x8d\x2a\x04\xdc\x4b\x14\x3b\x27\xbf\x36\x57\xc5\x42\x18\xe4\xa7\x9d\x4f\x13\xf3\x42\xde\xe0\xe0\x6b\xb1\xbe\x6f\x97\x6d\xd5\x34\x85\xfc\x3a\xd6\x87\x47\xd0\x92\x19\x51\xa5\xb7\xb7\x50\xa6\xf6\x9b\x58\x41\x2b\x53\xd7\x62\xad\xbf\xdf\xac\x6b\xb1\xae\x27\xe1\x03\x8d\x17\x89\xd0\xac\xeb\xf9\x61\x44\xa0\xa2\x03\x71\xa9\x8d\x5a\xed\x63\x64\xd5\xfb\xf5\x6b\x18\x8a\xf1\xae\x01\x15\x45\x8a\x28\xa9\xba\x15\x09\x84\xc3\x00\x6e\x44\x41\x01\x92\xc2\x8d\x7e\x08\x41\x30\x3c\x3e\x70\xf0\xd1\x61\xf5\x71\x68\x3f\x8e\x58\x38\x0c\xa2\xd1\x60\x1c\x3d\xf1\xfc\x2a\x58\xd2\x28\x44\x25\xb3\x3c\x47\xe7\x25\x6e\x44\x4a\xf0\x42\xac\xf2\x14\xd9\x84\x6a\xae\x0d\x37\x32\xb6\x92\x40\x6f\xb5\x6b\x66\xc4\x54\x34\x9c\xdb\xa5\x28\x84\x0d\xb2\x52\x83\x78\x25\xe2\xd2\x88\x04\xc3\x42\x38\xe8\xbe\xe5\x90\x7a\xd5\x7c\x9a\x88\xfe\x07\x51\x51\xc2\x0d\x27\xd8\xd3\x73\x43\xb7\xb6\x15\xba\x49\xa8\x29\x45\x29\xe3\x4e\xed\x2a\xfb\x5f\x0c\xa6\xb5\x0b\x63\xde\x98\x54\x95\xee\x6d\x95\x74\xc8\xad\x91\x10\xaa\x9a\x53\x9c\xca\x5a\xa9\x5a\x2c\x44\x42\xa8\x49\x3b\x10\xf3\x0c\x23\xc9\x1e\xfa\x50\x0b\x88\xc4\xab\x3c\x55\x85\xd8\x63\x43\x97\xe0\x60\x34\x75\xfb\x28\x0a\x1c\xc1\xd8\xf3\x42\xe4\x4a\x4b\xf4\x22\x2f\x76\x3c\x38\x92\x47\x05\xc4\xf7\x6d\xc6\x48\xa1\x3f\xd6\xb4\x85\x1d\x47\xb2\xf7\xbb\xfb\x3f\xc6\xf7\x63\x3c\xfc\x09\x19\x4d\xab\x39\x65\x8f\x20\x15\xf1\x09\x21\x9f\x8e\x0b\x99\x1b\xb2\xf4\x3a\xc8\x54\xdb\xd6\x0e\x68\xb5\x12\x46\xae\x84\x86\x58\x95\x69\x42\x7b\xd1\xcb\x3d\x16\x74\xfd\xc1\x34\x8c\xc2\x67\x53\x5c\xfb\x15\xd7\xcb\x06\xd7\xdd\x71\x30\x40\xc4\x52\x68\x61\xbd\x3f\xcf\xa0\xcc\x0a\x11\xab\x45\x26\xbf\x12\x49\xfd\x8c\xe1\xc0\xa8\x7b\xe9\xfa\x81\x67\xd7\x73\xa1\x8a\x58\x54\x58\x35\x13\xb7\xdb\x9d\xae\xab\x90\x5c\x99\x17\xbb\x98\xf8\x5d\x2f\x9a\xfa\x83\x27\x6e\xe8\x35\xfd\x46\xaa\xae\x78\x0a\x2b\xfe\x8a\x5c\x1b\xf9\x7b\x92\xa9\x5c\x21\x40\x9a\x37\x29\xe6\x16\x73\x14\x0e\xb4\x0e\x61\x25\x78\x86\x08\xc9\x8e\x64\x23\xf7\xf3\xa8\xeb\x7b\x6e\x38\x98\x8c\xa3\xe1\x60\x34\xc0\xf0\xda\x3a\x64\xe7\x30\x92\x45\x81\xb2\x58\x67\x31\x7c\x59\x8a\x52\x40\x2a\xb2\x85\x59\x3a\x20\x33\x7c\x9d\x16\x08\xc1\x56\xdb\x51\x14\x44\x0c\x47\x13\x45\x10\x27\xb3\x05\x1b\x0d\x7c\x7f\xe2\x47\x9f\xcd\xbc\x99\x17\x0d\xbd\x71\x9f\x54\xf1\xb0\x02\xa5\xdc\xc4\x4b\x1b\x8d\xde\x4f\x3f\x2f\xd3\x14\x0a\xf1\x65\x49\x41\x6b\x33\xe3\x8e\x77\x4d\x67\xc3\x61\xe4\x7b\x9f\xcd\x30\x14\xbd\xe7\x8d\x85\x98\x8b\xa2\x10\x09\x0c\x65\x2c\x32\x84\xa0\x46\x41\x9e\x22\x90\xe1\xd6\xad\x19\x95\xd7\x69\x01\x22\x10\xc4\x3c\x08\xb6\x56\xa5\x36\xb0\xa2\xd7\x93\xf9\x12\x02\x43\x57\xa5\xb2\xf9\x7e\x6a\x89\xa1\xd6\x57\x7e\xa6\x79\x9b\x4d\x7d\xef\xc2\xf3\x7d\xaf\x17\x0d\x07\x5d\x6f\x1c\x78\x08\x01\xdc\x9c\xc7\x4b\x51\xaf\x03\x8e\xda\x07\x0e\xf2\xbe\xfa\xde\x08\x35\xfc\x4a\xa6\xd2\x90\x5a\x10\xea\xe2\xb1\xb1\xf1\xab\xa9\xe9\x70\xb5\xb6\x20\x37\x2f\x94\x51\xb1\x4a\x37\x41\x87\xf0\x6b\x9f\xa4\x5a\xab\x8e\x97\xbd\x4d\x78\x25\x17\x14\x83\x1a\x3a\x73\xb5\xb6\x99\x89\x75\x54\x95\x5b\xb0\xe0\x19\x1d\x4a\x34\x1a\xf4\x7d\x52\x9a\x06\xe1\xae\xca\xe2\xb2\x28\x44\x16\xaf\xd1\x3a\x4b\x6d\x21\x7d\x21\x4c\x21\xc5\x8d\x80\x58\xad\x56\xd2\x68\x90\xd9\x5c\x15\x2b\xd2\xd7\x36\x84\x4b\xa9\xe1\x86\x17\x92\x16\x95\x88\xb9\xcc\x90\x16\x0a\xa0\x56\xee\x0a\x24\xa2\x58\xb8\xbe\xd6\x36\x47\xab\x1c\x4e\x51\x66\xb5\xe8\x08\xed\xa3\x0d\xb7\x61\xa6\x4b\x9e\xa6\x6b\x07\xef\xb3\x73\xeb\xd2\x21\x11\xb9\x40\x74\x31\x87\xa5\xba\x85\x15\xcf\xd6\xd0\x9d\xce\x34\xdc\x8b\x55\x21\xf4\xfd\x0d\x20\x6c\xc3\xc0\x2a\x80\x9d\x86\x08\xc8\x46\xbf\xaf\x44\x81\x21\x91\x12\xa8\x04\xcd\xa9\x3f\xe9\x07\x70\x2b\xd3\x14\x78\x69\x14\xee\x08\x91\xca\x1a\x12\x61\x44\x6c\x17\xb5\x5d\x3b\xbd\x8b\x32\x96\x0a\x50\xe1\xbb\x58\x77\x32\x1a\x0d\xc2\x20\xba\xf0\xc2\xee\x65\xd4\x9d\x8c\xbb\x33\xdf\xf7\xc6\xdd\x67\x88\x95\xb7\xc2\x2a\x04\xbe\x91\x40\x06\x39\x9a\x82\xdf\x92\x22\xd6\x92\xf1\xdd\xa7\x14\xea\x22\xdf\x1b\xf7\x3c\x7f\x17\x80\x34\x9d\x6d\x5b\x24\xf8\x89\x3e\x77\x28\x35\x79\x8a\x0a\x19\x20\xda\x46\xc8\xba\xc9\xa7\xd1\x0d\x12\x40\x4e\x65\x26\xe0\xb6\xe0\x39\x8a\x8e\x76\xd5\x55\x89\xa8\xfc\x83\xa5\x87\xe9\x59\x20\x72\x4e\x6a\xd4\xa0\x45\x9a\xca\x49\xf2\xbc\x0d\xa1\xda\xd2\xaa\x11\xa9\x34\x4b\x8c\xf2\x9b\x39\x0e\xfc\xac\x24\x7c\x6a\xea\x79\x8c\x20\xd5\x53\xdf\x9d\x46\xde\xe7\xa1\x37\xc6\x90\x8b\x26\xd4\x36\xaf\x8c\xd3\x5e\x25\x4e\x7b\xc5\x8b\xeb\x44\xdd\x66\xf8\xcd\x7e\x5c\x27\x08\x62\x9f\xf0\x54\x26\x76\x7f\xc8\xb9\x6a\x6b\xb4\x27\x0e\x79\x21\x6e\xa4\xb8\x05\x77\x3a\x00\xae\xb5\x8a\x25\x47\x64\x44\x2b\x36\x4b\xb1\x72\xa0\xce\x6c\x79\x2e\xf7\x6f\x0e\xf7\xeb\xb7\xec\xec\xd5\xa2\x05\x34\x17\x5a\xab\x6e\xa3\x93\x21\xba\x86\x5f\x21\xbb\x90\x3f\x56\x6e\xb7\x2a\xfb\xd8\x16\x2a\xd0\xb1\x21\x1b\x77\x39\x0f\x89\x12\x1a\x87\x90\x9f\x41\xb7\xf1\x64\xe0\x3d\x25\xf1\x92\x68\x51\xa6\xb8\xef\x7a\x1d\xbb\x72\x2d\xf3\x54\xf1\xe4\x45\x53\x65\x36\xc6\x4c\xef\xb1\x03\x74\xbb\x52\x99\x1e\x74\x00\x81\x65\x03\xae\xd7\x08\x5f\xa6\xeb\x0a\x03\x56\x73\xe0\x5e\xd2\xc4\x19\x0b\x61\x34\xc4\xa9\xe0\x99\x48\x70\xe7\x16\xaa\xd4\xa5\x17\x72\xcb\xf7\x59\xe8\x8d\xa6\x4d\xec\xb1\x6f\x56\xf9\x7e\x45\x0f\x03\x20\x2e\x09\x43\x71\x25\x14\x5e\x08\xe0\x15\x1a\xb3\x11\xd0\x8e\x15\x89\x03\xa2\xbd\x68\x83\x5c\xf1\x85\xd8\xff\x59\x2e\x16\x7f\xcf\x5e\xe6\xd9\xa2\x0d\x43\x81\xc2\x14\xab\xdc\xac\xab\xc8\x46\x44\x00\x8d\x7b\x5e\xbf\x82\xb9\xc3\xe1\xe4\xa9\xd7\xa3\x28\x1e\x50\xfc\x1d\x55\xae\x85\xd2\x01\x35\x07\xc1\x6b\xcf\x2e\x33\x18\x3d\x62\x96\xe1\xee\xe7\x94\x06\x40\x07\x8e\x1b\x73\xb6\x26\x6d\x55\x98\xc2\x2b\x2d\x96\xa2\x29\x4e\x45\x31\x9d\x50\x91\xca\x18\x1e\x2f\x57\x22\x33\xe8\x44\x30\x6c\x69\x6b\xbf\x22\xc5\x08\xa7\x51\x84\x74\xd5\xe6\x9b\x91\x2f\x1a\xa5\x82\xed\x5d\x4d\x2c\x12\x24\xdb\xa4\x5d\x43\x10\x0a\x60\x2f\x51\x8e\x2f\xdf\x23\x57\x82\x25\x5b\x2a\x6f\xcd\x24\xc9\x34\x1e\xbf\x64\x4d\x91\x35\x1e\x60\x42\x91\x51\x88\x5b\xa9\xa6\xa8\x50\x82\x1f\x90\xd0\xdb\xac\x87\x1f\xed\xff\xc8\xb2\xf2\x5d\xd6\xef\x2e\xed\xf8\x68\xf4\x88\x35\x25\x70\x54\xcd\x7b\x3f\xfb\x77\x09\x1c\x1e\xec\x88\x03\xe1\xf9\xf3\xda\x74\x1a\x66\xb2\xe4\x45\x62\xbd\xd2\x55\x21\xf8\xf5\xd6\x1c\x6b\xd7\x7a\xe9\xfa\x18\xb9\xc7\x5e\xf4\xc8\xf7\xdc\x66\x36\x58\x3b\x50\x1b\xf4\x61\xe6\x0f\x5b\x41\xbc\x14\xab\xbb\x74\x9a\x6b\x7c\xc9\x75\x95\x82\x5b\x77\x8e\x20\x66\x54\x1b\xf3\x39\x49\xaa\x4a\xe2\x60\x21\x8d\xb3\xe2\x8b\x4c\x18\x66\xab\xa8\xd1\xcc\x1f\x46\x41\xf7\xd2\x1b\x55\x1a\xfc\x7d\xbc\xf7\x55\x1d\x38\x44\xb2\x8f\x7e\xc8\xae\xa3\xf1\xca\xef\xe5\xb2\xab\xd8\x53\xf9\xeb\x7d\xd5\xf0\x58\x5c\x6f\xbc\xd1\x1d\x7e\x9b\x8c\x68\xd7\x65\xbf\xcf\x5b\x33\xf6\x5c\xaf\x78\x61\xd6\x39\xcf\x8c\x7e\xd1\xd0\x65\xcb\xec\x0b\xdf\xed\x86\x15\x11\xd2\xee\x9e\x1b\x5c\x7a\x9b\x6f\x43\x37\xf4\x3e\x8f\x76\xef\xb9\xe3\xfe\xd0\xeb\x45\x9f\xcd\x26\xe1\xf6\x26\x7b\x8e\x29\xe0\x0b\x1b\x1b\x4a\x1b\x4b\x5d\x2a\x56\xb6\xba\x2a\x33\x85\x4a\x5b\x94\x13\xb6\x26\x85\x5c\xc8\x0c\x96\x82\x53\xa4\x6f\x24\x1d\x54\x5c\x54\x18\x3e\xb4\xc8\x0c\x73\xbb\x5d\x2f\x08\x30\x72\x87\xfe\x64\x18\x91\xbe\x47\x13\x7f\xd0\x1f\x8c\xa1\xc3\x6c\xb2\x80\xda\xb5\x51\x84\x74\xa1\x0a\x69\x96\x2b\x4d\x39\xa1\x59\x0a\x59\xec\x54\x28\x2c\x0a\x86\x7b\xa5\x16\x88\xd7\x8d\x82\xa4\x86\x82\x64\x6e\xf7\xd9\x73\xad\x97\xed\x6a\x4a\x74\x2d\xd6\x11\x9a\x12\x32\xad\x77\x74\x72\x72\xf8\x29\x74\xe0\xe8\xe4\x94\x79\xdd\x5e\xe0\x02\x54\xdf\x7c\xba\xa6\x6f\x07\x0f\xce\x58\x6f\xf3\xf5\xf0\xe0\xe8\x01\x63\xcf\xd1\xde\xaf\xb8\x16\x2f\x1a\x35\xee\xd5\x5a\x7f\x99\x52\x95\x5b\x69\xb3\x28\x84\xb6\x89\x9d\xfe\x32\x95\x46\x1c\xef\x39\x84\x98\x10\x87\x55\x05\x2f\x5c\x6b\x28\x7b\x8f\xac\x0a\x8d\xd6\xc1\x67\xc3\x06\x20\x7d\x54\x27\x51\x44\x96\x55\xf5\xc0\xc3\xa3\x4f\xa8\x22\x78\xf8\xf0\xf8\xf8\xe0\x94\x55\x85\x7a\x4c\xe5\x58\x55\x77\x2f\x94\x32\x6c\xea\x06\xc1\xd3\x5e\x9d\x3a\xed\xac\x28\x43\x9c\x27\xea\xb2\xbc\x65\x15\x2e\x1a\x93\x06\x59\x54\xc9\xe8\x8d\x28\xe4\x7c\xdd\x9a\x97\x69\xba\xc7\x82\x60\xb8\x29\xd2\xdb\xf1\x35\xd9\x7a\x6b\x24\x9a\x3d\x23\x93\xab\x3d\x87\x8a\x83\xfc\x4a\xab\xb4\x34\xdb\x0c\x3d\xa3\xcd\x53\xac\x43\x2b\xa8\x4a\xdc\x3b\xde\x13\x37\xd1\x4e\xae\x18\x7b\xce\x93\x95\x24\x9f\x53\x83\xfa\x42\x2c\xca\x94\x17\x70\x0f\x13\x69\x7a\x7a\xdf\x26\xd2\x8d\xda\x9d\x2a\x16\x3c\x93\x5f\x71\x5b\x47\xdc\x14\x91\xbc\xfe\x6c\xe8\xfa\xd1\xc4\xef\x6f\xf2\xb6\x06\xd0\xd3\x22\x2e\x0b\x69\xd6\x2f\xd8\x60\x1c\x84\xee\x70\x88\x98\xbd\xe9\xb3\x3e\xfa\xc8\xb6\x6b\x6c\x57\x27\x9c\xc0\x63\xcf\x9b\xc2\xb3\xc9\xcc\x07\xe2\x77\xcf\x0d\x5d\x08\xdc\x0b\xef\xa3\x8f\x58\xe0\x75\x7d\x2f\x8c\x1e\x7b\x08\x46\x3f\xfa\xc1\x4f\x2f\x7a\xde\x53\xdf\x7b\xea\xff\xdd\x1f\xdd\xc3\xd0\x56\x1a\xd5\x4a\x15\x5a\x49\x21\x56\x82\x9c\x72\xc2\xd7\x9a\x0d\x27\xfd\xc1\x38\xf2\xbd\x91\x37\x7a\xe4\xf9\x51\xcf\x7d\x86\xe6\xf7\x09\xeb\x4e\x26\x8f\x07\x1e\xb5\x53\x1a\x62\x8e\xf8\xad\xc0\xe4\xbb\x7e\xbc\x99\xd7\x1c\x43\x19\x61\x22\x51\x52\xd5\xb0\xc0\xeb\xce\xfc\x66\x42\xec\x23\xfa\xd0\x98\x38\xab\x57\x6b\xc4\xe3\x4b\x91\x99\xba\xd2\x61\xcd\x78\xd3\xf4\xa1\x4e\x0f\x7e\x61\xbe\xf7\xc4\xf3\x03\x4c\xb0\x27\x9f\x3f\x8b\xdc\x59\x78\xe9\x8d\xc3\x41\xd7\xa6\xc3\x95\x02\x7e\xde\x7a\xea\x3d\xc2\x47\x2d\xbc\xb1\x8d\x1c\x46\x51\x62\x10\x2b\x75\x2d\x85\xcd\xcf\xaa\x0a\x24\xd1\xb7\xac\xd1\x86\x9b\x52\x6f\x13\x28\x64\x4d\x10\xba\xe1\x0c\x5d\x06\xee\x64\xb3\x85\x3b\x9e\xd5\x3c\x20\x52\x51\x45\xca\xf6\x94\x64\x2c\x5e\x30\xf4\x89\x4f\xbc\xa8\x3b\xe9\x79\xd1\x10\xaf\x46\x83\xf1\xcc\x7a\xbb\xc3\xb3\x03\xe6\x7b\x81\x17\x46\xd6\x74\xde\x3b\xe8\x1c\x66\xc4\x8d\xba\xff\xa2\xb2\xb9\x2c\x56\x20\x5a\x2b\x2e\xd3\x0a\xab\x2c\xa4\x36\xb6\xf8\xc8\x7c\xaf\x3f\x08\x42\xcf\x8f\xbc\x91\x3b\x18\x46\xd4\xdb\xf3\x47\x3b\x2d\x0a\x61\x7d\xa4\x05\x62\x76\x32\x22\x99\x2c\x01\xd2\xf4\x5a\xbf\x79\x1c\xab\x32\xb3\xcd\x9c\xa6\x7a\x0f\x82\xf0\x9d\xcc\x92\x96\x48\x39\xb8\x96\x0b\xaa\xba\x1a\x05\x84\xb2\x79\xb6\x36\x4b\x99\x2d\xda\x0c\x53\xff\x81\xef\x45\xc1\xa0\x3f\x1e\x8c\x23\xc4\xce\x0d\x0a\x23\xdc\x4d\xa6\xaa\x1a\x67\x23\xbc\x8f\x27\xe1\xe0\xe2\x59\x84\xbb\x69\x0e\x47\x90\x93\x08\xc3\x65\xfa\x90\x1a\x76\xfa\xe1\xfe\xfe\x42\x9a\x65\x79\xd5\x8e\xd5\x0a\x6d\x5b\x1a\x4d\x26\xbe\x2f\xb5\x2e\x85\xde\x3f\x3c\x3d\xd9\x64\x63\x1f\xd0\xaa\xcd\x4b\xde\x37\x76\xf2\x3e\x26\x54\x6a\x17\xf3\xdc\xc4\x4b\x8e\x99\x87\x4c\xac\x7a\xbf\x23\xa5\x8a\x76\xd7\x9d\x86\xdd\x4b\x77\x1b\xfc\x6e\xc5\xd5\x52\xa9\x6b\x74\x45\x21\x61\xef\x06\xa6\xb4\x9d\xc1\xda\x09\x95\x5a\x6c\x8b\x7a\xb8\x4d\x74\xa9\x3a\xe5\xf1\x35\x5e\x24\x52\xc7\xaa\x48\xf6\x58\x0d\xeb\x70\x84\x03\xf4\xdc\x81\xea\x29\x3b\x87\x4b\xa5\xae\x29\x69\xff\x40\x85\xa7\x5a\x13\x62\x16\x75\x57\x5d\xe7\xee\x52\x4e\x4f\xa4\xf2\x46\x14\x94\xef\x63\xfe\x88\xa6\x26\x62\x95\x25\x9a\xf5\x3c\x54\x73\x3f\x0a\x07\x23\x6f\x32\x0b\x09\x8a\x57\xa5\x5e\x90\x19\x79\x48\xd1\xa8\x77\x23\xbf\x82\xc7\x83\x69\x14\x0e\x83\xe8\x89\xe7\x0f\x2e\x9e\x35\x98\x3e\xde\xa0\xcd\xa5\xd4\x94\x4c\x35\xaa\x17\x94\xf4\x20\x7c\xcd\xf9\x02\x7d\x7f\x7f\x30\xee\x47\xe3\xd9\x68\x0b\x37\x65\x2a\x8a\x77\xd1\xcc\x39\x3c\x2a\xe7\x73\xaa\x13\x53\xac\x47\x0c\xb9\xe4\x59\x26\x52\x07\xae\x85\xc8\x41\x52\x50\x91\x84\x37\x6c\x9f\x13\x12\xca\x1e\xaf\x33\x75\x0b\xb7\x08\xf1\xe8\x61\x9b\x05\xde\xb8\x17\x3d\x9a\x5d\x5c\x78\x3e\xf2\xc8\x32\xa8\xae\x5a\x25\x52\xe7\x29\x5f\xdb\xce\x1e\xd9\xb3\x6d\x89\x07\xb3\x47\xbf\xe3\x75\x6d\x23\xad\x6e\x8f\x53\x23\x8d\xac\xc4\xd6\x46\xd9\x39\xf4\x57\xa4\xfe\x7a\x65\xf2\xf6\x02\xaf\x51\xf5\x1f\x9e\x9c\x7d\xc2\xce\xe1\xb3\xcf\xaa\x07\x5f\x7e\x49\x77\x1f\x9c\x22\x93\xc7\xca\x08\xa7\xce\x6e\xa9\x55\x20\xb2\xa4\x82\x94\x7b\x0f\x4e\x4f\xf6\x1c\x08\x46\xe1\xb4\x2a\x9a\x5c\x91\xa7\x4c\xda\x30\xa3\x06\x14\xf5\x3d\xc3\x61\x00\x2a\xb3\x73\x4f\xce\x3e\x41\x06\x14\x02\xe1\x24\x82\xd0\x84\xc0\xbe\x7f\xd1\x85\xd3\x07\x07\x9f\x6e\xea\x34\x6f\x15\x73\xb7\x84\xa4\xa9\xaa\x33\xe9\x2d\x5f\xeb\xcd\xfb\x2a\xec\xd1\x88\xc7\x97\xde\x70\x02\x2a\x17\xd6\x7c\x6c\x7c\x5f\x2a\x6d\x28\x60\xa0\x8d\x24\x12\xe5\x25\x32\xd3\xde\x56\xd6\x70\x0e\x35\x05\x2d\xfc\xdf\x8c\x47\x3b\xda\x25\xb8\x83\x1f\xa9\xf5\x62\x4b\x40\x6d\x86\xe3\xa8\x35\x6a\x3d\x3d\xf9\x4f\xf2\x9e\x16\xb0\xd8\x4e\x63\xa3\x35\xa3\x9a\x3b\x6e\xc3\x24\x4b\xd7\x84\x4f\xcc\x52\xda\xc4\x52\x8b\x74\xde\x42\x27\x29\x92\xe6\x44\x6d\x55\xbc\x56\x6f\xeb\x52\x21\x4e\x25\x66\xa6\x8d\x71\x08\xba\xa2\xae\xe7\x87\x83\x0b\xf4\x57\xdb\xe8\x74\x47\xb7\xc5\x6a\xf7\x87\xda\x2d\xd5\x88\x6d\xbf\x85\xf4\xcb\x76\xa5\x92\xa4\x10\x5a\x3b\x24\xcd\x93\xe3\xa3\xa3\xaa\x12\x58\xb9\x1c\xca\x25\x78\x06\x82\xb4\x76\x33\x58\x15\xb4\xfd\x97\x7b\xa8\xde\x7b\xf0\x63\x7a\xfc\xd3\x46\xe7\xeb\x27\x2f\xc1\x5a\x27\xbb\xf0\x27\xa3\x2a\xd5\xc7\x45\x6c\x63\x3e\x45\xa2\x9c\x6b\x7d\x8b\x3e\xca\xc6\xf8\x26\xbe\x44\xc6\x18\xf1\xca\xec\xe7\x29\x97\x94\xe2\x58\x8a\x64\xa5\x2a\x33\x08\xfa\x91\x4b\xd3\xa1\x3b\x18\x47\xa1\xf7\x79\xd8\xc0\x5f\x31\x8f\x97\xbb\x18\x5a\xac\x54\xb1\xb6\x78\x34\x91\xe8\x45\x95\xbd\x4b\x23\xf7\x76\xdb\x19\xd5\x60\xe6\xf6\xdc\x69\x48\xd8\xc3\xde\xa9\xe1\x69\xf5\xbc\xc2\xbc\xfd\xae\xad\x08\xdf\xf0\xb4\xe1\xfe\x76\x28\x9e\x1e\xb0\xc1\x38\xf4\xfc\x27\x2e\x06\xb7\xd3\x83\x9a\x90\x5d\x8b\x45\xb9\x8d\xb5\x6c\x1b\xd7\xa4\xcd\x35\xdf\xd9\x39\xd0\x84\x87\x90\xd9\xfe\x7f\xc7\xc4\xb9\x83\x0f\x3b\x0f\x4f\x8f\x3f\xf9\xd4\xa9\xb9\xd9\x59\xf1\x98\x17\x2a\x73\x92\xab\xce\x81\x93\x2b\x95\x52\x6a\xd2\x39\x3c\x38\x70\x64\x92\x8a\xa8\xf2\xd6\x1d\x0b\x3c\xea\x37\x3f\x84\x97\xdb\x34\xe0\xf0\xf0\xe8\xf0\xf0\x65\x6d\xa2\x08\x76\xe8\xdc\xca\xdd\x3c\xc5\x9c\xb4\x62\x69\xcd\xde\xbb\xf8\x59\x1f\x2b\x6a\x32\x74\x5a\xa8\x1b\x89\xa0\x90\x10\xcf\x02\x54\x6e\x81\xf6\x79\x35\xe4\x21\x99\xa1\xad\x15\x66\xeb\x7a\xd4\x5a\x18\xcc\xd4\x65\x2a\x1e\x42\xb5\xb2\x6d\x3f\xaf\xaa\x83\xd8\xa2\x4a\xf5\x54\xbf\xfc\x7f\xc6\x3d\x4c\xa3\x1e\xc2\x42\xb5\xf4\x97\x69\x2b\x29\x30\x1c\xee\xd3\x4d\x48\x74\x56\x2f\x58\x9b\x42\x66\x8b\x7a\x65\x98\x4b\x3d\xac\xdf\xf7\xd3\x7a\x8d\x91\x41\x27\xf8\x72\xc3\xa6\xa8\x3a\xb1\x55\xe5\x31\xf5\x4e\xa8\x5e\x60\xb7\x5c\x61\x5e\x82\xd0\xbb\x50\x55\x46\xa9\xbc\x16\x91\xc5\x47\xec\x1c\x5d\x34\x46\x2f\xf4\x51\x35\xbf\x30\xad\x46\x44\x55\xa9\x71\xd3\x35\x5a\x57\xf3\x1e\x84\x5f\xe1\x9f\x2d\xe6\xde\x99\x4b\x08\xa7\xc2\x3d\x08\x7b\x37\xe8\xba\x2a\x86\xd5\x4b\xef\x77\x09\x33\x6c\x4c\x67\x87\xc8\xf1\xe9\xc1\x01\xeb\x77\xa3\xda\x68\x08\x43\x40\xc7\xde\xdf\xd2\x48\xe5\xdc\x76\x1a\x76\x26\x9f\x9d\x3e\x38\x38\x60\x81\x47\x07\xa8\xa2\xe1\xe0\xc2\xab\xa7\xdb\x27\xe7\xd0\xdd\xb2\x8d\x9c\x75\x37\xf0\x2f\x18\xfe\x79\x0b\xef\x47\xb1\x2e\xe6\x8c\x3d\xcf\x65\x6c\xca\x82\xfc\xc9\xe6\x48\x85\xad\xcb\xea\x4d\xd1\x4b\x24\xc0\x6f\xb8\xe1\x85\x66\xee\x13\x37\x74\xfd\x68\x36\x1d\x4e\xdc\xde\x4e\xed\xb5\x1e\x71\x0e\xdd\xa5\xcc\x84\x16\x15\xd0\xa3\xe4\xdd\x9e\x69\xd9\x4b\x4a\xa5\x97\xa5\xda\xb3\x1d\x0e\x5e\x57\xb5\xec\x54\xd0\xaa\x2c\x62\xe1\x00\x4a\xd7\x22\xe2\x87\xfb\xfb\x71\xd6\x5e\x14\x76\x00\xa1\x62\x7b\xb9\xcf\xfa\x7e\xb5\x94\x60\x32\xf3\xbb\x94\xc5\x55\xc3\xa8\x15\x4b\x0d\x9f\xb4\x14\x1b\x14\x30\x57\x45\xbc\xa9\xfb\xd2\x69\x07\x99\x81\x9a\xcf\xa9\x2c\xb7\xa2\x73\x5b\x75\xd4\xad\x49\x37\xf4\xe2\x42\x24\x74\x84\xa2\x66\x04\xa4\x4a\x5d\x97\x39\x6e\x51\x43\x6f\x1c\x54\x25\x94\x58\x21\x48\xa8\x86\x6c\x0b\xfe\xec\xdc\xc2\x13\x0a\x25\x88\x61\x85\xd8\x00\xfe\xdb\xdb\xdb\x76\x2a\xaf\xea\x2d\xaa\x62\xf1\x3d\xd6\x4f\xcb\x7a\x7b\x03\xc8\xd2\x7e\x45\x07\x75\x25\x91\xfa\x8a\xa7\x88\x45\x2a\x95\xbd\xf0\x7a\x9e\xef\x86\x5e\x2f\xda\xec\xcf\x62\xf6\xf7\xd7\x90\x6d\xde\xc1\x9e\xff\x6d\x55\x8e\xff\xff\x2e\x1c\xdf\x39\xe8\x7b\x55\x92\x1f\xec\x16\x92\x1f\xfc\x96\x75\xe4\x93\xb7\xab\xfa\xcf\xd1\xf2\x91\xd5\x41\x2e\x62\x39\x97\xc2\x9e\xdd\xa8\x50\x02\xb2\x6d\x5e\xa6\xe9\x1a\x54\x69\xf2\x12\xd5\x32\x41\x00\xb6\x4b\xd4\xbf\xe8\x1e\x1e\x1e\x1d\xd7\x44\x78\x5a\xa3\x57\x91\xd4\x2d\x25\x14\x9a\x3b\x0e\x06\x5d\x07\x66\x99\x7c\xd5\xe3\x08\xad\xfd\xf2\x6a\x5d\x5d\x5d\x74\xcf\x8e\x8e\xea\xcf\x2f\xec\xc5\xc9\x81\x53\x93\xde\x5c\xd8\x47\xc7\xc7\xc7\x9f\x6e\x2e\xc6\x3c\x53\x0e\x3c\x96\x26\x5e\x8a\xcc\x81\xc0\xf0\x55\x5e\x7d\x8c\x64\x9a\xca\xcd\x75\x5c\x28\x02\x09\xf4\x15\x67\x55\x00\x82\x44\xd9\x4c\x84\xf8\x15\x26\x61\x0d\x36\xd4\x66\x84\x69\xb3\x4a\x79\xb6\x40\xeb\xd9\xcf\xaf\x17\xfb\xc8\xbd\xfd\x1f\xe4\xd7\x8b\x56\xac\x32\x6d\x38\xea\xc8\xc5\xc4\x1f\xb9\xa1\xad\x97\xda\x13\x51\xe9\x56\xd7\xd5\x1c\xe8\xac\x49\xa1\xd9\xf3\x54\x2d\x5e\xb0\xb7\xce\xe4\x55\x49\x2a\x52\x53\xa9\xa8\x50\x4d\x85\x0c\x9a\x68\xa0\x1e\x50\x83\x5f\xb5\x5a\x71\x5b\xc4\xa9\x8a\xe0\xab\x32\x35\x32\xaf\x9b\x85\x95\x72\xd6\xd3\x1c\x52\x93\x3d\x56\x15\x0e\xab\xbb\x7f\x9b\xa9\xdc\x1d\x59\x5c\x8d\x78\xc2\x82\xc7\x54\xd4\x1c\x64\x73\x85\x9f\x4f\x79\x91\xe1\xa7\x57\x14\xaa\xc0\x8b\x0b\x6e\x78\xfa\xd6\x86\xed\x2c\x36\xf4\x9e\x78\x08\xff\xe8\x2b\xab\x21\xe0\x86\x5d\xd6\x3d\x65\xe9\x9a\xb8\xdb\xae\xee\xa3\x7e\xa7\x8d\xe6\x1a\x95\xb7\x96\xa2\x90\xa6\xa6\xb7\xa1\x44\x7c\x79\x9b\x0c\xde\xfc\x1e\x34\x2a\x77\x6a\x9d\x93\xae\xdb\xe8\x22\x41\x89\x43\xa1\x0c\x8a\xe5\x9e\xbe\x45\x4d\x25\x4b\x55\xe8\x3e\x30\x59\xac\xe0\xda\x7d\x36\x9c\xf4\x23\x7f\x12\xda\x5c\x65\x13\xeb\x17\xe4\x2e\x91\x48\xc2\x65\xba\x66\x3d\x77\x30\x7c\xf6\xce\xb8\x8d\xf3\xd0\x4b\x39\x27\x80\x8f\x89\x68\x6a\x1b\xb3\x3b\xbc\x3c\x3a\xab\xda\x8b\x87\xf0\xe3\x1f\xc3\xd1\x99\x03\x47\x27\xa7\x0d\xbf\x12\x05\x97\x83\x0b\x3a\x26\x7b\x56\xd1\x25\xd7\xbf\xf5\x31\x0d\xc2\x34\x69\x38\x18\x57\x6d\x29\xfa\x87\xb2\x7e\x95\xcb\x82\xbc\xc5\xba\xd6\x79\x0b\x2d\xef\x25\x22\x15\x46\x00\x9f\x1b\x51\xc0\x8a\xbf\xa2\x21\xf7\x89\xcc\xa6\xb8\xba\xa9\x60\x53\x89\xe6\x6d\x69\xd0\xdd\xef\x25\x8e\xa7\x55\x35\x66\xe6\x0f\x19\x1d\x90\x66\x96\xc2\x2b\x55\xac\x1a\x5d\x33\x5a\x18\xc9\x87\x8a\x82\x6f\xf1\xd5\xb7\x82\xb3\xfd\xe0\x84\xaf\xab\x01\x11\x49\xe1\x9d\x61\x2a\x8b\x2b\x82\x24\x0b\xf1\x2a\x16\x1a\x43\xf7\x2b\xd8\x75\xdc\xd6\x24\xea\x2e\x2c\xb1\xc9\x28\x6b\x64\xd6\x3f\x58\x47\xde\xe4\xcb\x31\xa6\x64\x85\x6a\xf6\xfb\x8a\x32\xcb\x50\x81\xf0\x76\x75\x9e\x24\x17\x85\x54\x89\x3d\xbb\x71\x47\x7b\xdc\x2f\xb3\xe6\x68\x2a\x0e\x50\xcb\xdb\x16\xaa\xda\x74\xe8\xdf\x0d\x23\x2a\x3b\x6c\x73\xc1\x73\x98\xd1\x69\xf8\xea\x88\x94\xb6\x2b\x69\xdb\x23\xf2\x51\x75\xf3\x05\x0b\xba\x97\x5e\x6f\x46\xd1\xf7\xa7\x96\x61\x87\x07\x2b\x46\x05\xed\x4d\xff\x7e\x29\x78\x6a\x96\xf6\x34\x6b\x45\xa6\x10\xb9\x8a\xec\xfd\x88\xee\xdf\x45\xe9\xe8\xc1\x92\x6d\xab\x60\xa7\x07\x18\x8c\xdd\x62\x51\x5a\x54\x80\x91\x8a\x9c\x60\x96\xc0\xc7\x0b\x69\x60\xae\xe3\xeb\x8f\x6b\xb7\xd7\x6a\x95\x59\x81\x11\x95\xb8\xd6\x6a\x19\xbe\xd0\xe8\x3a\xd1\xb1\x93\xfb\x57\xd9\xc6\xc1\x4b\xd3\xd2\xf1\x8a\x20\x60\xa2\x62\x4d\x37\x90\xd8\xfe\x61\xfb\x93\xf6\x09\x73\xfd\x7e\x60\xfd\x45\x97\xce\xe3\x36\x4e\x26\xd0\x91\x48\x6d\x64\x5c\xb3\x87\xf6\x12\xd1\xee\xf0\x99\x7e\xf1\x36\x77\x49\x28\x77\x6f\x15\x5f\x90\x0a\x9e\x95\x79\xf3\x15\xbc\x88\x97\xf2\x46\xe8\x26\xe3\xaa\x7b\x51\x6c\x87\xbf\xf3\x12\x2b\xc2\xbb\xdf\x72\x0e\x21\xe6\x0f\xf5\x71\xdc\xed\x31\x63\x39\xaf\xdf\xd5\xe8\xbf\x56\xc7\x24\xd8\x64\x88\x89\x55\x78\xe9\xa2\x73\xa7\xc5\x3e\x5f\x48\xd3\xe8\x09\x69\x58\xca\xc5\x32\x95\x8b\x25\x39\x22\x9e\x10\xb2\xcf\x12\x28\xc4\x4a\xdd\xd8\xb3\x84\xd9\x42\x6c\x3b\x41\xbd\xc1\xc5\x45\x74\x39\xe8\x5f\x0e\x07\xfd\xcb\x70\xa7\xd4\xdd\x04\x37\xe8\x87\xf4\x06\x76\x21\xe5\xa6\x2f\x42\x9c\x9a\xc8\xf9\x9c\x8a\xe9\x64\x39\xfd\x41\x68\x49\x37\x3d\xd4\x3b\x54\xe3\x25\x2f\x78\x6c\x30\x87\x20\x92\x69\xb3\xc5\xf9\x61\x9a\x74\x0e\xd2\xed\x86\xf6\x28\xfc\xc9\x1d\xc4\x2d\x1e\xd3\x4b\x75\x9b\x7d\x80\xd6\xb6\xb1\x7f\xf0\x61\xb5\x5e\xc4\x0d\xa5\xe6\x8b\x45\x81\x59\xdc\x0d\xea\x34\x86\x9b\xdf\x46\xa7\x17\x71\xa5\xd1\xfd\x6e\xb4\x55\xea\xc9\xa6\x6e\x78\x47\x31\x1a\xa5\xdc\xae\xee\xbf\x60\xf6\xd4\x9c\x47\xc6\x78\x50\x9d\x8e\xb4\xbf\xd2\x61\xdd\xe1\x64\xec\x55\xd7\xd3\xd9\x70\x58\x5d\xf6\xbb\xb6\x70\xc3\x9e\x5b\x8f\xf1\xa2\x71\xfc\xb4\x59\xfd\x59\xaa\xb2\xd0\x70\x25\xcc\xad\x10\x55\x51\xda\xba\x8b\x9e\x77\xe1\xce\x86\x61\xd4\xa8\x03\x9d\x31\xf6\x9c\xe7\xf2\xc5\x3b\x8c\x97\x46\xac\xb4\xcd\x6a\xec\xd1\x78\x9b\xc8\x70\x5b\xdf\x46\xee\xdb\x5f\x77\x05\x5e\x34\x08\xbd\x91\x95\x1f\x63\xcf\x4b\xa2\xb5\x2d\x95\xef\x1c\x4d\xdc\x1c\x85\x40\x81\x5a\xed\x50\x19\x1d\x45\x4f\x91\xe5\x44\xda\xfb\x7c\x3a\x9c\xf8\x5e\xb4\x53\x42\x3f\x3a\xd8\x21\x6a\xd3\x9d\xf7\x91\x23\x32\x83\x20\x98\xbd\x45\xe4\x70\x97\xc8\xe6\xbc\x6c\x75\x14\x71\x97\x08\x8f\x8d\xbc\x91\x66\x0d\x73\x21\x12\x76\xe1\x79\x3d\x3a\x03\x64\xcf\xe8\x55\x04\x4f\x36\x67\x07\xd4\x1c\xf6\xcc\x52\xac\x44\x2b\x56\xa9\x2a\xf6\x60\x25\x0c\x07\xc3\x17\x8e\x3d\xfa\x78\xb5\x06\x37\x4b\x0a\x25\x13\xf8\x49\x07\x4e\xe8\x47\x2f\x2e\x6a\x34\x75\x6e\x80\x26\x51\x3e\x0d\x7b\x99\xca\xaa\x46\x75\xdd\xc0\xb6\x52\xb0\xbf\x4f\x69\xfc\x16\x4a\x9b\x75\xba\xe9\x4f\x21\x00\xdf\x76\xa7\x12\x71\x23\x52\x95\x8b\x42\xb7\x17\x4a\x2d\x6c\x3d\x74\xff\x56\x5c\xed\xdb\x90\xa3\xf7\x8f\x0e\x0e\x1f\xec\x1f\x1e\xee\x07\x36\xd5\x68\xcd\x55\xd1\x6a\x6c\xa0\x25\xb3\x56\x77\x59\xa8\x95\x68\x1d\x7f\x4a\x0f\xab\xe5\xb3\xf0\xd2\x1b\x79\x51\x77\x32\x9c\xf8\xd1\xc8\x0b\xdd\x28\x74\xfb\xd0\x81\x97\x3f\x98\xcf\x4f\x8e\x1f\x1c\xbf\x6c\x42\x29\x99\xc1\xd5\xda\x08\xbd\x35\x64\x9b\x16\x6f\x7b\x11\xf7\x9a\x35\x93\xd1\xa3\x0a\xc8\x0c\x82\xe9\xd0\xb5\x05\xe4\x3a\xe0\x9f\x1d\x9f\x9d\x9d\x1e\x9c\x91\x82\xb5\x37\x3d\xf4\xad\x30\xab\x66\xd5\x07\x14\x62\x16\x78\xfe\xae\x3e\x9c\x1c\xbc\xab\xa9\x1f\x24\xe1\x7b\xd3\xc9\x07\x49\x64\xca\xc8\xf8\x37\x28\xe6\x78\x12\x0e\xba\x6f\xab\xf7\xc9\x0e\x99\x66\xbb\xff\x83\xb4\x26\x7e\xff\x9d\xf5\x10\x87\x90\x1d\x77\xd8\xe1\x6f\xb9\xbb\xc3\xdd\x65\x65\xe2\x56\x93\x39\xfc\x86\x0d\x7a\x4f\x83\x88\x0c\xe6\x43\x26\x5c\x5b\xdd\x87\x28\xd5\x07\x62\x77\xe8\x1c\xe3\x16\xe5\xe1\x59\xf6\x82\x0d\xdd\x31\x3a\x5e\x10\x59\x6b\x16\x38\x5f\x2d\x5b\xdd\x31\xfe\xbd\x7c\x8c\x7f\xc3\xa7\x4e\x22\x5a\x3d\xcf\x99\x17\xad\x0b\xdf\xc9\xd2\xd6\x78\xe8\xa4\x37\xad\xe1\x13\xa7\x28\x5b\xfe\xcc\xf9\x19\x6f\xfd\xce\xd4\x11\xba\xe5\x05\x4e\x6e\x5a\x8f\x7c\x27\x4f\x5b\xd3\xa1\x73\xb5\x68\x3d\xea\x3b\xd2\xb4\x06\xa1\x33\x97\xad\x8b\x81\x63\x8a\x56\xe8\x3b\xb1\x6e\x75\xbf\x70\x74\xd1\x0a\xa6\x8e\xbe\x69\x05\x9e\x73\xad\x5a\x8f\x7d\x67\x91\x22\x85\xf2\xba\x35\x73\xe9\xcc\x0a\xae\xc8\xcb\x16\xa9\xd4\x4b\xe7\xaf\xfe\xfd\xd7\x7f\xf9\xe7\xff\xec\x2f\x7f\xf1\xa7\xdf\xfd\xfe\xdf\x77\xfe\xea\x97\xdf\xfc\xf5\xbf\xfd\xe7\xf6\xcb\xdf\xfc\xfa\x1f\xfc\xf5\xbf\xf9\x97\xdf\xfd\xe2\x3f\xfc\xcd\xaf\xff\xe1\xdb\x0f\xfe\xc7\x3f\xfd\xf9\x77\xbf\xfc\xaf\xf8\xa0\x27\x4a\xa3\xe3\xa5\x33\x2f\x78\xf6\xed\x1f\x73\xa9\x9d\xb1\x48\x44\x91\xf2\x2c\xd1\x4e\xca\xcd\x8d\x14\x7f\xf1\x47\xa5\xf3\xe6\xeb\x37\xbf\xf7\xe6\x9b\x37\xdf\xbc\xfe\xd5\xeb\x5f\xbc\xfe\xa5\xf3\xdd\x1f\xfc\xeb\xef\xfe\xf0\xdf\xfd\xcf\x3f\xf9\x57\x8e\xd0\x39\xff\xf6\xcf\x54\xea\xa0\x8d\x97\x8b\xf2\xdb\x3f\xd1\x90\x28\x78\x54\x70\x2d\xf1\x66\xaa\xaf\xa5\xf3\xfa\xcf\xde\xfc\xa3\xd7\xff\xe5\xf5\x7f\x7c\xfd\xf3\x37\x5f\x5b\x1a\x8e\x34\x3c\x95\x3c\x53\x8e\x2e\xd5\x4a\x3a\xe1\xb7\xbf\x2e\xae\xbf\xfd\x63\xe1\xfc\xf7\x7f\x22\xfe\xe2\x8f\x8c\xcc\xb8\xf3\xe6\x9b\x37\x5f\xbf\xfe\x6f\xd5\x70\x7d\x23\x32\x7d\xcd\x9d\xff\xf3\x2f\xfe\xf0\x7f\xfd\xe7\x3f\xfd\xdf\xbf\xff\x9f\x9c\x05\x4f\xc5\x42\x39\x6f\x7e\xef\xf5\xaf\xde\x7c\xfd\xfa\xe7\x6f\xfe\xe0\xf5\x9f\xbf\xf9\xe6\xcd\x3f\x7e\xfd\xab\xd7\x3f\x67\x36\xe7\xb6\x3d\x66\x74\x46\x18\x11\x73\x19\x5f\x8b\xc2\xca\xb5\x8d\x37\x53\x9e\x2d\x5e\x30\x12\x2c\x09\x98\x91\x74\xa1\x03\x5f\x2d\x19\x89\x98\x2e\x5b\xe1\x53\x46\x7f\x37\xdf\x48\xe4\xf4\x8b\x5b\x46\x72\x47\x2c\x54\x30\x12\x3e\x74\x20\x4b\x19\x69\x00\x74\x20\xbd\x61\xa4\x06\xd0\x81\xa2\x64\xa4\x0b\xd0\x81\x9f\x71\x46\x0a\x81\xef\xd4\x8c\xb4\x02\x3a\x40\x9f\x8c\xb4\x03\xbf\xa5\x8c\x54\x04\x3a\x70\xb5\x60\xa4\x27\xd0\x01\x69\x18\x29\x0b\xbe\x50\x32\xd2\x18\x42\xa8\x8c\xd4\x06\x3a\x40\x9f\x8c\xd4\x07\x3a\xa0\x0b\x46\x3a\x84\x97\x37\x8c\x14\x09\x3a\x70\xad\x18\x69\x13\x74\x60\x91\x32\x52\x29\xe8\x40\x79\xcd\x28\x27\xac\x4f\xda\xad\x78\x9e\xd3\xef\xd4\x54\x03\x27\xc6\x29\xa7\xee\x0c\x81\x9b\xb6\x51\xab\xb4\x23\x33\xc9\x9e\x6f\x46\xb4\xab\x69\x2f\x18\x7b\xae\xcc\x12\xfd\x43\x70\x39\x79\x1a\x5d\x4c\x26\xa1\xe7\x47\x8f\x7c\xfb\xd3\x9c\x06\x78\x0c\x96\xea\x76\xf3\x53\xa8\x77\x2b\x3c\x94\xf7\x20\xb2\xea\xab\xfa\x2c\xf8\x5c\x29\x23\x8a\x1d\xba\xdb\xdf\x45\xd5\x09\x39\x52\xa5\xb2\x7b\xf3\x37\x51\xf6\xa7\x4d\x55\x4b\xe0\x3d\xa4\x42\x6f\x34\x1d\x62\xee\x48\x35\xed\xaa\x9e\x4e\x54\xff\x6f\x00\x00\x00\xff\xff\xa0\x78\xdc\x09\xaf\x3e\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: 15967, mode: os.FileMode(420), modTime: time.Unix(1491630343, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 16047, mode: os.FileMode(420), modTime: time.Unix(1495283591, 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: 92998, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 92998, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 68214, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 68214, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 68737, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 68737, mode: os.FileMode(420), modTime: time.Unix(1495060821, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4387,7 +4387,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 63850, mode: os.FileMode(420), modTime: time.Unix(1495060269, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 63850, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 69058, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 69058, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 65517, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 65517, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 69906, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 69906, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 67481, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 67481, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 65940, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 65940, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 75609, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 75609, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 68952, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ko-KR.ini", size: 68952, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 68907, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 68907, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 64698, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 64698, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 66084, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 66084, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 66646, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 66646, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 98056, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 98056, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 85742, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sr-SP.ini", size: 85742, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 64600, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sv-SE.ini", size: 64600, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 66062, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 66062, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 95469, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_uk-UA.ini", size: 95469, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 60840, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 60840, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 61093, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 61093, mode: os.FileMode(420), modTime: time.Unix(1495060821, 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: 60720, mode: os.FileMode(420), modTime: time.Unix(1495060416, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 60720, mode: os.FileMode(420), modTime: time.Unix(1495060821, 0)} a := &asset{bytes: bytes, info: info} return a, nil }