diff options
141 files changed, 17975 insertions, 6318 deletions
diff --git a/.travis.yml b/.travis.yml index 15370d87..a405fecc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,33 @@ matrix: include: - language: go + go: "1.8" + - language: go go: "1.9" - language: go - go: "1.10.x" + go: "1.10" + - language: go + go: "1.11" - language: node_js node_js: 8 before_install: - cd webui after_success: [] + - language: node_js + node_js: 9 + before_install: + - cd webui + after_success: [] + - language: node_js + node_js: 10 + before_install: + - cd webui + after_success: [] + - language: node_js + node_js: 11 + before_install: + - cd webui + after_success: [] install: - make install @@ -2,9 +2,10 @@ [[projects]] - digest = "1:2af7a7a1fcb231f9cac066e51c629370834819ac3a776dc0a3f577d28cb1fc28" + digest = "1:cc0bbbf01f9f639555f9a9d4d5ff9c72da4c4c4bfe71f02fd318d37498270d80" name = "github.com/99designs/gqlgen" packages = [ + "cmd", "codegen", "codegen/templates", "complexity", @@ -12,10 +13,11 @@ "graphql/introspection", "handler", "internal/gopath", + "internal/imports", ] pruneopts = "UT" - revision = "636435b68700211441303f1a5ed92f3768ba5774" - version = "v0.5.1" + revision = "3a7f37c7e22a8fedce430c4d340ad5c1351198f4" + version = "v0.7.1" [[projects]] digest = "1:897d91c431ce469d35a5e6030e60e617dccd9a0e95bdffa6a80594f5c5800d29" @@ -319,6 +321,22 @@ version = "v1.2.2" [[projects]] + digest = "1:0ec412b28282c10ac6ce56039120741bb738814e4874d23c15fdff37f6aa7a62" + name = "github.com/theckman/goconstraint" + packages = ["go1.8/gte"] + pruneopts = "UT" + revision = "93babf24513d0e8277635da8169fcc5a46ae3f6a" + version = "v1.11.0" + +[[projects]] + digest = "1:b24d38b282bacf9791408a080f606370efa3d364e4b5fd9ba0f7b87786d3b679" + name = "github.com/urfave/cli" + packages = ["."] + pruneopts = "UT" + revision = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" + version = "v1.20.0" + +[[projects]] digest = "1:895fa0f564003de2498fbaf00be596fa814655ab445ce7cc215f7724bb6831ae" name = "github.com/vektah/gqlgen" packages = ["client"] @@ -327,8 +345,7 @@ version = "v0.5.1" [[projects]] - branch = "master" - digest = "1:8150271279cc160a41e9aabfee8118c20a0e88894a25b2577f93e7c868e5259c" + digest = "1:ed6a41de3eedd8d4868eea057837860453ebbe08c5e385fd50d4c24e5642ec18" name = "github.com/vektah/gqlparser" packages = [ ".", @@ -340,7 +357,8 @@ "validator/rules", ] pruneopts = "UT" - revision = "14e83ae06ec152e6d0afb9766a00e0c0918aa8fc" + revision = "e805d08bb209b1accdea76bd2327811858d81985" + version = "v1.0.0" [[projects]] branch = "master" @@ -440,7 +458,7 @@ analyzer-name = "dep" analyzer-version = 1 input-imports = [ - "github.com/99designs/gqlgen/codegen", + "github.com/99designs/gqlgen/cmd", "github.com/99designs/gqlgen/graphql", "github.com/99designs/gqlgen/graphql/introspection", "github.com/99designs/gqlgen/handler", @@ -461,6 +479,7 @@ "github.com/spf13/cobra/doc", "github.com/stretchr/testify/assert", "github.com/stretchr/testify/require", + "github.com/theckman/goconstraint/go1.8/gte", "github.com/vektah/gqlgen/client", "github.com/vektah/gqlparser", "github.com/vektah/gqlparser/ast", @@ -58,7 +58,7 @@ [[constraint]] name = "github.com/99designs/gqlgen" - version = "0.5.1" + version = "0.7.1" [[constraint]] name = "github.com/jroimartin/gocui" @@ -97,7 +97,7 @@ You can launch a rich Web UI with `git bug webui`. This web UI is entirely packed inside the same go binary and serve static content through a localhost http server. -The web UI interact with the backend through a GraphQL API. The schema is available [here](graphql/schema.graphql). +The web UI interact with the backend through a GraphQL API. The schema is available [here](graphql/). ## Internals diff --git a/bug/clocks.go b/bug/clocks.go index 47cd1509..bb3d81f0 100644 --- a/bug/clocks.go +++ b/bug/clocks.go @@ -6,7 +6,7 @@ import ( // Witnesser will read all the available Bug to recreate the different logical // clocks -func Witnesser(repo *repository.GitRepo) error { +func Witnesser(repo repository.ClockedRepo) error { for b := range ReadAllLocalBugs(repo) { if b.Err != nil { return b.Err diff --git a/bug/comment.go b/bug/comment.go index db5cc45e..67936634 100644 --- a/bug/comment.go +++ b/bug/comment.go @@ -24,3 +24,6 @@ func (c Comment) FormatTimeRel() string { func (c Comment) FormatTime() string { return c.UnixTime.Time().Format("Mon Jan 2 15:04:05 2006 +0200") } + +// Sign post method for gqlgen +func (c Comment) IsAuthored() {} diff --git a/bug/op_add_comment.go b/bug/op_add_comment.go index e304a6ef..c19b9593 100644 --- a/bug/op_add_comment.go +++ b/bug/op_add_comment.go @@ -69,6 +69,9 @@ func (op *AddCommentOperation) Validate() error { return nil } +// Sign post method for gqlgen +func (op *AddCommentOperation) IsAuthored() {} + func NewAddCommentOp(author Person, unixTime int64, message string, files []git.Hash) *AddCommentOperation { return &AddCommentOperation{ OpBase: newOpBase(AddCommentOp, author, unixTime), diff --git a/bug/op_create.go b/bug/op_create.go index 45387d19..3816d8b7 100644 --- a/bug/op_create.go +++ b/bug/op_create.go @@ -81,6 +81,9 @@ func (op *CreateOperation) Validate() error { return nil } +// Sign post method for gqlgen +func (op *CreateOperation) IsAuthored() {} + func NewCreateOp(author Person, unixTime int64, title, message string, files []git.Hash) *CreateOperation { return &CreateOperation{ OpBase: newOpBase(CreateOp, author, unixTime), diff --git a/bug/op_edit_comment.go b/bug/op_edit_comment.go index 282b73bb..bc87310a 100644 --- a/bug/op_edit_comment.go +++ b/bug/op_edit_comment.go @@ -92,6 +92,9 @@ func (op *EditCommentOperation) Validate() error { return nil } +// Sign post method for gqlgen +func (op *EditCommentOperation) IsAuthored() {} + func NewEditCommentOp(author Person, unixTime int64, target git.Hash, message string, files []git.Hash) *EditCommentOperation { return &EditCommentOperation{ OpBase: newOpBase(EditCommentOp, author, unixTime), diff --git a/bug/op_label_change.go b/bug/op_label_change.go index b7957b86..d7aab06b 100644 --- a/bug/op_label_change.go +++ b/bug/op_label_change.go @@ -97,6 +97,9 @@ func (op *LabelChangeOperation) Validate() error { return nil } +// Sign post method for gqlgen +func (op *LabelChangeOperation) IsAuthored() {} + func NewLabelChangeOperation(author Person, unixTime int64, added, removed []Label) *LabelChangeOperation { return &LabelChangeOperation{ OpBase: newOpBase(LabelChangeOp, author, unixTime), diff --git a/bug/op_noop.go b/bug/op_noop.go index 06e3496a..ac898dde 100644 --- a/bug/op_noop.go +++ b/bug/op_noop.go @@ -27,6 +27,9 @@ func (op *NoOpOperation) Validate() error { return opBaseValidate(op, NoOpOp) } +// Sign post method for gqlgen +func (op *NoOpOperation) IsAuthored() {} + func NewNoOpOp(author Person, unixTime int64) *NoOpOperation { return &NoOpOperation{ OpBase: newOpBase(NoOpOp, author, unixTime), diff --git a/bug/op_set_metadata.go b/bug/op_set_metadata.go index 68cf1d51..aac81f3b 100644 --- a/bug/op_set_metadata.go +++ b/bug/op_set_metadata.go @@ -53,6 +53,9 @@ func (op *SetMetadataOperation) Validate() error { return nil } +// Sign post method for gqlgen +func (op *SetMetadataOperation) IsAuthored() {} + func NewSetMetadataOp(author Person, unixTime int64, target git.Hash, newMetadata map[string]string) *SetMetadataOperation { return &SetMetadataOperation{ OpBase: newOpBase(SetMetadataOp, author, unixTime), diff --git a/bug/op_set_status.go b/bug/op_set_status.go index 62f373ec..54f476cb 100644 --- a/bug/op_set_status.go +++ b/bug/op_set_status.go @@ -53,6 +53,9 @@ func (op *SetStatusOperation) Validate() error { return nil } +// Sign post method for gqlgen +func (op *SetStatusOperation) IsAuthored() {} + func NewSetStatusOp(author Person, unixTime int64, status Status) *SetStatusOperation { return &SetStatusOperation{ OpBase: newOpBase(SetStatusOp, author, unixTime), diff --git a/bug/op_set_title.go b/bug/op_set_title.go index 9b7d1533..b631ca18 100644 --- a/bug/op_set_title.go +++ b/bug/op_set_title.go @@ -74,6 +74,9 @@ func (op *SetTitleOperation) Validate() error { return nil } +// Sign post method for gqlgen +func (op *SetTitleOperation) IsAuthored() {} + func NewSetTitleOp(author Person, unixTime int64, title string, was string) *SetTitleOperation { return &SetTitleOperation{ OpBase: newOpBase(SetTitleOp, author, unixTime), diff --git a/bug/timeline.go b/bug/timeline.go index 359389a6..a84c45e4 100644 --- a/bug/timeline.go +++ b/bug/timeline.go @@ -1,6 +1,8 @@ package bug import ( + "strings" + "github.com/MichaelMure/git-bug/util/git" ) @@ -9,6 +11,7 @@ type TimelineItem interface { Hash() git.Hash } +// CommentHistoryStep hold one version of a message in the history type CommentHistoryStep struct { // The author of the edition, not necessarily the same as the author of the // original comment @@ -66,3 +69,8 @@ func (c *CommentTimelineItem) Append(comment Comment) { func (c *CommentTimelineItem) Edited() bool { return len(c.History) > 1 } + +// MessageIsEmpty return true is the message is empty or only made of spaces +func (c *CommentTimelineItem) MessageIsEmpty() bool { + return len(strings.TrimSpace(c.Message)) == 0 +} diff --git a/doc/man/git-bug-add.1 b/doc/man/git-bug-add.1 index 38750e1a..4ad632a9 100644 --- a/doc/man/git-bug-add.1 +++ b/doc/man/git-bug-add.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-bridge-configure.1 b/doc/man/git-bug-bridge-configure.1 index d2ca6a95..62ff07e6 100644 --- a/doc/man/git-bug-bridge-configure.1 +++ b/doc/man/git-bug-bridge-configure.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-bridge-pull.1 b/doc/man/git-bug-bridge-pull.1 index b7d69d79..26bd210e 100644 --- a/doc/man/git-bug-bridge-pull.1 +++ b/doc/man/git-bug-bridge-pull.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-bridge-rm.1 b/doc/man/git-bug-bridge-rm.1 index 3ed07d83..2d28dea6 100644 --- a/doc/man/git-bug-bridge-rm.1 +++ b/doc/man/git-bug-bridge-rm.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-bridge.1 b/doc/man/git-bug-bridge.1 index 94d57241..b182c658 100644 --- a/doc/man/git-bug-bridge.1 +++ b/doc/man/git-bug-bridge.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-commands.1 b/doc/man/git-bug-commands.1 index 99f1e468..0f460387 100644 --- a/doc/man/git-bug-commands.1 +++ b/doc/man/git-bug-commands.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-comment-add.1 b/doc/man/git-bug-comment-add.1 index 63fe3ba8..6095a87f 100644 --- a/doc/man/git-bug-comment-add.1 +++ b/doc/man/git-bug-comment-add.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-comment.1 b/doc/man/git-bug-comment.1 index ef10956d..0cb834be 100644 --- a/doc/man/git-bug-comment.1 +++ b/doc/man/git-bug-comment.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-deselect.1 b/doc/man/git-bug-deselect.1 index b602e414..602365d6 100644 --- a/doc/man/git-bug-deselect.1 +++ b/doc/man/git-bug-deselect.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-label-add.1 b/doc/man/git-bug-label-add.1 index 2b9b2d91..10798908 100644 --- a/doc/man/git-bug-label-add.1 +++ b/doc/man/git-bug-label-add.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-label-rm.1 b/doc/man/git-bug-label-rm.1 index 3ed1ac43..fc33c3d7 100644 --- a/doc/man/git-bug-label-rm.1 +++ b/doc/man/git-bug-label-rm.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-label.1 b/doc/man/git-bug-label.1 index 280914a2..68ab6726 100644 --- a/doc/man/git-bug-label.1 +++ b/doc/man/git-bug-label.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-ls-label.1 b/doc/man/git-bug-ls-label.1 index 54601903..25eb7074 100644 --- a/doc/man/git-bug-ls-label.1 +++ b/doc/man/git-bug-ls-label.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-ls.1 b/doc/man/git-bug-ls.1 index 2fabdb61..8a96ca77 100644 --- a/doc/man/git-bug-ls.1 +++ b/doc/man/git-bug-ls.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-pull.1 b/doc/man/git-bug-pull.1 index 58e930f5..5614534d 100644 --- a/doc/man/git-bug-pull.1 +++ b/doc/man/git-bug-pull.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-push.1 b/doc/man/git-bug-push.1 index 183a6027..4779318b 100644 --- a/doc/man/git-bug-push.1 +++ b/doc/man/git-bug-push.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-select.1 b/doc/man/git-bug-select.1 index c762f407..f0730194 100644 --- a/doc/man/git-bug-select.1 +++ b/doc/man/git-bug-select.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-show.1 b/doc/man/git-bug-show.1 index bb497b3e..15344bba 100644 --- a/doc/man/git-bug-show.1 +++ b/doc/man/git-bug-show.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-status-close.1 b/doc/man/git-bug-status-close.1 index 2b2c60f0..71e9cdfe 100644 --- a/doc/man/git-bug-status-close.1 +++ b/doc/man/git-bug-status-close.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-status-open.1 b/doc/man/git-bug-status-open.1 index cd8a5346..0e7fe8ae 100644 --- a/doc/man/git-bug-status-open.1 +++ b/doc/man/git-bug-status-open.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-status.1 b/doc/man/git-bug-status.1 index d3890e99..0f2e1b40 100644 --- a/doc/man/git-bug-status.1 +++ b/doc/man/git-bug-status.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-termui.1 b/doc/man/git-bug-termui.1 index b17282c9..9f66a00f 100644 --- a/doc/man/git-bug-termui.1 +++ b/doc/man/git-bug-termui.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-title-edit.1 b/doc/man/git-bug-title-edit.1 index 24459b37..4012fcbb 100644 --- a/doc/man/git-bug-title-edit.1 +++ b/doc/man/git-bug-title-edit.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-title.1 b/doc/man/git-bug-title.1 index 6ba965cb..6888fe8e 100644 --- a/doc/man/git-bug-title.1 +++ b/doc/man/git-bug-title.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug-webui.1 b/doc/man/git-bug-webui.1 index cadc4b50..0310b130 100644 --- a/doc/man/git-bug-webui.1 +++ b/doc/man/git-bug-webui.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l diff --git a/doc/man/git-bug.1 b/doc/man/git-bug.1 index 7583468a..183d60d8 100644 --- a/doc/man/git-bug.1 +++ b/doc/man/git-bug.1 @@ -1,4 +1,4 @@ -.TH "GIT-BUG" "1" "Oct 2018" "Generated from git-bug's source code" "" +.TH "GIT-BUG" "1" "Dec 2018" "Generated from git-bug's source code" "" .nh .ad l @@ -5,7 +5,12 @@ package main -import "github.com/MichaelMure/git-bug/commands" +import ( + "github.com/MichaelMure/git-bug/commands" + + // minimal go version is 1.8 + _ "github.com/theckman/goconstraint/go1.8/gte" +) func main() { commands.Execute() diff --git a/graphql/bug.graphql b/graphql/bug.graphql new file mode 100644 index 00000000..27bbba99 --- /dev/null +++ b/graphql/bug.graphql @@ -0,0 +1,122 @@ +"""Represents an person""" +type Person { + """The name of the person, if known.""" + name: String + """The email of the person, if known.""" + email: String + """The login of the person, if known.""" + login: String + """A string containing the either the name of the person, its login or both""" + displayName: String! + """An url to an avatar""" + avatarUrl: String +} + +"""Represents a comment on a bug.""" +type Comment implements Authored { + """The author of this comment.""" + author: Person! + + """The message of this comment.""" + message: String! + + """All media's hash referenced in this comment""" + files: [Hash!]! +} + +type CommentConnection { + edges: [CommentEdge!]! + nodes: [Comment!]! + pageInfo: PageInfo! + totalCount: Int! +} + +type CommentEdge { + cursor: String! + node: Comment! +} + +enum Status { + OPEN + CLOSED +} + +type Bug { + id: String! + humanId: String! + status: Status! + title: String! + labels: [Label!]! + author: Person! + createdAt: Time! + lastEdit: Time! + + comments( + """Returns the elements in the list that come after the specified cursor.""" + after: String + """Returns the elements in the list that come before the specified cursor.""" + before: String + """Returns the first _n_ elements from the list.""" + first: Int + """Returns the last _n_ elements from the list.""" + last: Int + ): CommentConnection! + + timeline( + """Returns the elements in the list that come after the specified cursor.""" + after: String + """Returns the elements in the list that come before the specified cursor.""" + before: String + """Returns the first _n_ elements from the list.""" + first: Int + """Returns the last _n_ elements from the list.""" + last: Int + ): TimelineItemConnection! + + operations( + """Returns the elements in the list that come after the specified cursor.""" + after: String + """Returns the elements in the list that come before the specified cursor.""" + before: String + """Returns the first _n_ elements from the list.""" + first: Int + """Returns the last _n_ elements from the list.""" + last: Int + ): OperationConnection! +} + +"""The connection type for Bug.""" +type BugConnection { + """A list of edges.""" + edges: [BugEdge!]! + nodes: [Bug!]! + """Information to aid in pagination.""" + pageInfo: PageInfo! + """Identifies the total count of items in the connection.""" + totalCount: Int! +} + +"""An edge in a connection.""" +type BugEdge { + """A cursor for use in pagination.""" + cursor: String! + """The item at the end of the edge.""" + node: Bug! +} + +type Repository { + allBugs( + """Returns the elements in the list that come after the specified cursor.""" + after: String + """Returns the elements in the list that come before the specified cursor.""" + before: String + """Returns the first _n_ elements from the list.""" + first: Int + """Returns the last _n_ elements from the list.""" + last: Int + """A query to select and order bugs""" + query: String + ): BugConnection! + bug(prefix: String!): Bug +} + diff --git a/graphql/gen_graphql.go b/graphql/gen_graphql.go index 84e0cfe0..41fa71a9 100644 --- a/graphql/gen_graphql.go +++ b/graphql/gen_graphql.go @@ -4,43 +4,12 @@ package main import ( "fmt" - "io/ioutil" - "log" - "os" - "path" - "github.com/99designs/gqlgen/codegen" + "github.com/99designs/gqlgen/cmd" ) func main() { - current, err := os.Getwd() - if err != nil { - log.Fatal(err.Error()) - } - - os.Chdir(path.Join(current, "graphql")) - fmt.Println("Generating graphql code ...") - log.SetOutput(os.Stdout) - - config, err := codegen.LoadConfigFromDefaultLocations() - if err != nil { - log.Fatal(err) - } - - schemaRaw, err := ioutil.ReadFile(config.SchemaFilename) - if err != nil { - log.Fatal("unable to open schema: " + err.Error()) - } - config.SchemaStr = string(schemaRaw) - - if err = config.Check(); err != nil { - log.Fatal("invalid config format: " + err.Error()) - } - - err = codegen.Generate(*config) - if err != nil { - log.Fatal(err.Error()) - } + cmd.Execute() } diff --git a/graphql/gqlgen.yml b/graphql/gqlgen.yml index 19bf686e..b6dc3ae5 100644 --- a/graphql/gqlgen.yml +++ b/graphql/gqlgen.yml @@ -1,4 +1,4 @@ -schema: schema.graphql +schema: "*.graphql" exec: filename: graph/gen_graph.go model: diff --git a/graphql/graph/gen_graph.go b/graphql/graph/gen_graph.go index 82862d69..e7d09ef4 100644 --- a/graphql/graph/gen_graph.go +++ b/graphql/graph/gen_graph.go @@ -4,19 +4,20 @@ package graph import ( "bytes" - context "context" - fmt "fmt" - strconv "strconv" - sync "sync" - time "time" - - graphql "github.com/99designs/gqlgen/graphql" - introspection "github.com/99designs/gqlgen/graphql/introspection" - bug "github.com/MichaelMure/git-bug/bug" - models "github.com/MichaelMure/git-bug/graphql/models" - git "github.com/MichaelMure/git-bug/util/git" - gqlparser "github.com/vektah/gqlparser" - ast "github.com/vektah/gqlparser/ast" + "context" + "errors" + "fmt" + "strconv" + "sync" + "time" + + "github.com/99designs/gqlgen/graphql" + "github.com/99designs/gqlgen/graphql/introspection" + "github.com/MichaelMure/git-bug/bug" + "github.com/MichaelMure/git-bug/graphql/models" + "github.com/MichaelMure/git-bug/util/git" + "github.com/vektah/gqlparser" + "github.com/vektah/gqlparser/ast" ) // NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface. @@ -67,14 +68,15 @@ type ComplexityRoot struct { } AddCommentTimelineItem struct { - Hash func(childComplexity int) int - Author func(childComplexity int) int - Message func(childComplexity int) int - Files func(childComplexity int) int - CreatedAt func(childComplexity int) int - LastEdit func(childComplexity int) int - Edited func(childComplexity int) int - History func(childComplexity int) int + Hash func(childComplexity int) int + Author func(childComplexity int) int + Message func(childComplexity int) int + MessageIsEmpty func(childComplexity int) int + Files func(childComplexity int) int + CreatedAt func(childComplexity int) int + LastEdit func(childComplexity int) int + Edited func(childComplexity int) int + History func(childComplexity int) int } Bug struct { @@ -136,14 +138,15 @@ type ComplexityRoot struct { } CreateTimelineItem struct { - Hash func(childComplexity int) int - Author func(childComplexity int) int - Message func(childComplexity int) int - Files func(childComplexity int) int - CreatedAt func(childComplexity int) int - LastEdit func(childComplexity int) int - Edited func(childComplexity int) int - History func(childComplexity int) int + Hash func(childComplexity int) int + Author func(childComplexity int) int + Message func(childComplexity int) int + MessageIsEmpty func(childComplexity int) int + Files func(childComplexity int) int + CreatedAt func(childComplexity int) int + LastEdit func(childComplexity int) int + Edited func(childComplexity int) int + History func(childComplexity int) int } EditCommentOperation struct { @@ -1050,6 +1053,13 @@ func (e *executableSchema) Complexity(typeName, field string, childComplexity in return e.complexity.AddCommentTimelineItem.Message(childComplexity), true + case "AddCommentTimelineItem.messageIsEmpty": + if e.complexity.AddCommentTimelineItem.MessageIsEmpty == nil { + break + } + + return e.complexity.AddCommentTimelineItem.MessageIsEmpty(childComplexity), true + case "AddCommentTimelineItem.files": if e.complexity.AddCommentTimelineItem.Files == nil { break @@ -1359,6 +1369,13 @@ func (e *executableSchema) Complexity(typeName, field string, childComplexity in return e.complexity.CreateTimelineItem.Message(childComplexity), true + case "CreateTimelineItem.messageIsEmpty": + if e.complexity.CreateTimelineItem.MessageIsEmpty == nil { + break + } + + return e.complexity.CreateTimelineItem.MessageIsEmpty(childComplexity), true + case "CreateTimelineItem.files": if e.complexity.CreateTimelineItem.Files == nil { break @@ -1921,9 +1938,9 @@ func (e *executableSchema) Query(ctx context.Context, op *ast.OperationDefinitio }) return &graphql.Response{ - Data: buf, - Errors: ec.Errors, - } + Data: buf, + Errors: ec.Errors, + Extensions: ec.Extensions} } func (e *executableSchema) Mutation(ctx context.Context, op *ast.OperationDefinition) *graphql.Response { @@ -1937,8 +1954,9 @@ func (e *executableSchema) Mutation(ctx context.Context, op *ast.OperationDefini }) return &graphql.Response{ - Data: buf, - Errors: ec.Errors, + Data: buf, + Errors: ec.Errors, + Extensions: ec.Extensions, } } @@ -2008,13 +2026,17 @@ func (ec *executionContext) _AddCommentOperation(ctx context.Context, sel ast.Se // nolint: vetshadow func (ec *executionContext) _AddCommentOperation_hash(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash() }) if resTmp == nil { @@ -2025,18 +2047,23 @@ func (ec *executionContext) _AddCommentOperation_hash(ctx context.Context, field } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _AddCommentOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -2047,20 +2074,25 @@ func (ec *executionContext) _AddCommentOperation_author(ctx context.Context, fie } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _AddCommentOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.AddCommentOperation().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.AddCommentOperation().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -2070,18 +2102,23 @@ func (ec *executionContext) _AddCommentOperation_date(ctx context.Context, field } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _AddCommentOperation_message(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Message, nil }) if resTmp == nil { @@ -2092,18 +2129,23 @@ func (ec *executionContext) _AddCommentOperation_message(ctx context.Context, fi } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _AddCommentOperation_files(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Files, nil }) if resTmp == nil { @@ -2114,6 +2156,7 @@ func (ec *executionContext) _AddCommentOperation_files(ctx context.Context, fiel } res := resTmp.([]git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -2156,6 +2199,11 @@ func (ec *executionContext) _AddCommentTimelineItem(ctx context.Context, sel ast if out.Values[i] == graphql.Null { invalid = true } + case "messageIsEmpty": + out.Values[i] = ec._AddCommentTimelineItem_messageIsEmpty(ctx, field, obj) + if out.Values[i] == graphql.Null { + invalid = true + } case "files": out.Values[i] = ec._AddCommentTimelineItem_files(ctx, field, obj) if out.Values[i] == graphql.Null { @@ -2202,13 +2250,17 @@ func (ec *executionContext) _AddCommentTimelineItem(ctx context.Context, sel ast // nolint: vetshadow func (ec *executionContext) _AddCommentTimelineItem_hash(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash(), nil }) if resTmp == nil { @@ -2219,18 +2271,23 @@ func (ec *executionContext) _AddCommentTimelineItem_hash(ctx context.Context, fi } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _AddCommentTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -2241,19 +2298,24 @@ func (ec *executionContext) _AddCommentTimelineItem_author(ctx context.Context, } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _AddCommentTimelineItem_message(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Message, nil }) if resTmp == nil { @@ -2264,18 +2326,50 @@ func (ec *executionContext) _AddCommentTimelineItem_message(ctx context.Context, } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow +func (ec *executionContext) _AddCommentTimelineItem_messageIsEmpty(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() + rctx := &graphql.ResolverContext{ + Object: "AddCommentTimelineItem", + Args: nil, + Field: field, + } + ctx = graphql.WithResolverContext(ctx, rctx) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return obj.MessageIsEmpty(), nil + }) + if resTmp == nil { + if !ec.HasError(rctx) { + ec.Errorf(ctx, "must not be null") + } + return graphql.Null + } + res := resTmp.(bool) + rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) + return graphql.MarshalBoolean(res) +} + +// nolint: vetshadow func (ec *executionContext) _AddCommentTimelineItem_files(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Files, nil }) if resTmp == nil { @@ -2286,6 +2380,7 @@ func (ec *executionContext) _AddCommentTimelineItem_files(ctx context.Context, f } res := resTmp.([]git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -2300,14 +2395,18 @@ func (ec *executionContext) _AddCommentTimelineItem_files(ctx context.Context, f // nolint: vetshadow func (ec *executionContext) _AddCommentTimelineItem_createdAt(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.AddCommentTimelineItem().CreatedAt(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.AddCommentTimelineItem().CreatedAt(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -2317,19 +2416,24 @@ func (ec *executionContext) _AddCommentTimelineItem_createdAt(ctx context.Contex } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _AddCommentTimelineItem_lastEdit(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.AddCommentTimelineItem().LastEdit(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.AddCommentTimelineItem().LastEdit(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -2339,18 +2443,23 @@ func (ec *executionContext) _AddCommentTimelineItem_lastEdit(ctx context.Context } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _AddCommentTimelineItem_edited(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Edited(), nil }) if resTmp == nil { @@ -2361,18 +2470,23 @@ func (ec *executionContext) _AddCommentTimelineItem_edited(ctx context.Context, } res := resTmp.(bool) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalBoolean(res) } // nolint: vetshadow func (ec *executionContext) _AddCommentTimelineItem_history(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "AddCommentTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.History, nil }) if resTmp == nil { @@ -2383,6 +2497,7 @@ func (ec *executionContext) _AddCommentTimelineItem_history(ctx context.Context, } res := resTmp.([]bug.CommentHistoryStep) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -2522,13 +2637,17 @@ func (ec *executionContext) _Bug(ctx context.Context, sel ast.SelectionSet, obj // nolint: vetshadow func (ec *executionContext) _Bug_id(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Bug", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Id(), nil }) if resTmp == nil { @@ -2539,18 +2658,23 @@ func (ec *executionContext) _Bug_id(ctx context.Context, field graphql.Collected } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _Bug_humanId(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Bug", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.HumanId(), nil }) if resTmp == nil { @@ -2561,19 +2685,24 @@ func (ec *executionContext) _Bug_humanId(ctx context.Context, field graphql.Coll } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _Bug_status(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Bug", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Bug().Status(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Bug().Status(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -2583,18 +2712,23 @@ func (ec *executionContext) _Bug_status(ctx context.Context, field graphql.Colle } res := resTmp.(models.Status) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _Bug_title(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Bug", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Title, nil }) if resTmp == nil { @@ -2605,18 +2739,23 @@ func (ec *executionContext) _Bug_title(ctx context.Context, field graphql.Collec } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _Bug_labels(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Bug", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Labels, nil }) if resTmp == nil { @@ -2627,6 +2766,7 @@ func (ec *executionContext) _Bug_labels(ctx context.Context, field graphql.Colle } res := resTmp.([]bug.Label) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -2641,13 +2781,17 @@ func (ec *executionContext) _Bug_labels(ctx context.Context, field graphql.Colle // nolint: vetshadow func (ec *executionContext) _Bug_author(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Bug", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -2658,19 +2802,24 @@ func (ec *executionContext) _Bug_author(ctx context.Context, field graphql.Colle } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Bug_createdAt(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Bug", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.CreatedAt, nil }) if resTmp == nil { @@ -2681,19 +2830,24 @@ func (ec *executionContext) _Bug_createdAt(ctx context.Context, field graphql.Co } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _Bug_lastEdit(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Bug", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Bug().LastEdit(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Bug().LastEdit(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -2703,11 +2857,14 @@ func (ec *executionContext) _Bug_lastEdit(ctx context.Context, field graphql.Col } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _Bug_comments(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Bug_comments_args(rawArgs) if err != nil { @@ -2720,8 +2877,10 @@ func (ec *executionContext) _Bug_comments(ctx context.Context, field graphql.Col Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Bug().Comments(ctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Bug().Comments(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -2731,12 +2890,15 @@ func (ec *executionContext) _Bug_comments(ctx context.Context, field graphql.Col } res := resTmp.(models.CommentConnection) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._CommentConnection(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Bug_timeline(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Bug_timeline_args(rawArgs) if err != nil { @@ -2749,8 +2911,10 @@ func (ec *executionContext) _Bug_timeline(ctx context.Context, field graphql.Col Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Bug().Timeline(ctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Bug().Timeline(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -2760,12 +2924,15 @@ func (ec *executionContext) _Bug_timeline(ctx context.Context, field graphql.Col } res := resTmp.(models.TimelineItemConnection) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._TimelineItemConnection(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Bug_operations(ctx context.Context, field graphql.CollectedField, obj *bug.Snapshot) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Bug_operations_args(rawArgs) if err != nil { @@ -2778,8 +2945,10 @@ func (ec *executionContext) _Bug_operations(ctx context.Context, field graphql.C Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Bug().Operations(ctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Bug().Operations(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -2789,6 +2958,7 @@ func (ec *executionContext) _Bug_operations(ctx context.Context, field graphql.C } res := resTmp.(models.OperationConnection) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._OperationConnection(ctx, field.Selections, &res) } @@ -2840,13 +3010,17 @@ func (ec *executionContext) _BugConnection(ctx context.Context, sel ast.Selectio // nolint: vetshadow func (ec *executionContext) _BugConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "BugConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Edges, nil }) if resTmp == nil { @@ -2857,6 +3031,7 @@ func (ec *executionContext) _BugConnection_edges(ctx context.Context, field grap } res := resTmp.([]models.BugEdge) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -2895,13 +3070,17 @@ func (ec *executionContext) _BugConnection_edges(ctx context.Context, field grap // nolint: vetshadow func (ec *executionContext) _BugConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "BugConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Nodes, nil }) if resTmp == nil { @@ -2912,6 +3091,7 @@ func (ec *executionContext) _BugConnection_nodes(ctx context.Context, field grap } res := resTmp.([]bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -2950,13 +3130,17 @@ func (ec *executionContext) _BugConnection_nodes(ctx context.Context, field grap // nolint: vetshadow func (ec *executionContext) _BugConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "BugConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.PageInfo, nil }) if resTmp == nil { @@ -2967,19 +3151,24 @@ func (ec *executionContext) _BugConnection_pageInfo(ctx context.Context, field g } res := resTmp.(models.PageInfo) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._PageInfo(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _BugConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "BugConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.TotalCount, nil }) if resTmp == nil { @@ -2990,6 +3179,7 @@ func (ec *executionContext) _BugConnection_totalCount(ctx context.Context, field } res := resTmp.(int) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalInt(res) } @@ -3030,13 +3220,17 @@ func (ec *executionContext) _BugEdge(ctx context.Context, sel ast.SelectionSet, // nolint: vetshadow func (ec *executionContext) _BugEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.BugEdge) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "BugEdge", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Cursor, nil }) if resTmp == nil { @@ -3047,18 +3241,23 @@ func (ec *executionContext) _BugEdge_cursor(ctx context.Context, field graphql.C } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _BugEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.BugEdge) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "BugEdge", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Node, nil }) if resTmp == nil { @@ -3069,6 +3268,7 @@ func (ec *executionContext) _BugEdge_node(ctx context.Context, field graphql.Col } res := resTmp.(bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Bug(ctx, field.Selections, &res) } @@ -3115,13 +3315,17 @@ func (ec *executionContext) _Comment(ctx context.Context, sel ast.SelectionSet, // nolint: vetshadow func (ec *executionContext) _Comment_author(ctx context.Context, field graphql.CollectedField, obj *bug.Comment) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Comment", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -3132,19 +3336,24 @@ func (ec *executionContext) _Comment_author(ctx context.Context, field graphql.C } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Comment_message(ctx context.Context, field graphql.CollectedField, obj *bug.Comment) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Comment", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Message, nil }) if resTmp == nil { @@ -3155,18 +3364,23 @@ func (ec *executionContext) _Comment_message(ctx context.Context, field graphql. } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _Comment_files(ctx context.Context, field graphql.CollectedField, obj *bug.Comment) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Comment", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Files, nil }) if resTmp == nil { @@ -3177,6 +3391,7 @@ func (ec *executionContext) _Comment_files(ctx context.Context, field graphql.Co } res := resTmp.([]git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -3236,13 +3451,17 @@ func (ec *executionContext) _CommentConnection(ctx context.Context, sel ast.Sele // nolint: vetshadow func (ec *executionContext) _CommentConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CommentConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Edges, nil }) if resTmp == nil { @@ -3253,6 +3472,7 @@ func (ec *executionContext) _CommentConnection_edges(ctx context.Context, field } res := resTmp.([]models.CommentEdge) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -3291,13 +3511,17 @@ func (ec *executionContext) _CommentConnection_edges(ctx context.Context, field // nolint: vetshadow func (ec *executionContext) _CommentConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CommentConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Nodes, nil }) if resTmp == nil { @@ -3308,6 +3532,7 @@ func (ec *executionContext) _CommentConnection_nodes(ctx context.Context, field } res := resTmp.([]bug.Comment) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -3346,13 +3571,17 @@ func (ec *executionContext) _CommentConnection_nodes(ctx context.Context, field // nolint: vetshadow func (ec *executionContext) _CommentConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CommentConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.PageInfo, nil }) if resTmp == nil { @@ -3363,19 +3592,24 @@ func (ec *executionContext) _CommentConnection_pageInfo(ctx context.Context, fie } res := resTmp.(models.PageInfo) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._PageInfo(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _CommentConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CommentConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.TotalCount, nil }) if resTmp == nil { @@ -3386,6 +3620,7 @@ func (ec *executionContext) _CommentConnection_totalCount(ctx context.Context, f } res := resTmp.(int) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalInt(res) } @@ -3426,13 +3661,17 @@ func (ec *executionContext) _CommentEdge(ctx context.Context, sel ast.SelectionS // nolint: vetshadow func (ec *executionContext) _CommentEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.CommentEdge) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CommentEdge", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Cursor, nil }) if resTmp == nil { @@ -3443,18 +3682,23 @@ func (ec *executionContext) _CommentEdge_cursor(ctx context.Context, field graph } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _CommentEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.CommentEdge) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CommentEdge", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Node, nil }) if resTmp == nil { @@ -3465,6 +3709,7 @@ func (ec *executionContext) _CommentEdge_node(ctx context.Context, field graphql } res := resTmp.(bug.Comment) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Comment(ctx, field.Selections, &res) } @@ -3511,13 +3756,17 @@ func (ec *executionContext) _CommentHistoryStep(ctx context.Context, sel ast.Sel // nolint: vetshadow func (ec *executionContext) _CommentHistoryStep_message(ctx context.Context, field graphql.CollectedField, obj *bug.CommentHistoryStep) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CommentHistoryStep", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Message, nil }) if resTmp == nil { @@ -3528,19 +3777,24 @@ func (ec *executionContext) _CommentHistoryStep_message(ctx context.Context, fie } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _CommentHistoryStep_date(ctx context.Context, field graphql.CollectedField, obj *bug.CommentHistoryStep) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CommentHistoryStep", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.CommentHistoryStep().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.CommentHistoryStep().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -3550,6 +3804,7 @@ func (ec *executionContext) _CommentHistoryStep_date(ctx context.Context, field } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } @@ -3615,13 +3870,17 @@ func (ec *executionContext) _CreateOperation(ctx context.Context, sel ast.Select // nolint: vetshadow func (ec *executionContext) _CreateOperation_hash(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash() }) if resTmp == nil { @@ -3632,18 +3891,23 @@ func (ec *executionContext) _CreateOperation_hash(ctx context.Context, field gra } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _CreateOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -3654,20 +3918,25 @@ func (ec *executionContext) _CreateOperation_author(ctx context.Context, field g } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _CreateOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.CreateOperation().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.CreateOperation().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -3677,18 +3946,23 @@ func (ec *executionContext) _CreateOperation_date(ctx context.Context, field gra } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _CreateOperation_title(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Title, nil }) if resTmp == nil { @@ -3699,18 +3973,23 @@ func (ec *executionContext) _CreateOperation_title(ctx context.Context, field gr } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _CreateOperation_message(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Message, nil }) if resTmp == nil { @@ -3721,18 +4000,23 @@ func (ec *executionContext) _CreateOperation_message(ctx context.Context, field } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _CreateOperation_files(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Files, nil }) if resTmp == nil { @@ -3743,6 +4027,7 @@ func (ec *executionContext) _CreateOperation_files(ctx context.Context, field gr } res := resTmp.([]git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -3785,6 +4070,11 @@ func (ec *executionContext) _CreateTimelineItem(ctx context.Context, sel ast.Sel if out.Values[i] == graphql.Null { invalid = true } + case "messageIsEmpty": + out.Values[i] = ec._CreateTimelineItem_messageIsEmpty(ctx, field, obj) + if out.Values[i] == graphql.Null { + invalid = true + } case "files": out.Values[i] = ec._CreateTimelineItem_files(ctx, field, obj) if out.Values[i] == graphql.Null { @@ -3831,13 +4121,17 @@ func (ec *executionContext) _CreateTimelineItem(ctx context.Context, sel ast.Sel // nolint: vetshadow func (ec *executionContext) _CreateTimelineItem_hash(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash(), nil }) if resTmp == nil { @@ -3848,18 +4142,23 @@ func (ec *executionContext) _CreateTimelineItem_hash(ctx context.Context, field } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _CreateTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -3870,19 +4169,24 @@ func (ec *executionContext) _CreateTimelineItem_author(ctx context.Context, fiel } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _CreateTimelineItem_message(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Message, nil }) if resTmp == nil { @@ -3893,18 +4197,50 @@ func (ec *executionContext) _CreateTimelineItem_message(ctx context.Context, fie } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow +func (ec *executionContext) _CreateTimelineItem_messageIsEmpty(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() + rctx := &graphql.ResolverContext{ + Object: "CreateTimelineItem", + Args: nil, + Field: field, + } + ctx = graphql.WithResolverContext(ctx, rctx) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return obj.MessageIsEmpty(), nil + }) + if resTmp == nil { + if !ec.HasError(rctx) { + ec.Errorf(ctx, "must not be null") + } + return graphql.Null + } + res := resTmp.(bool) + rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) + return graphql.MarshalBoolean(res) +} + +// nolint: vetshadow func (ec *executionContext) _CreateTimelineItem_files(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Files, nil }) if resTmp == nil { @@ -3915,6 +4251,7 @@ func (ec *executionContext) _CreateTimelineItem_files(ctx context.Context, field } res := resTmp.([]git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -3929,14 +4266,18 @@ func (ec *executionContext) _CreateTimelineItem_files(ctx context.Context, field // nolint: vetshadow func (ec *executionContext) _CreateTimelineItem_createdAt(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.CreateTimelineItem().CreatedAt(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.CreateTimelineItem().CreatedAt(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -3946,19 +4287,24 @@ func (ec *executionContext) _CreateTimelineItem_createdAt(ctx context.Context, f } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _CreateTimelineItem_lastEdit(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.CreateTimelineItem().LastEdit(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.CreateTimelineItem().LastEdit(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -3968,18 +4314,23 @@ func (ec *executionContext) _CreateTimelineItem_lastEdit(ctx context.Context, fi } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _CreateTimelineItem_edited(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Edited(), nil }) if resTmp == nil { @@ -3990,18 +4341,23 @@ func (ec *executionContext) _CreateTimelineItem_edited(ctx context.Context, fiel } res := resTmp.(bool) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalBoolean(res) } // nolint: vetshadow func (ec *executionContext) _CreateTimelineItem_history(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "CreateTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.History, nil }) if resTmp == nil { @@ -4012,6 +4368,7 @@ func (ec *executionContext) _CreateTimelineItem_history(ctx context.Context, fie } res := resTmp.([]bug.CommentHistoryStep) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -4110,13 +4467,17 @@ func (ec *executionContext) _EditCommentOperation(ctx context.Context, sel ast.S // nolint: vetshadow func (ec *executionContext) _EditCommentOperation_hash(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "EditCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash() }) if resTmp == nil { @@ -4127,18 +4488,23 @@ func (ec *executionContext) _EditCommentOperation_hash(ctx context.Context, fiel } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _EditCommentOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "EditCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -4149,20 +4515,25 @@ func (ec *executionContext) _EditCommentOperation_author(ctx context.Context, fi } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _EditCommentOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "EditCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.EditCommentOperation().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.EditCommentOperation().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4172,18 +4543,23 @@ func (ec *executionContext) _EditCommentOperation_date(ctx context.Context, fiel } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _EditCommentOperation_target(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "EditCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Target, nil }) if resTmp == nil { @@ -4194,18 +4570,23 @@ func (ec *executionContext) _EditCommentOperation_target(ctx context.Context, fi } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _EditCommentOperation_message(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "EditCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Message, nil }) if resTmp == nil { @@ -4216,18 +4597,23 @@ func (ec *executionContext) _EditCommentOperation_message(ctx context.Context, f } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _EditCommentOperation_files(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "EditCommentOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Files, nil }) if resTmp == nil { @@ -4238,6 +4624,7 @@ func (ec *executionContext) _EditCommentOperation_files(ctx context.Context, fie } res := resTmp.([]git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -4307,13 +4694,17 @@ func (ec *executionContext) _LabelChangeOperation(ctx context.Context, sel ast.S // nolint: vetshadow func (ec *executionContext) _LabelChangeOperation_hash(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash() }) if resTmp == nil { @@ -4324,18 +4715,23 @@ func (ec *executionContext) _LabelChangeOperation_hash(ctx context.Context, fiel } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _LabelChangeOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -4346,20 +4742,25 @@ func (ec *executionContext) _LabelChangeOperation_author(ctx context.Context, fi } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _LabelChangeOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.LabelChangeOperation().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.LabelChangeOperation().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4369,18 +4770,23 @@ func (ec *executionContext) _LabelChangeOperation_date(ctx context.Context, fiel } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _LabelChangeOperation_added(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Added, nil }) if resTmp == nil { @@ -4391,6 +4797,7 @@ func (ec *executionContext) _LabelChangeOperation_added(ctx context.Context, fie } res := resTmp.([]bug.Label) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -4405,13 +4812,17 @@ func (ec *executionContext) _LabelChangeOperation_added(ctx context.Context, fie // nolint: vetshadow func (ec *executionContext) _LabelChangeOperation_removed(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Removed, nil }) if resTmp == nil { @@ -4422,6 +4833,7 @@ func (ec *executionContext) _LabelChangeOperation_removed(ctx context.Context, f } res := resTmp.([]bug.Label) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -4491,13 +4903,17 @@ func (ec *executionContext) _LabelChangeTimelineItem(ctx context.Context, sel as // nolint: vetshadow func (ec *executionContext) _LabelChangeTimelineItem_hash(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash(), nil }) if resTmp == nil { @@ -4508,18 +4924,23 @@ func (ec *executionContext) _LabelChangeTimelineItem_hash(ctx context.Context, f } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _LabelChangeTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -4530,20 +4951,25 @@ func (ec *executionContext) _LabelChangeTimelineItem_author(ctx context.Context, } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _LabelChangeTimelineItem_date(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.LabelChangeTimelineItem().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.LabelChangeTimelineItem().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4553,18 +4979,23 @@ func (ec *executionContext) _LabelChangeTimelineItem_date(ctx context.Context, f } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _LabelChangeTimelineItem_added(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Added, nil }) if resTmp == nil { @@ -4575,6 +5006,7 @@ func (ec *executionContext) _LabelChangeTimelineItem_added(ctx context.Context, } res := resTmp.([]bug.Label) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -4589,13 +5021,17 @@ func (ec *executionContext) _LabelChangeTimelineItem_added(ctx context.Context, // nolint: vetshadow func (ec *executionContext) _LabelChangeTimelineItem_removed(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "LabelChangeTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Removed, nil }) if resTmp == nil { @@ -4606,6 +5042,7 @@ func (ec *executionContext) _LabelChangeTimelineItem_removed(ctx context.Context } res := resTmp.([]bug.Label) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -4684,6 +5121,8 @@ func (ec *executionContext) _Mutation(ctx context.Context, sel ast.SelectionSet) // nolint: vetshadow func (ec *executionContext) _Mutation_newBug(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Mutation_newBug_args(rawArgs) if err != nil { @@ -4696,8 +5135,10 @@ func (ec *executionContext) _Mutation_newBug(ctx context.Context, field graphql. Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Mutation().NewBug(ctx, args["repoRef"].(*string), args["title"].(string), args["message"].(string), args["files"].([]git.Hash)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Mutation().NewBug(rctx, args["repoRef"].(*string), args["title"].(string), args["message"].(string), args["files"].([]git.Hash)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4707,12 +5148,15 @@ func (ec *executionContext) _Mutation_newBug(ctx context.Context, field graphql. } res := resTmp.(bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Bug(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Mutation_addComment(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Mutation_addComment_args(rawArgs) if err != nil { @@ -4725,8 +5169,10 @@ func (ec *executionContext) _Mutation_addComment(ctx context.Context, field grap Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Mutation().AddComment(ctx, args["repoRef"].(*string), args["prefix"].(string), args["message"].(string), args["files"].([]git.Hash)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Mutation().AddComment(rctx, args["repoRef"].(*string), args["prefix"].(string), args["message"].(string), args["files"].([]git.Hash)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4736,12 +5182,15 @@ func (ec *executionContext) _Mutation_addComment(ctx context.Context, field grap } res := resTmp.(bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Bug(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Mutation_changeLabels(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Mutation_changeLabels_args(rawArgs) if err != nil { @@ -4754,8 +5203,10 @@ func (ec *executionContext) _Mutation_changeLabels(ctx context.Context, field gr Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Mutation().ChangeLabels(ctx, args["repoRef"].(*string), args["prefix"].(string), args["added"].([]string), args["removed"].([]string)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Mutation().ChangeLabels(rctx, args["repoRef"].(*string), args["prefix"].(string), args["added"].([]string), args["removed"].([]string)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4765,12 +5216,15 @@ func (ec *executionContext) _Mutation_changeLabels(ctx context.Context, field gr } res := resTmp.(bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Bug(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Mutation_open(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Mutation_open_args(rawArgs) if err != nil { @@ -4783,8 +5237,10 @@ func (ec *executionContext) _Mutation_open(ctx context.Context, field graphql.Co Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Mutation().Open(ctx, args["repoRef"].(*string), args["prefix"].(string)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Mutation().Open(rctx, args["repoRef"].(*string), args["prefix"].(string)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4794,12 +5250,15 @@ func (ec *executionContext) _Mutation_open(ctx context.Context, field graphql.Co } res := resTmp.(bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Bug(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Mutation_close(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Mutation_close_args(rawArgs) if err != nil { @@ -4812,8 +5271,10 @@ func (ec *executionContext) _Mutation_close(ctx context.Context, field graphql.C Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Mutation().Close(ctx, args["repoRef"].(*string), args["prefix"].(string)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Mutation().Close(rctx, args["repoRef"].(*string), args["prefix"].(string)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4823,12 +5284,15 @@ func (ec *executionContext) _Mutation_close(ctx context.Context, field graphql.C } res := resTmp.(bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Bug(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Mutation_setTitle(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Mutation_setTitle_args(rawArgs) if err != nil { @@ -4841,8 +5305,10 @@ func (ec *executionContext) _Mutation_setTitle(ctx context.Context, field graphq Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Mutation().SetTitle(ctx, args["repoRef"].(*string), args["prefix"].(string), args["title"].(string)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Mutation().SetTitle(rctx, args["repoRef"].(*string), args["prefix"].(string), args["title"].(string)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4852,12 +5318,15 @@ func (ec *executionContext) _Mutation_setTitle(ctx context.Context, field graphq } res := resTmp.(bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Bug(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Mutation_commit(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Mutation_commit_args(rawArgs) if err != nil { @@ -4870,8 +5339,10 @@ func (ec *executionContext) _Mutation_commit(ctx context.Context, field graphql. Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Mutation().Commit(ctx, args["repoRef"].(*string), args["prefix"].(string)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Mutation().Commit(rctx, args["repoRef"].(*string), args["prefix"].(string)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -4881,6 +5352,7 @@ func (ec *executionContext) _Mutation_commit(ctx context.Context, field graphql. } res := resTmp.(bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Bug(ctx, field.Selections, &res) } @@ -4932,13 +5404,17 @@ func (ec *executionContext) _OperationConnection(ctx context.Context, sel ast.Se // nolint: vetshadow func (ec *executionContext) _OperationConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "OperationConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Edges, nil }) if resTmp == nil { @@ -4949,6 +5425,7 @@ func (ec *executionContext) _OperationConnection_edges(ctx context.Context, fiel } res := resTmp.([]models.OperationEdge) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -4987,13 +5464,17 @@ func (ec *executionContext) _OperationConnection_edges(ctx context.Context, fiel // nolint: vetshadow func (ec *executionContext) _OperationConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "OperationConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Nodes, nil }) if resTmp == nil { @@ -5004,6 +5485,7 @@ func (ec *executionContext) _OperationConnection_nodes(ctx context.Context, fiel } res := resTmp.([]bug.Operation) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -5042,13 +5524,17 @@ func (ec *executionContext) _OperationConnection_nodes(ctx context.Context, fiel // nolint: vetshadow func (ec *executionContext) _OperationConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "OperationConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.PageInfo, nil }) if resTmp == nil { @@ -5059,19 +5545,24 @@ func (ec *executionContext) _OperationConnection_pageInfo(ctx context.Context, f } res := resTmp.(models.PageInfo) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._PageInfo(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _OperationConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "OperationConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.TotalCount, nil }) if resTmp == nil { @@ -5082,6 +5573,7 @@ func (ec *executionContext) _OperationConnection_totalCount(ctx context.Context, } res := resTmp.(int) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalInt(res) } @@ -5122,13 +5614,17 @@ func (ec *executionContext) _OperationEdge(ctx context.Context, sel ast.Selectio // nolint: vetshadow func (ec *executionContext) _OperationEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.OperationEdge) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "OperationEdge", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Cursor, nil }) if resTmp == nil { @@ -5139,18 +5635,23 @@ func (ec *executionContext) _OperationEdge_cursor(ctx context.Context, field gra } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _OperationEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.OperationEdge) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "OperationEdge", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Node, nil }) if resTmp == nil { @@ -5161,6 +5662,7 @@ func (ec *executionContext) _OperationEdge_node(ctx context.Context, field graph } res := resTmp.(bug.Operation) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Operation(ctx, field.Selections, &res) } @@ -5212,13 +5714,17 @@ func (ec *executionContext) _PageInfo(ctx context.Context, sel ast.SelectionSet, // nolint: vetshadow func (ec *executionContext) _PageInfo_hasNextPage(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "PageInfo", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.HasNextPage, nil }) if resTmp == nil { @@ -5229,18 +5735,23 @@ func (ec *executionContext) _PageInfo_hasNextPage(ctx context.Context, field gra } res := resTmp.(bool) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalBoolean(res) } // nolint: vetshadow func (ec *executionContext) _PageInfo_hasPreviousPage(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "PageInfo", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.HasPreviousPage, nil }) if resTmp == nil { @@ -5251,18 +5762,23 @@ func (ec *executionContext) _PageInfo_hasPreviousPage(ctx context.Context, field } res := resTmp.(bool) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalBoolean(res) } // nolint: vetshadow func (ec *executionContext) _PageInfo_startCursor(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "PageInfo", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.StartCursor, nil }) if resTmp == nil { @@ -5273,18 +5789,23 @@ func (ec *executionContext) _PageInfo_startCursor(ctx context.Context, field gra } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _PageInfo_endCursor(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "PageInfo", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.EndCursor, nil }) if resTmp == nil { @@ -5295,6 +5816,7 @@ func (ec *executionContext) _PageInfo_endCursor(ctx context.Context, field graph } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } @@ -5355,20 +5877,25 @@ func (ec *executionContext) _Person(ctx context.Context, sel ast.SelectionSet, o // nolint: vetshadow func (ec *executionContext) _Person_name(ctx context.Context, field graphql.CollectedField, obj *bug.Person) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Person", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Person().Name(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Person().Name(rctx, obj) }) if resTmp == nil { return graphql.Null } res := resTmp.(*string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -5378,20 +5905,25 @@ func (ec *executionContext) _Person_name(ctx context.Context, field graphql.Coll // nolint: vetshadow func (ec *executionContext) _Person_email(ctx context.Context, field graphql.CollectedField, obj *bug.Person) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Person", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Person().Email(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Person().Email(rctx, obj) }) if resTmp == nil { return graphql.Null } res := resTmp.(*string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -5401,20 +5933,25 @@ func (ec *executionContext) _Person_email(ctx context.Context, field graphql.Col // nolint: vetshadow func (ec *executionContext) _Person_login(ctx context.Context, field graphql.CollectedField, obj *bug.Person) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Person", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Person().Login(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Person().Login(rctx, obj) }) if resTmp == nil { return graphql.Null } res := resTmp.(*string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -5424,13 +5961,17 @@ func (ec *executionContext) _Person_login(ctx context.Context, field graphql.Col // nolint: vetshadow func (ec *executionContext) _Person_displayName(ctx context.Context, field graphql.CollectedField, obj *bug.Person) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Person", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.DisplayName(), nil }) if resTmp == nil { @@ -5441,25 +5982,31 @@ func (ec *executionContext) _Person_displayName(ctx context.Context, field graph } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _Person_avatarUrl(ctx context.Context, field graphql.CollectedField, obj *bug.Person) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Person", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Person().AvatarURL(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Person().AvatarURL(rctx, obj) }) if resTmp == nil { return graphql.Null } res := resTmp.(*string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -5515,20 +6062,25 @@ func (ec *executionContext) _Query(ctx context.Context, sel ast.SelectionSet) gr // nolint: vetshadow func (ec *executionContext) _Query_defaultRepository(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Query", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Query().DefaultRepository(ctx) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Query().DefaultRepository(rctx) }) if resTmp == nil { return graphql.Null } res := resTmp.(*models.Repository) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -5539,6 +6091,8 @@ func (ec *executionContext) _Query_defaultRepository(ctx context.Context, field // nolint: vetshadow func (ec *executionContext) _Query_repository(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Query_repository_args(rawArgs) if err != nil { @@ -5551,14 +6105,17 @@ func (ec *executionContext) _Query_repository(ctx context.Context, field graphql Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Query().Repository(ctx, args["id"].(string)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Query().Repository(rctx, args["id"].(string)) }) if resTmp == nil { return graphql.Null } res := resTmp.(*models.Repository) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -5569,6 +6126,8 @@ func (ec *executionContext) _Query_repository(ctx context.Context, field graphql // nolint: vetshadow func (ec *executionContext) _Query___type(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Query___type_args(rawArgs) if err != nil { @@ -5581,14 +6140,17 @@ func (ec *executionContext) _Query___type(ctx context.Context, field graphql.Col Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.introspectType(args["name"].(string)), nil + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.introspectType(args["name"].(string)) }) if resTmp == nil { return graphql.Null } res := resTmp.(*introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -5599,20 +6161,25 @@ func (ec *executionContext) _Query___type(ctx context.Context, field graphql.Col // nolint: vetshadow func (ec *executionContext) _Query___schema(ctx context.Context, field graphql.CollectedField) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "Query", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, nil, func(ctx context.Context) (interface{}, error) { - return ec.introspectSchema(), nil + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, nil, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.introspectSchema() }) if resTmp == nil { return graphql.Null } res := resTmp.(*introspection.Schema) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -5664,6 +6231,8 @@ func (ec *executionContext) _Repository(ctx context.Context, sel ast.SelectionSe // nolint: vetshadow func (ec *executionContext) _Repository_allBugs(ctx context.Context, field graphql.CollectedField, obj *models.Repository) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Repository_allBugs_args(rawArgs) if err != nil { @@ -5676,8 +6245,10 @@ func (ec *executionContext) _Repository_allBugs(ctx context.Context, field graph Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Repository().AllBugs(ctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int), args["query"].(*string)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Repository().AllBugs(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int), args["query"].(*string)) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -5687,12 +6258,15 @@ func (ec *executionContext) _Repository_allBugs(ctx context.Context, field graph } res := resTmp.(models.BugConnection) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._BugConnection(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _Repository_bug(ctx context.Context, field graphql.CollectedField, obj *models.Repository) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field_Repository_bug_args(rawArgs) if err != nil { @@ -5705,14 +6279,17 @@ func (ec *executionContext) _Repository_bug(ctx context.Context, field graphql.C Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.Repository().Bug(ctx, obj, args["prefix"].(string)) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.Repository().Bug(rctx, obj, args["prefix"].(string)) }) if resTmp == nil { return graphql.Null } res := resTmp.(*bug.Snapshot) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -5777,13 +6354,17 @@ func (ec *executionContext) _SetStatusOperation(ctx context.Context, sel ast.Sel // nolint: vetshadow func (ec *executionContext) _SetStatusOperation_hash(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetStatusOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash() }) if resTmp == nil { @@ -5794,18 +6375,23 @@ func (ec *executionContext) _SetStatusOperation_hash(ctx context.Context, field } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _SetStatusOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetStatusOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -5816,20 +6402,25 @@ func (ec *executionContext) _SetStatusOperation_author(ctx context.Context, fiel } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _SetStatusOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetStatusOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.SetStatusOperation().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.SetStatusOperation().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -5839,19 +6430,24 @@ func (ec *executionContext) _SetStatusOperation_date(ctx context.Context, field } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _SetStatusOperation_status(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetStatusOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.SetStatusOperation().Status(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.SetStatusOperation().Status(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -5861,6 +6457,7 @@ func (ec *executionContext) _SetStatusOperation_status(ctx context.Context, fiel } res := resTmp.(models.Status) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } @@ -5920,13 +6517,17 @@ func (ec *executionContext) _SetStatusTimelineItem(ctx context.Context, sel ast. // nolint: vetshadow func (ec *executionContext) _SetStatusTimelineItem_hash(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetStatusTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash(), nil }) if resTmp == nil { @@ -5937,18 +6538,23 @@ func (ec *executionContext) _SetStatusTimelineItem_hash(ctx context.Context, fie } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _SetStatusTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetStatusTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -5959,20 +6565,25 @@ func (ec *executionContext) _SetStatusTimelineItem_author(ctx context.Context, f } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _SetStatusTimelineItem_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetStatusTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.SetStatusTimelineItem().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.SetStatusTimelineItem().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -5982,19 +6593,24 @@ func (ec *executionContext) _SetStatusTimelineItem_date(ctx context.Context, fie } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _SetStatusTimelineItem_status(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetStatusTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.SetStatusTimelineItem().Status(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.SetStatusTimelineItem().Status(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -6004,6 +6620,7 @@ func (ec *executionContext) _SetStatusTimelineItem_status(ctx context.Context, f } res := resTmp.(models.Status) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } @@ -6064,13 +6681,17 @@ func (ec *executionContext) _SetTitleOperation(ctx context.Context, sel ast.Sele // nolint: vetshadow func (ec *executionContext) _SetTitleOperation_hash(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash() }) if resTmp == nil { @@ -6081,18 +6702,23 @@ func (ec *executionContext) _SetTitleOperation_hash(ctx context.Context, field g } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _SetTitleOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -6103,20 +6729,25 @@ func (ec *executionContext) _SetTitleOperation_author(ctx context.Context, field } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _SetTitleOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.SetTitleOperation().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.SetTitleOperation().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -6126,18 +6757,23 @@ func (ec *executionContext) _SetTitleOperation_date(ctx context.Context, field g } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _SetTitleOperation_title(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Title, nil }) if resTmp == nil { @@ -6148,18 +6784,23 @@ func (ec *executionContext) _SetTitleOperation_title(ctx context.Context, field } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _SetTitleOperation_was(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleOperation", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Was, nil }) if resTmp == nil { @@ -6170,6 +6811,7 @@ func (ec *executionContext) _SetTitleOperation_was(ctx context.Context, field gr } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } @@ -6230,13 +6872,17 @@ func (ec *executionContext) _SetTitleTimelineItem(ctx context.Context, sel ast.S // nolint: vetshadow func (ec *executionContext) _SetTitleTimelineItem_hash(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Hash(), nil }) if resTmp == nil { @@ -6247,18 +6893,23 @@ func (ec *executionContext) _SetTitleTimelineItem_hash(ctx context.Context, fiel } res := resTmp.(git.Hash) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return res } // nolint: vetshadow func (ec *executionContext) _SetTitleTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Author, nil }) if resTmp == nil { @@ -6269,20 +6920,25 @@ func (ec *executionContext) _SetTitleTimelineItem_author(ctx context.Context, fi } res := resTmp.(bug.Person) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._Person(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _SetTitleTimelineItem_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return ec.resolvers.SetTitleTimelineItem().Date(ctx, obj) + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return ec.resolvers.SetTitleTimelineItem().Date(rctx, obj) }) if resTmp == nil { if !ec.HasError(rctx) { @@ -6292,18 +6948,23 @@ func (ec *executionContext) _SetTitleTimelineItem_date(ctx context.Context, fiel } res := resTmp.(time.Time) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalTime(res) } // nolint: vetshadow func (ec *executionContext) _SetTitleTimelineItem_title(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Title, nil }) if resTmp == nil { @@ -6314,18 +6975,23 @@ func (ec *executionContext) _SetTitleTimelineItem_title(ctx context.Context, fie } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _SetTitleTimelineItem_was(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "SetTitleTimelineItem", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Was, nil }) if resTmp == nil { @@ -6336,6 +7002,7 @@ func (ec *executionContext) _SetTitleTimelineItem_was(ctx context.Context, field } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } @@ -6386,13 +7053,17 @@ func (ec *executionContext) _TimelineItemConnection(ctx context.Context, sel ast // nolint: vetshadow func (ec *executionContext) _TimelineItemConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "TimelineItemConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Edges, nil }) if resTmp == nil { @@ -6403,6 +7074,7 @@ func (ec *executionContext) _TimelineItemConnection_edges(ctx context.Context, f } res := resTmp.([]models.TimelineItemEdge) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -6441,13 +7113,17 @@ func (ec *executionContext) _TimelineItemConnection_edges(ctx context.Context, f // nolint: vetshadow func (ec *executionContext) _TimelineItemConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "TimelineItemConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Nodes, nil }) if resTmp == nil { @@ -6458,6 +7134,7 @@ func (ec *executionContext) _TimelineItemConnection_nodes(ctx context.Context, f } res := resTmp.([]bug.TimelineItem) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -6496,13 +7173,17 @@ func (ec *executionContext) _TimelineItemConnection_nodes(ctx context.Context, f // nolint: vetshadow func (ec *executionContext) _TimelineItemConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "TimelineItemConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.PageInfo, nil }) if resTmp == nil { @@ -6513,19 +7194,24 @@ func (ec *executionContext) _TimelineItemConnection_pageInfo(ctx context.Context } res := resTmp.(models.PageInfo) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._PageInfo(ctx, field.Selections, &res) } // nolint: vetshadow func (ec *executionContext) _TimelineItemConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "TimelineItemConnection", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.TotalCount, nil }) if resTmp == nil { @@ -6536,6 +7222,7 @@ func (ec *executionContext) _TimelineItemConnection_totalCount(ctx context.Conte } res := resTmp.(int) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalInt(res) } @@ -6576,13 +7263,17 @@ func (ec *executionContext) _TimelineItemEdge(ctx context.Context, sel ast.Selec // nolint: vetshadow func (ec *executionContext) _TimelineItemEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemEdge) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "TimelineItemEdge", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Cursor, nil }) if resTmp == nil { @@ -6593,18 +7284,23 @@ func (ec *executionContext) _TimelineItemEdge_cursor(ctx context.Context, field } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) _TimelineItemEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemEdge) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "TimelineItemEdge", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Node, nil }) if resTmp == nil { @@ -6615,6 +7311,7 @@ func (ec *executionContext) _TimelineItemEdge_node(ctx context.Context, field gr } res := resTmp.(bug.TimelineItem) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return ec._TimelineItem(ctx, field.Selections, &res) } @@ -6663,13 +7360,17 @@ func (ec *executionContext) ___Directive(ctx context.Context, sel ast.SelectionS // nolint: vetshadow func (ec *executionContext) ___Directive_name(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Directive", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Name, nil }) if resTmp == nil { @@ -6680,18 +7381,23 @@ func (ec *executionContext) ___Directive_name(ctx context.Context, field graphql } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___Directive_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Directive", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Description, nil }) if resTmp == nil { @@ -6699,18 +7405,23 @@ func (ec *executionContext) ___Directive_description(ctx context.Context, field } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___Directive_locations(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Directive", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Locations, nil }) if resTmp == nil { @@ -6721,6 +7432,7 @@ func (ec *executionContext) ___Directive_locations(ctx context.Context, field gr } res := resTmp.([]string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) @@ -6735,13 +7447,17 @@ func (ec *executionContext) ___Directive_locations(ctx context.Context, field gr // nolint: vetshadow func (ec *executionContext) ___Directive_args(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Directive", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Args, nil }) if resTmp == nil { @@ -6752,6 +7468,7 @@ func (ec *executionContext) ___Directive_args(ctx context.Context, field graphql } res := resTmp.([]introspection.InputValue) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -6829,13 +7546,17 @@ func (ec *executionContext) ___EnumValue(ctx context.Context, sel ast.SelectionS // nolint: vetshadow func (ec *executionContext) ___EnumValue_name(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__EnumValue", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Name, nil }) if resTmp == nil { @@ -6846,18 +7567,23 @@ func (ec *executionContext) ___EnumValue_name(ctx context.Context, field graphql } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___EnumValue_description(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__EnumValue", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Description, nil }) if resTmp == nil { @@ -6865,19 +7591,24 @@ func (ec *executionContext) ___EnumValue_description(ctx context.Context, field } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___EnumValue_isDeprecated(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__EnumValue", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return obj.IsDeprecated, nil + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return obj.IsDeprecated(), nil }) if resTmp == nil { if !ec.HasError(rctx) { @@ -6887,26 +7618,36 @@ func (ec *executionContext) ___EnumValue_isDeprecated(ctx context.Context, field } res := resTmp.(bool) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalBoolean(res) } // nolint: vetshadow func (ec *executionContext) ___EnumValue_deprecationReason(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__EnumValue", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return obj.DeprecationReason, nil + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return obj.DeprecationReason(), nil }) if resTmp == nil { return graphql.Null } - res := resTmp.(string) + res := resTmp.(*string) rctx.Result = res - return graphql.MarshalString(res) + ctx = ec.Tracer.StartFieldChildExecution(ctx) + + if res == nil { + return graphql.Null + } + return graphql.MarshalString(*res) } var __FieldImplementors = []string{"__Field"} @@ -6960,13 +7701,17 @@ func (ec *executionContext) ___Field(ctx context.Context, sel ast.SelectionSet, // nolint: vetshadow func (ec *executionContext) ___Field_name(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Field", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Name, nil }) if resTmp == nil { @@ -6977,18 +7722,23 @@ func (ec *executionContext) ___Field_name(ctx context.Context, field graphql.Col } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___Field_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Field", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Description, nil }) if resTmp == nil { @@ -6996,18 +7746,23 @@ func (ec *executionContext) ___Field_description(ctx context.Context, field grap } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___Field_args(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Field", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Args, nil }) if resTmp == nil { @@ -7018,6 +7773,7 @@ func (ec *executionContext) ___Field_args(ctx context.Context, field graphql.Col } res := resTmp.([]introspection.InputValue) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -7056,13 +7812,17 @@ func (ec *executionContext) ___Field_args(ctx context.Context, field graphql.Col // nolint: vetshadow func (ec *executionContext) ___Field_type(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Field", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Type, nil }) if resTmp == nil { @@ -7073,6 +7833,7 @@ func (ec *executionContext) ___Field_type(ctx context.Context, field graphql.Col } res := resTmp.(*introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { if !ec.HasError(rctx) { @@ -7086,14 +7847,18 @@ func (ec *executionContext) ___Field_type(ctx context.Context, field graphql.Col // nolint: vetshadow func (ec *executionContext) ___Field_isDeprecated(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Field", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return obj.IsDeprecated, nil + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return obj.IsDeprecated(), nil }) if resTmp == nil { if !ec.HasError(rctx) { @@ -7103,26 +7868,36 @@ func (ec *executionContext) ___Field_isDeprecated(ctx context.Context, field gra } res := resTmp.(bool) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalBoolean(res) } // nolint: vetshadow func (ec *executionContext) ___Field_deprecationReason(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Field", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { - return obj.DeprecationReason, nil + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children + return obj.DeprecationReason(), nil }) if resTmp == nil { return graphql.Null } - res := resTmp.(string) + res := resTmp.(*string) rctx.Result = res - return graphql.MarshalString(res) + ctx = ec.Tracer.StartFieldChildExecution(ctx) + + if res == nil { + return graphql.Null + } + return graphql.MarshalString(*res) } var __InputValueImplementors = []string{"__InputValue"} @@ -7166,13 +7941,17 @@ func (ec *executionContext) ___InputValue(ctx context.Context, sel ast.Selection // nolint: vetshadow func (ec *executionContext) ___InputValue_name(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__InputValue", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Name, nil }) if resTmp == nil { @@ -7183,18 +7962,23 @@ func (ec *executionContext) ___InputValue_name(ctx context.Context, field graphq } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___InputValue_description(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__InputValue", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Description, nil }) if resTmp == nil { @@ -7202,18 +7986,23 @@ func (ec *executionContext) ___InputValue_description(ctx context.Context, field } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___InputValue_type(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__InputValue", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Type, nil }) if resTmp == nil { @@ -7224,6 +8013,7 @@ func (ec *executionContext) ___InputValue_type(ctx context.Context, field graphq } res := resTmp.(*introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { if !ec.HasError(rctx) { @@ -7237,13 +8027,17 @@ func (ec *executionContext) ___InputValue_type(ctx context.Context, field graphq // nolint: vetshadow func (ec *executionContext) ___InputValue_defaultValue(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__InputValue", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.DefaultValue, nil }) if resTmp == nil { @@ -7251,6 +8045,7 @@ func (ec *executionContext) ___InputValue_defaultValue(ctx context.Context, fiel } res := resTmp.(*string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -7304,13 +8099,17 @@ func (ec *executionContext) ___Schema(ctx context.Context, sel ast.SelectionSet, // nolint: vetshadow func (ec *executionContext) ___Schema_types(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Schema", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Types(), nil }) if resTmp == nil { @@ -7321,6 +8120,7 @@ func (ec *executionContext) ___Schema_types(ctx context.Context, field graphql.C } res := resTmp.([]introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -7359,13 +8159,17 @@ func (ec *executionContext) ___Schema_types(ctx context.Context, field graphql.C // nolint: vetshadow func (ec *executionContext) ___Schema_queryType(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Schema", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.QueryType(), nil }) if resTmp == nil { @@ -7376,6 +8180,7 @@ func (ec *executionContext) ___Schema_queryType(ctx context.Context, field graph } res := resTmp.(*introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { if !ec.HasError(rctx) { @@ -7389,13 +8194,17 @@ func (ec *executionContext) ___Schema_queryType(ctx context.Context, field graph // nolint: vetshadow func (ec *executionContext) ___Schema_mutationType(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Schema", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.MutationType(), nil }) if resTmp == nil { @@ -7403,6 +8212,7 @@ func (ec *executionContext) ___Schema_mutationType(ctx context.Context, field gr } res := resTmp.(*introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -7413,13 +8223,17 @@ func (ec *executionContext) ___Schema_mutationType(ctx context.Context, field gr // nolint: vetshadow func (ec *executionContext) ___Schema_subscriptionType(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Schema", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.SubscriptionType(), nil }) if resTmp == nil { @@ -7427,6 +8241,7 @@ func (ec *executionContext) ___Schema_subscriptionType(ctx context.Context, fiel } res := resTmp.(*introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -7437,13 +8252,17 @@ func (ec *executionContext) ___Schema_subscriptionType(ctx context.Context, fiel // nolint: vetshadow func (ec *executionContext) ___Schema_directives(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Schema", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Directives(), nil }) if resTmp == nil { @@ -7454,6 +8273,7 @@ func (ec *executionContext) ___Schema_directives(ctx context.Context, field grap } res := resTmp.([]introspection.Directive) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -7538,13 +8358,17 @@ func (ec *executionContext) ___Type(ctx context.Context, sel ast.SelectionSet, o // nolint: vetshadow func (ec *executionContext) ___Type_kind(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Type", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Kind(), nil }) if resTmp == nil { @@ -7555,18 +8379,23 @@ func (ec *executionContext) ___Type_kind(ctx context.Context, field graphql.Coll } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___Type_name(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Type", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Name(), nil }) if resTmp == nil { @@ -7574,6 +8403,7 @@ func (ec *executionContext) ___Type_name(ctx context.Context, field graphql.Coll } res := resTmp.(*string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -7583,13 +8413,17 @@ func (ec *executionContext) ___Type_name(ctx context.Context, field graphql.Coll // nolint: vetshadow func (ec *executionContext) ___Type_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Type", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Description(), nil }) if resTmp == nil { @@ -7597,11 +8431,14 @@ func (ec *executionContext) ___Type_description(ctx context.Context, field graph } res := resTmp.(string) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) return graphql.MarshalString(res) } // nolint: vetshadow func (ec *executionContext) ___Type_fields(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field___Type_fields_args(rawArgs) if err != nil { @@ -7614,7 +8451,9 @@ func (ec *executionContext) ___Type_fields(ctx context.Context, field graphql.Co Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Fields(args["includeDeprecated"].(bool)), nil }) if resTmp == nil { @@ -7622,6 +8461,7 @@ func (ec *executionContext) ___Type_fields(ctx context.Context, field graphql.Co } res := resTmp.([]introspection.Field) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -7660,13 +8500,17 @@ func (ec *executionContext) ___Type_fields(ctx context.Context, field graphql.Co // nolint: vetshadow func (ec *executionContext) ___Type_interfaces(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Type", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.Interfaces(), nil }) if resTmp == nil { @@ -7674,6 +8518,7 @@ func (ec *executionContext) ___Type_interfaces(ctx context.Context, field graphq } res := resTmp.([]introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -7712,13 +8557,17 @@ func (ec *executionContext) ___Type_interfaces(ctx context.Context, field graphq // nolint: vetshadow func (ec *executionContext) ___Type_possibleTypes(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Type", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.PossibleTypes(), nil }) if resTmp == nil { @@ -7726,6 +8575,7 @@ func (ec *executionContext) ___Type_possibleTypes(ctx context.Context, field gra } res := resTmp.([]introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -7764,6 +8614,8 @@ func (ec *executionContext) ___Type_possibleTypes(ctx context.Context, field gra // nolint: vetshadow func (ec *executionContext) ___Type_enumValues(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rawArgs := field.ArgumentMap(ec.Variables) args, err := field___Type_enumValues_args(rawArgs) if err != nil { @@ -7776,7 +8628,9 @@ func (ec *executionContext) ___Type_enumValues(ctx context.Context, field graphq Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.EnumValues(args["includeDeprecated"].(bool)), nil }) if resTmp == nil { @@ -7784,6 +8638,7 @@ func (ec *executionContext) ___Type_enumValues(ctx context.Context, field graphq } res := resTmp.([]introspection.EnumValue) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -7822,13 +8677,17 @@ func (ec *executionContext) ___Type_enumValues(ctx context.Context, field graphq // nolint: vetshadow func (ec *executionContext) ___Type_inputFields(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Type", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.InputFields(), nil }) if resTmp == nil { @@ -7836,6 +8695,7 @@ func (ec *executionContext) ___Type_inputFields(ctx context.Context, field graph } res := resTmp.([]introspection.InputValue) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) arr1 := make(graphql.Array, len(res)) var wg sync.WaitGroup @@ -7874,13 +8734,17 @@ func (ec *executionContext) ___Type_inputFields(ctx context.Context, field graph // nolint: vetshadow func (ec *executionContext) ___Type_ofType(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func() { ec.Tracer.EndFieldExecution(ctx) }() rctx := &graphql.ResolverContext{ Object: "__Type", Args: nil, Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, obj, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, obj, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children return obj.OfType(), nil }) if resTmp == nil { @@ -7888,6 +8752,7 @@ func (ec *executionContext) ___Type_ofType(ctx context.Context, field graphql.Co } res := resTmp.(*introspection.Type) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) if res == nil { return graphql.Null @@ -7904,28 +8769,16 @@ func (ec *executionContext) _Authored(ctx context.Context, sel ast.SelectionSet, return ec._Comment(ctx, sel, &obj) case *bug.Comment: return ec._Comment(ctx, sel, obj) - case bug.CreateOperation: - return ec._CreateOperation(ctx, sel, &obj) case *bug.CreateOperation: return ec._CreateOperation(ctx, sel, obj) - case bug.SetTitleOperation: - return ec._SetTitleOperation(ctx, sel, &obj) case *bug.SetTitleOperation: return ec._SetTitleOperation(ctx, sel, obj) - case bug.AddCommentOperation: - return ec._AddCommentOperation(ctx, sel, &obj) case *bug.AddCommentOperation: return ec._AddCommentOperation(ctx, sel, obj) - case bug.EditCommentOperation: - return ec._EditCommentOperation(ctx, sel, &obj) case *bug.EditCommentOperation: return ec._EditCommentOperation(ctx, sel, obj) - case bug.SetStatusOperation: - return ec._SetStatusOperation(ctx, sel, &obj) case *bug.SetStatusOperation: return ec._SetStatusOperation(ctx, sel, obj) - case bug.LabelChangeOperation: - return ec._LabelChangeOperation(ctx, sel, &obj) case *bug.LabelChangeOperation: return ec._LabelChangeOperation(ctx, sel, obj) default: @@ -7994,61 +8847,35 @@ func (ec *executionContext) FieldMiddleware(ctx context.Context, obj interface{} return res } -func (ec *executionContext) introspectSchema() *introspection.Schema { - return introspection.WrapSchema(parsedSchema) +func (ec *executionContext) introspectSchema() (*introspection.Schema, error) { + if ec.DisableIntrospection { + return nil, errors.New("introspection disabled") + } + return introspection.WrapSchema(parsedSchema), nil } -func (ec *executionContext) introspectType(name string) *introspection.Type { - return introspection.WrapTypeFromDef(parsedSchema, parsedSchema.Types[name]) +func (ec *executionContext) introspectType(name string) (*introspection.Type, error) { + if ec.DisableIntrospection { + return nil, errors.New("introspection disabled") + } + return introspection.WrapTypeFromDef(parsedSchema, parsedSchema.Types[name]), nil } var parsedSchema = gqlparser.MustLoadSchema( - &ast.Source{Name: "schema.graphql", Input: `scalar Time -scalar Label -scalar Hash - -"""Information about pagination in a connection.""" -type PageInfo { - """When paginating forwards, are there more items?""" - hasNextPage: Boolean! - """When paginating backwards, are there more items?""" - hasPreviousPage: Boolean! - """When paginating backwards, the cursor to continue.""" - startCursor: String! - """When paginating forwards, the cursor to continue.""" - endCursor: String! -} - -"""Represents an person in a git object.""" + &ast.Source{Name: "bug.graphql", Input: `"""Represents an person""" type Person { """The name of the person, if known.""" name: String - """The email of the person, if known.""" email: String - """The login of the person, if known.""" login: String - """A string containing the either the name of the person, its login or both""" displayName: String! - """An url to an avatar""" avatarUrl: String } -type CommentConnection { - edges: [CommentEdge!]! - nodes: [Comment!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type CommentEdge { - cursor: String! - node: Comment! -} - """Represents a comment on a bug.""" type Comment implements Authored { """The author of this comment.""" @@ -8061,202 +8888,21 @@ type Comment implements Authored { files: [Hash!]! } -enum Status { - OPEN - CLOSED -} - -"""An object that has an author.""" -interface Authored { - """The author of this object.""" - author: Person! -} - -type OperationConnection { - edges: [OperationEdge!]! - nodes: [Operation!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type OperationEdge { - cursor: String! - node: Operation! -} - -"""An item in the timeline of events""" -interface TimelineItem { - """The hash of the source operation""" - hash: Hash! -} - -"""An operation applied to a bug.""" -interface Operation { - """The hash of the operation""" - hash: Hash! - """The operations author.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! -} - -type CreateOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - title: String! - message: String! - files: [Hash!]! -} - -type SetTitleOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - title: String! - was: String! -} - -type AddCommentOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - message: String! - files: [Hash!]! -} - -type EditCommentOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - target: Hash! - message: String! - files: [Hash!]! -} - -type SetStatusOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - status: Status! -} - -type LabelChangeOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - added: [Label!]! - removed: [Label!]! -} - -type TimelineItemConnection { - edges: [TimelineItemEdge!]! - nodes: [TimelineItem!]! +type CommentConnection { + edges: [CommentEdge!]! + nodes: [Comment!]! pageInfo: PageInfo! totalCount: Int! } -type TimelineItemEdge { +type CommentEdge { cursor: String! - node: TimelineItem! -} - -type CommentHistoryStep { - message: String! - date: Time! -} - -type CreateTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - message: String! - files: [Hash!]! - createdAt: Time! - lastEdit: Time! - edited: Boolean! - history: [CommentHistoryStep!]! -} - -type AddCommentTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - message: String! - files: [Hash!]! - createdAt: Time! - lastEdit: Time! - edited: Boolean! - history: [CommentHistoryStep!]! -} - -type LabelChangeTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - date: Time! - added: [Label!]! - removed: [Label!]! -} - -type SetStatusTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - date: Time! - status: Status! -} - -type SetTitleTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - date: Time! - title: String! - was: String! -} - -"""The connection type for Bug.""" -type BugConnection { - """A list of edges.""" - edges: [BugEdge!]! - nodes: [Bug!]! - """Information to aid in pagination.""" - pageInfo: PageInfo! - """Identifies the total count of items in the connection.""" - totalCount: Int! + node: Comment! } -"""An edge in a connection.""" -type BugEdge { - """A cursor for use in pagination.""" - cursor: String! - """The item at the end of the edge.""" - node: Bug! +enum Status { + OPEN + CLOSED } type Bug { @@ -8303,6 +8949,25 @@ type Bug { ): OperationConnection! } +"""The connection type for Bug.""" +type BugConnection { + """A list of edges.""" + edges: [BugEdge!]! + nodes: [Bug!]! + """Information to aid in pagination.""" + pageInfo: PageInfo! + """Identifies the total count of items in the connection.""" + totalCount: Int! +} + +"""An edge in a connection.""" +type BugEdge { + """A cursor for use in pagination.""" + cursor: String! + """The item at the end of the edge.""" + node: Bug! +} + type Repository { allBugs( """Returns the elements in the list that come after the specified cursor.""" @@ -8319,21 +8984,229 @@ type Repository { bug(prefix: String!): Bug } +`}, + &ast.Source{Name: "operations.graphql", Input: `"""An operation applied to a bug.""" +interface Operation { + """The hash of the operation""" + hash: Hash! + """The operations author.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! +} + +# Connection + +"""The connection type for an Operation""" +type OperationConnection { + edges: [OperationEdge!]! + nodes: [Operation!]! + pageInfo: PageInfo! + totalCount: Int! +} + +"""Represent an Operation""" +type OperationEdge { + cursor: String! + node: Operation! +} + +# Operations + +type CreateOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + title: String! + message: String! + files: [Hash!]! +} + +type SetTitleOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + title: String! + was: String! +} + +type AddCommentOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + message: String! + files: [Hash!]! +} + +type EditCommentOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + target: Hash! + message: String! + files: [Hash!]! +} + +type SetStatusOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + status: Status! +} + +type LabelChangeOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + added: [Label!]! + removed: [Label!]! +}`}, + &ast.Source{Name: "root.graphql", Input: `scalar Time +scalar Label +scalar Hash + +"""Information about pagination in a connection.""" +type PageInfo { + """When paginating forwards, are there more items?""" + hasNextPage: Boolean! + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! + """When paginating backwards, the cursor to continue.""" + startCursor: String! + """When paginating forwards, the cursor to continue.""" + endCursor: String! +} + +"""An object that has an author.""" +interface Authored { + """The author of this object.""" + author: Person! +} + type Query { - defaultRepository: Repository - repository(id: String!): Repository + defaultRepository: Repository + repository(id: String!): Repository } type Mutation { - newBug(repoRef: String, title: String!, message: String!, files: [Hash!]): Bug! + newBug(repoRef: String, title: String!, message: String!, files: [Hash!]): Bug! - addComment(repoRef: String, prefix: String!, message: String!, files: [Hash!]): Bug! - changeLabels(repoRef: String, prefix: String!, added: [String!], removed: [String!]): Bug! - open(repoRef: String, prefix: String!): Bug! - close(repoRef: String, prefix: String!): Bug! - setTitle(repoRef: String, prefix: String!, title: String!): Bug! + addComment(repoRef: String, prefix: String!, message: String!, files: [Hash!]): Bug! + changeLabels(repoRef: String, prefix: String!, added: [String!], removed: [String!]): Bug! + open(repoRef: String, prefix: String!): Bug! + close(repoRef: String, prefix: String!): Bug! + setTitle(repoRef: String, prefix: String!, title: String!): Bug! - commit(repoRef: String, prefix: String!): Bug! + commit(repoRef: String, prefix: String!): Bug! +}`}, + &ast.Source{Name: "timeline.graphql", Input: `"""An item in the timeline of events""" +interface TimelineItem { + """The hash of the source operation""" + hash: Hash! } -`}, + +"""CommentHistoryStep hold one version of a message in the history""" +type CommentHistoryStep { + message: String! + date: Time! +} + +# Connection + +"""The connection type for TimelineItem""" +type TimelineItemConnection { + edges: [TimelineItemEdge!]! + nodes: [TimelineItem!]! + pageInfo: PageInfo! + totalCount: Int! +} + +"""Represent a TimelineItem""" +type TimelineItemEdge { + cursor: String! + node: TimelineItem! +} + +# Items + +"""CreateTimelineItem is a TimelineItem that represent the creation of a bug and its message edition history""" +type CreateTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + message: String! + messageIsEmpty: Boolean! + files: [Hash!]! + createdAt: Time! + lastEdit: Time! + edited: Boolean! + history: [CommentHistoryStep!]! +} + +"""AddCommentTimelineItem is a TimelineItem that represent a Comment and its edition history""" +type AddCommentTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + message: String! + messageIsEmpty: Boolean! + files: [Hash!]! + createdAt: Time! + lastEdit: Time! + edited: Boolean! + history: [CommentHistoryStep!]! +} + +"""LabelChangeTimelineItem is a TimelineItem that represent a change in the labels of a bug""" +type LabelChangeTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + date: Time! + added: [Label!]! + removed: [Label!]! +} + +"""SetStatusTimelineItem is a TimelineItem that represent a change in the status of a bug""" +type SetStatusTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + date: Time! + status: Status! +} + +"""LabelChangeTimelineItem is a TimelineItem that represent a change in the title of a bug""" +type SetTitleTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + date: Time! + title: String! + was: String! +}`}, ) diff --git a/graphql/models/gen_models.go b/graphql/models/gen_models.go index 849b1842..71a6b78b 100644 --- a/graphql/models/gen_models.go +++ b/graphql/models/gen_models.go @@ -3,15 +3,17 @@ package models import ( - fmt "fmt" - io "io" - strconv "strconv" + "fmt" + "io" + "strconv" - bug "github.com/MichaelMure/git-bug/bug" + "github.com/MichaelMure/git-bug/bug" ) // An object that has an author. -type Authored interface{} +type Authored interface { + IsAuthored() +} // The connection type for Bug. type BugConnection struct { @@ -39,6 +41,7 @@ type CommentEdge struct { Node bug.Comment `json:"node"` } +// The connection type for an Operation type OperationConnection struct { Edges []OperationEdge `json:"edges"` Nodes []bug.Operation `json:"nodes"` @@ -46,6 +49,7 @@ type OperationConnection struct { TotalCount int `json:"totalCount"` } +// Represent an Operation type OperationEdge struct { Cursor string `json:"cursor"` Node bug.Operation `json:"node"` @@ -59,6 +63,7 @@ type PageInfo struct { EndCursor string `json:"endCursor"` } +// The connection type for TimelineItem type TimelineItemConnection struct { Edges []TimelineItemEdge `json:"edges"` Nodes []bug.TimelineItem `json:"nodes"` @@ -66,6 +71,7 @@ type TimelineItemConnection struct { TotalCount int `json:"totalCount"` } +// Represent a TimelineItem type TimelineItemEdge struct { Cursor string `json:"cursor"` Node bug.TimelineItem `json:"node"` diff --git a/graphql/operations.graphql b/graphql/operations.graphql new file mode 100644 index 00000000..420a9e12 --- /dev/null +++ b/graphql/operations.graphql @@ -0,0 +1,100 @@ +"""An operation applied to a bug.""" +interface Operation { + """The hash of the operation""" + hash: Hash! + """The operations author.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! +} + +# Connection + +"""The connection type for an Operation""" +type OperationConnection { + edges: [OperationEdge!]! + nodes: [Operation!]! + pageInfo: PageInfo! + totalCount: Int! +} + +"""Represent an Operation""" +type OperationEdge { + cursor: String! + node: Operation! +} + +# Operations + +type CreateOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + title: String! + message: String! + files: [Hash!]! +} + +type SetTitleOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + title: String! + was: String! +} + +type AddCommentOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + message: String! + files: [Hash!]! +} + +type EditCommentOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + target: Hash! + message: String! + files: [Hash!]! +} + +type SetStatusOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + status: Status! +} + +type LabelChangeOperation implements Operation & Authored { + """The hash of the operation""" + hash: Hash! + """The author of this object.""" + author: Person! + """The datetime when this operation was issued.""" + date: Time! + + added: [Label!]! + removed: [Label!]! +}
\ No newline at end of file diff --git a/graphql/root.graphql b/graphql/root.graphql new file mode 100644 index 00000000..fd8419fa --- /dev/null +++ b/graphql/root.graphql @@ -0,0 +1,38 @@ +scalar Time +scalar Label +scalar Hash + +"""Information about pagination in a connection.""" +type PageInfo { + """When paginating forwards, are there more items?""" + hasNextPage: Boolean! + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! + """When paginating backwards, the cursor to continue.""" + startCursor: String! + """When paginating forwards, the cursor to continue.""" + endCursor: String! +} + +"""An object that has an author.""" +interface Authored { + """The author of this object.""" + author: Person! +} + +type Query { + defaultRepository: Repository + repository(id: String!): Repository +} + +type Mutation { + newBug(repoRef: String, title: String!, message: String!, files: [Hash!]): Bug! + + addComment(repoRef: String, prefix: String!, message: String!, files: [Hash!]): Bug! + changeLabels(repoRef: String, prefix: String!, added: [String!], removed: [String!]): Bug! + open(repoRef: String, prefix: String!): Bug! + close(repoRef: String, prefix: String!): Bug! + setTitle(repoRef: String, prefix: String!, title: String!): Bug! + + commit(repoRef: String, prefix: String!): Bug! +}
\ No newline at end of file diff --git a/graphql/schema.graphql b/graphql/schema.graphql deleted file mode 100644 index fefe895b..00000000 --- a/graphql/schema.graphql +++ /dev/null @@ -1,332 +0,0 @@ -scalar Time -scalar Label -scalar Hash - -"""Information about pagination in a connection.""" -type PageInfo { - """When paginating forwards, are there more items?""" - hasNextPage: Boolean! - """When paginating backwards, are there more items?""" - hasPreviousPage: Boolean! - """When paginating backwards, the cursor to continue.""" - startCursor: String! - """When paginating forwards, the cursor to continue.""" - endCursor: String! -} - -"""Represents an person in a git object.""" -type Person { - """The name of the person, if known.""" - name: String - - """The email of the person, if known.""" - email: String - - """The login of the person, if known.""" - login: String - - """A string containing the either the name of the person, its login or both""" - displayName: String! - - """An url to an avatar""" - avatarUrl: String -} - -type CommentConnection { - edges: [CommentEdge!]! - nodes: [Comment!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type CommentEdge { - cursor: String! - node: Comment! -} - -"""Represents a comment on a bug.""" -type Comment implements Authored { - """The author of this comment.""" - author: Person! - - """The message of this comment.""" - message: String! - - """All media's hash referenced in this comment""" - files: [Hash!]! -} - -enum Status { - OPEN - CLOSED -} - -"""An object that has an author.""" -interface Authored { - """The author of this object.""" - author: Person! -} - -type OperationConnection { - edges: [OperationEdge!]! - nodes: [Operation!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type OperationEdge { - cursor: String! - node: Operation! -} - -"""An item in the timeline of events""" -interface TimelineItem { - """The hash of the source operation""" - hash: Hash! -} - -"""An operation applied to a bug.""" -interface Operation { - """The hash of the operation""" - hash: Hash! - """The operations author.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! -} - -type CreateOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - title: String! - message: String! - files: [Hash!]! -} - -type SetTitleOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - title: String! - was: String! -} - -type AddCommentOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - message: String! - files: [Hash!]! -} - -type EditCommentOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - target: Hash! - message: String! - files: [Hash!]! -} - -type SetStatusOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - status: Status! -} - -type LabelChangeOperation implements Operation & Authored { - """The hash of the operation""" - hash: Hash! - """The author of this object.""" - author: Person! - """The datetime when this operation was issued.""" - date: Time! - - added: [Label!]! - removed: [Label!]! -} - -type TimelineItemConnection { - edges: [TimelineItemEdge!]! - nodes: [TimelineItem!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type TimelineItemEdge { - cursor: String! - node: TimelineItem! -} - -type CommentHistoryStep { - message: String! - date: Time! -} - -type CreateTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - message: String! - files: [Hash!]! - createdAt: Time! - lastEdit: Time! - edited: Boolean! - history: [CommentHistoryStep!]! -} - -type AddCommentTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - message: String! - files: [Hash!]! - createdAt: Time! - lastEdit: Time! - edited: Boolean! - history: [CommentHistoryStep!]! -} - -type LabelChangeTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - date: Time! - added: [Label!]! - removed: [Label!]! -} - -type SetStatusTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - date: Time! - status: Status! -} - -type SetTitleTimelineItem implements TimelineItem { - """The hash of the source operation""" - hash: Hash! - author: Person! - date: Time! - title: String! - was: String! -} - -"""The connection type for Bug.""" -type BugConnection { - """A list of edges.""" - edges: [BugEdge!]! - nodes: [Bug!]! - """Information to aid in pagination.""" - pageInfo: PageInfo! - """Identifies the total count of items in the connection.""" - totalCount: Int! -} - -"""An edge in a connection.""" -type BugEdge { - """A cursor for use in pagination.""" - cursor: String! - """The item at the end of the edge.""" - node: Bug! -} - -type Bug { - id: String! - humanId: String! - status: Status! - title: String! - labels: [Label!]! - author: Person! - createdAt: Time! - lastEdit: Time! - - comments( - """Returns the elements in the list that come after the specified cursor.""" - after: String - """Returns the elements in the list that come before the specified cursor.""" - before: String - """Returns the first _n_ elements from the list.""" - first: Int - """Returns the last _n_ elements from the list.""" - last: Int - ): CommentConnection! - - timeline( - """Returns the elements in the list that come after the specified cursor.""" - after: String - """Returns the elements in the list that come before the specified cursor.""" - before: String - """Returns the first _n_ elements from the list.""" - first: Int - """Returns the last _n_ elements from the list.""" - last: Int - ): TimelineItemConnection! - - operations( - """Returns the elements in the list that come after the specified cursor.""" - after: String - """Returns the elements in the list that come before the specified cursor.""" - before: String - """Returns the first _n_ elements from the list.""" - first: Int - """Returns the last _n_ elements from the list.""" - last: Int - ): OperationConnection! -} - -type Repository { - allBugs( - """Returns the elements in the list that come after the specified cursor.""" - after: String - """Returns the elements in the list that come before the specified cursor.""" - before: String - """Returns the first _n_ elements from the list.""" - first: Int - """Returns the last _n_ elements from the list.""" - last: Int - """A query to select and order bugs""" - query: String - ): BugConnection! - bug(prefix: String!): Bug -} - -type Query { - defaultRepository: Repository - repository(id: String!): Repository -} - -type Mutation { - newBug(repoRef: String, title: String!, message: String!, files: [Hash!]): Bug! - - addComment(repoRef: String, prefix: String!, message: String!, files: [Hash!]): Bug! - changeLabels(repoRef: String, prefix: String!, added: [String!], removed: [String!]): Bug! - open(repoRef: String, prefix: String!): Bug! - close(repoRef: String, prefix: String!): Bug! - setTitle(repoRef: String, prefix: String!, title: String!): Bug! - - commit(repoRef: String, prefix: String!): Bug! -} diff --git a/graphql/timeline.graphql b/graphql/timeline.graphql new file mode 100644 index 00000000..75f72305 --- /dev/null +++ b/graphql/timeline.graphql @@ -0,0 +1,86 @@ +"""An item in the timeline of events""" +interface TimelineItem { + """The hash of the source operation""" + hash: Hash! +} + +"""CommentHistoryStep hold one version of a message in the history""" +type CommentHistoryStep { + message: String! + date: Time! +} + +# Connection + +"""The connection type for TimelineItem""" +type TimelineItemConnection { + edges: [TimelineItemEdge!]! + nodes: [TimelineItem!]! + pageInfo: PageInfo! + totalCount: Int! +} + +"""Represent a TimelineItem""" +type TimelineItemEdge { + cursor: String! + node: TimelineItem! +} + +# Items + +"""CreateTimelineItem is a TimelineItem that represent the creation of a bug and its message edition history""" +type CreateTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + message: String! + messageIsEmpty: Boolean! + files: [Hash!]! + createdAt: Time! + lastEdit: Time! + edited: Boolean! + history: [CommentHistoryStep!]! +} + +"""AddCommentTimelineItem is a TimelineItem that represent a Comment and its edition history""" +type AddCommentTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + message: String! + messageIsEmpty: Boolean! + files: [Hash!]! + createdAt: Time! + lastEdit: Time! + edited: Boolean! + history: [CommentHistoryStep!]! +} + +"""LabelChangeTimelineItem is a TimelineItem that represent a change in the labels of a bug""" +type LabelChangeTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + date: Time! + added: [Label!]! + removed: [Label!]! +} + +"""SetStatusTimelineItem is a TimelineItem that represent a change in the status of a bug""" +type SetStatusTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + date: Time! + status: Status! +} + +"""LabelChangeTimelineItem is a TimelineItem that represent a change in the title of a bug""" +type SetTitleTimelineItem implements TimelineItem { + """The hash of the source operation""" + hash: Hash! + author: Person! + date: Time! + title: String! + was: String! +}
\ No newline at end of file diff --git a/repository/git.go b/repository/git.go index af251aa2..c2f0da0a 100644 --- a/repository/git.go +++ b/repository/git.go @@ -67,7 +67,7 @@ func (repo *GitRepo) runGitCommand(args ...string) (string, error) { // NewGitRepo determines if the given working directory is inside of a git repository, // and returns the corresponding GitRepo instance if it is. -func NewGitRepo(path string, witnesser func(repo *GitRepo) error) (*GitRepo, error) { +func NewGitRepo(path string, witnesser Witnesser) (*GitRepo, error) { repo := &GitRepo{Path: path} // Check the repo and retrieve the root path diff --git a/repository/repo.go b/repository/repo.go index d0004c8b..3ae09057 100644 --- a/repository/repo.go +++ b/repository/repo.go @@ -107,6 +107,10 @@ type ClockedRepo interface { EditWitness(time lamport.Time) error } +// Witnesser is a function that will initialize the clocks of a repo +// from scratch +type Witnesser func(repo ClockedRepo) error + func prepareTreeEntries(entries []TreeEntry) bytes.Buffer { var buffer bytes.Buffer diff --git a/termui/show_bug.go b/termui/show_bug.go index a16626a4..a1f4b3fe 100644 --- a/termui/show_bug.go +++ b/termui/show_bug.go @@ -95,7 +95,7 @@ func (sb *showBug) layout(g *gocui.Gui) error { } v.Clear() - fmt.Fprintf(v, "[q] Save and return [←↓↑→,hjkl] Navigation [o] Toggle open/close [e] Edit [c] Comment [t] Change title") + _, _ = fmt.Fprintf(v, "[q] Save and return [←↓↑→,hjkl] Navigation [o] Toggle open/close [e] Edit [c] Comment [t] Change title") _, err = g.SetViewOnTop(showBugInstructionView) if err != nil { @@ -228,7 +228,7 @@ func (sb *showBug) renderMain(g *gocui.Gui, mainView *gocui.View) error { return err } - fmt.Fprint(v, bugHeader) + _, _ = fmt.Fprint(v, bugHeader) y0 += lines + 1 for _, op := range snap.Timeline { @@ -241,13 +241,21 @@ func (sb *showBug) renderMain(g *gocui.Gui, mainView *gocui.View) error { case *bug.CreateTimelineItem: create := op.(*bug.CreateTimelineItem) - content, lines := text.WrapLeftPadded(create.Message, maxX, 4) + + var content string + var lines int + + if create.MessageIsEmpty() { + content, lines = text.WrapLeftPadded(emptyMessagePlaceholder(), maxX-1, 4) + } else { + content, lines = text.WrapLeftPadded(create.Message, maxX-1, 4) + } v, err := sb.createOpView(g, viewName, x0, y0, maxX+1, lines, true) if err != nil { return err } - fmt.Fprint(v, content) + _, _ = fmt.Fprint(v, content) y0 += lines + 2 case *bug.AddCommentTimelineItem: @@ -258,7 +266,13 @@ func (sb *showBug) renderMain(g *gocui.Gui, mainView *gocui.View) error { edited = " (edited)" } - message, _ := text.WrapLeftPadded(comment.Message, maxX, 4) + var message string + if comment.MessageIsEmpty() { + message, _ = text.WrapLeftPadded(emptyMessagePlaceholder(), maxX-1, 4) + } else { + message, _ = text.WrapLeftPadded(comment.Message, maxX-1, 4) + } + content := fmt.Sprintf("%s commented on %s%s\n\n%s", colors.Magenta(comment.Author.DisplayName()), comment.CreatedAt.Time().Format(timeLayout), @@ -271,7 +285,7 @@ func (sb *showBug) renderMain(g *gocui.Gui, mainView *gocui.View) error { if err != nil { return err } - fmt.Fprint(v, content) + _, _ = fmt.Fprint(v, content) y0 += lines + 2 case *bug.SetTitleTimelineItem: @@ -288,7 +302,7 @@ func (sb *showBug) renderMain(g *gocui.Gui, mainView *gocui.View) error { if err != nil { return err } - fmt.Fprint(v, content) + _, _ = fmt.Fprint(v, content) y0 += lines + 2 case *bug.SetStatusTimelineItem: @@ -305,7 +319,7 @@ func (sb *showBug) renderMain(g *gocui.Gui, mainView *gocui.View) error { if err != nil { return err } - fmt.Fprint(v, content) + _, _ = fmt.Fprint(v, content) y0 += lines + 2 case *bug.LabelChangeTimelineItem: @@ -354,7 +368,7 @@ func (sb *showBug) renderMain(g *gocui.Gui, mainView *gocui.View) error { if err != nil { return err } - fmt.Fprint(v, content) + _, _ = fmt.Fprint(v, content) y0 += lines + 2 } } @@ -362,6 +376,11 @@ func (sb *showBug) renderMain(g *gocui.Gui, mainView *gocui.View) error { return nil } +// emptyMessagePlaceholder return a formatted placeholder for an empty message +func emptyMessagePlaceholder() string { + return colors.GreyBold("No description provided.") +} + func (sb *showBug) createOpView(g *gocui.Gui, name string, x0 int, y0 int, maxX int, height int, selectable bool) (*gocui.View, error) { v, err := g.SetView(name, x0, y0, maxX, y0+height+1) @@ -423,7 +442,7 @@ func (sb *showBug) renderSidebar(g *gocui.Gui, sideView *gocui.View) error { return err } - fmt.Fprint(v, content) + _, _ = fmt.Fprint(v, content) return nil } diff --git a/util/colors/colors.go b/util/colors/colors.go index c57e9019..f8c6d188 100644 --- a/util/colors/colors.go +++ b/util/colors/colors.go @@ -13,6 +13,7 @@ var ( YellowBg = color.New(color.BgYellow, color.FgBlack).SprintFunc() Green = color.New(color.FgGreen).SprintFunc() GreenBg = color.New(color.BgGreen, color.FgBlack).SprintFunc() + GreyBold = color.New(color.BgBlack, color.Bold).SprintfFunc() Red = color.New(color.FgRed).SprintFunc() Cyan = color.New(color.FgCyan).SprintFunc() CyanBg = color.New(color.BgCyan, color.FgBlack).SprintFunc() diff --git a/util/text/text.go b/util/text/text.go index 10b70b01..c000596c 100644 --- a/util/text/text.go +++ b/util/text/text.go @@ -58,7 +58,7 @@ func WrapLeftPadded(text string, lineWidth int, leftPad int) (string, int) { } else { // Break a word longer than a line if wordLength > lineWidth { - for wordLength > 0 && len(word) > 0 { + for wordLength > 0 && wordLen(word) > 0 { l := minInt(spaceLeft, wordLength) part, leftover := splitWord(word, l) word = leftover @@ -76,6 +76,10 @@ func WrapLeftPadded(text string, lineWidth int, leftPad int) (string, int) { nbLine++ spaceLeft = lineWidth - leftPad } + + if wordLength <= 0 { + break + } } } else { // Normal break @@ -84,20 +88,24 @@ func WrapLeftPadded(text string, lineWidth int, leftPad int) (string, int) { lineBuffer.Reset() lineBuffer.WriteString(word) firstWord = false - spaceLeft = lineWidth - wordLength + spaceLeft = lineWidth - leftPad - wordLength nbLine++ } } } - textBuffer.WriteString(pad + strings.TrimRight(lineBuffer.String(), " ")) - lineBuffer.Reset() + if lineBuffer.Len() > 0 { + textBuffer.WriteString(pad + strings.TrimRight(lineBuffer.String(), " ")) + lineBuffer.Reset() + } + firstLine = false } return textBuffer.String(), nbLine } +// wordLen return the length of a word, while ignoring the terminal escape sequences func wordLen(word string) int { length := 0 escape := false @@ -119,8 +127,10 @@ func wordLen(word string) int { return length } +// splitWord split a word at the given length, while ignoring the terminal escape sequences func splitWord(word string, length int) (string, string) { - result := "" + runes := []rune(word) + var result []rune added := 0 escape := false @@ -128,12 +138,12 @@ func splitWord(word string, length int) (string, string) { return "", word } - for _, char := range word { - if char == '\x1b' { + for _, r := range runes { + if r == '\x1b' { escape = true } - result += string(char) + result = append(result, r) if !escape { added++ @@ -142,14 +152,14 @@ func splitWord(word string, length int) (string, string) { } } - if char == 'm' { + if r == 'm' { escape = false } } - leftover := word[len(result):] + leftover := runes[len(result):] - return result, leftover + return string(result), string(leftover) } func minInt(a, b int) int { diff --git a/util/text/text_test.go b/util/text/text_test.go index 96234464..cf72431e 100644 --- a/util/text/text_test.go +++ b/util/text/text_test.go @@ -89,12 +89,24 @@ func TestWrap(t *testing.T) { " This\nis a\nlist:\n\n\n *\nfoo\n *\nbar\n\n\n *\nbaz\nBAM\n", 6, }, + // Handle chinese + { + "婞一枳郲逴靲屮蜧曀殳,掫乇峔掮傎溒兀緉冘仜。", + "婞一枳郲逴靲屮蜧曀殳,掫\n乇峔掮傎溒兀緉冘仜。", + 12, + }, + // Handle chinese with colors + { + "婞一枳郲逴\x1b[31m靲屮蜧曀殳,掫乇峔掮傎溒\x1b[0m兀緉冘仜。", + "婞一枳郲逴\x1b[31m靲屮蜧曀殳,掫\n乇峔掮傎溒\x1b[0m兀緉冘仜。", + 12, + }, } for i, tc := range cases { actual, lines := Wrap(tc.Input, tc.Lim) if actual != tc.Output { - t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n\n`%s`\n\nActual Output:\n\n`%s`", + t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n\n`%s`\n\nActual Output:\n`\n%s`", i, tc.Input, tc.Output, actual) } @@ -106,6 +118,47 @@ func TestWrap(t *testing.T) { } } +func TestWrapLeftPadded(t *testing.T) { + cases := []struct { + input, output string + lim, pad int + }{ + { + "The Lorem ipsum text is typically composed of pseudo-Latin words. It is commonly used as placeholder text to examine or demonstrate the visual effects of various graphic design.", + ` The Lorem ipsum text is typically composed of + pseudo-Latin words. It is commonly used as placeholder + text to examine or demonstrate the visual effects of + various graphic design.`, + 59, 4, + }, + // Handle Chinese + { + "婞一枳郲逴靲屮蜧曀殳,掫乇峔掮傎溒兀緉冘仜。郼牪艽螗媷錵朸一詅掜豗怙刉笀丌,楀棶乇矹迡搦囷圣亍昄漚粁仈祂。覂一洳袶揙楱亍滻瘯毌,掗屮柅軡菵腩乜榵毌夯。勼哻怌婇怤灟葠雺奷朾恦扰衪岨坋誁乇芚誙腞。冇笉妺悆浂鱦賌廌灱灱觓坋佫呬耴跣兀枔蓔輈。嵅咍犴膰痭瘰机一靬涽捊矷尒玶乇,煚塈丌岰陊鉖怞戉兀甿跾觓夬侄。棩岧汌橩僁螗玎一逭舴圂衪扐衲兀,嵲媕亍衩衿溽昃夯丌侄蒰扂丱呤。毰侘妅錣廇螉仴一暀淖蚗佶庂咺丌,輀鈁乇彽洢溦洰氶乇构碨洐巿阹。", + ` 婞一枳郲逴靲屮蜧曀殳,掫乇峔掮傎溒兀緉冘仜。郼牪艽螗媷錵朸一詅掜豗怙刉笀丌,楀棶乇矹迡搦囷圣亍昄漚粁仈祂。覂一 + 洳袶揙楱亍滻瘯毌,掗屮柅軡菵腩乜榵毌夯。勼哻怌婇怤灟葠雺奷朾恦扰衪岨坋誁乇芚誙腞。冇笉妺悆浂鱦賌廌灱灱觓坋佫呬 + 耴跣兀枔蓔輈。嵅咍犴膰痭瘰机一靬涽捊矷尒玶乇,煚塈丌岰陊鉖怞戉兀甿跾觓夬侄。棩岧汌橩僁螗玎一逭舴圂衪扐衲兀,嵲 + 媕亍衩衿溽昃夯丌侄蒰扂丱呤。毰侘妅錣廇螉仴一暀淖蚗佶庂咺丌,輀鈁乇彽洢溦洰氶乇构碨洐巿阹。`, + 59, 4, + }, + } + + for i, tc := range cases { + actual, lines := WrapLeftPadded(tc.input, tc.lim, tc.pad) + if actual != tc.output { + t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n`\n%s`\n\nActual Output:\n`\n%s\n%s`", + i, tc.input, tc.output, + "|"+strings.Repeat("-", tc.lim-2)+"|", + actual) + } + + expected := len(strings.Split(tc.output, "\n")) + if expected != lines { + t.Fatalf("Case %d Nb lines mismatch\nExpected:%d\nActual:%d", + i, expected, lines) + } + } +} + func TestWordLen(t *testing.T) { cases := []struct { Input string @@ -126,6 +179,16 @@ func TestWordLen(t *testing.T) { "foo\x1b[31mfoobarHoy\x1b[0mbaaar", 17, }, + // Handle chinese + { + "快檢什麼望對", + 6, + }, + // Handle chinese with colors + { + "快\x1b[31m檢什麼\x1b[0m望對", + 6, + }, } for i, tc := range cases { @@ -179,6 +242,23 @@ func TestSplitWord(t *testing.T) { 0, "", "foo", }, + // Handle chinese + { + "快檢什麼望對", + 2, + "快檢", "什麼望對", + }, + { + "快檢什麼望對", + 3, + "快檢什", "麼望對", + }, + // Handle chinese with colors + { + "快\x1b[31m檢什麼\x1b[0m望對", + 2, + "快\x1b[31m檢", "什麼\x1b[0m望對", + }, } for i, tc := range cases { diff --git a/vendor/github.com/99designs/gqlgen/cmd/gen.go b/vendor/github.com/99designs/gqlgen/cmd/gen.go new file mode 100644 index 00000000..3842f02b --- /dev/null +++ b/vendor/github.com/99designs/gqlgen/cmd/gen.go @@ -0,0 +1,60 @@ +package cmd + +import ( + "fmt" + "io/ioutil" + "os" + + "github.com/99designs/gqlgen/codegen" + "github.com/pkg/errors" + "github.com/urfave/cli" +) + +var genCmd = cli.Command{ + Name: "generate", + Usage: "generate a graphql server based on schema", + Flags: []cli.Flag{ + cli.BoolFlag{Name: "verbose, v", Usage: "show logs"}, + cli.StringFlag{Name: "config, c", Usage: "the config filename"}, + }, + Action: func(ctx *cli.Context) { + var config *codegen.Config + var err error + if configFilename := ctx.String("config"); configFilename != "" { + config, err = codegen.LoadConfig(configFilename) + if err != nil { + fmt.Fprintln(os.Stderr, err.Error()) + os.Exit(1) + } + } else { + config, err = codegen.LoadConfigFromDefaultLocations() + if os.IsNotExist(errors.Cause(err)) { + config = codegen.DefaultConfig() + } else if err != nil { + fmt.Fprintln(os.Stderr, err.Error()) + os.Exit(1) + } + } + + for _, filename := range config.SchemaFilename { + var schemaRaw []byte + schemaRaw, err = ioutil.ReadFile(filename) + if err != nil { + fmt.Fprintln(os.Stderr, "unable to open schema: "+err.Error()) + os.Exit(1) + } + config.SchemaStr[filename] = string(schemaRaw) + } + + if err = config.Check(); err != nil { + fmt.Fprintln(os.Stderr, "invalid config format: "+err.Error()) + os.Exit(1) + } + + err = codegen.Generate(*config) + if err != nil { + fmt.Fprintln(os.Stderr, err.Error()) + os.Exit(2) + } + }, +} diff --git a/vendor/github.com/99designs/gqlgen/cmd/init.go b/vendor/github.com/99designs/gqlgen/cmd/init.go new file mode 100644 index 00000000..1e7c18b9 --- /dev/null +++ b/vendor/github.com/99designs/gqlgen/cmd/init.go @@ -0,0 +1,162 @@ +package cmd + +import ( + "bytes" + "fmt" + "io/ioutil" + "os" + "strings" + + "github.com/99designs/gqlgen/codegen" + "github.com/pkg/errors" + "github.com/urfave/cli" + "gopkg.in/yaml.v2" +) + +var configComment = ` +# .gqlgen.yml example +# +# Refer to https://gqlgen.com/config/ +# for detailed .gqlgen.yml documentation. +` + +var schemaDefault = ` +# GraphQL schema example +# +# https://gqlgen.com/getting-started/ + +type Todo { + id: ID! + text: String! + done: Boolean! + user: User! +} + +type User { + id: ID! + name: String! +} + +type Query { + todos: [Todo!]! +} + +input NewTodo { + text: String! + userId: String! +} + +type Mutation { + createTodo(input: NewTodo!): Todo! +} +` + +var initCmd = cli.Command{ + Name: "init", + Usage: "create a new gqlgen project", + Flags: []cli.Flag{ + cli.BoolFlag{Name: "verbose, v", Usage: "show logs"}, + cli.StringFlag{Name: "config, c", Usage: "the config filename"}, + cli.StringFlag{Name: "server", Usage: "where to write the server stub to", Value: "server/server.go"}, + cli.StringFlag{Name: "schema", Usage: "where to write the schema stub to", Value: "schema.graphql"}, + }, + Action: func(ctx *cli.Context) { + initSchema(ctx.String("schema")) + config := initConfig(ctx) + + GenerateGraphServer(config, ctx.String("server")) + }, +} + +func GenerateGraphServer(config *codegen.Config, serverFilename string) { + for _, filename := range config.SchemaFilename { + schemaRaw, err := ioutil.ReadFile(filename) + if err != nil { + fmt.Fprintln(os.Stderr, "unable to open schema: "+err.Error()) + os.Exit(1) + } + config.SchemaStr[filename] = string(schemaRaw) + } + + if err := config.Check(); err != nil { + fmt.Fprintln(os.Stderr, "invalid config format: "+err.Error()) + os.Exit(1) + } + + if err := codegen.Generate(*config); err != nil { + fmt.Fprintln(os.Stderr, err.Error()) + os.Exit(1) + } + + if err := codegen.GenerateServer(*config, serverFilename); err != nil { + fmt.Fprintln(os.Stderr, err.Error()) + os.Exit(1) + } + + fmt.Fprintf(os.Stdout, "Exec \"go run ./%s\" to start GraphQL server\n", serverFilename) +} + +func initConfig(ctx *cli.Context) *codegen.Config { + var config *codegen.Config + var err error + configFilename := ctx.String("config") + if configFilename != "" { + config, err = codegen.LoadConfig(configFilename) + } else { + config, err = codegen.LoadConfigFromDefaultLocations() + } + + if config != nil { + fmt.Fprintf(os.Stderr, "init failed: a configuration file already exists at %s\n", config.FilePath) + os.Exit(1) + } + + if !os.IsNotExist(errors.Cause(err)) { + fmt.Fprintln(os.Stderr, err.Error()) + os.Exit(1) + } + + if configFilename == "" { + configFilename = "gqlgen.yml" + } + config = codegen.DefaultConfig() + + config.Resolver = codegen.PackageConfig{ + Filename: "resolver.go", + Type: "Resolver", + } + + var buf bytes.Buffer + buf.WriteString(strings.TrimSpace(configComment)) + buf.WriteString("\n\n") + { + var b []byte + b, err = yaml.Marshal(config) + if err != nil { + fmt.Fprintln(os.Stderr, "unable to marshal yaml: "+err.Error()) + os.Exit(1) + } + buf.Write(b) + } + + err = ioutil.WriteFile(configFilename, buf.Bytes(), 0644) + if err != nil { + fmt.Fprintln(os.Stderr, "unable to write config file: "+err.Error()) + os.Exit(1) + } + + return config +} + +func initSchema(schemaFilename string) { + _, err := os.Stat(schemaFilename) + if !os.IsNotExist(err) { + return + } + + err = ioutil.WriteFile(schemaFilename, []byte(strings.TrimSpace(schemaDefault)), 0644) + if err != nil { + fmt.Fprintln(os.Stderr, "unable to write schema file: "+err.Error()) + os.Exit(1) + } +} diff --git a/vendor/github.com/99designs/gqlgen/cmd/root.go b/vendor/github.com/99designs/gqlgen/cmd/root.go new file mode 100644 index 00000000..519c2e1a --- /dev/null +++ b/vendor/github.com/99designs/gqlgen/cmd/root.go @@ -0,0 +1,53 @@ +package cmd + +import ( + "fmt" + "io/ioutil" + "log" + "os" + + "github.com/99designs/gqlgen/graphql" + "github.com/99designs/gqlgen/internal/gopath" + "github.com/urfave/cli" + + // Required since otherwise dep will prune away these unused packages before codegen has a chance to run + _ "github.com/99designs/gqlgen/handler" +) + +func Execute() { + app := cli.NewApp() + app.Name = "gqlgen" + app.Usage = genCmd.Usage + app.Description = "This is a library for quickly creating strictly typed graphql servers in golang. See https://gqlgen.com/ for a getting started guide." + app.HideVersion = true + app.Flags = genCmd.Flags + app.Version = graphql.Version + app.Before = func(context *cli.Context) error { + pwd, err := os.Getwd() + if err != nil { + return fmt.Errorf("unable to determine current workding dir: %s\n", err.Error()) + } + + if !gopath.Contains(pwd) { + return fmt.Errorf("gqlgen must be run from inside your $GOPATH\n") + } + if context.Bool("verbose") { + log.SetFlags(0) + } else { + log.SetOutput(ioutil.Discard) + } + return nil + } + + app.Action = genCmd.Action + app.Commands = []cli.Command{ + genCmd, + initCmd, + versionCmd, + } + + if err := app.Run(os.Args); err != nil { + fmt.Fprintf(os.Stderr, err.Error()) + os.Exit(1) + } +} diff --git a/vendor/github.com/99designs/gqlgen/cmd/version.go b/vendor/github.com/99designs/gqlgen/cmd/version.go new file mode 100644 index 00000000..8b7442d4 --- /dev/null +++ b/vendor/github.com/99designs/gqlgen/cmd/version.go @@ -0,0 +1,16 @@ +package cmd + +import ( + "fmt" + + "github.com/99designs/gqlgen/graphql" + "github.com/urfave/cli" +) + +var versionCmd = cli.Command{ + Name: "version", + Usage: "print the version string", + Action: func(ctx *cli.Context) { + fmt.Println(graphql.Version) + }, +} diff --git a/vendor/github.com/99designs/gqlgen/codegen/ambient.go b/vendor/github.com/99designs/gqlgen/codegen/ambient.go new file mode 100644 index 00000000..c9909fcc --- /dev/null +++ b/vendor/github.com/99designs/gqlgen/codegen/ambient.go @@ -0,0 +1,10 @@ +package codegen + +import ( + // Import and ignore the ambient imports listed below so dependency managers + // don't prune unused code for us. Both lists should be kept in sync. + _ "github.com/99designs/gqlgen/graphql" + _ "github.com/99designs/gqlgen/graphql/introspection" + _ "github.com/vektah/gqlparser" + _ "github.com/vektah/gqlparser/ast" +) diff --git a/vendor/github.com/99designs/gqlgen/codegen/build.go b/vendor/github.com/99designs/gqlgen/codegen/build.go index 42dedbf8..582689a7 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/build.go +++ b/vendor/github.com/99designs/gqlgen/codegen/build.go @@ -15,25 +15,22 @@ type Build struct { Objects Objects Inputs Objects Interfaces []*Interface - Imports []*Import QueryRoot *Object MutationRoot *Object SubscriptionRoot *Object - SchemaRaw string - SchemaFilename string + SchemaRaw map[string]string + SchemaFilename SchemaFilenames Directives []*Directive } type ModelBuild struct { PackageName string - Imports []*Import Models []Model Enums []Enum } type ResolverBuild struct { PackageName string - Imports []*Import ResolverType string Objects Objects ResolverFound bool @@ -41,7 +38,6 @@ type ResolverBuild struct { type ServerBuild struct { PackageName string - Imports []*Import ExecPackageName string ResolverPackageName string } @@ -50,16 +46,16 @@ type ServerBuild struct { func (cfg *Config) models() (*ModelBuild, error) { namedTypes := cfg.buildNamedTypes() - progLoader := newLoader(namedTypes, true) + progLoader := cfg.newLoaderWithoutErrors() + prog, err := progLoader.Load() if err != nil { return nil, errors.Wrap(err, "loading failed") } - imports := buildImports(namedTypes, cfg.Model.Dir()) - cfg.bindTypes(imports, namedTypes, cfg.Model.Dir(), prog) + cfg.bindTypes(namedTypes, cfg.Model.Dir(), prog) - models, err := cfg.buildModels(namedTypes, prog, imports) + models, err := cfg.buildModels(namedTypes, prog) if err != nil { return nil, err } @@ -67,13 +63,12 @@ func (cfg *Config) models() (*ModelBuild, error) { PackageName: cfg.Model.Package, Models: models, Enums: cfg.buildEnums(namedTypes), - Imports: imports.finalize(), }, nil } // bind a schema together with some code to generate a Build func (cfg *Config) resolver() (*ResolverBuild, error) { - progLoader := newLoader(cfg.buildNamedTypes(), true) + progLoader := cfg.newLoaderWithoutErrors() progLoader.Import(cfg.Resolver.ImportPath()) prog, err := progLoader.Load() @@ -84,13 +79,10 @@ func (cfg *Config) resolver() (*ResolverBuild, error) { destDir := cfg.Resolver.Dir() namedTypes := cfg.buildNamedTypes() - imports := buildImports(namedTypes, destDir) - imports.add(cfg.Exec.ImportPath()) - imports.add("github.com/99designs/gqlgen/handler") // avoid import github.com/vektah/gqlgen/handler - cfg.bindTypes(imports, namedTypes, destDir, prog) + cfg.bindTypes(namedTypes, destDir, prog) - objects, err := cfg.buildObjects(namedTypes, prog, imports) + objects, err := cfg.buildObjects(namedTypes, prog) if err != nil { return nil, err } @@ -100,7 +92,6 @@ func (cfg *Config) resolver() (*ResolverBuild, error) { return &ResolverBuild{ PackageName: cfg.Resolver.Package, - Imports: imports.finalize(), Objects: objects, ResolverType: cfg.Resolver.Type, ResolverFound: resolverFound, @@ -108,15 +99,10 @@ func (cfg *Config) resolver() (*ResolverBuild, error) { } func (cfg *Config) server(destDir string) *ServerBuild { - imports := buildImports(NamedTypes{}, destDir) - imports.add(cfg.Exec.ImportPath()) - imports.add(cfg.Resolver.ImportPath()) - return &ServerBuild{ PackageName: cfg.Resolver.Package, - Imports: imports.finalize(), - ExecPackageName: cfg.Exec.Package, - ResolverPackageName: cfg.Resolver.Package, + ExecPackageName: cfg.Exec.ImportPath(), + ResolverPackageName: cfg.Resolver.ImportPath(), } } @@ -124,21 +110,20 @@ func (cfg *Config) server(destDir string) *ServerBuild { func (cfg *Config) bind() (*Build, error) { namedTypes := cfg.buildNamedTypes() - progLoader := newLoader(namedTypes, true) + progLoader := cfg.newLoaderWithoutErrors() prog, err := progLoader.Load() if err != nil { return nil, errors.Wrap(err, "loading failed") } - imports := buildImports(namedTypes, cfg.Exec.Dir()) - cfg.bindTypes(imports, namedTypes, cfg.Exec.Dir(), prog) + cfg.bindTypes(namedTypes, cfg.Exec.Dir(), prog) - objects, err := cfg.buildObjects(namedTypes, prog, imports) + objects, err := cfg.buildObjects(namedTypes, prog) if err != nil { return nil, err } - inputs, err := cfg.buildInputs(namedTypes, prog, imports) + inputs, err := cfg.buildInputs(namedTypes, prog) if err != nil { return nil, err } @@ -152,7 +137,6 @@ func (cfg *Config) bind() (*Build, error) { Objects: objects, Interfaces: cfg.buildInterfaces(namedTypes, prog), Inputs: inputs, - Imports: imports.finalize(), SchemaRaw: cfg.SchemaStr, SchemaFilename: cfg.SchemaFilename, Directives: directives, @@ -175,29 +159,25 @@ func (cfg *Config) bind() (*Build, error) { } func (cfg *Config) validate() error { - progLoader := newLoader(cfg.buildNamedTypes(), false) + progLoader := cfg.newLoaderWithErrors() _, err := progLoader.Load() return err } -func newLoader(namedTypes NamedTypes, allowErrors bool) loader.Config { +func (cfg *Config) newLoaderWithErrors() loader.Config { conf := loader.Config{} - if allowErrors { - conf = loader.Config{ - AllowErrors: true, - TypeChecker: types.Config{ - Error: func(e error) {}, - }, - } - } - for _, imp := range ambientImports { - conf.Import(imp) - } - - for _, imp := range namedTypes { - if imp.Package != "" { - conf.Import(imp.Package) - } + + for _, pkg := range cfg.Models.referencedPackages() { + conf.Import(pkg) + } + return conf +} + +func (cfg *Config) newLoaderWithoutErrors() loader.Config { + conf := cfg.newLoaderWithErrors() + conf.AllowErrors = true + conf.TypeChecker = types.Config{ + Error: func(e error) {}, } return conf } diff --git a/vendor/github.com/99designs/gqlgen/codegen/codegen.go b/vendor/github.com/99designs/gqlgen/codegen/codegen.go index 27873400..773e3db7 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/codegen.go +++ b/vendor/github.com/99designs/gqlgen/codegen/codegen.go @@ -151,8 +151,13 @@ func (cfg *Config) normalize() error { } } + var sources []*ast.Source + for _, filename := range cfg.SchemaFilename { + sources = append(sources, &ast.Source{Name: filename, Input: cfg.SchemaStr[filename]}) + } + var err *gqlerror.Error - cfg.schema, err = gqlparser.LoadSchema(&ast.Source{Name: cfg.SchemaFilename, Input: cfg.SchemaStr}) + cfg.schema, err = gqlparser.LoadSchema(sources...) if err != nil { return err } diff --git a/vendor/github.com/99designs/gqlgen/codegen/config.go b/vendor/github.com/99designs/gqlgen/codegen/config.go index db0e467b..f9df24fb 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/config.go +++ b/vendor/github.com/99designs/gqlgen/codegen/config.go @@ -6,6 +6,7 @@ import ( "io/ioutil" "os" "path/filepath" + "sort" "strings" "github.com/99designs/gqlgen/internal/gopath" @@ -19,7 +20,8 @@ var cfgFilenames = []string{".gqlgen.yml", "gqlgen.yml", "gqlgen.yaml"} // DefaultConfig creates a copy of the default config func DefaultConfig() *Config { return &Config{ - SchemaFilename: "schema.graphql", + SchemaFilename: SchemaFilenames{"schema.graphql"}, + SchemaStr: map[string]string{}, Model: PackageConfig{Filename: "models_gen.go"}, Exec: PackageConfig{Filename: "generated.go"}, } @@ -53,19 +55,36 @@ func LoadConfig(filename string) (*Config, error) { return nil, errors.Wrap(err, "unable to parse config") } + preGlobbing := config.SchemaFilename + config.SchemaFilename = SchemaFilenames{} + for _, f := range preGlobbing { + matches, err := filepath.Glob(f) + if err != nil { + return nil, errors.Wrapf(err, "failed to glob schema filename %s", f) + } + + for _, m := range matches { + if config.SchemaFilename.Has(m) { + continue + } + config.SchemaFilename = append(config.SchemaFilename, m) + } + } + config.FilePath = filename + config.SchemaStr = map[string]string{} return config, nil } type Config struct { - SchemaFilename string `yaml:"schema,omitempty"` - SchemaStr string `yaml:"-"` - Exec PackageConfig `yaml:"exec"` - Model PackageConfig `yaml:"model"` - Resolver PackageConfig `yaml:"resolver,omitempty"` - Models TypeMap `yaml:"models,omitempty"` - StructTag string `yaml:"struct_tag,omitempty"` + SchemaFilename SchemaFilenames `yaml:"schema,omitempty"` + SchemaStr map[string]string `yaml:"-"` + Exec PackageConfig `yaml:"exec"` + Model PackageConfig `yaml:"model"` + Resolver PackageConfig `yaml:"resolver,omitempty"` + Models TypeMap `yaml:"models,omitempty"` + StructTag string `yaml:"struct_tag,omitempty"` FilePath string `yaml:"-"` @@ -84,8 +103,37 @@ type TypeMapEntry struct { } type TypeMapField struct { - Resolver bool `yaml:"resolver"` - FieldName string `yaml:"fieldName"` + Resolver bool `yaml:"resolver"` + FieldName string `yaml:"fieldName"` +} + +type SchemaFilenames []string + +func (a *SchemaFilenames) UnmarshalYAML(unmarshal func(interface{}) error) error { + var single string + err := unmarshal(&single) + if err == nil { + *a = []string{single} + return nil + } + + var multi []string + err = unmarshal(&multi) + if err != nil { + return err + } + + *a = multi + return nil +} + +func (a SchemaFilenames) Has(file string) bool { + for _, existing := range a { + if existing == file { + return true + } + } + return false } func (c *PackageConfig) normalize() error { @@ -162,6 +210,36 @@ func (tm TypeMap) Check() error { return nil } +func (tm TypeMap) referencedPackages() []string { + var pkgs []string + + for _, typ := range tm { + if typ.Model == "map[string]interface{}" { + continue + } + pkg, _ := pkgAndType(typ.Model) + if pkg == "" || inStrSlice(pkgs, pkg) { + continue + } + pkgs = append(pkgs, pkg) + } + + sort.Slice(pkgs, func(i, j int) bool { + return pkgs[i] > pkgs[j] + }) + return pkgs +} + +func inStrSlice(haystack []string, needle string) bool { + for _, v := range haystack { + if needle == v { + return true + } + } + + return false +} + // findCfg searches for the config file in this directory and all parents up the tree // looking for the closest match func findCfg() (string, error) { diff --git a/vendor/github.com/99designs/gqlgen/codegen/directive_build.go b/vendor/github.com/99designs/gqlgen/codegen/directive_build.go index 32828841..af77dc44 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/directive_build.go +++ b/vendor/github.com/99designs/gqlgen/codegen/directive_build.go @@ -32,7 +32,6 @@ func (cfg *Config) buildDirectives(types NamedTypes) ([]*Directive, error) { if err != nil { return nil, errors.Errorf("default value for directive argument %s(%s) is not valid: %s", dir.Name, arg.Name, err.Error()) } - newArg.StripPtr() } args = append(args, newArg) } diff --git a/vendor/github.com/99designs/gqlgen/codegen/import.go b/vendor/github.com/99designs/gqlgen/codegen/import.go deleted file mode 100644 index b511e8f6..00000000 --- a/vendor/github.com/99designs/gqlgen/codegen/import.go +++ /dev/null @@ -1,29 +0,0 @@ -package codegen - -import ( - "strconv" -) - -type Import struct { - Name string - Path string - - alias string -} - -type Imports struct { - imports []*Import - destDir string -} - -func (i *Import) Write() string { - return i.Alias() + " " + strconv.Quote(i.Path) -} - -func (i *Import) Alias() string { - if i.alias == "" { - panic("alias called before imports are finalized") - } - - return i.alias -} diff --git a/vendor/github.com/99designs/gqlgen/codegen/import_build.go b/vendor/github.com/99designs/gqlgen/codegen/import_build.go deleted file mode 100644 index d634834e..00000000 --- a/vendor/github.com/99designs/gqlgen/codegen/import_build.go +++ /dev/null @@ -1,120 +0,0 @@ -package codegen - -import ( - "fmt" - "go/build" - "sort" - "strconv" - - // Import and ignore the ambient imports listed below so dependency managers - // don't prune unused code for us. Both lists should be kept in sync. - _ "github.com/99designs/gqlgen/graphql" - _ "github.com/99designs/gqlgen/graphql/introspection" - "github.com/99designs/gqlgen/internal/gopath" - _ "github.com/vektah/gqlparser" - _ "github.com/vektah/gqlparser/ast" -) - -// These imports are referenced by the generated code, and are assumed to have the -// default alias. So lets make sure they get added first, and any later collisions get -// renamed. -var ambientImports = []string{ - "context", - "fmt", - "io", - "strconv", - "time", - "sync", - "errors", - - "github.com/vektah/gqlparser", - "github.com/vektah/gqlparser/ast", - "github.com/99designs/gqlgen/graphql", - "github.com/99designs/gqlgen/graphql/introspection", -} - -func buildImports(types NamedTypes, destDir string) *Imports { - imports := Imports{ - destDir: destDir, - } - - for _, ambient := range ambientImports { - imports.add(ambient) - } - - // Imports from top level user types - for _, t := range types { - t.Import = imports.add(t.Package) - } - - return &imports -} - -func (s *Imports) add(path string) *Import { - if path == "" { - return nil - } - - // if we are referencing our own package we dont need an import - if gopath.MustDir2Import(s.destDir) == path { - return nil - } - - if existing := s.findByPath(path); existing != nil { - return existing - } - - pkg, err := build.Default.Import(path, s.destDir, 0) - if err != nil { - panic(err) - } - - imp := &Import{ - Name: pkg.Name, - Path: path, - } - s.imports = append(s.imports, imp) - - return imp -} - -func (s Imports) finalize() []*Import { - // ensure stable ordering by sorting - sort.Slice(s.imports, func(i, j int) bool { - return s.imports[i].Path > s.imports[j].Path - }) - - for _, imp := range s.imports { - alias := imp.Name - - i := 1 - for s.findByAlias(alias) != nil { - alias = imp.Name + strconv.Itoa(i) - i++ - if i > 10 { - panic(fmt.Errorf("too many collisions, last attempt was %s", alias)) - } - } - imp.alias = alias - } - - return s.imports -} - -func (s Imports) findByPath(importPath string) *Import { - for _, imp := range s.imports { - if imp.Path == importPath { - return imp - } - } - return nil -} - -func (s Imports) findByAlias(alias string) *Import { - for _, imp := range s.imports { - if imp.alias == alias { - return imp - } - } - return nil -} diff --git a/vendor/github.com/99designs/gqlgen/codegen/input_build.go b/vendor/github.com/99designs/gqlgen/codegen/input_build.go index 06ff37a0..70fa564d 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/input_build.go +++ b/vendor/github.com/99designs/gqlgen/codegen/input_build.go @@ -9,7 +9,7 @@ import ( "golang.org/x/tools/go/loader" ) -func (cfg *Config) buildInputs(namedTypes NamedTypes, prog *loader.Program, imports *Imports) (Objects, error) { +func (cfg *Config) buildInputs(namedTypes NamedTypes, prog *loader.Program) (Objects, error) { var inputs Objects for _, typ := range cfg.schema.Types { @@ -26,7 +26,7 @@ func (cfg *Config) buildInputs(namedTypes NamedTypes, prog *loader.Program, impo } if def != nil { input.Marshaler = buildInputMarshaler(typ, def) - bindErrs := bindObject(def.Type(), input, imports, cfg.StructTag) + bindErrs := bindObject(def.Type(), input, cfg.StructTag) if len(bindErrs) > 0 { return nil, bindErrs } diff --git a/vendor/github.com/99designs/gqlgen/codegen/interface_build.go b/vendor/github.com/99designs/gqlgen/codegen/interface_build.go index 9f4a4ff4..92052ba6 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/interface_build.go +++ b/vendor/github.com/99designs/gqlgen/codegen/interface_build.go @@ -1,9 +1,7 @@ package codegen import ( - "fmt" "go/types" - "os" "sort" "github.com/vektah/gqlparser/ast" @@ -51,20 +49,5 @@ func (cfg *Config) isValueReceiver(intf *NamedType, implementor *NamedType, prog return true } - for i := 0; i < interfaceType.NumMethods(); i++ { - intfMethod := interfaceType.Method(i) - - implMethod := findMethod(implementorType, intfMethod.Name()) - if implMethod == nil { - fmt.Fprintf(os.Stderr, "missing method %s on %s\n", intfMethod.Name(), implementor.GoType) - return false - } - - sig := implMethod.Type().(*types.Signature) - if _, isPtr := sig.Recv().Type().(*types.Pointer); isPtr { - return false - } - } - - return true + return types.Implements(implementorType, interfaceType) } diff --git a/vendor/github.com/99designs/gqlgen/codegen/model.go b/vendor/github.com/99designs/gqlgen/codegen/model.go index 5ba50337..bcdc8703 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/model.go +++ b/vendor/github.com/99designs/gqlgen/codegen/model.go @@ -4,6 +4,7 @@ type Model struct { *NamedType Description string Fields []ModelField + Implements []*NamedType } type ModelField struct { diff --git a/vendor/github.com/99designs/gqlgen/codegen/models_build.go b/vendor/github.com/99designs/gqlgen/codegen/models_build.go index 9f98a07d..56d2ff1f 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/models_build.go +++ b/vendor/github.com/99designs/gqlgen/codegen/models_build.go @@ -7,14 +7,14 @@ import ( "golang.org/x/tools/go/loader" ) -func (cfg *Config) buildModels(types NamedTypes, prog *loader.Program, imports *Imports) ([]Model, error) { +func (cfg *Config) buildModels(types NamedTypes, prog *loader.Program) ([]Model, error) { var models []Model for _, typ := range cfg.schema.Types { var model Model switch typ.Kind { case ast.Object: - obj, err := cfg.buildObject(types, typ, imports) + obj, err := cfg.buildObject(types, typ) if err != nil { return nil, err } @@ -54,8 +54,9 @@ func (cfg *Config) buildModels(types NamedTypes, prog *loader.Program, imports * func (cfg *Config) obj2Model(obj *Object) Model { model := Model{ - NamedType: obj.NamedType, - Fields: []ModelField{}, + NamedType: obj.NamedType, + Implements: obj.Implements, + Fields: []ModelField{}, } model.GoType = ucFirst(obj.GQLType) diff --git a/vendor/github.com/99designs/gqlgen/codegen/object.go b/vendor/github.com/99designs/gqlgen/codegen/object.go index d9f610f4..656af297 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/object.go +++ b/vendor/github.com/99designs/gqlgen/codegen/object.go @@ -24,6 +24,7 @@ type Object struct { Fields []Field Satisfies []string + Implements []*NamedType ResolverInterface *Ref Root bool DisableConcurrency bool @@ -32,16 +33,17 @@ type Object struct { type Field struct { *Type - Description string // Description of a field - GQLName string // The name of the field in graphql - GoFieldType GoFieldType // The field type in go, if any - GoReceiverName string // The name of method & var receiver in go, if any - GoFieldName string // The name of the method or var in go, if any - Args []FieldArgument // A list of arguments to be passed to this field - ForceResolver bool // Should be emit Resolver method - NoErr bool // If this is bound to a go method, does that method have an error as the second argument - Object *Object // A link back to the parent object - Default interface{} // The default value + Description string // Description of a field + GQLName string // The name of the field in graphql + GoFieldType GoFieldType // The field type in go, if any + GoReceiverName string // The name of method & var receiver in go, if any + GoFieldName string // The name of the method or var in go, if any + Args []FieldArgument // A list of arguments to be passed to this field + ForceResolver bool // Should be emit Resolver method + MethodHasContext bool // If this is bound to a go method, does the method also take a context + NoErr bool // If this is bound to a go method, does that method have an error as the second argument + Object *Object // A link back to the parent object + Default interface{} // The default value } type FieldArgument struct { @@ -102,7 +104,10 @@ func (f *Field) IsVariable() bool { } func (f *Field) IsConcurrent() bool { - return f.IsResolver() && !f.Object.DisableConcurrency + if f.Object.DisableConcurrency { + return false + } + return f.MethodHasContext || f.IsResolver() } func (f *Field) GoNameExported() string { @@ -203,11 +208,15 @@ func (f *Field) CallArgs() string { var args []string if f.IsResolver() { - args = append(args, "ctx") + args = append(args, "rctx") if !f.Object.Root { args = append(args, "obj") } + } else { + if f.MethodHasContext { + args = append(args, "ctx") + } } for _, arg := range f.Args { diff --git a/vendor/github.com/99designs/gqlgen/codegen/object_build.go b/vendor/github.com/99designs/gqlgen/codegen/object_build.go index ee2b2f1c..279d1eb6 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/object_build.go +++ b/vendor/github.com/99designs/gqlgen/codegen/object_build.go @@ -9,7 +9,7 @@ import ( "golang.org/x/tools/go/loader" ) -func (cfg *Config) buildObjects(types NamedTypes, prog *loader.Program, imports *Imports) (Objects, error) { +func (cfg *Config) buildObjects(types NamedTypes, prog *loader.Program) (Objects, error) { var objects Objects for _, typ := range cfg.schema.Types { @@ -17,7 +17,7 @@ func (cfg *Config) buildObjects(types NamedTypes, prog *loader.Program, imports continue } - obj, err := cfg.buildObject(types, typ, imports) + obj, err := cfg.buildObject(types, typ) if err != nil { return nil, err } @@ -27,7 +27,7 @@ func (cfg *Config) buildObjects(types NamedTypes, prog *loader.Program, imports return nil, err } if def != nil { - for _, bindErr := range bindObject(def.Type(), obj, imports, cfg.StructTag) { + for _, bindErr := range bindObject(def.Type(), obj, cfg.StructTag) { log.Println(bindErr.Error()) log.Println(" Adding resolver method") } @@ -81,12 +81,11 @@ func sanitizeArgName(name string) string { return name } -func (cfg *Config) buildObject(types NamedTypes, typ *ast.Definition, imports *Imports) (*Object, error) { +func (cfg *Config) buildObject(types NamedTypes, typ *ast.Definition) (*Object, error) { obj := &Object{NamedType: types[typ.Name]} typeEntry, entryExists := cfg.Models[typ.Name] - imp := imports.findByPath(cfg.Exec.ImportPath()) - obj.ResolverInterface = &Ref{GoType: obj.GQLType + "Resolver", Import: imp} + obj.ResolverInterface = &Ref{GoType: obj.GQLType + "Resolver"} if typ == cfg.schema.Query { obj.Root = true @@ -104,12 +103,15 @@ func (cfg *Config) buildObject(types NamedTypes, typ *ast.Definition, imports *I obj.Satisfies = append(obj.Satisfies, typ.Interfaces...) + for _, intf := range cfg.schema.GetImplements(typ) { + obj.Implements = append(obj.Implements, types[intf.Name]) + } + for _, field := range typ.Fields { if typ == cfg.schema.Query && field.Name == "__type" { obj.Fields = append(obj.Fields, Field{ Type: &Type{types["__Schema"], []string{modPtr}, ast.NamedType("__Schema", nil), nil}, GQLName: "__schema", - NoErr: true, GoFieldType: GoFieldMethod, GoReceiverName: "ec", GoFieldName: "introspectSchema", @@ -122,7 +124,6 @@ func (cfg *Config) buildObject(types NamedTypes, typ *ast.Definition, imports *I obj.Fields = append(obj.Fields, Field{ Type: &Type{types["__Type"], []string{modPtr}, ast.NamedType("__Schema", nil), nil}, GQLName: "__type", - NoErr: true, GoFieldType: GoFieldMethod, GoReceiverName: "ec", GoFieldName: "introspectType", @@ -162,7 +163,6 @@ func (cfg *Config) buildObject(types NamedTypes, typ *ast.Definition, imports *I if err != nil { return nil, errors.Errorf("default value for %s.%s is not valid: %s", typ.Name, field.Name, err.Error()) } - newArg.StripPtr() } args = append(args, newArg) } diff --git a/vendor/github.com/99designs/gqlgen/codegen/templates/data.go b/vendor/github.com/99designs/gqlgen/codegen/templates/data.go index d168fa31..d3098aaa 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/templates/data.go +++ b/vendor/github.com/99designs/gqlgen/codegen/templates/data.go @@ -2,12 +2,12 @@ package templates var data = map[string]string{ "args.gotpl": "\targs := map[string]interface{}{}\n\t{{- range $i, $arg := . }}\n\t\tvar arg{{$i}} {{$arg.Signature }}\n\t\tif tmp, ok := rawArgs[{{$arg.GQLName|quote}}]; ok {\n\t\t\tvar err error\n\t\t\t{{$arg.Unmarshal (print \"arg\" $i) \"tmp\" }}\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\t\targs[{{$arg.GQLName|quote}}] = arg{{$i}}\n\t{{- end }}\n\treturn args, nil\n", - "field.gotpl": "{{ $field := . }}\n{{ $object := $field.Object }}\n\n{{- if $object.Stream }}\n\tfunc (ec *executionContext) _{{$object.GQLType}}_{{$field.GQLName}}(ctx context.Context, field graphql.CollectedField) func() graphql.Marshaler {\n\t\t{{- if $field.Args }}\n\t\t\trawArgs := field.ArgumentMap(ec.Variables)\n\t\t\targs, err := {{ $field.ArgsFunc }}(rawArgs)\n\t\t\tif err != nil {\n\t\t\t\tec.Error(ctx, err)\n\t\t\t\treturn nil\n\t\t\t}\n\t\t{{- end }}\n\t\tctx = graphql.WithResolverContext(ctx, &graphql.ResolverContext{\n\t\t\tField: field,\n\t\t})\n\t\tresults, err := ec.resolvers.{{ $field.ShortInvocation }}\n\t\tif err != nil {\n\t\t\tec.Error(ctx, err)\n\t\t\treturn nil\n\t\t}\n\t\treturn func() graphql.Marshaler {\n\t\t\tres, ok := <-results\n\t\t\tif !ok {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tvar out graphql.OrderedMap\n\t\t\tout.Add(field.Alias, func() graphql.Marshaler { {{ $field.WriteJson }} }())\n\t\t\treturn &out\n\t\t}\n\t}\n{{ else }}\n\t// nolint: vetshadow\n\tfunc (ec *executionContext) _{{$object.GQLType}}_{{$field.GQLName}}(ctx context.Context, field graphql.CollectedField, {{if not $object.Root}}obj *{{$object.FullName}}{{end}}) graphql.Marshaler {\n\t\t{{- if $field.Args }}\n\t\t\trawArgs := field.ArgumentMap(ec.Variables)\n\t\t\targs, err := {{ $field.ArgsFunc }}(rawArgs)\n\t\t\tif err != nil {\n\t\t\t\tec.Error(ctx, err)\n\t\t\t\treturn graphql.Null\n\t\t\t}\n\t\t{{- end }}\n\t\trctx := &graphql.ResolverContext{\n\t\t\tObject: {{$object.GQLType|quote}},\n\t\t\tArgs: {{if $field.Args }}args{{else}}nil{{end}},\n\t\t\tField: field,\n\t\t}\n\t\tctx = graphql.WithResolverContext(ctx, rctx)\n\t\tresTmp := ec.FieldMiddleware(ctx, {{if $object.Root}}nil{{else}}obj{{end}}, func(ctx context.Context) (interface{}, error) {\n\t\t\t{{- if $field.IsResolver }}\n\t\t\t\treturn ec.resolvers.{{ $field.ShortInvocation }}\n\t\t\t{{- else if $field.IsMethod }}\n\t\t\t\t{{- if $field.NoErr }}\n\t\t\t\t\treturn {{$field.GoReceiverName}}.{{$field.GoFieldName}}({{ $field.CallArgs }}), nil\n\t\t\t\t{{- else }}\n\t\t\t\t\treturn {{$field.GoReceiverName}}.{{$field.GoFieldName}}({{ $field.CallArgs }})\n\t\t\t\t{{- end }}\n\t\t\t{{- else if $field.IsVariable }}\n\t\t\t\treturn {{$field.GoReceiverName}}.{{$field.GoFieldName}}, nil\n\t\t\t{{- end }}\n\t\t})\n\t\tif resTmp == nil {\n\t\t\t{{- if $field.ASTType.NonNull }}\n\t\t\t\tif !ec.HasError(rctx) {\n\t\t\t\t\tec.Errorf(ctx, \"must not be null\")\n\t\t\t\t}\n\t\t\t{{- end }}\n\t\t\treturn graphql.Null\n\t\t}\n\t\tres := resTmp.({{$field.Signature}})\n\t\trctx.Result = res\n\t\t{{ $field.WriteJson }}\n\t}\n{{ end }}\n", - "generated.gotpl": "// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.\n\npackage {{ .PackageName }}\n\nimport (\n{{- range $import := .Imports }}\n\t{{- $import.Write }}\n{{ end }}\n)\n\n// NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface.\nfunc NewExecutableSchema(cfg Config) graphql.ExecutableSchema {\n\treturn &executableSchema{\n\t\tresolvers: cfg.Resolvers,\n\t\tdirectives: cfg.Directives,\n\t\tcomplexity: cfg.Complexity,\n\t}\n}\n\ntype Config struct {\n\tResolvers ResolverRoot\n\tDirectives DirectiveRoot\n\tComplexity ComplexityRoot\n}\n\ntype ResolverRoot interface {\n{{- range $object := .Objects -}}\n\t{{ if $object.HasResolvers -}}\n\t\t{{$object.GQLType}}() {{$object.GQLType}}Resolver\n\t{{ end }}\n{{- end }}\n}\n\ntype DirectiveRoot struct {\n{{ range $directive := .Directives }}\n\t{{ $directive.Declaration }}\n{{ end }}\n}\n\ntype ComplexityRoot struct {\n{{ range $object := .Objects }}\n\t{{ if not $object.IsReserved -}}\n\t\t{{ $object.GQLType|toCamel }} struct {\n\t\t{{ range $field := $object.Fields -}}\n\t\t\t{{ if not $field.IsReserved -}}\n\t\t\t\t{{ $field.GQLName|toCamel }} {{ $field.ComplexitySignature }}\n\t\t\t{{ end }}\n\t\t{{- end }}\n\t\t}\n\t{{- end }}\n{{ end }}\n}\n\n{{ range $object := .Objects -}}\n\t{{ if $object.HasResolvers }}\n\t\ttype {{$object.GQLType}}Resolver interface {\n\t\t{{ range $field := $object.Fields -}}\n\t\t\t{{ $field.ShortResolverDeclaration }}\n\t\t{{ end }}\n\t\t}\n\t{{- end }}\n{{- end }}\n\n{{ range $object := .Objects -}}\n\t{{ range $field := $object.Fields -}}\n\t\t{{ if $field.Args }}\n\t\t\tfunc {{ $field.ArgsFunc }}(rawArgs map[string]interface{}) (map[string]interface{}, error) {\n\t\t\t{{ template \"args.gotpl\" $field.Args }}\n\t\t\t}\n\t\t{{ end }}\n\t{{ end }}\n{{- end }}\n\n{{ range $directive := .Directives }}\n\t{{ if $directive.Args }}\n\t\tfunc {{ $directive.ArgsFunc }}(rawArgs map[string]interface{}) (map[string]interface{}, error) {\n\t\t{{ template \"args.gotpl\" $directive.Args }}\n\t\t}\n\t{{ end }}\n{{ end }}\n\ntype executableSchema struct {\n\tresolvers ResolverRoot\n\tdirectives DirectiveRoot\n\tcomplexity ComplexityRoot\n}\n\nfunc (e *executableSchema) Schema() *ast.Schema {\n\treturn parsedSchema\n}\n\nfunc (e *executableSchema) Complexity(typeName, field string, childComplexity int, rawArgs map[string]interface{}) (int, bool) {\n\tswitch typeName + \".\" + field {\n\t{{ range $object := .Objects }}\n\t\t{{ if not $object.IsReserved }}\n\t\t\t{{ range $field := $object.Fields }}\n\t\t\t\t{{ if not $field.IsReserved }}\n\t\t\t\t\tcase \"{{$object.GQLType}}.{{$field.GQLName}}\":\n\t\t\t\t\t\tif e.complexity.{{$object.GQLType|toCamel}}.{{$field.GQLName|toCamel}} == nil {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t\t{{ if $field.Args }}\n\t\t\t\t\t\t\targs, err := {{ $field.ArgsFunc }}(rawArgs)\n\t\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\t\treturn 0, false\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t{{ end }}\n\t\t\t\t\t\treturn e.complexity.{{$object.GQLType|toCamel}}.{{$field.GQLName|toCamel}}(childComplexity{{if $field.Args}}, {{$field.ComplexityArgs}} {{end}}), true\n\t\t\t\t{{ end }}\n\t\t\t{{ end }}\n\t\t{{ end }}\n\t{{ end }}\n\t}\n\treturn 0, false\n}\n\nfunc (e *executableSchema) Query(ctx context.Context, op *ast.OperationDefinition) *graphql.Response {\n\t{{- if .QueryRoot }}\n\t\tec := executionContext{graphql.GetRequestContext(ctx), e}\n\n\t\tbuf := ec.RequestMiddleware(ctx, func(ctx context.Context) []byte {\n\t\t\tdata := ec._{{.QueryRoot.GQLType}}(ctx, op.SelectionSet)\n\t\t\tvar buf bytes.Buffer\n\t\t\tdata.MarshalGQL(&buf)\n\t\t\treturn buf.Bytes()\n\t\t})\n\n\t\treturn &graphql.Response{\n\t\t\tData: buf,\n\t\t\tErrors: ec.Errors,\n\t\t}\n\t{{- else }}\n\t\treturn graphql.ErrorResponse(ctx, \"queries are not supported\")\n\t{{- end }}\n}\n\nfunc (e *executableSchema) Mutation(ctx context.Context, op *ast.OperationDefinition) *graphql.Response {\n\t{{- if .MutationRoot }}\n\t\tec := executionContext{graphql.GetRequestContext(ctx), e}\n\n\t\tbuf := ec.RequestMiddleware(ctx, func(ctx context.Context) []byte {\n\t\t\tdata := ec._{{.MutationRoot.GQLType}}(ctx, op.SelectionSet)\n\t\t\tvar buf bytes.Buffer\n\t\t\tdata.MarshalGQL(&buf)\n\t\t\treturn buf.Bytes()\n\t\t})\n\n\t\treturn &graphql.Response{\n\t\t\tData: buf,\n\t\t\tErrors: ec.Errors,\n\t\t}\n\t{{- else }}\n\t\treturn graphql.ErrorResponse(ctx, \"mutations are not supported\")\n\t{{- end }}\n}\n\nfunc (e *executableSchema) Subscription(ctx context.Context, op *ast.OperationDefinition) func() *graphql.Response {\n\t{{- if .SubscriptionRoot }}\n\t\tec := executionContext{graphql.GetRequestContext(ctx), e}\n\n\t\tnext := ec._{{.SubscriptionRoot.GQLType}}(ctx, op.SelectionSet)\n\t\tif ec.Errors != nil {\n\t\t\treturn graphql.OneShot(&graphql.Response{Data: []byte(\"null\"), Errors: ec.Errors})\n\t\t}\n\n\t\tvar buf bytes.Buffer\n\t\treturn func() *graphql.Response {\n\t\t\tbuf := ec.RequestMiddleware(ctx, func(ctx context.Context) []byte {\n\t\t\t\tbuf.Reset()\n\t\t\t\tdata := next()\n\n\t\t\t\tif data == nil {\n\t\t\t\t\treturn nil\n\t\t\t\t}\n\t\t\t\tdata.MarshalGQL(&buf)\n\t\t\t\treturn buf.Bytes()\n\t\t\t})\n\n\t\t\tif buf == nil {\n\t\t\t\treturn nil\n\t\t\t}\n\n\t\t\treturn &graphql.Response{\n\t\t\t\tData: buf,\n\t\t\t\tErrors: ec.Errors,\n\t\t\t}\n\t\t}\n\t{{- else }}\n\t\treturn graphql.OneShot(graphql.ErrorResponse(ctx, \"subscriptions are not supported\"))\n\t{{- end }}\n}\n\ntype executionContext struct {\n\t*graphql.RequestContext\n\t*executableSchema\n}\n\n{{- range $object := .Objects }}\n\t{{ template \"object.gotpl\" $object }}\n\n\t{{- range $field := $object.Fields }}\n\t\t{{ template \"field.gotpl\" $field }}\n\t{{ end }}\n{{- end}}\n\n{{- range $interface := .Interfaces }}\n\t{{ template \"interface.gotpl\" $interface }}\n{{- end }}\n\n{{- range $input := .Inputs }}\n\t{{ template \"input.gotpl\" $input }}\n{{- end }}\n\nfunc (ec *executionContext) FieldMiddleware(ctx context.Context, obj interface{}, next graphql.Resolver) (ret interface{}) {\n\tdefer func() {\n\t\tif r := recover(); r != nil {\n\t\t\tec.Error(ctx, ec.Recover(ctx, r))\n\t\t\tret = nil\n\t\t}\n\t}()\n\t{{- if .Directives }}\n\trctx := graphql.GetResolverContext(ctx)\n\tfor _, d := range rctx.Field.Definition.Directives {\n\t\tswitch d.Name {\n\t\t{{- range $directive := .Directives }}\n\t\tcase \"{{$directive.Name}}\":\n\t\t\tif ec.directives.{{$directive.Name|ucFirst}} != nil {\n\t\t\t\t{{- if $directive.Args }}\n\t\t\t\t\trawArgs := d.ArgumentMap(ec.Variables)\n\t\t\t\t\targs, err := {{ $directive.ArgsFunc }}(rawArgs)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tec.Error(ctx, err)\n\t\t\t\t\t\treturn nil\n\t\t\t\t\t}\n\t\t\t\t{{- end }}\n\t\t\t\tn := next\n\t\t\t\tnext = func(ctx context.Context) (interface{}, error) {\n\t\t\t\t\treturn ec.directives.{{$directive.Name|ucFirst}}({{$directive.CallArgs}})\n\t\t\t\t}\n\t\t\t}\n\t\t{{- end }}\n\t\t}\n\t}\n\t{{- end }}\n\tres, err := ec.ResolverMiddleware(ctx, next)\n\tif err != nil {\n\t\tec.Error(ctx, err)\n\t\treturn nil\n\t}\n\treturn res\n}\n\nfunc (ec *executionContext) introspectSchema() *introspection.Schema {\n\treturn introspection.WrapSchema(parsedSchema)\n}\n\nfunc (ec *executionContext) introspectType(name string) *introspection.Type {\n\treturn introspection.WrapTypeFromDef(parsedSchema, parsedSchema.Types[name])\n}\n\nvar parsedSchema = gqlparser.MustLoadSchema(\n\t&ast.Source{Name: {{.SchemaFilename|quote}}, Input: {{.SchemaRaw|rawQuote}}},\n)\n", + "field.gotpl": "{{ $field := . }}\n{{ $object := $field.Object }}\n\n{{- if $object.Stream }}\n\tfunc (ec *executionContext) _{{$object.GQLType}}_{{$field.GQLName}}(ctx context.Context, field graphql.CollectedField) func() graphql.Marshaler {\n\t\t{{- if $field.Args }}\n\t\t\trawArgs := field.ArgumentMap(ec.Variables)\n\t\t\targs, err := {{ $field.ArgsFunc }}(rawArgs)\n\t\t\tif err != nil {\n\t\t\t\tec.Error(ctx, err)\n\t\t\t\treturn nil\n\t\t\t}\n\t\t{{- end }}\n\t\tctx = graphql.WithResolverContext(ctx, &graphql.ResolverContext{\n\t\t\tField: field,\n\t\t})\n\t\t// FIXME: subscriptions are missing request middleware stack https://github.com/99designs/gqlgen/issues/259\n\t\t// and Tracer stack\n\t\trctx := ctx\n\t\tresults, err := ec.resolvers.{{ $field.ShortInvocation }}\n\t\tif err != nil {\n\t\t\tec.Error(ctx, err)\n\t\t\treturn nil\n\t\t}\n\t\treturn func() graphql.Marshaler {\n\t\t\tres, ok := <-results\n\t\t\tif !ok {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tvar out graphql.OrderedMap\n\t\t\tout.Add(field.Alias, func() graphql.Marshaler { {{ $field.WriteJson }} }())\n\t\t\treturn &out\n\t\t}\n\t}\n{{ else }}\n\t// nolint: vetshadow\n\tfunc (ec *executionContext) _{{$object.GQLType}}_{{$field.GQLName}}(ctx context.Context, field graphql.CollectedField, {{if not $object.Root}}obj *{{$object.FullName}}{{end}}) graphql.Marshaler {\n\t\tctx = ec.Tracer.StartFieldExecution(ctx, field)\n\t\tdefer func () { ec.Tracer.EndFieldExecution(ctx) }()\n\t\t{{- if $field.Args }}\n\t\t\trawArgs := field.ArgumentMap(ec.Variables)\n\t\t\targs, err := {{ $field.ArgsFunc }}(rawArgs)\n\t\t\tif err != nil {\n\t\t\t\tec.Error(ctx, err)\n\t\t\t\treturn graphql.Null\n\t\t\t}\n\t\t{{- end }}\n\t\trctx := &graphql.ResolverContext{\n\t\t\tObject: {{$object.GQLType|quote}},\n\t\t\tArgs: {{if $field.Args }}args{{else}}nil{{end}},\n\t\t\tField: field,\n\t\t}\n\t\tctx = graphql.WithResolverContext(ctx, rctx)\n\t\tctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx)\n\t\tresTmp := ec.FieldMiddleware(ctx, {{if $object.Root}}nil{{else}}obj{{end}}, func(rctx context.Context) (interface{}, error) {\n\t\t\tctx = rctx // use context from middleware stack in children\n\t\t\t{{- if $field.IsResolver }}\n\t\t\t\treturn ec.resolvers.{{ $field.ShortInvocation }}\n\t\t\t{{- else if $field.IsMethod }}\n\t\t\t\t{{- if $field.NoErr }}\n\t\t\t\t\treturn {{$field.GoReceiverName}}.{{$field.GoFieldName}}({{ $field.CallArgs }}), nil\n\t\t\t\t{{- else }}\n\t\t\t\t\treturn {{$field.GoReceiverName}}.{{$field.GoFieldName}}({{ $field.CallArgs }})\n\t\t\t\t{{- end }}\n\t\t\t{{- else if $field.IsVariable }}\n\t\t\t\treturn {{$field.GoReceiverName}}.{{$field.GoFieldName}}, nil\n\t\t\t{{- end }}\n\t\t})\n\t\tif resTmp == nil {\n\t\t\t{{- if $field.ASTType.NonNull }}\n\t\t\t\tif !ec.HasError(rctx) {\n\t\t\t\t\tec.Errorf(ctx, \"must not be null\")\n\t\t\t\t}\n\t\t\t{{- end }}\n\t\t\treturn graphql.Null\n\t\t}\n\t\tres := resTmp.({{$field.Signature}})\n\t\trctx.Result = res\n\t\tctx = ec.Tracer.StartFieldChildExecution(ctx)\n\t\t{{ $field.WriteJson }}\n\t}\n{{ end }}\n", + "generated.gotpl": "// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.\n\npackage {{ .PackageName }}\n\nimport (\n\t%%%IMPORTS%%%\n\n\t{{ reserveImport \"context\" }}\n\t{{ reserveImport \"fmt\" }}\n\t{{ reserveImport \"io\" }}\n\t{{ reserveImport \"strconv\" }}\n\t{{ reserveImport \"time\" }}\n\t{{ reserveImport \"sync\" }}\n\t{{ reserveImport \"errors\" }}\n\t{{ reserveImport \"bytes\" }}\n\n\t{{ reserveImport \"github.com/vektah/gqlparser\" }}\n\t{{ reserveImport \"github.com/vektah/gqlparser/ast\" }}\n\t{{ reserveImport \"github.com/99designs/gqlgen/graphql\" }}\n\t{{ reserveImport \"github.com/99designs/gqlgen/graphql/introspection\" }}\n)\n\n// NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface.\nfunc NewExecutableSchema(cfg Config) graphql.ExecutableSchema {\n\treturn &executableSchema{\n\t\tresolvers: cfg.Resolvers,\n\t\tdirectives: cfg.Directives,\n\t\tcomplexity: cfg.Complexity,\n\t}\n}\n\ntype Config struct {\n\tResolvers ResolverRoot\n\tDirectives DirectiveRoot\n\tComplexity ComplexityRoot\n}\n\ntype ResolverRoot interface {\n{{- range $object := .Objects -}}\n\t{{ if $object.HasResolvers -}}\n\t\t{{$object.GQLType}}() {{$object.GQLType}}Resolver\n\t{{ end }}\n{{- end }}\n}\n\ntype DirectiveRoot struct {\n{{ range $directive := .Directives }}\n\t{{ $directive.Declaration }}\n{{ end }}\n}\n\ntype ComplexityRoot struct {\n{{ range $object := .Objects }}\n\t{{ if not $object.IsReserved -}}\n\t\t{{ $object.GQLType|toCamel }} struct {\n\t\t{{ range $field := $object.Fields -}}\n\t\t\t{{ if not $field.IsReserved -}}\n\t\t\t\t{{ $field.GQLName|toCamel }} {{ $field.ComplexitySignature }}\n\t\t\t{{ end }}\n\t\t{{- end }}\n\t\t}\n\t{{- end }}\n{{ end }}\n}\n\n{{ range $object := .Objects -}}\n\t{{ if $object.HasResolvers }}\n\t\ttype {{$object.GQLType}}Resolver interface {\n\t\t{{ range $field := $object.Fields -}}\n\t\t\t{{ $field.ShortResolverDeclaration }}\n\t\t{{ end }}\n\t\t}\n\t{{- end }}\n{{- end }}\n\n{{ range $object := .Objects -}}\n\t{{ range $field := $object.Fields -}}\n\t\t{{ if $field.Args }}\n\t\t\tfunc {{ $field.ArgsFunc }}(rawArgs map[string]interface{}) (map[string]interface{}, error) {\n\t\t\t{{ template \"args.gotpl\" $field.Args }}\n\t\t\t}\n\t\t{{ end }}\n\t{{ end }}\n{{- end }}\n\n{{ range $directive := .Directives }}\n\t{{ if $directive.Args }}\n\t\tfunc {{ $directive.ArgsFunc }}(rawArgs map[string]interface{}) (map[string]interface{}, error) {\n\t\t{{ template \"args.gotpl\" $directive.Args }}\n\t\t}\n\t{{ end }}\n{{ end }}\n\ntype executableSchema struct {\n\tresolvers ResolverRoot\n\tdirectives DirectiveRoot\n\tcomplexity ComplexityRoot\n}\n\nfunc (e *executableSchema) Schema() *ast.Schema {\n\treturn parsedSchema\n}\n\nfunc (e *executableSchema) Complexity(typeName, field string, childComplexity int, rawArgs map[string]interface{}) (int, bool) {\n\tswitch typeName + \".\" + field {\n\t{{ range $object := .Objects }}\n\t\t{{ if not $object.IsReserved }}\n\t\t\t{{ range $field := $object.Fields }}\n\t\t\t\t{{ if not $field.IsReserved }}\n\t\t\t\t\tcase \"{{$object.GQLType}}.{{$field.GQLName}}\":\n\t\t\t\t\t\tif e.complexity.{{$object.GQLType|toCamel}}.{{$field.GQLName|toCamel}} == nil {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t\t{{ if $field.Args }}\n\t\t\t\t\t\t\targs, err := {{ $field.ArgsFunc }}(rawArgs)\n\t\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\t\treturn 0, false\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t{{ end }}\n\t\t\t\t\t\treturn e.complexity.{{$object.GQLType|toCamel}}.{{$field.GQLName|toCamel}}(childComplexity{{if $field.Args}}, {{$field.ComplexityArgs}} {{end}}), true\n\t\t\t\t{{ end }}\n\t\t\t{{ end }}\n\t\t{{ end }}\n\t{{ end }}\n\t}\n\treturn 0, false\n}\n\nfunc (e *executableSchema) Query(ctx context.Context, op *ast.OperationDefinition) *graphql.Response {\n\t{{- if .QueryRoot }}\n\t\tec := executionContext{graphql.GetRequestContext(ctx), e}\n\n\t\tbuf := ec.RequestMiddleware(ctx, func(ctx context.Context) []byte {\n\t\t\tdata := ec._{{.QueryRoot.GQLType}}(ctx, op.SelectionSet)\n\t\t\tvar buf bytes.Buffer\n\t\t\tdata.MarshalGQL(&buf)\n\t\t\treturn buf.Bytes()\n\t\t})\n\n\t\treturn &graphql.Response{\n\t\t\tData: buf,\n\t\t\tErrors: ec.Errors,\n\t\t\tExtensions: ec.Extensions,\t\t}\n\t{{- else }}\n\t\treturn graphql.ErrorResponse(ctx, \"queries are not supported\")\n\t{{- end }}\n}\n\nfunc (e *executableSchema) Mutation(ctx context.Context, op *ast.OperationDefinition) *graphql.Response {\n\t{{- if .MutationRoot }}\n\t\tec := executionContext{graphql.GetRequestContext(ctx), e}\n\n\t\tbuf := ec.RequestMiddleware(ctx, func(ctx context.Context) []byte {\n\t\t\tdata := ec._{{.MutationRoot.GQLType}}(ctx, op.SelectionSet)\n\t\t\tvar buf bytes.Buffer\n\t\t\tdata.MarshalGQL(&buf)\n\t\t\treturn buf.Bytes()\n\t\t})\n\n\t\treturn &graphql.Response{\n\t\t\tData: buf,\n\t\t\tErrors: ec.Errors,\n\t\t\tExtensions: ec.Extensions,\n\t\t}\n\t{{- else }}\n\t\treturn graphql.ErrorResponse(ctx, \"mutations are not supported\")\n\t{{- end }}\n}\n\nfunc (e *executableSchema) Subscription(ctx context.Context, op *ast.OperationDefinition) func() *graphql.Response {\n\t{{- if .SubscriptionRoot }}\n\t\tec := executionContext{graphql.GetRequestContext(ctx), e}\n\n\t\tnext := ec._{{.SubscriptionRoot.GQLType}}(ctx, op.SelectionSet)\n\t\tif ec.Errors != nil {\n\t\t\treturn graphql.OneShot(&graphql.Response{Data: []byte(\"null\"), Errors: ec.Errors})\n\t\t}\n\n\t\tvar buf bytes.Buffer\n\t\treturn func() *graphql.Response {\n\t\t\tbuf := ec.RequestMiddleware(ctx, func(ctx context.Context) []byte {\n\t\t\t\tbuf.Reset()\n\t\t\t\tdata := next()\n\n\t\t\t\tif data == nil {\n\t\t\t\t\treturn nil\n\t\t\t\t}\n\t\t\t\tdata.MarshalGQL(&buf)\n\t\t\t\treturn buf.Bytes()\n\t\t\t})\n\n\t\t\tif buf == nil {\n\t\t\t\treturn nil\n\t\t\t}\n\n\t\t\treturn &graphql.Response{\n\t\t\t\tData: buf,\n\t\t\t\tErrors: ec.Errors,\n\t\t\t\tExtensions: ec.Extensions,\n\t\t\t}\n\t\t}\n\t{{- else }}\n\t\treturn graphql.OneShot(graphql.ErrorResponse(ctx, \"subscriptions are not supported\"))\n\t{{- end }}\n}\n\ntype executionContext struct {\n\t*graphql.RequestContext\n\t*executableSchema\n}\n\n{{- range $object := .Objects }}\n\t{{ template \"object.gotpl\" $object }}\n\n\t{{- range $field := $object.Fields }}\n\t\t{{ template \"field.gotpl\" $field }}\n\t{{ end }}\n{{- end}}\n\n{{- range $interface := .Interfaces }}\n\t{{ template \"interface.gotpl\" $interface }}\n{{- end }}\n\n{{- range $input := .Inputs }}\n\t{{ template \"input.gotpl\" $input }}\n{{- end }}\n\nfunc (ec *executionContext) FieldMiddleware(ctx context.Context, obj interface{}, next graphql.Resolver) (ret interface{}) {\n\tdefer func() {\n\t\tif r := recover(); r != nil {\n\t\t\tec.Error(ctx, ec.Recover(ctx, r))\n\t\t\tret = nil\n\t\t}\n\t}()\n\t{{- if .Directives }}\n\trctx := graphql.GetResolverContext(ctx)\n\tfor _, d := range rctx.Field.Definition.Directives {\n\t\tswitch d.Name {\n\t\t{{- range $directive := .Directives }}\n\t\tcase \"{{$directive.Name}}\":\n\t\t\tif ec.directives.{{$directive.Name|ucFirst}} != nil {\n\t\t\t\t{{- if $directive.Args }}\n\t\t\t\t\trawArgs := d.ArgumentMap(ec.Variables)\n\t\t\t\t\targs, err := {{ $directive.ArgsFunc }}(rawArgs)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tec.Error(ctx, err)\n\t\t\t\t\t\treturn nil\n\t\t\t\t\t}\n\t\t\t\t{{- end }}\n\t\t\t\tn := next\n\t\t\t\tnext = func(ctx context.Context) (interface{}, error) {\n\t\t\t\t\treturn ec.directives.{{$directive.Name|ucFirst}}({{$directive.CallArgs}})\n\t\t\t\t}\n\t\t\t}\n\t\t{{- end }}\n\t\t}\n\t}\n\t{{- end }}\n\tres, err := ec.ResolverMiddleware(ctx, next)\n\tif err != nil {\n\t\tec.Error(ctx, err)\n\t\treturn nil\n\t}\n\treturn res\n}\n\nfunc (ec *executionContext) introspectSchema() (*introspection.Schema, error) {\n\tif ec.DisableIntrospection {\n\t\treturn nil, errors.New(\"introspection disabled\")\n\t}\n\treturn introspection.WrapSchema(parsedSchema), nil\n}\n\nfunc (ec *executionContext) introspectType(name string) (*introspection.Type, error) {\n\tif ec.DisableIntrospection {\n\t\treturn nil, errors.New(\"introspection disabled\")\n\t}\n\treturn introspection.WrapTypeFromDef(parsedSchema, parsedSchema.Types[name]), nil\n}\n\nvar parsedSchema = gqlparser.MustLoadSchema(\n\t{{- range $filename, $schema := .SchemaRaw }}\n\t\t&ast.Source{Name: {{$filename|quote}}, Input: {{$schema|rawQuote}}},\n\t{{- end }}\n)\n", "input.gotpl": "\t{{- if .IsMarshaled }}\n\tfunc Unmarshal{{ .GQLType }}(v interface{}) ({{.FullName}}, error) {\n\t\tvar it {{.FullName}}\n\t\tvar asMap = v.(map[string]interface{})\n\t\t{{ range $field := .Fields}}\n\t\t\t{{- if $field.Default}}\n\t\t\t\tif _, present := asMap[{{$field.GQLName|quote}}] ; !present {\n\t\t\t\t\tasMap[{{$field.GQLName|quote}}] = {{ $field.Default | dump }}\n\t\t\t\t}\n\t\t\t{{- end}}\n\t\t{{- end }}\n\n\t\tfor k, v := range asMap {\n\t\t\tswitch k {\n\t\t\t{{- range $field := .Fields }}\n\t\t\tcase {{$field.GQLName|quote}}:\n\t\t\t\tvar err error\n\t\t\t\t{{ $field.Unmarshal (print \"it.\" $field.GoFieldName) \"v\" }}\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn it, err\n\t\t\t\t}\n\t\t\t{{- end }}\n\t\t\t}\n\t\t}\n\n\t\treturn it, nil\n\t}\n\t{{- end }}\n", "interface.gotpl": "{{- $interface := . }}\n\nfunc (ec *executionContext) _{{$interface.GQLType}}(ctx context.Context, sel ast.SelectionSet, obj *{{$interface.FullName}}) graphql.Marshaler {\n\tswitch obj := (*obj).(type) {\n\tcase nil:\n\t\treturn graphql.Null\n\t{{- range $implementor := $interface.Implementors }}\n\t\t{{- if $implementor.ValueReceiver }}\n\t\t\tcase {{$implementor.FullName}}:\n\t\t\t\treturn ec._{{$implementor.GQLType}}(ctx, sel, &obj)\n\t\t{{- end}}\n\t\tcase *{{$implementor.FullName}}:\n\t\t\treturn ec._{{$implementor.GQLType}}(ctx, sel, obj)\n\t{{- end }}\n\tdefault:\n\t\tpanic(fmt.Errorf(\"unexpected type %T\", obj))\n\t}\n}\n", - "models.gotpl": "// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.\n\npackage {{ .PackageName }}\n\nimport (\n{{- range $import := .Imports }}\n\t{{- $import.Write }}\n{{ end }}\n)\n\n{{ range $model := .Models }}\n\t{{with .Description}} {{.|prefixLines \"// \"}} {{end}}\n\t{{- if .IsInterface }}\n\t\ttype {{.GoType}} interface {}\n\t{{- else }}\n\t\ttype {{.GoType}} struct {\n\t\t\t{{- range $field := .Fields }}\n\t\t\t\t{{- with .Description}}\n\t\t\t\t\t{{.|prefixLines \"// \"}}\n\t\t\t\t{{- end}}\n\t\t\t\t{{- if $field.GoFieldName }}\n\t\t\t\t\t{{ $field.GoFieldName }} {{$field.Signature}} `json:\"{{$field.GQLName}}\"`\n\t\t\t\t{{- else }}\n\t\t\t\t\t{{ $field.GoFKName }} {{$field.GoFKType}}\n\t\t\t\t{{- end }}\n\t\t\t{{- end }}\n\t\t}\n\t{{- end }}\n{{- end}}\n\n{{ range $enum := .Enums }}\n\t{{with .Description}}{{.|prefixLines \"// \"}} {{end}}\n\ttype {{.GoType}} string\n\tconst (\n\t{{- range $value := .Values}}\n\t\t{{- with .Description}}\n\t\t\t{{.|prefixLines \"// \"}}\n\t\t{{- end}}\n\t\t{{$enum.GoType}}{{ .Name|toCamel }} {{$enum.GoType}} = {{.Name|quote}}\n\t{{- end }}\n\t)\n\n\tfunc (e {{.GoType}}) IsValid() bool {\n\t\tswitch e {\n\t\tcase {{ range $index, $element := .Values}}{{if $index}},{{end}}{{ $enum.GoType }}{{ $element.Name|toCamel }}{{end}}:\n\t\t\treturn true\n\t\t}\n\t\treturn false\n\t}\n\n\tfunc (e {{.GoType}}) String() string {\n\t\treturn string(e)\n\t}\n\n\tfunc (e *{{.GoType}}) UnmarshalGQL(v interface{}) error {\n\t\tstr, ok := v.(string)\n\t\tif !ok {\n\t\t\treturn fmt.Errorf(\"enums must be strings\")\n\t\t}\n\n\t\t*e = {{.GoType}}(str)\n\t\tif !e.IsValid() {\n\t\t\treturn fmt.Errorf(\"%s is not a valid {{.GQLType}}\", str)\n\t\t}\n\t\treturn nil\n\t}\n\n\tfunc (e {{.GoType}}) MarshalGQL(w io.Writer) {\n\t\tfmt.Fprint(w, strconv.Quote(e.String()))\n\t}\n\n{{- end }}\n", + "models.gotpl": "// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.\n\npackage {{ .PackageName }}\n\nimport (\n\t%%%IMPORTS%%%\n\n\t{{ reserveImport \"context\" }}\n\t{{ reserveImport \"fmt\" }}\n\t{{ reserveImport \"io\" }}\n\t{{ reserveImport \"strconv\" }}\n\t{{ reserveImport \"time\" }}\n\t{{ reserveImport \"sync\" }}\n\t{{ reserveImport \"errors\" }}\n\t{{ reserveImport \"bytes\" }}\n\n\t{{ reserveImport \"github.com/vektah/gqlparser\" }}\n\t{{ reserveImport \"github.com/vektah/gqlparser/ast\" }}\n\t{{ reserveImport \"github.com/99designs/gqlgen/graphql\" }}\n\t{{ reserveImport \"github.com/99designs/gqlgen/graphql/introspection\" }}\n)\n\n{{ range $model := .Models }}\n\t{{with .Description}} {{.|prefixLines \"// \"}} {{end}}\n\t{{- if .IsInterface }}\n\t\ttype {{.GoType}} interface {\n\t\t\tIs{{.GoType}}()\n\t\t}\n\t{{- else }}\n\t\ttype {{.GoType}} struct {\n\t\t\t{{- range $field := .Fields }}\n\t\t\t\t{{- with .Description}}\n\t\t\t\t\t{{.|prefixLines \"// \"}}\n\t\t\t\t{{- end}}\n\t\t\t\t{{- if $field.GoFieldName }}\n\t\t\t\t\t{{ $field.GoFieldName }} {{$field.Signature}} `json:\"{{$field.GQLName}}\"`\n\t\t\t\t{{- else }}\n\t\t\t\t\t{{ $field.GoFKName }} {{$field.GoFKType}}\n\t\t\t\t{{- end }}\n\t\t\t{{- end }}\n\t\t}\n\n\t\t{{- range $iface := .Implements }}\n\t\t\tfunc ({{$model.GoType}}) Is{{$iface.GoType}}() {}\n\t\t{{- end }}\n\n\t{{- end }}\n{{- end}}\n\n{{ range $enum := .Enums }}\n\t{{with .Description}}{{.|prefixLines \"// \"}} {{end}}\n\ttype {{.GoType}} string\n\tconst (\n\t{{- range $value := .Values}}\n\t\t{{- with .Description}}\n\t\t\t{{.|prefixLines \"// \"}}\n\t\t{{- end}}\n\t\t{{$enum.GoType}}{{ .Name|toCamel }} {{$enum.GoType}} = {{.Name|quote}}\n\t{{- end }}\n\t)\n\n\tfunc (e {{.GoType}}) IsValid() bool {\n\t\tswitch e {\n\t\tcase {{ range $index, $element := .Values}}{{if $index}},{{end}}{{ $enum.GoType }}{{ $element.Name|toCamel }}{{end}}:\n\t\t\treturn true\n\t\t}\n\t\treturn false\n\t}\n\n\tfunc (e {{.GoType}}) String() string {\n\t\treturn string(e)\n\t}\n\n\tfunc (e *{{.GoType}}) UnmarshalGQL(v interface{}) error {\n\t\tstr, ok := v.(string)\n\t\tif !ok {\n\t\t\treturn fmt.Errorf(\"enums must be strings\")\n\t\t}\n\n\t\t*e = {{.GoType}}(str)\n\t\tif !e.IsValid() {\n\t\t\treturn fmt.Errorf(\"%s is not a valid {{.GQLType}}\", str)\n\t\t}\n\t\treturn nil\n\t}\n\n\tfunc (e {{.GoType}}) MarshalGQL(w io.Writer) {\n\t\tfmt.Fprint(w, strconv.Quote(e.String()))\n\t}\n\n{{- end }}\n", "object.gotpl": "{{ $object := . }}\n\nvar {{ $object.GQLType|lcFirst}}Implementors = {{$object.Implementors}}\n\n// nolint: gocyclo, errcheck, gas, goconst\n{{- if .Stream }}\nfunc (ec *executionContext) _{{$object.GQLType}}(ctx context.Context, sel ast.SelectionSet) func() graphql.Marshaler {\n\tfields := graphql.CollectFields(ctx, sel, {{$object.GQLType|lcFirst}}Implementors)\n\tctx = graphql.WithResolverContext(ctx, &graphql.ResolverContext{\n\t\tObject: {{$object.GQLType|quote}},\n\t})\n\tif len(fields) != 1 {\n\t\tec.Errorf(ctx, \"must subscribe to exactly one stream\")\n\t\treturn nil\n\t}\n\n\tswitch fields[0].Name {\n\t{{- range $field := $object.Fields }}\n\tcase \"{{$field.GQLName}}\":\n\t\treturn ec._{{$object.GQLType}}_{{$field.GQLName}}(ctx, fields[0])\n\t{{- end }}\n\tdefault:\n\t\tpanic(\"unknown field \" + strconv.Quote(fields[0].Name))\n\t}\n}\n{{- else }}\nfunc (ec *executionContext) _{{$object.GQLType}}(ctx context.Context, sel ast.SelectionSet{{if not $object.Root}}, obj *{{$object.FullName}} {{end}}) graphql.Marshaler {\n\tfields := graphql.CollectFields(ctx, sel, {{$object.GQLType|lcFirst}}Implementors)\n\t{{if $object.Root}}\n\t\tctx = graphql.WithResolverContext(ctx, &graphql.ResolverContext{\n\t\t\tObject: {{$object.GQLType|quote}},\n\t\t})\n\t{{end}}\n\n\t{{if $object.IsConcurrent}} var wg sync.WaitGroup {{end}}\n\tout := graphql.NewOrderedMap(len(fields))\n\tinvalid := false\n\tfor i, field := range fields {\n\t\tout.Keys[i] = field.Alias\n\n\t\tswitch field.Name {\n\t\tcase \"__typename\":\n\t\t\tout.Values[i] = graphql.MarshalString({{$object.GQLType|quote}})\n\t\t{{- range $field := $object.Fields }}\n\t\tcase \"{{$field.GQLName}}\":\n\t\t\t{{- if $field.IsConcurrent }}\n\t\t\t\twg.Add(1)\n\t\t\t\tgo func(i int, field graphql.CollectedField) {\n\t\t\t{{- end }}\n\t\t\t\tout.Values[i] = ec._{{$object.GQLType}}_{{$field.GQLName}}(ctx, field{{if not $object.Root}}, obj{{end}})\n\t\t\t\t{{- if $field.ASTType.NonNull }}\n\t\t\t\t\tif out.Values[i] == graphql.Null {\n\t\t\t\t\t\tinvalid = true\n\t\t\t\t\t}\n\t\t\t\t{{- end }}\n\t\t\t{{- if $field.IsConcurrent }}\n\t\t\t\t\twg.Done()\n\t\t\t\t}(i, field)\n\t\t\t{{- end }}\n\t\t{{- end }}\n\t\tdefault:\n\t\t\tpanic(\"unknown field \" + strconv.Quote(field.Name))\n\t\t}\n\t}\n\t{{if $object.IsConcurrent}} wg.Wait() {{end}}\n\tif invalid { return graphql.Null }\n\treturn out\n}\n{{- end }}\n", - "resolver.gotpl": "//go:generate gorunpkg github.com/99designs/gqlgen\n\npackage {{ .PackageName }}\n\nimport (\n{{- range $import := .Imports }}\n\t{{- $import.Write }}\n{{ end }}\n)\n\ntype {{.ResolverType}} struct {}\n\n{{ range $object := .Objects -}}\n\t{{- if $object.HasResolvers -}}\n\t\tfunc (r *{{$.ResolverType}}) {{$object.GQLType}}() {{ $object.ResolverInterface.FullName }} {\n\t\t\treturn &{{lcFirst $object.GQLType}}Resolver{r}\n\t\t}\n\t{{ end -}}\n{{ end }}\n\n{{ range $object := .Objects -}}\n\t{{- if $object.HasResolvers -}}\n\t\ttype {{lcFirst $object.GQLType}}Resolver struct { *Resolver }\n\n\t\t{{ range $field := $object.Fields -}}\n\t\t\t{{- if $field.IsResolver -}}\n\t\t\tfunc (r *{{lcFirst $object.GQLType}}Resolver) {{ $field.ShortResolverDeclaration }} {\n\t\t\t\tpanic(\"not implemented\")\n\t\t\t}\n\t\t\t{{ end -}}\n\t\t{{ end -}}\n\t{{ end -}}\n{{ end }}\n", - "server.gotpl": "package main\n\nimport (\n{{- range $import := .Imports }}\n\t{{- $import.Write }}\n{{ end }}\n)\n\nconst defaultPort = \"8080\"\n\nfunc main() {\n\tport := os.Getenv(\"PORT\")\n\tif port == \"\" {\n\t\tport = defaultPort\n\t}\n\n\thttp.Handle(\"/\", handler.Playground(\"GraphQL playground\", \"/query\"))\n\thttp.Handle(\"/query\", handler.GraphQL({{.ExecPackageName}}.NewExecutableSchema({{.ExecPackageName}}.Config{Resolvers: &{{.ResolverPackageName}}.Resolver{}})))\n\n\tlog.Printf(\"connect to http://localhost:%s/ for GraphQL playground\", port)\n\tlog.Fatal(http.ListenAndServe(\":\" + port, nil))\n}\n", + "resolver.gotpl": "package {{ .PackageName }}\n\nimport (\n\t%%%IMPORTS%%%\n\n\t{{ reserveImport \"context\" }}\n\t{{ reserveImport \"fmt\" }}\n\t{{ reserveImport \"io\" }}\n\t{{ reserveImport \"strconv\" }}\n\t{{ reserveImport \"time\" }}\n\t{{ reserveImport \"sync\" }}\n\t{{ reserveImport \"errors\" }}\n\t{{ reserveImport \"bytes\" }}\n\n\t{{ reserveImport \"github.com/99designs/gqlgen/handler\" }}\n\t{{ reserveImport \"github.com/vektah/gqlparser\" }}\n\t{{ reserveImport \"github.com/vektah/gqlparser/ast\" }}\n\t{{ reserveImport \"github.com/99designs/gqlgen/graphql\" }}\n\t{{ reserveImport \"github.com/99designs/gqlgen/graphql/introspection\" }}\n)\n\ntype {{.ResolverType}} struct {}\n\n{{ range $object := .Objects -}}\n\t{{- if $object.HasResolvers -}}\n\t\tfunc (r *{{$.ResolverType}}) {{$object.GQLType}}() {{ $object.ResolverInterface.FullName }} {\n\t\t\treturn &{{lcFirst $object.GQLType}}Resolver{r}\n\t\t}\n\t{{ end -}}\n{{ end }}\n\n{{ range $object := .Objects -}}\n\t{{- if $object.HasResolvers -}}\n\t\ttype {{lcFirst $object.GQLType}}Resolver struct { *Resolver }\n\n\t\t{{ range $field := $object.Fields -}}\n\t\t\t{{- if $field.IsResolver -}}\n\t\t\tfunc (r *{{lcFirst $object.GQLType}}Resolver) {{ $field.ShortResolverDeclaration }} {\n\t\t\t\tpanic(\"not implemented\")\n\t\t\t}\n\t\t\t{{ end -}}\n\t\t{{ end -}}\n\t{{ end -}}\n{{ end }}\n", + "server.gotpl": "package main\n\nimport (\n\t%%%IMPORTS%%%\n\n\t{{ reserveImport \"context\" }}\n\t{{ reserveImport \"log\" }}\n\t{{ reserveImport \"net/http\" }}\n\t{{ reserveImport \"os\" }}\n\t{{ reserveImport \"github.com/99designs/gqlgen/handler\" }}\n)\n\nconst defaultPort = \"8080\"\n\nfunc main() {\n\tport := os.Getenv(\"PORT\")\n\tif port == \"\" {\n\t\tport = defaultPort\n\t}\n\n\thttp.Handle(\"/\", handler.Playground(\"GraphQL playground\", \"/query\"))\n\thttp.Handle(\"/query\", handler.GraphQL({{ lookupImport .ExecPackageName }}.NewExecutableSchema({{ lookupImport .ExecPackageName}}.Config{Resolvers: &{{ lookupImport .ResolverPackageName}}.Resolver{}})))\n\n\tlog.Printf(\"connect to http://localhost:%s/ for GraphQL playground\", port)\n\tlog.Fatal(http.ListenAndServe(\":\" + port, nil))\n}\n", } diff --git a/vendor/github.com/99designs/gqlgen/codegen/templates/field.gotpl b/vendor/github.com/99designs/gqlgen/codegen/templates/field.gotpl index b33f2123..3df847fa 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/templates/field.gotpl +++ b/vendor/github.com/99designs/gqlgen/codegen/templates/field.gotpl @@ -14,6 +14,9 @@ ctx = graphql.WithResolverContext(ctx, &graphql.ResolverContext{ Field: field, }) + // FIXME: subscriptions are missing request middleware stack https://github.com/99designs/gqlgen/issues/259 + // and Tracer stack + rctx := ctx results, err := ec.resolvers.{{ $field.ShortInvocation }} if err != nil { ec.Error(ctx, err) @@ -32,6 +35,8 @@ {{ else }} // nolint: vetshadow func (ec *executionContext) _{{$object.GQLType}}_{{$field.GQLName}}(ctx context.Context, field graphql.CollectedField, {{if not $object.Root}}obj *{{$object.FullName}}{{end}}) graphql.Marshaler { + ctx = ec.Tracer.StartFieldExecution(ctx, field) + defer func () { ec.Tracer.EndFieldExecution(ctx) }() {{- if $field.Args }} rawArgs := field.ArgumentMap(ec.Variables) args, err := {{ $field.ArgsFunc }}(rawArgs) @@ -46,7 +51,9 @@ Field: field, } ctx = graphql.WithResolverContext(ctx, rctx) - resTmp := ec.FieldMiddleware(ctx, {{if $object.Root}}nil{{else}}obj{{end}}, func(ctx context.Context) (interface{}, error) { + ctx = ec.Tracer.StartFieldResolverExecution(ctx, rctx) + resTmp := ec.FieldMiddleware(ctx, {{if $object.Root}}nil{{else}}obj{{end}}, func(rctx context.Context) (interface{}, error) { + ctx = rctx // use context from middleware stack in children {{- if $field.IsResolver }} return ec.resolvers.{{ $field.ShortInvocation }} {{- else if $field.IsMethod }} @@ -69,6 +76,7 @@ } res := resTmp.({{$field.Signature}}) rctx.Result = res + ctx = ec.Tracer.StartFieldChildExecution(ctx) {{ $field.WriteJson }} } {{ end }} diff --git a/vendor/github.com/99designs/gqlgen/codegen/templates/generated.gotpl b/vendor/github.com/99designs/gqlgen/codegen/templates/generated.gotpl index 8250bc7a..a37a1613 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/templates/generated.gotpl +++ b/vendor/github.com/99designs/gqlgen/codegen/templates/generated.gotpl @@ -3,9 +3,21 @@ package {{ .PackageName }} import ( -{{- range $import := .Imports }} - {{- $import.Write }} -{{ end }} + %%%IMPORTS%%% + + {{ reserveImport "context" }} + {{ reserveImport "fmt" }} + {{ reserveImport "io" }} + {{ reserveImport "strconv" }} + {{ reserveImport "time" }} + {{ reserveImport "sync" }} + {{ reserveImport "errors" }} + {{ reserveImport "bytes" }} + + {{ reserveImport "github.com/vektah/gqlparser" }} + {{ reserveImport "github.com/vektah/gqlparser/ast" }} + {{ reserveImport "github.com/99designs/gqlgen/graphql" }} + {{ reserveImport "github.com/99designs/gqlgen/graphql/introspection" }} ) // NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface. @@ -126,9 +138,9 @@ func (e *executableSchema) Query(ctx context.Context, op *ast.OperationDefinitio }) return &graphql.Response{ - Data: buf, - Errors: ec.Errors, - } + Data: buf, + Errors: ec.Errors, + Extensions: ec.Extensions, } {{- else }} return graphql.ErrorResponse(ctx, "queries are not supported") {{- end }} @@ -146,8 +158,9 @@ func (e *executableSchema) Mutation(ctx context.Context, op *ast.OperationDefini }) return &graphql.Response{ - Data: buf, - Errors: ec.Errors, + Data: buf, + Errors: ec.Errors, + Extensions: ec.Extensions, } {{- else }} return graphql.ErrorResponse(ctx, "mutations are not supported") @@ -181,8 +194,9 @@ func (e *executableSchema) Subscription(ctx context.Context, op *ast.OperationDe } return &graphql.Response{ - Data: buf, - Errors: ec.Errors, + Data: buf, + Errors: ec.Errors, + Extensions: ec.Extensions, } } {{- else }} @@ -250,14 +264,22 @@ func (ec *executionContext) FieldMiddleware(ctx context.Context, obj interface{} return res } -func (ec *executionContext) introspectSchema() *introspection.Schema { - return introspection.WrapSchema(parsedSchema) +func (ec *executionContext) introspectSchema() (*introspection.Schema, error) { + if ec.DisableIntrospection { + return nil, errors.New("introspection disabled") + } + return introspection.WrapSchema(parsedSchema), nil } -func (ec *executionContext) introspectType(name string) *introspection.Type { - return introspection.WrapTypeFromDef(parsedSchema, parsedSchema.Types[name]) +func (ec *executionContext) introspectType(name string) (*introspection.Type, error) { + if ec.DisableIntrospection { + return nil, errors.New("introspection disabled") + } + return introspection.WrapTypeFromDef(parsedSchema, parsedSchema.Types[name]), nil } var parsedSchema = gqlparser.MustLoadSchema( - &ast.Source{Name: {{.SchemaFilename|quote}}, Input: {{.SchemaRaw|rawQuote}}}, + {{- range $filename, $schema := .SchemaRaw }} + &ast.Source{Name: {{$filename|quote}}, Input: {{$schema|rawQuote}}}, + {{- end }} ) diff --git a/vendor/github.com/99designs/gqlgen/codegen/templates/import.go b/vendor/github.com/99designs/gqlgen/codegen/templates/import.go new file mode 100644 index 00000000..c9db2d96 --- /dev/null +++ b/vendor/github.com/99designs/gqlgen/codegen/templates/import.go @@ -0,0 +1,135 @@ +package templates + +import ( + "fmt" + "go/build" + "strconv" + + "github.com/99designs/gqlgen/internal/gopath" +) + +type Import struct { + Name string + Path string + Alias string +} + +type Imports struct { + imports []*Import + destDir string +} + +func (i *Import) String() string { + if i.Alias == i.Name { + return strconv.Quote(i.Path) + } + + return i.Alias + " " + strconv.Quote(i.Path) +} + +func (s *Imports) String() string { + res := "" + for i, imp := range s.imports { + if i != 0 { + res += "\n" + } + res += imp.String() + } + return res +} + +func (s *Imports) Reserve(path string, aliases ...string) string { + if path == "" { + panic("empty ambient import") + } + + // if we are referencing our own package we dont need an import + if gopath.MustDir2Import(s.destDir) == path { + return "" + } + + pkg, err := build.Default.Import(path, s.destDir, 0) + if err != nil { + panic(err) + } + + var alias string + if len(aliases) != 1 { + alias = pkg.Name + } else { + alias = aliases[0] + } + + if existing := s.findByPath(path); existing != nil { + panic("ambient import already exists") + } + + if alias := s.findByAlias(alias); alias != nil { + panic("ambient import collides on an alias") + } + + s.imports = append(s.imports, &Import{ + Name: pkg.Name, + Path: path, + Alias: alias, + }) + + return "" +} + +func (s *Imports) Lookup(path string) string { + if path == "" { + return "" + } + + // if we are referencing our own package we dont need an import + if gopath.MustDir2Import(s.destDir) == path { + return "" + } + + if existing := s.findByPath(path); existing != nil { + return existing.Alias + } + + pkg, err := build.Default.Import(path, s.destDir, 0) + if err != nil { + panic(err) + } + + imp := &Import{ + Name: pkg.Name, + Path: path, + } + s.imports = append(s.imports, imp) + + alias := imp.Name + i := 1 + for s.findByAlias(alias) != nil { + alias = imp.Name + strconv.Itoa(i) + i++ + if i > 10 { + panic(fmt.Errorf("too many collisions, last attempt was %s", alias)) + } + } + imp.Alias = alias + + return imp.Alias +} + +func (s Imports) findByPath(importPath string) *Import { + for _, imp := range s.imports { + if imp.Path == importPath { + return imp + } + } + return nil +} + +func (s Imports) findByAlias(alias string) *Import { + for _, imp := range s.imports { + if imp.Alias == alias { + return imp + } + } + return nil +} diff --git a/vendor/github.com/99designs/gqlgen/codegen/templates/models.gotpl b/vendor/github.com/99designs/gqlgen/codegen/templates/models.gotpl index 7427d71d..db63a996 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/templates/models.gotpl +++ b/vendor/github.com/99designs/gqlgen/codegen/templates/models.gotpl @@ -3,15 +3,29 @@ package {{ .PackageName }} import ( -{{- range $import := .Imports }} - {{- $import.Write }} -{{ end }} + %%%IMPORTS%%% + + {{ reserveImport "context" }} + {{ reserveImport "fmt" }} + {{ reserveImport "io" }} + {{ reserveImport "strconv" }} + {{ reserveImport "time" }} + {{ reserveImport "sync" }} + {{ reserveImport "errors" }} + {{ reserveImport "bytes" }} + + {{ reserveImport "github.com/vektah/gqlparser" }} + {{ reserveImport "github.com/vektah/gqlparser/ast" }} + {{ reserveImport "github.com/99designs/gqlgen/graphql" }} + {{ reserveImport "github.com/99designs/gqlgen/graphql/introspection" }} ) {{ range $model := .Models }} {{with .Description}} {{.|prefixLines "// "}} {{end}} {{- if .IsInterface }} - type {{.GoType}} interface {} + type {{.GoType}} interface { + Is{{.GoType}}() + } {{- else }} type {{.GoType}} struct { {{- range $field := .Fields }} @@ -25,6 +39,11 @@ import ( {{- end }} {{- end }} } + + {{- range $iface := .Implements }} + func ({{$model.GoType}}) Is{{$iface.GoType}}() {} + {{- end }} + {{- end }} {{- end}} diff --git a/vendor/github.com/99designs/gqlgen/codegen/templates/resolver.gotpl b/vendor/github.com/99designs/gqlgen/codegen/templates/resolver.gotpl index dd8acf24..53ba8c43 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/templates/resolver.gotpl +++ b/vendor/github.com/99designs/gqlgen/codegen/templates/resolver.gotpl @@ -1,11 +1,22 @@ -//go:generate gorunpkg github.com/99designs/gqlgen - package {{ .PackageName }} import ( -{{- range $import := .Imports }} - {{- $import.Write }} -{{ end }} + %%%IMPORTS%%% + + {{ reserveImport "context" }} + {{ reserveImport "fmt" }} + {{ reserveImport "io" }} + {{ reserveImport "strconv" }} + {{ reserveImport "time" }} + {{ reserveImport "sync" }} + {{ reserveImport "errors" }} + {{ reserveImport "bytes" }} + + {{ reserveImport "github.com/99designs/gqlgen/handler" }} + {{ reserveImport "github.com/vektah/gqlparser" }} + {{ reserveImport "github.com/vektah/gqlparser/ast" }} + {{ reserveImport "github.com/99designs/gqlgen/graphql" }} + {{ reserveImport "github.com/99designs/gqlgen/graphql/introspection" }} ) type {{.ResolverType}} struct {} diff --git a/vendor/github.com/99designs/gqlgen/codegen/templates/server.gotpl b/vendor/github.com/99designs/gqlgen/codegen/templates/server.gotpl index f23b30e1..38dc0d18 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/templates/server.gotpl +++ b/vendor/github.com/99designs/gqlgen/codegen/templates/server.gotpl @@ -1,9 +1,13 @@ package main import ( -{{- range $import := .Imports }} - {{- $import.Write }} -{{ end }} + %%%IMPORTS%%% + + {{ reserveImport "context" }} + {{ reserveImport "log" }} + {{ reserveImport "net/http" }} + {{ reserveImport "os" }} + {{ reserveImport "github.com/99designs/gqlgen/handler" }} ) const defaultPort = "8080" @@ -15,7 +19,7 @@ func main() { } http.Handle("/", handler.Playground("GraphQL playground", "/query")) - http.Handle("/query", handler.GraphQL({{.ExecPackageName}}.NewExecutableSchema({{.ExecPackageName}}.Config{Resolvers: &{{.ResolverPackageName}}.Resolver{}}))) + http.Handle("/query", handler.GraphQL({{ lookupImport .ExecPackageName }}.NewExecutableSchema({{ lookupImport .ExecPackageName}}.Config{Resolvers: &{{ lookupImport .ResolverPackageName}}.Resolver{}}))) log.Printf("connect to http://localhost:%s/ for GraphQL playground", port) log.Fatal(http.ListenAndServe(":" + port, nil)) diff --git a/vendor/github.com/99designs/gqlgen/codegen/templates/templates.go b/vendor/github.com/99designs/gqlgen/codegen/templates/templates.go index df909cb5..22e5d739 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/templates/templates.go +++ b/vendor/github.com/99designs/gqlgen/codegen/templates/templates.go @@ -14,21 +14,25 @@ import ( "text/template" "unicode" - "log" + "github.com/99designs/gqlgen/internal/imports" "github.com/pkg/errors" - "golang.org/x/tools/imports" ) +// this is done with a global because subtemplates currently get called in functions. Lets aim to remove this eventually. +var CurrentImports *Imports + func Run(name string, tpldata interface{}) (*bytes.Buffer, error) { t := template.New("").Funcs(template.FuncMap{ - "ucFirst": ucFirst, - "lcFirst": lcFirst, - "quote": strconv.Quote, - "rawQuote": rawQuote, - "toCamel": ToCamel, - "dump": dump, - "prefixLines": prefixLines, + "ucFirst": ucFirst, + "lcFirst": lcFirst, + "quote": strconv.Quote, + "rawQuote": rawQuote, + "toCamel": ToCamel, + "dump": dump, + "prefixLines": prefixLines, + "reserveImport": CurrentImports.Reserve, + "lookupImport": CurrentImports.Lookup, }) for filename, data := range data { @@ -149,27 +153,21 @@ func prefixLines(prefix, s string) string { } func RenderToFile(tpl string, filename string, data interface{}) error { + if CurrentImports != nil { + panic(fmt.Errorf("recursive or concurrent call to RenderToFile detected")) + } + CurrentImports = &Imports{destDir: filepath.Dir(filename)} + var buf *bytes.Buffer buf, err := Run(tpl, data) if err != nil { return errors.Wrap(err, filename+" generation failed") } - if err := write(filename, buf.Bytes()); err != nil { - return err - } - - log.Println(filename) + b := bytes.Replace(buf.Bytes(), []byte("%%%IMPORTS%%%"), []byte(CurrentImports.String()), -1) + CurrentImports = nil - return nil -} - -func gofmt(filename string, b []byte) ([]byte, error) { - out, err := imports.Process(filename, b, nil) - if err != nil { - return b, errors.Wrap(err, "unable to gofmt") - } - return out, nil + return write(filename, b) } func write(filename string, b []byte) error { @@ -178,9 +176,9 @@ func write(filename string, b []byte) error { return errors.Wrap(err, "failed to create directory") } - formatted, err := gofmt(filename, b) + formatted, err := imports.Prune(filename, b) if err != nil { - fmt.Fprintf(os.Stderr, "gofmt failed: %s\n", err.Error()) + fmt.Fprintf(os.Stderr, "gofmt failed on %s: %s\n", filepath.Base(filename), err.Error()) formatted = b } diff --git a/vendor/github.com/99designs/gqlgen/codegen/type.go b/vendor/github.com/99designs/gqlgen/codegen/type.go index 8c53fe55..04d9bb2f 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/type.go +++ b/vendor/github.com/99designs/gqlgen/codegen/type.go @@ -4,6 +4,8 @@ import ( "strconv" "strings" + "github.com/99designs/gqlgen/codegen/templates" + "github.com/vektah/gqlparser/ast" ) @@ -19,10 +21,9 @@ type NamedType struct { } type Ref struct { - GoType string // Name of the go type - Package string // the package the go type lives in - Import *Import // the resolved import with alias - IsUserDefined bool // does the type exist in the typemap + GoType string // Name of the go type + Package string // the package the go type lives in + IsUserDefined bool // does the type exist in the typemap } type Type struct { @@ -43,10 +44,13 @@ func (t Ref) FullName() string { } func (t Ref) PkgDot() string { - if t.Import == nil || t.Import.Alias() == "" { + name := templates.CurrentImports.Lookup(t.Package) + if name == "" { return "" + } - return t.Import.Alias() + "." + + return name + "." } func (t Type) Signature() string { diff --git a/vendor/github.com/99designs/gqlgen/codegen/type_build.go b/vendor/github.com/99designs/gqlgen/codegen/type_build.go index f0ec6785..586b0db2 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/type_build.go +++ b/vendor/github.com/99designs/gqlgen/codegen/type_build.go @@ -27,7 +27,7 @@ func (cfg *Config) buildNamedTypes() NamedTypes { return types } -func (cfg *Config) bindTypes(imports *Imports, namedTypes NamedTypes, destDir string, prog *loader.Program) { +func (cfg *Config) bindTypes(namedTypes NamedTypes, destDir string, prog *loader.Program) { for _, t := range namedTypes { if t.Package == "" { continue @@ -41,7 +41,6 @@ func (cfg *Config) bindTypes(imports *Imports, namedTypes NamedTypes, destDir st t.Marshaler = &cpy t.Package, t.GoType = pkgAndType(sig.Params().At(0).Type().String()) - t.Import = imports.add(t.Package) } } } diff --git a/vendor/github.com/99designs/gqlgen/codegen/util.go b/vendor/github.com/99designs/gqlgen/codegen/util.go index 1849f100..cc6246fd 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/util.go +++ b/vendor/github.com/99designs/gqlgen/codegen/util.go @@ -105,6 +105,12 @@ func findMethod(typ *types.Named, name string) *types.Func { return nil } +func equalFieldName(source, target string) bool { + source = strings.Replace(source, "_", "", -1) + target = strings.Replace(target, "_", "", -1) + return strings.EqualFold(source, target) +} + // findField attempts to match the name to a struct field with the following // priorites: // 1. If struct tag is passed then struct tag has highest priority @@ -120,7 +126,7 @@ func findField(typ *types.Struct, name, structTag string) (*types.Var, error) { if structTag != "" { tags := reflect.StructTag(typ.Tag(i)) if val, ok := tags.Lookup(structTag); ok { - if strings.EqualFold(val, name) { + if equalFieldName(val, name) { if foundField != nil && foundFieldWasTag { return nil, errors.Errorf("tag %s is ambigious; multiple fields have the same tag value of %s", structTag, val) } @@ -132,17 +138,16 @@ func findField(typ *types.Struct, name, structTag string) (*types.Var, error) { } if field.Anonymous() { - if named, ok := field.Type().(*types.Struct); ok { - f, err := findField(named, name, structTag) - if err != nil && !strings.HasPrefix(err.Error(), "no field named") { - return nil, err - } - if f != nil && foundField == nil { - foundField = f - } + + fieldType := field.Type() + + if ptr, ok := fieldType.(*types.Pointer); ok { + fieldType = ptr.Elem() } - if named, ok := field.Type().Underlying().(*types.Struct); ok { + // Type.Underlying() returns itself for all types except types.Named, where it returns a struct type. + // It should be safe to always call. + if named, ok := fieldType.Underlying().(*types.Struct); ok { f, err := findField(named, name, structTag) if err != nil && !strings.HasPrefix(err.Error(), "no field named") { return nil, err @@ -157,7 +162,7 @@ func findField(typ *types.Struct, name, structTag string) (*types.Var, error) { continue } - if strings.EqualFold(field.Name(), name) && foundField == nil { + if equalFieldName(field.Name(), name) && foundField == nil { // aqui! foundField = field } } @@ -198,7 +203,7 @@ func (b BindErrors) Error() string { return strings.Join(errs, "\n\n") } -func bindObject(t types.Type, object *Object, imports *Imports, structTag string) BindErrors { +func bindObject(t types.Type, object *Object, structTag string) BindErrors { var errs BindErrors for i := range object.Fields { field := &object.Fields[i] @@ -208,13 +213,13 @@ func bindObject(t types.Type, object *Object, imports *Imports, structTag string } // first try binding to a method - methodErr := bindMethod(imports, t, field) + methodErr := bindMethod(t, field) if methodErr == nil { continue } // otherwise try binding to a var - varErr := bindVar(imports, t, field, structTag) + varErr := bindVar(t, field, structTag) if varErr != nil { errs = append(errs, BindError{ @@ -229,7 +234,7 @@ func bindObject(t types.Type, object *Object, imports *Imports, structTag string return errs } -func bindMethod(imports *Imports, t types.Type, field *Field) error { +func bindMethod(t types.Type, field *Field) error { namedType, ok := t.(*types.Named) if !ok { return fmt.Errorf("not a named type") @@ -250,13 +255,25 @@ func bindMethod(imports *Imports, t types.Type, field *Field) error { } else if sig.Results().Len() != 2 { return fmt.Errorf("method has wrong number of args") } - newArgs, err := matchArgs(field, sig.Params()) + params := sig.Params() + // If the first argument is the context, remove it from the comparison and set + // the MethodHasContext flag so that the context will be passed to this model's method + if params.Len() > 0 && params.At(0).Type().String() == "context.Context" { + field.MethodHasContext = true + vars := make([]*types.Var, params.Len()-1) + for i := 1; i < params.Len(); i++ { + vars[i-1] = params.At(i) + } + params = types.NewTuple(vars...) + } + + newArgs, err := matchArgs(field, params) if err != nil { return err } result := sig.Results().At(0) - if err := validateTypeBinding(imports, field, result.Type()); err != nil { + if err := validateTypeBinding(field, result.Type()); err != nil { return errors.Wrap(err, "method has wrong return type") } @@ -268,7 +285,7 @@ func bindMethod(imports *Imports, t types.Type, field *Field) error { return nil } -func bindVar(imports *Imports, t types.Type, field *Field, structTag string) error { +func bindVar(t types.Type, field *Field, structTag string) error { underlying, ok := t.Underlying().(*types.Struct) if !ok { return fmt.Errorf("not a struct") @@ -283,7 +300,7 @@ func bindVar(imports *Imports, t types.Type, field *Field, structTag string) err return err } - if err := validateTypeBinding(imports, field, structField.Type()); err != nil { + if err := validateTypeBinding(field, structField.Type()); err != nil { return errors.Wrap(err, "field has wrong type") } @@ -316,22 +333,21 @@ nextArg: return newArgs, nil } -func validateTypeBinding(imports *Imports, field *Field, goType types.Type) error { +func validateTypeBinding(field *Field, goType types.Type) error { gqlType := normalizeVendor(field.Type.FullSignature()) goTypeStr := normalizeVendor(goType.String()) - if goTypeStr == gqlType || "*"+goTypeStr == gqlType || goTypeStr == "*"+gqlType { + if equalTypes(goTypeStr, gqlType) { field.Type.Modifiers = modifiersFromGoType(goType) return nil } // deal with type aliases underlyingStr := normalizeVendor(goType.Underlying().String()) - if underlyingStr == gqlType || "*"+underlyingStr == gqlType || underlyingStr == "*"+gqlType { + if equalTypes(underlyingStr, gqlType) { field.Type.Modifiers = modifiersFromGoType(goType) pkg, typ := pkgAndType(goType.String()) - imp := imports.findByPath(pkg) - field.AliasedType = &Ref{GoType: typ, Import: imp} + field.AliasedType = &Ref{GoType: typ, Package: pkg} return nil } @@ -365,3 +381,7 @@ func normalizeVendor(pkg string) string { parts := strings.Split(pkg, "/vendor/") return modifiers + parts[len(parts)-1] } + +func equalTypes(goType string, gqlType string) bool { + return goType == gqlType || "*"+goType == gqlType || goType == "*"+gqlType || strings.Replace(goType, "[]*", "[]", -1) == gqlType +} diff --git a/vendor/github.com/99designs/gqlgen/graphql/context.go b/vendor/github.com/99designs/gqlgen/graphql/context.go index 6baee83c..f83fa36f 100644 --- a/vendor/github.com/99designs/gqlgen/graphql/context.go +++ b/vendor/github.com/99designs/gqlgen/graphql/context.go @@ -17,6 +17,11 @@ type RequestContext struct { RawQuery string Variables map[string]interface{} Doc *ast.QueryDocument + + ComplexityLimit int + OperationComplexity int + DisableIntrospection bool + // ErrorPresenter will be used to generate the error // message from errors given to Error(). ErrorPresenter ErrorPresenterFunc @@ -24,9 +29,12 @@ type RequestContext struct { ResolverMiddleware FieldMiddleware DirectiveMiddleware FieldMiddleware RequestMiddleware RequestMiddleware + Tracer Tracer - errorsMu sync.Mutex - Errors gqlerror.List + errorsMu sync.Mutex + Errors gqlerror.List + extensionsMu sync.Mutex + Extensions map[string]interface{} } func DefaultResolverMiddleware(ctx context.Context, next Resolver) (res interface{}, err error) { @@ -51,6 +59,7 @@ func NewRequestContext(doc *ast.QueryDocument, query string, variables map[strin RequestMiddleware: DefaultRequestMiddleware, Recover: DefaultRecover, ErrorPresenter: DefaultErrorPresenter, + Tracer: &NopTracer{}, } } @@ -153,6 +162,21 @@ func (c *RequestContext) HasError(rctx *ResolverContext) bool { return false } +// GetErrors returns a list of errors that occurred in the current field +func (c *RequestContext) GetErrors(rctx *ResolverContext) gqlerror.List { + c.errorsMu.Lock() + defer c.errorsMu.Unlock() + path := rctx.Path() + + var errs gqlerror.List + for _, err := range c.Errors { + if equalPath(err.Path, path) { + errs = append(errs, err) + } + } + return errs +} + func equalPath(a []interface{}, b []interface{}) bool { if len(a) != len(b) { return false @@ -176,3 +200,20 @@ func AddError(ctx context.Context, err error) { func AddErrorf(ctx context.Context, format string, args ...interface{}) { GetRequestContext(ctx).Errorf(ctx, format, args...) } + +// RegisterExtension registers an extension, returns error if extension has already been registered +func (c *RequestContext) RegisterExtension(key string, value interface{}) error { + c.extensionsMu.Lock() + defer c.extensionsMu.Unlock() + + if c.Extensions == nil { + c.Extensions = make(map[string]interface{}) + } + + if _, ok := c.Extensions[key]; ok { + return fmt.Errorf("extension already registered for key %s", key) + } + + c.Extensions[key] = value + return nil +} diff --git a/vendor/github.com/99designs/gqlgen/graphql/float.go b/vendor/github.com/99designs/gqlgen/graphql/float.go index d204335c..fabbad04 100644 --- a/vendor/github.com/99designs/gqlgen/graphql/float.go +++ b/vendor/github.com/99designs/gqlgen/graphql/float.go @@ -9,7 +9,7 @@ import ( func MarshalFloat(f float64) Marshaler { return WriterFunc(func(w io.Writer) { - io.WriteString(w, fmt.Sprintf("%f", f)) + io.WriteString(w, fmt.Sprintf("%g", f)) }) } diff --git a/vendor/github.com/99designs/gqlgen/graphql/introspection/introspection.go b/vendor/github.com/99designs/gqlgen/graphql/introspection/introspection.go index baff882e..ca0b065f 100644 --- a/vendor/github.com/99designs/gqlgen/graphql/introspection/introspection.go +++ b/vendor/github.com/99designs/gqlgen/graphql/introspection/introspection.go @@ -12,19 +12,17 @@ type ( } EnumValue struct { - Name string - Description string - IsDeprecated bool - DeprecationReason string + Name string + Description string + deprecation *ast.Directive } Field struct { - Name string - Description string - Type *Type - Args []InputValue - IsDeprecated bool - DeprecationReason string + Name string + Description string + Type *Type + Args []InputValue + deprecation *ast.Directive } InputValue struct { @@ -39,20 +37,36 @@ func WrapSchema(schema *ast.Schema) *Schema { return &Schema{schema: schema} } -func isDeprecated(directives ast.DirectiveList) bool { - return directives.ForName("deprecated") != nil +func (f *EnumValue) IsDeprecated() bool { + return f.deprecation != nil +} + +func (f *EnumValue) DeprecationReason() *string { + if f.deprecation == nil { + return nil + } + + reason := f.deprecation.Arguments.ForName("reason") + if reason == nil { + return nil + } + + return &reason.Value.Raw +} + +func (f *Field) IsDeprecated() bool { + return f.deprecation != nil } -func deprecationReason(directives ast.DirectiveList) string { - deprecation := directives.ForName("deprecated") - if deprecation == nil { - return "" +func (f *Field) DeprecationReason() *string { + if f.deprecation == nil { + return nil } - reason := deprecation.Arguments.ForName("reason") + reason := f.deprecation.Arguments.ForName("reason") if reason == nil { - return "" + return nil } - return reason.Value.Raw + return &reason.Value.Raw } diff --git a/vendor/github.com/99designs/gqlgen/graphql/introspection/type.go b/vendor/github.com/99designs/gqlgen/graphql/introspection/type.go index dce144e0..b963aa0e 100644 --- a/vendor/github.com/99designs/gqlgen/graphql/introspection/type.go +++ b/vendor/github.com/99designs/gqlgen/graphql/introspection/type.go @@ -81,12 +81,11 @@ func (t *Type) Fields(includeDeprecated bool) []Field { } fields = append(fields, Field{ - Name: f.Name, - Description: f.Description, - Args: args, - Type: WrapTypeFromType(t.schema, f.Type), - IsDeprecated: isDeprecated(f.Directives), - DeprecationReason: deprecationReason(f.Directives), + Name: f.Name, + Description: f.Description, + Args: args, + Type: WrapTypeFromType(t.schema, f.Type), + deprecation: f.Directives.ForName("deprecated"), }) } return fields @@ -150,10 +149,9 @@ func (t *Type) EnumValues(includeDeprecated bool) []EnumValue { var res []EnumValue for _, val := range t.def.EnumValues { res = append(res, EnumValue{ - Name: val.Name, - Description: val.Description, - IsDeprecated: isDeprecated(val.Directives), - DeprecationReason: deprecationReason(val.Directives), + Name: val.Name, + Description: val.Description, + deprecation: val.Directives.ForName("deprecated"), }) } return res diff --git a/vendor/github.com/99designs/gqlgen/graphql/response.go b/vendor/github.com/99designs/gqlgen/graphql/response.go index 18664dca..6fe55d56 100644 --- a/vendor/github.com/99designs/gqlgen/graphql/response.go +++ b/vendor/github.com/99designs/gqlgen/graphql/response.go @@ -8,9 +8,13 @@ import ( "github.com/vektah/gqlparser/gqlerror" ) +// Errors are intentionally serialized first based on the advice in +// https://github.com/facebook/graphql/commit/7b40390d48680b15cb93e02d46ac5eb249689876#diff-757cea6edf0288677a9eea4cfc801d87R107 +// and https://github.com/facebook/graphql/pull/384 type Response struct { - Data json.RawMessage `json:"data"` - Errors gqlerror.List `json:"errors,omitempty"` + Errors gqlerror.List `json:"errors,omitempty"` + Data json.RawMessage `json:"data"` + Extensions map[string]interface{} `json:"extensions,omitempty"` } func ErrorResponse(ctx context.Context, messagef string, args ...interface{}) *Response { diff --git a/vendor/github.com/99designs/gqlgen/graphql/tracer.go b/vendor/github.com/99designs/gqlgen/graphql/tracer.go new file mode 100644 index 00000000..0597ce8c --- /dev/null +++ b/vendor/github.com/99designs/gqlgen/graphql/tracer.go @@ -0,0 +1,58 @@ +package graphql + +import ( + "context" +) + +var _ Tracer = (*NopTracer)(nil) + +type Tracer interface { + StartOperationParsing(ctx context.Context) context.Context + EndOperationParsing(ctx context.Context) + StartOperationValidation(ctx context.Context) context.Context + EndOperationValidation(ctx context.Context) + StartOperationExecution(ctx context.Context) context.Context + StartFieldExecution(ctx context.Context, field CollectedField) context.Context + StartFieldResolverExecution(ctx context.Context, rc *ResolverContext) context.Context + StartFieldChildExecution(ctx context.Context) context.Context + EndFieldExecution(ctx context.Context) + EndOperationExecution(ctx context.Context) +} + +type NopTracer struct{} + +func (NopTracer) StartOperationParsing(ctx context.Context) context.Context { + return ctx +} + +func (NopTracer) EndOperationParsing(ctx context.Context) { +} + +func (NopTracer) StartOperationValidation(ctx context.Context) context.Context { + return ctx +} + +func (NopTracer) EndOperationValidation(ctx context.Context) { +} + +func (NopTracer) StartOperationExecution(ctx context.Context) context.Context { + return ctx +} + +func (NopTracer) StartFieldExecution(ctx context.Context, field CollectedField) context.Context { + return ctx +} + +func (NopTracer) StartFieldResolverExecution(ctx context.Context, rc *ResolverContext) context.Context { + return ctx +} + +func (NopTracer) StartFieldChildExecution(ctx context.Context) context.Context { + return ctx +} + +func (NopTracer) EndFieldExecution(ctx context.Context) { +} + +func (NopTracer) EndOperationExecution(ctx context.Context) { +} diff --git a/vendor/github.com/99designs/gqlgen/graphql/version.go b/vendor/github.com/99designs/gqlgen/graphql/version.go index 38d3720b..8cf3c9ba 100644 --- a/vendor/github.com/99designs/gqlgen/graphql/version.go +++ b/vendor/github.com/99designs/gqlgen/graphql/version.go @@ -1,3 +1,3 @@ package graphql -const Version = "v0.5.1" +const Version = "dev" diff --git a/vendor/github.com/99designs/gqlgen/handler/context.go b/vendor/github.com/99designs/gqlgen/handler/context.go new file mode 100644 index 00000000..2992aa3d --- /dev/null +++ b/vendor/github.com/99designs/gqlgen/handler/context.go @@ -0,0 +1,57 @@ +package handler + +import "context" + +type key string + +const ( + initpayload key = "ws_initpayload_context" +) + +// InitPayload is a structure that is parsed from the websocket init message payload. TO use +// request headers for non-websocket, instead wrap the graphql handler in a middleware. +type InitPayload map[string]interface{} + +// GetString safely gets a string value from the payload. It returns an empty string if the +// payload is nil or the value isn't set. +func (payload InitPayload) GetString(key string) string { + if payload == nil { + return "" + } + + if value, ok := payload[key]; ok { + res, _ := value.(string) + return res + } + + return "" +} + +// Authorization is a short hand for getting the Authorization header from the +// payload. +func (payload InitPayload) Authorization() string { + if value := payload.GetString("Authorization"); value != "" { + return value + } + + if value := payload.GetString("authorization"); value != "" { + return value + } + + return "" +} + +func withInitPayload(ctx context.Context, payload InitPayload) context.Context { + return context.WithValue(ctx, initpayload, payload) +} + +// GetInitPayload gets a map of the data sent with the connection_init message, which is used by +// graphql clients as a stand-in for HTTP headers. +func GetInitPayload(ctx context.Context) InitPayload { + payload, ok := ctx.Value(initpayload).(InitPayload) + if !ok { + return nil + } + + return payload +} diff --git a/vendor/github.com/99designs/gqlgen/handler/graphql.go b/vendor/github.com/99designs/gqlgen/handler/graphql.go index 9d222826..eb8880de 100644 --- a/vendor/github.com/99designs/gqlgen/handler/graphql.go +++ b/vendor/github.com/99designs/gqlgen/handler/graphql.go @@ -12,9 +12,9 @@ import ( "github.com/99designs/gqlgen/graphql" "github.com/gorilla/websocket" "github.com/hashicorp/golang-lru" - "github.com/vektah/gqlparser" "github.com/vektah/gqlparser/ast" "github.com/vektah/gqlparser/gqlerror" + "github.com/vektah/gqlparser/parser" "github.com/vektah/gqlparser/validator" ) @@ -25,17 +25,21 @@ type params struct { } type Config struct { - cacheSize int - upgrader websocket.Upgrader - recover graphql.RecoverFunc - errorPresenter graphql.ErrorPresenterFunc - resolverHook graphql.FieldMiddleware - requestHook graphql.RequestMiddleware - complexityLimit int + cacheSize int + upgrader websocket.Upgrader + recover graphql.RecoverFunc + errorPresenter graphql.ErrorPresenterFunc + resolverHook graphql.FieldMiddleware + requestHook graphql.RequestMiddleware + tracer graphql.Tracer + complexityLimit int + disableIntrospection bool } -func (c *Config) newRequestContext(doc *ast.QueryDocument, query string, variables map[string]interface{}) *graphql.RequestContext { +func (c *Config) newRequestContext(es graphql.ExecutableSchema, doc *ast.QueryDocument, op *ast.OperationDefinition, query string, variables map[string]interface{}) *graphql.RequestContext { reqCtx := graphql.NewRequestContext(doc, query, variables) + reqCtx.DisableIntrospection = c.disableIntrospection + if hook := c.recover; hook != nil { reqCtx.Recover = hook } @@ -52,6 +56,18 @@ func (c *Config) newRequestContext(doc *ast.QueryDocument, query string, variabl reqCtx.RequestMiddleware = hook } + if hook := c.tracer; hook != nil { + reqCtx.Tracer = hook + } else { + reqCtx.Tracer = &graphql.NopTracer{} + } + + if c.complexityLimit > 0 { + reqCtx.ComplexityLimit = c.complexityLimit + operationComplexity := complexity.Calculate(es, op, variables) + reqCtx.OperationComplexity = operationComplexity + } + return reqCtx } @@ -78,6 +94,14 @@ func ErrorPresenter(f graphql.ErrorPresenterFunc) Option { } } +// IntrospectionEnabled = false will forbid clients from calling introspection endpoints. Can be useful in prod when you dont +// want clients introspecting the full schema. +func IntrospectionEnabled(enabled bool) Option { + return func(cfg *Config) { + cfg.disableIntrospection = !enabled + } +} + // ComplexityLimit sets a maximum query complexity that is allowed to be executed. // If a query is submitted that exceeds the limit, a 422 status code will be returned. func ComplexityLimit(limit int) Option { @@ -87,7 +111,7 @@ func ComplexityLimit(limit int) Option { } // ResolverMiddleware allows you to define a function that will be called around every resolver, -// useful for tracing and logging. +// useful for logging. func ResolverMiddleware(middleware graphql.FieldMiddleware) Option { return func(cfg *Config) { if cfg.resolverHook == nil { @@ -105,7 +129,7 @@ func ResolverMiddleware(middleware graphql.FieldMiddleware) Option { } // RequestMiddleware allows you to define a function that will be called around the root request, -// after the query has been parsed. This is useful for logging and tracing +// after the query has been parsed. This is useful for logging func RequestMiddleware(middleware graphql.RequestMiddleware) Option { return func(cfg *Config) { if cfg.requestHook == nil { @@ -122,6 +146,93 @@ func RequestMiddleware(middleware graphql.RequestMiddleware) Option { } } +// Tracer allows you to add a request/resolver tracer that will be called around the root request, +// calling resolver. This is useful for tracing +func Tracer(tracer graphql.Tracer) Option { + return func(cfg *Config) { + if cfg.tracer == nil { + cfg.tracer = tracer + + } else { + lastResolve := cfg.tracer + cfg.tracer = &tracerWrapper{ + tracer1: lastResolve, + tracer2: tracer, + } + } + + opt := RequestMiddleware(func(ctx context.Context, next func(ctx context.Context) []byte) []byte { + ctx = tracer.StartOperationExecution(ctx) + resp := next(ctx) + tracer.EndOperationExecution(ctx) + + return resp + }) + opt(cfg) + } +} + +type tracerWrapper struct { + tracer1 graphql.Tracer + tracer2 graphql.Tracer +} + +func (tw *tracerWrapper) StartOperationParsing(ctx context.Context) context.Context { + ctx = tw.tracer1.StartOperationParsing(ctx) + ctx = tw.tracer2.StartOperationParsing(ctx) + return ctx +} + +func (tw *tracerWrapper) EndOperationParsing(ctx context.Context) { + tw.tracer2.EndOperationParsing(ctx) + tw.tracer1.EndOperationParsing(ctx) +} + +func (tw *tracerWrapper) StartOperationValidation(ctx context.Context) context.Context { + ctx = tw.tracer1.StartOperationValidation(ctx) + ctx = tw.tracer2.StartOperationValidation(ctx) + return ctx +} + +func (tw *tracerWrapper) EndOperationValidation(ctx context.Context) { + tw.tracer2.EndOperationValidation(ctx) + tw.tracer1.EndOperationValidation(ctx) +} + +func (tw *tracerWrapper) StartOperationExecution(ctx context.Context) context.Context { + ctx = tw.tracer1.StartOperationExecution(ctx) + ctx = tw.tracer2.StartOperationExecution(ctx) + return ctx +} + +func (tw *tracerWrapper) StartFieldExecution(ctx context.Context, field graphql.CollectedField) context.Context { + ctx = tw.tracer1.StartFieldExecution(ctx, field) + ctx = tw.tracer2.StartFieldExecution(ctx, field) + return ctx +} + +func (tw *tracerWrapper) StartFieldResolverExecution(ctx context.Context, rc *graphql.ResolverContext) context.Context { + ctx = tw.tracer1.StartFieldResolverExecution(ctx, rc) + ctx = tw.tracer2.StartFieldResolverExecution(ctx, rc) + return ctx +} + +func (tw *tracerWrapper) StartFieldChildExecution(ctx context.Context) context.Context { + ctx = tw.tracer1.StartFieldChildExecution(ctx) + ctx = tw.tracer2.StartFieldChildExecution(ctx) + return ctx +} + +func (tw *tracerWrapper) EndFieldExecution(ctx context.Context) { + tw.tracer2.EndFieldExecution(ctx) + tw.tracer1.EndFieldExecution(ctx) +} + +func (tw *tracerWrapper) EndOperationExecution(ctx context.Context) { + tw.tracer2.EndOperationExecution(ctx) + tw.tracer1.EndOperationExecution(ctx) +} + // CacheSize sets the maximum size of the query cache. // If size is less than or equal to 0, the cache is disabled. func CacheSize(size int) Option { @@ -133,7 +244,7 @@ func CacheSize(size int) Option { const DefaultCacheSize = 1000 func GraphQL(exec graphql.ExecutableSchema, options ...Option) http.HandlerFunc { - cfg := Config{ + cfg := &Config{ cacheSize: DefaultCacheSize, upgrader: websocket.Upgrader{ ReadBufferSize: 1024, @@ -142,7 +253,7 @@ func GraphQL(exec graphql.ExecutableSchema, options ...Option) http.HandlerFunc } for _, option := range options { - option(&cfg) + option(cfg) } var cache *lru.Cache @@ -155,112 +266,187 @@ func GraphQL(exec graphql.ExecutableSchema, options ...Option) http.HandlerFunc panic("unexpected error creating cache: " + err.Error()) } } + if cfg.tracer == nil { + cfg.tracer = &graphql.NopTracer{} + } - return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - if r.Method == http.MethodOptions { - w.Header().Set("Allow", "OPTIONS, GET, POST") - w.WriteHeader(http.StatusOK) - return - } + handler := &graphqlHandler{ + cfg: cfg, + cache: cache, + exec: exec, + } - if strings.Contains(r.Header.Get("Upgrade"), "websocket") { - connectWs(exec, w, r, &cfg) - return - } + return handler.ServeHTTP +} - var reqParams params - switch r.Method { - case http.MethodGet: - reqParams.Query = r.URL.Query().Get("query") - reqParams.OperationName = r.URL.Query().Get("operationName") - - if variables := r.URL.Query().Get("variables"); variables != "" { - if err := jsonDecode(strings.NewReader(variables), &reqParams.Variables); err != nil { - sendErrorf(w, http.StatusBadRequest, "variables could not be decoded") - return - } - } - case http.MethodPost: - if err := jsonDecode(r.Body, &reqParams); err != nil { - sendErrorf(w, http.StatusBadRequest, "json body could not be decoded: "+err.Error()) +var _ http.Handler = (*graphqlHandler)(nil) + +type graphqlHandler struct { + cfg *Config + cache *lru.Cache + exec graphql.ExecutableSchema +} + +func (gh *graphqlHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { + if r.Method == http.MethodOptions { + w.Header().Set("Allow", "OPTIONS, GET, POST") + w.WriteHeader(http.StatusOK) + return + } + + if strings.Contains(r.Header.Get("Upgrade"), "websocket") { + connectWs(gh.exec, w, r, gh.cfg) + return + } + + var reqParams params + switch r.Method { + case http.MethodGet: + reqParams.Query = r.URL.Query().Get("query") + reqParams.OperationName = r.URL.Query().Get("operationName") + + if variables := r.URL.Query().Get("variables"); variables != "" { + if err := jsonDecode(strings.NewReader(variables), &reqParams.Variables); err != nil { + sendErrorf(w, http.StatusBadRequest, "variables could not be decoded") return } - default: - w.WriteHeader(http.StatusMethodNotAllowed) + } + case http.MethodPost: + if err := jsonDecode(r.Body, &reqParams); err != nil { + sendErrorf(w, http.StatusBadRequest, "json body could not be decoded: "+err.Error()) return } - w.Header().Set("Content-Type", "application/json") + default: + w.WriteHeader(http.StatusMethodNotAllowed) + return + } + w.Header().Set("Content-Type", "application/json") - var doc *ast.QueryDocument - if cache != nil { - val, ok := cache.Get(reqParams.Query) - if ok { - doc = val.(*ast.QueryDocument) - } - } - if doc == nil { - var qErr gqlerror.List - doc, qErr = gqlparser.LoadQuery(exec.Schema(), reqParams.Query) - if len(qErr) > 0 { - sendError(w, http.StatusUnprocessableEntity, qErr...) - return - } - if cache != nil { - cache.Add(reqParams.Query, doc) - } - } + ctx := r.Context() - op := doc.Operations.ForName(reqParams.OperationName) - if op == nil { - sendErrorf(w, http.StatusUnprocessableEntity, "operation %s not found", reqParams.OperationName) - return + var doc *ast.QueryDocument + var cacheHit bool + if gh.cache != nil { + val, ok := gh.cache.Get(reqParams.Query) + if ok { + doc = val.(*ast.QueryDocument) + cacheHit = true } + } - if op.Operation != ast.Query && r.Method == http.MethodGet { - sendErrorf(w, http.StatusUnprocessableEntity, "GET requests only allow query operations") - return + ctx, doc, gqlErr := gh.parseOperation(ctx, &parseOperationArgs{ + Query: reqParams.Query, + CachedDoc: doc, + }) + if gqlErr != nil { + sendError(w, http.StatusUnprocessableEntity, gqlErr) + return + } + + ctx, op, vars, listErr := gh.validateOperation(ctx, &validateOperationArgs{ + Doc: doc, + OperationName: reqParams.OperationName, + CacheHit: cacheHit, + R: r, + Variables: reqParams.Variables, + }) + if len(listErr) != 0 { + sendError(w, http.StatusUnprocessableEntity, listErr...) + return + } + + if gh.cache != nil && !cacheHit { + gh.cache.Add(reqParams.Query, doc) + } + + reqCtx := gh.cfg.newRequestContext(gh.exec, doc, op, reqParams.Query, vars) + ctx = graphql.WithRequestContext(ctx, reqCtx) + + defer func() { + if err := recover(); err != nil { + userErr := reqCtx.Recover(ctx, err) + sendErrorf(w, http.StatusUnprocessableEntity, userErr.Error()) } + }() - vars, err := validator.VariableValues(exec.Schema(), op, reqParams.Variables) + if reqCtx.ComplexityLimit > 0 && reqCtx.OperationComplexity > reqCtx.ComplexityLimit { + sendErrorf(w, http.StatusUnprocessableEntity, "operation has complexity %d, which exceeds the limit of %d", reqCtx.OperationComplexity, reqCtx.ComplexityLimit) + return + } + + switch op.Operation { + case ast.Query: + b, err := json.Marshal(gh.exec.Query(ctx, op)) if err != nil { - sendError(w, http.StatusUnprocessableEntity, err) - return + panic(err) } - reqCtx := cfg.newRequestContext(doc, reqParams.Query, vars) - ctx := graphql.WithRequestContext(r.Context(), reqCtx) + w.Write(b) + case ast.Mutation: + b, err := json.Marshal(gh.exec.Mutation(ctx, op)) + if err != nil { + panic(err) + } + w.Write(b) + default: + sendErrorf(w, http.StatusBadRequest, "unsupported operation type") + } +} - defer func() { - if err := recover(); err != nil { - userErr := reqCtx.Recover(ctx, err) - sendErrorf(w, http.StatusUnprocessableEntity, userErr.Error()) - } - }() +type parseOperationArgs struct { + Query string + CachedDoc *ast.QueryDocument +} - if cfg.complexityLimit > 0 { - queryComplexity := complexity.Calculate(exec, op, vars) - if queryComplexity > cfg.complexityLimit { - sendErrorf(w, http.StatusUnprocessableEntity, "query has complexity %d, which exceeds the limit of %d", queryComplexity, cfg.complexityLimit) - return - } - } +func (gh *graphqlHandler) parseOperation(ctx context.Context, args *parseOperationArgs) (context.Context, *ast.QueryDocument, *gqlerror.Error) { + ctx = gh.cfg.tracer.StartOperationParsing(ctx) + defer func() { gh.cfg.tracer.EndOperationParsing(ctx) }() - switch op.Operation { - case ast.Query: - b, err := json.Marshal(exec.Query(ctx, op)) - if err != nil { - panic(err) - } - w.Write(b) - case ast.Mutation: - b, err := json.Marshal(exec.Mutation(ctx, op)) - if err != nil { - panic(err) - } - w.Write(b) - default: - sendErrorf(w, http.StatusBadRequest, "unsupported operation type") + if args.CachedDoc != nil { + return ctx, args.CachedDoc, nil + } + + doc, gqlErr := parser.ParseQuery(&ast.Source{Input: args.Query}) + if gqlErr != nil { + return ctx, nil, gqlErr + } + + return ctx, doc, nil +} + +type validateOperationArgs struct { + Doc *ast.QueryDocument + OperationName string + CacheHit bool + R *http.Request + Variables map[string]interface{} +} + +func (gh *graphqlHandler) validateOperation(ctx context.Context, args *validateOperationArgs) (context.Context, *ast.OperationDefinition, map[string]interface{}, gqlerror.List) { + ctx = gh.cfg.tracer.StartOperationValidation(ctx) + defer func() { gh.cfg.tracer.EndOperationValidation(ctx) }() + + if !args.CacheHit { + listErr := validator.Validate(gh.exec.Schema(), args.Doc) + if len(listErr) != 0 { + return ctx, nil, nil, listErr } - }) + } + + op := args.Doc.Operations.ForName(args.OperationName) + if op == nil { + return ctx, nil, nil, gqlerror.List{gqlerror.Errorf("operation %s not found", args.OperationName)} + } + + if op.Operation != ast.Query && args.R.Method == http.MethodGet { + return ctx, nil, nil, gqlerror.List{gqlerror.Errorf("GET requests only allow query operations")} + } + + vars, err := validator.VariableValues(gh.exec.Schema(), op, args.Variables) + if err != nil { + return ctx, nil, nil, gqlerror.List{err} + } + + return ctx, op, vars, nil } func jsonDecode(r io.Reader, val interface{}) error { diff --git a/vendor/github.com/99designs/gqlgen/handler/playground.go b/vendor/github.com/99designs/gqlgen/handler/playground.go index d0ada8ca..f1687def 100644 --- a/vendor/github.com/99designs/gqlgen/handler/playground.go +++ b/vendor/github.com/99designs/gqlgen/handler/playground.go @@ -45,7 +45,7 @@ func Playground(title string, endpoint string) http.HandlerFunc { err := page.Execute(w, map[string]string{ "title": title, "endpoint": endpoint, - "version": "1.6.2", + "version": "1.7.8", }) if err != nil { panic(err) diff --git a/vendor/github.com/99designs/gqlgen/handler/websocket.go b/vendor/github.com/99designs/gqlgen/handler/websocket.go index 2be1e87f..dae262bd 100644 --- a/vendor/github.com/99designs/gqlgen/handler/websocket.go +++ b/vendor/github.com/99designs/gqlgen/handler/websocket.go @@ -43,6 +43,8 @@ type wsConnection struct { active map[string]context.CancelFunc mu sync.Mutex cfg *Config + + initPayload InitPayload } func connectWs(exec graphql.ExecutableSchema, w http.ResponseWriter, r *http.Request, cfg *Config) { @@ -79,6 +81,14 @@ func (c *wsConnection) init() bool { switch message.Type { case connectionInitMsg: + if len(message.Payload) > 0 { + c.initPayload = make(InitPayload) + err := json.Unmarshal(message.Payload, &c.initPayload) + if err != nil { + return false + } + } + c.write(&operationMessage{Type: connectionAckMsg}) case connectionTerminateMsg: c.close(websocket.CloseNormalClosure, "terminated") @@ -155,9 +165,13 @@ func (c *wsConnection) subscribe(message *operationMessage) bool { c.sendError(message.ID, err) return true } - reqCtx := c.cfg.newRequestContext(doc, reqParams.Query, vars) + reqCtx := c.cfg.newRequestContext(c.exec, doc, op, reqParams.Query, vars) ctx := graphql.WithRequestContext(c.ctx, reqCtx) + if c.initPayload != nil { + ctx = withInitPayload(ctx, c.initPayload) + } + if op.Operation != ast.Subscription { var result *graphql.Response if op.Operation == ast.Query { diff --git a/vendor/github.com/99designs/gqlgen/internal/imports/prune.go b/vendor/github.com/99designs/gqlgen/internal/imports/prune.go new file mode 100644 index 00000000..d2469e83 --- /dev/null +++ b/vendor/github.com/99designs/gqlgen/internal/imports/prune.go @@ -0,0 +1,119 @@ +// Wrapper around x/tools/imports that only removes imports, never adds new ones. + +package imports + +import ( + "bytes" + "go/ast" + "go/build" + "go/parser" + "go/printer" + "go/token" + "path/filepath" + "strings" + + "golang.org/x/tools/imports" + + "golang.org/x/tools/go/ast/astutil" +) + +type visitFn func(node ast.Node) + +func (fn visitFn) Visit(node ast.Node) ast.Visitor { + fn(node) + return fn +} + +// Prune removes any unused imports +func Prune(filename string, src []byte) ([]byte, error) { + fset := token.NewFileSet() + + file, err := parser.ParseFile(fset, filename, src, parser.ParseComments|parser.AllErrors) + if err != nil { + return nil, err + } + + unused, err := getUnusedImports(file, filename) + if err != nil { + return nil, err + } + for ipath, name := range unused { + astutil.DeleteNamedImport(fset, file, name, ipath) + } + printConfig := &printer.Config{Mode: printer.TabIndent, Tabwidth: 8} + + var buf bytes.Buffer + if err := printConfig.Fprint(&buf, fset, file); err != nil { + return nil, err + } + + return imports.Process(filename, buf.Bytes(), &imports.Options{FormatOnly: true, Comments: true, TabIndent: true, TabWidth: 8}) +} + +func getUnusedImports(file ast.Node, filename string) (map[string]string, error) { + imported := map[string]*ast.ImportSpec{} + used := map[string]bool{} + + abs, err := filepath.Abs(filename) + if err != nil { + return nil, err + } + srcDir := filepath.Dir(abs) + + ast.Walk(visitFn(func(node ast.Node) { + if node == nil { + return + } + switch v := node.(type) { + case *ast.ImportSpec: + if v.Name != nil { + imported[v.Name.Name] = v + break + } + ipath := strings.Trim(v.Path.Value, `"`) + if ipath == "C" { + break + } + + local := importPathToName(ipath, srcDir) + + imported[local] = v + case *ast.SelectorExpr: + xident, ok := v.X.(*ast.Ident) + if !ok { + break + } + if xident.Obj != nil { + // if the parser can resolve it, it's not a package ref + break + } + used[xident.Name] = true + } + }), file) + + for pkg := range used { + delete(imported, pkg) + } + + unusedImport := map[string]string{} + for pkg, is := range imported { + if !used[pkg] && pkg != "_" && pkg != "." { + name := "" + if is.Name != nil { + name = is.Name.Name + } + unusedImport[strings.Trim(is.Path.Value, `"`)] = name + } + } + + return unusedImport, nil +} + +func importPathToName(importPath, srcDir string) (packageName string) { + pkg, err := build.Default.Import(importPath, srcDir, 0) + if err != nil { + return "" + } + + return pkg.Name +} diff --git a/vendor/github.com/theckman/goconstraint/LICENSE b/vendor/github.com/theckman/goconstraint/LICENSE new file mode 100644 index 00000000..9403d859 --- /dev/null +++ b/vendor/github.com/theckman/goconstraint/LICENSE @@ -0,0 +1,9 @@ +This package is released under two software licenses (MIT | Public Domain): + +* The `scripts/` directory is released under the MIT License. This license can + be found in the `LICENSES` directory as mit.txt [1]. +* All other files are released to the Public Domain using The Unlicense . This + license can be found in the `LICENSES` directory as unlicense.txt [2]. + +[1] https://github.com/theckman/goconstraint/blob/master/LICENSES/mit.txt +[2] https://github.com/theckman/goconstraint/blob/master/LICENSES/unlicense.txt diff --git a/vendor/github.com/theckman/goconstraint/LICENSES/unlicense.txt b/vendor/github.com/theckman/goconstraint/LICENSES/unlicense.txt new file mode 100644 index 00000000..fdddb29a --- /dev/null +++ b/vendor/github.com/theckman/goconstraint/LICENSES/unlicense.txt @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to <https://unlicense.org> diff --git a/vendor/github.com/theckman/goconstraint/go1.8/gte/constraint.go b/vendor/github.com/theckman/goconstraint/go1.8/gte/constraint.go new file mode 100644 index 00000000..24c248d6 --- /dev/null +++ b/vendor/github.com/theckman/goconstraint/go1.8/gte/constraint.go @@ -0,0 +1,8 @@ +// The contents of this file has been released in to the Public Domain. + +// Package gtego18 should only be used as a blank import. If imported, it +// will only compile if the Go runtime version is >= 1.8. +package gtego18 + +// This will fail to compile if the Go runtime version isn't >= 1.8. +var _ = __SOFTWARE_REQUIRES_GO_VERSION_1_8__ diff --git a/vendor/github.com/theckman/goconstraint/go1.8/gte/go18.go b/vendor/github.com/theckman/goconstraint/go1.8/gte/go18.go new file mode 100644 index 00000000..777fea4d --- /dev/null +++ b/vendor/github.com/theckman/goconstraint/go1.8/gte/go18.go @@ -0,0 +1,7 @@ +// The contents of this file has been released in to the Public Domain. + +// +build go1.8 + +package gtego18 + +const __SOFTWARE_REQUIRES_GO_VERSION_1_8__ = uint8(0) diff --git a/vendor/github.com/urfave/cli/.flake8 b/vendor/github.com/urfave/cli/.flake8 new file mode 100644 index 00000000..6deafc26 --- /dev/null +++ b/vendor/github.com/urfave/cli/.flake8 @@ -0,0 +1,2 @@ +[flake8] +max-line-length = 120 diff --git a/vendor/github.com/urfave/cli/.gitignore b/vendor/github.com/urfave/cli/.gitignore new file mode 100644 index 00000000..faf70c4c --- /dev/null +++ b/vendor/github.com/urfave/cli/.gitignore @@ -0,0 +1,2 @@ +*.coverprofile +node_modules/ diff --git a/vendor/github.com/urfave/cli/.travis.yml b/vendor/github.com/urfave/cli/.travis.yml new file mode 100644 index 00000000..cf8d0980 --- /dev/null +++ b/vendor/github.com/urfave/cli/.travis.yml @@ -0,0 +1,27 @@ +language: go +sudo: false +dist: trusty +osx_image: xcode8.3 +go: 1.8.x + +os: +- linux +- osx + +cache: + directories: + - node_modules + +before_script: +- go get github.com/urfave/gfmrun/... || true +- go get golang.org/x/tools/cmd/goimports +- if [ ! -f node_modules/.bin/markdown-toc ] ; then + npm install markdown-toc ; + fi + +script: +- ./runtests gen +- ./runtests vet +- ./runtests test +- ./runtests gfmrun +- ./runtests toc diff --git a/vendor/github.com/urfave/cli/CHANGELOG.md b/vendor/github.com/urfave/cli/CHANGELOG.md new file mode 100644 index 00000000..401eae5a --- /dev/null +++ b/vendor/github.com/urfave/cli/CHANGELOG.md @@ -0,0 +1,435 @@ +# Change Log + +**ATTN**: This project uses [semantic versioning](http://semver.org/). + +## [Unreleased] + +## 1.20.0 - 2017-08-10 + +### Fixed + +* `HandleExitCoder` is now correctly iterates over all errors in + a `MultiError`. The exit code is the exit code of the last error or `1` if + there are no `ExitCoder`s in the `MultiError`. +* Fixed YAML file loading on Windows (previously would fail validate the file path) +* Subcommand `Usage`, `Description`, `ArgsUsage`, `OnUsageError` correctly + propogated +* `ErrWriter` is now passed downwards through command structure to avoid the + need to redefine it +* Pass `Command` context into `OnUsageError` rather than parent context so that + all fields are avaiable +* Errors occuring in `Before` funcs are no longer double printed +* Use `UsageText` in the help templates for commands and subcommands if + defined; otherwise build the usage as before (was previously ignoring this + field) +* `IsSet` and `GlobalIsSet` now correctly return whether a flag is set if + a program calls `Set` or `GlobalSet` directly after flag parsing (would + previously only return `true` if the flag was set during parsing) + +### Changed + +* No longer exit the program on command/subcommand error if the error raised is + not an `OsExiter`. This exiting behavior was introduced in 1.19.0, but was + determined to be a regression in functionality. See [the + PR](https://github.com/urfave/cli/pull/595) for discussion. + +### Added + +* `CommandsByName` type was added to make it easy to sort `Command`s by name, + alphabetically +* `altsrc` now handles loading of string and int arrays from TOML +* Support for definition of custom help templates for `App` via + `CustomAppHelpTemplate` +* Support for arbitrary key/value fields on `App` to be used with + `CustomAppHelpTemplate` via `ExtraInfo` +* `HelpFlag`, `VersionFlag`, and `BashCompletionFlag` changed to explictly be + `cli.Flag`s allowing for the use of custom flags satisfying the `cli.Flag` + interface to be used. + + +## [1.19.1] - 2016-11-21 + +### Fixed + +- Fixes regression introduced in 1.19.0 where using an `ActionFunc` as + the `Action` for a command would cause it to error rather than calling the + function. Should not have a affected declarative cases using `func(c + *cli.Context) err)`. +- Shell completion now handles the case where the user specifies + `--generate-bash-completion` immediately after a flag that takes an argument. + Previously it call the application with `--generate-bash-completion` as the + flag value. + +## [1.19.0] - 2016-11-19 +### Added +- `FlagsByName` was added to make it easy to sort flags (e.g. `sort.Sort(cli.FlagsByName(app.Flags))`) +- A `Description` field was added to `App` for a more detailed description of + the application (similar to the existing `Description` field on `Command`) +- Flag type code generation via `go generate` +- Write to stderr and exit 1 if action returns non-nil error +- Added support for TOML to the `altsrc` loader +- `SkipArgReorder` was added to allow users to skip the argument reordering. + This is useful if you want to consider all "flags" after an argument as + arguments rather than flags (the default behavior of the stdlib `flag` + library). This is backported functionality from the [removal of the flag + reordering](https://github.com/urfave/cli/pull/398) in the unreleased version + 2 +- For formatted errors (those implementing `ErrorFormatter`), the errors will + be formatted during output. Compatible with `pkg/errors`. + +### Changed +- Raise minimum tested/supported Go version to 1.2+ + +### Fixed +- Consider empty environment variables as set (previously environment variables + with the equivalent of `""` would be skipped rather than their value used). +- Return an error if the value in a given environment variable cannot be parsed + as the flag type. Previously these errors were silently swallowed. +- Print full error when an invalid flag is specified (which includes the invalid flag) +- `App.Writer` defaults to `stdout` when `nil` +- If no action is specified on a command or app, the help is now printed instead of `panic`ing +- `App.Metadata` is initialized automatically now (previously was `nil` unless initialized) +- Correctly show help message if `-h` is provided to a subcommand +- `context.(Global)IsSet` now respects environment variables. Previously it + would return `false` if a flag was specified in the environment rather than + as an argument +- Removed deprecation warnings to STDERR to avoid them leaking to the end-user +- `altsrc`s import paths were updated to use `gopkg.in/urfave/cli.v1`. This + fixes issues that occurred when `gopkg.in/urfave/cli.v1` was imported as well + as `altsrc` where Go would complain that the types didn't match + +## [1.18.1] - 2016-08-28 +### Fixed +- Removed deprecation warnings to STDERR to avoid them leaking to the end-user (backported) + +## [1.18.0] - 2016-06-27 +### Added +- `./runtests` test runner with coverage tracking by default +- testing on OS X +- testing on Windows +- `UintFlag`, `Uint64Flag`, and `Int64Flag` types and supporting code + +### Changed +- Use spaces for alignment in help/usage output instead of tabs, making the + output alignment consistent regardless of tab width + +### Fixed +- Printing of command aliases in help text +- Printing of visible flags for both struct and struct pointer flags +- Display the `help` subcommand when using `CommandCategories` +- No longer swallows `panic`s that occur within the `Action`s themselves when + detecting the signature of the `Action` field + +## [1.17.1] - 2016-08-28 +### Fixed +- Removed deprecation warnings to STDERR to avoid them leaking to the end-user + +## [1.17.0] - 2016-05-09 +### Added +- Pluggable flag-level help text rendering via `cli.DefaultFlagStringFunc` +- `context.GlobalBoolT` was added as an analogue to `context.GlobalBool` +- Support for hiding commands by setting `Hidden: true` -- this will hide the + commands in help output + +### Changed +- `Float64Flag`, `IntFlag`, and `DurationFlag` default values are no longer + quoted in help text output. +- All flag types now include `(default: {value})` strings following usage when a + default value can be (reasonably) detected. +- `IntSliceFlag` and `StringSliceFlag` usage strings are now more consistent + with non-slice flag types +- Apps now exit with a code of 3 if an unknown subcommand is specified + (previously they printed "No help topic for...", but still exited 0. This + makes it easier to script around apps built using `cli` since they can trust + that a 0 exit code indicated a successful execution. +- cleanups based on [Go Report Card + feedback](https://goreportcard.com/report/github.com/urfave/cli) + +## [1.16.1] - 2016-08-28 +### Fixed +- Removed deprecation warnings to STDERR to avoid them leaking to the end-user + +## [1.16.0] - 2016-05-02 +### Added +- `Hidden` field on all flag struct types to omit from generated help text + +### Changed +- `BashCompletionFlag` (`--enable-bash-completion`) is now omitted from +generated help text via the `Hidden` field + +### Fixed +- handling of error values in `HandleAction` and `HandleExitCoder` + +## [1.15.0] - 2016-04-30 +### Added +- This file! +- Support for placeholders in flag usage strings +- `App.Metadata` map for arbitrary data/state management +- `Set` and `GlobalSet` methods on `*cli.Context` for altering values after +parsing. +- Support for nested lookup of dot-delimited keys in structures loaded from +YAML. + +### Changed +- The `App.Action` and `Command.Action` now prefer a return signature of +`func(*cli.Context) error`, as defined by `cli.ActionFunc`. If a non-nil +`error` is returned, there may be two outcomes: + - If the error fulfills `cli.ExitCoder`, then `os.Exit` will be called + automatically + - Else the error is bubbled up and returned from `App.Run` +- Specifying an `Action` with the legacy return signature of +`func(*cli.Context)` will produce a deprecation message to stderr +- Specifying an `Action` that is not a `func` type will produce a non-zero exit +from `App.Run` +- Specifying an `Action` func that has an invalid (input) signature will +produce a non-zero exit from `App.Run` + +### Deprecated +- <a name="deprecated-cli-app-runandexitonerror"></a> +`cli.App.RunAndExitOnError`, which should now be done by returning an error +that fulfills `cli.ExitCoder` to `cli.App.Run`. +- <a name="deprecated-cli-app-action-signature"></a> the legacy signature for +`cli.App.Action` of `func(*cli.Context)`, which should now have a return +signature of `func(*cli.Context) error`, as defined by `cli.ActionFunc`. + +### Fixed +- Added missing `*cli.Context.GlobalFloat64` method + +## [1.14.0] - 2016-04-03 (backfilled 2016-04-25) +### Added +- Codebeat badge +- Support for categorization via `CategorizedHelp` and `Categories` on app. + +### Changed +- Use `filepath.Base` instead of `path.Base` in `Name` and `HelpName`. + +### Fixed +- Ensure version is not shown in help text when `HideVersion` set. + +## [1.13.0] - 2016-03-06 (backfilled 2016-04-25) +### Added +- YAML file input support. +- `NArg` method on context. + +## [1.12.0] - 2016-02-17 (backfilled 2016-04-25) +### Added +- Custom usage error handling. +- Custom text support in `USAGE` section of help output. +- Improved help messages for empty strings. +- AppVeyor CI configuration. + +### Changed +- Removed `panic` from default help printer func. +- De-duping and optimizations. + +### Fixed +- Correctly handle `Before`/`After` at command level when no subcommands. +- Case of literal `-` argument causing flag reordering. +- Environment variable hints on Windows. +- Docs updates. + +## [1.11.1] - 2015-12-21 (backfilled 2016-04-25) +### Changed +- Use `path.Base` in `Name` and `HelpName` +- Export `GetName` on flag types. + +### Fixed +- Flag parsing when skipping is enabled. +- Test output cleanup. +- Move completion check to account for empty input case. + +## [1.11.0] - 2015-11-15 (backfilled 2016-04-25) +### Added +- Destination scan support for flags. +- Testing against `tip` in Travis CI config. + +### Changed +- Go version in Travis CI config. + +### Fixed +- Removed redundant tests. +- Use correct example naming in tests. + +## [1.10.2] - 2015-10-29 (backfilled 2016-04-25) +### Fixed +- Remove unused var in bash completion. + +## [1.10.1] - 2015-10-21 (backfilled 2016-04-25) +### Added +- Coverage and reference logos in README. + +### Fixed +- Use specified values in help and version parsing. +- Only display app version and help message once. + +## [1.10.0] - 2015-10-06 (backfilled 2016-04-25) +### Added +- More tests for existing functionality. +- `ArgsUsage` at app and command level for help text flexibility. + +### Fixed +- Honor `HideHelp` and `HideVersion` in `App.Run`. +- Remove juvenile word from README. + +## [1.9.0] - 2015-09-08 (backfilled 2016-04-25) +### Added +- `FullName` on command with accompanying help output update. +- Set default `$PROG` in bash completion. + +### Changed +- Docs formatting. + +### Fixed +- Removed self-referential imports in tests. + +## [1.8.0] - 2015-06-30 (backfilled 2016-04-25) +### Added +- Support for `Copyright` at app level. +- `Parent` func at context level to walk up context lineage. + +### Fixed +- Global flag processing at top level. + +## [1.7.1] - 2015-06-11 (backfilled 2016-04-25) +### Added +- Aggregate errors from `Before`/`After` funcs. +- Doc comments on flag structs. +- Include non-global flags when checking version and help. +- Travis CI config updates. + +### Fixed +- Ensure slice type flags have non-nil values. +- Collect global flags from the full command hierarchy. +- Docs prose. + +## [1.7.0] - 2015-05-03 (backfilled 2016-04-25) +### Changed +- `HelpPrinter` signature includes output writer. + +### Fixed +- Specify go 1.1+ in docs. +- Set `Writer` when running command as app. + +## [1.6.0] - 2015-03-23 (backfilled 2016-04-25) +### Added +- Multiple author support. +- `NumFlags` at context level. +- `Aliases` at command level. + +### Deprecated +- `ShortName` at command level. + +### Fixed +- Subcommand help output. +- Backward compatible support for deprecated `Author` and `Email` fields. +- Docs regarding `Names`/`Aliases`. + +## [1.5.0] - 2015-02-20 (backfilled 2016-04-25) +### Added +- `After` hook func support at app and command level. + +### Fixed +- Use parsed context when running command as subcommand. +- Docs prose. + +## [1.4.1] - 2015-01-09 (backfilled 2016-04-25) +### Added +- Support for hiding `-h / --help` flags, but not `help` subcommand. +- Stop flag parsing after `--`. + +### Fixed +- Help text for generic flags to specify single value. +- Use double quotes in output for defaults. +- Use `ParseInt` instead of `ParseUint` for int environment var values. +- Use `0` as base when parsing int environment var values. + +## [1.4.0] - 2014-12-12 (backfilled 2016-04-25) +### Added +- Support for environment variable lookup "cascade". +- Support for `Stdout` on app for output redirection. + +### Fixed +- Print command help instead of app help in `ShowCommandHelp`. + +## [1.3.1] - 2014-11-13 (backfilled 2016-04-25) +### Added +- Docs and example code updates. + +### Changed +- Default `-v / --version` flag made optional. + +## [1.3.0] - 2014-08-10 (backfilled 2016-04-25) +### Added +- `FlagNames` at context level. +- Exposed `VersionPrinter` var for more control over version output. +- Zsh completion hook. +- `AUTHOR` section in default app help template. +- Contribution guidelines. +- `DurationFlag` type. + +## [1.2.0] - 2014-08-02 +### Added +- Support for environment variable defaults on flags plus tests. + +## [1.1.0] - 2014-07-15 +### Added +- Bash completion. +- Optional hiding of built-in help command. +- Optional skipping of flag parsing at command level. +- `Author`, `Email`, and `Compiled` metadata on app. +- `Before` hook func support at app and command level. +- `CommandNotFound` func support at app level. +- Command reference available on context. +- `GenericFlag` type. +- `Float64Flag` type. +- `BoolTFlag` type. +- `IsSet` flag helper on context. +- More flag lookup funcs at context level. +- More tests & docs. + +### Changed +- Help template updates to account for presence/absence of flags. +- Separated subcommand help template. +- Exposed `HelpPrinter` var for more control over help output. + +## [1.0.0] - 2013-11-01 +### Added +- `help` flag in default app flag set and each command flag set. +- Custom handling of argument parsing errors. +- Command lookup by name at app level. +- `StringSliceFlag` type and supporting `StringSlice` type. +- `IntSliceFlag` type and supporting `IntSlice` type. +- Slice type flag lookups by name at context level. +- Export of app and command help functions. +- More tests & docs. + +## 0.1.0 - 2013-07-22 +### Added +- Initial implementation. + +[Unreleased]: https://github.com/urfave/cli/compare/v1.18.0...HEAD +[1.18.0]: https://github.com/urfave/cli/compare/v1.17.0...v1.18.0 +[1.17.0]: https://github.com/urfave/cli/compare/v1.16.0...v1.17.0 +[1.16.0]: https://github.com/urfave/cli/compare/v1.15.0...v1.16.0 +[1.15.0]: https://github.com/urfave/cli/compare/v1.14.0...v1.15.0 +[1.14.0]: https://github.com/urfave/cli/compare/v1.13.0...v1.14.0 +[1.13.0]: https://github.com/urfave/cli/compare/v1.12.0...v1.13.0 +[1.12.0]: https://github.com/urfave/cli/compare/v1.11.1...v1.12.0 +[1.11.1]: https://github.com/urfave/cli/compare/v1.11.0...v1.11.1 +[1.11.0]: https://github.com/urfave/cli/compare/v1.10.2...v1.11.0 +[1.10.2]: https://github.com/urfave/cli/compare/v1.10.1...v1.10.2 +[1.10.1]: https://github.com/urfave/cli/compare/v1.10.0...v1.10.1 +[1.10.0]: https://github.com/urfave/cli/compare/v1.9.0...v1.10.0 +[1.9.0]: https://github.com/urfave/cli/compare/v1.8.0...v1.9.0 +[1.8.0]: https://github.com/urfave/cli/compare/v1.7.1...v1.8.0 +[1.7.1]: https://github.com/urfave/cli/compare/v1.7.0...v1.7.1 +[1.7.0]: https://github.com/urfave/cli/compare/v1.6.0...v1.7.0 +[1.6.0]: https://github.com/urfave/cli/compare/v1.5.0...v1.6.0 +[1.5.0]: https://github.com/urfave/cli/compare/v1.4.1...v1.5.0 +[1.4.1]: https://github.com/urfave/cli/compare/v1.4.0...v1.4.1 +[1.4.0]: https://github.com/urfave/cli/compare/v1.3.1...v1.4.0 +[1.3.1]: https://github.com/urfave/cli/compare/v1.3.0...v1.3.1 +[1.3.0]: https://github.com/urfave/cli/compare/v1.2.0...v1.3.0 +[1.2.0]: https://github.com/urfave/cli/compare/v1.1.0...v1.2.0 +[1.1.0]: https://github.com/urfave/cli/compare/v1.0.0...v1.1.0 +[1.0.0]: https://github.com/urfave/cli/compare/v0.1.0...v1.0.0 diff --git a/vendor/github.com/urfave/cli/LICENSE b/vendor/github.com/urfave/cli/LICENSE new file mode 100644 index 00000000..42a597e2 --- /dev/null +++ b/vendor/github.com/urfave/cli/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 Jeremy Saenz & Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/github.com/urfave/cli/README.md b/vendor/github.com/urfave/cli/README.md new file mode 100644 index 00000000..2bbbd8ea --- /dev/null +++ b/vendor/github.com/urfave/cli/README.md @@ -0,0 +1,1381 @@ +cli +=== + +[![Build Status](https://travis-ci.org/urfave/cli.svg?branch=master)](https://travis-ci.org/urfave/cli) +[![Windows Build Status](https://ci.appveyor.com/api/projects/status/rtgk5xufi932pb2v?svg=true)](https://ci.appveyor.com/project/urfave/cli) +[![GoDoc](https://godoc.org/github.com/urfave/cli?status.svg)](https://godoc.org/github.com/urfave/cli) +[![codebeat](https://codebeat.co/badges/0a8f30aa-f975-404b-b878-5fab3ae1cc5f)](https://codebeat.co/projects/github-com-urfave-cli) +[![Go Report Card](https://goreportcard.com/badge/urfave/cli)](https://goreportcard.com/report/urfave/cli) +[![top level coverage](https://gocover.io/_badge/github.com/urfave/cli?0 "top level coverage")](http://gocover.io/github.com/urfave/cli) / +[![altsrc coverage](https://gocover.io/_badge/github.com/urfave/cli/altsrc?0 "altsrc coverage")](http://gocover.io/github.com/urfave/cli/altsrc) + +**Notice:** This is the library formerly known as +`github.com/codegangsta/cli` -- Github will automatically redirect requests +to this repository, but we recommend updating your references for clarity. + +cli is a simple, fast, and fun package for building command line apps in Go. The +goal is to enable developers to write fast and distributable command line +applications in an expressive way. + +<!-- toc --> + +- [Overview](#overview) +- [Installation](#installation) + * [Supported platforms](#supported-platforms) + * [Using the `v2` branch](#using-the-v2-branch) + * [Pinning to the `v1` releases](#pinning-to-the-v1-releases) +- [Getting Started](#getting-started) +- [Examples](#examples) + * [Arguments](#arguments) + * [Flags](#flags) + + [Placeholder Values](#placeholder-values) + + [Alternate Names](#alternate-names) + + [Ordering](#ordering) + + [Values from the Environment](#values-from-the-environment) + + [Values from alternate input sources (YAML, TOML, and others)](#values-from-alternate-input-sources-yaml-toml-and-others) + * [Subcommands](#subcommands) + * [Subcommands categories](#subcommands-categories) + * [Exit code](#exit-code) + * [Bash Completion](#bash-completion) + + [Enabling](#enabling) + + [Distribution](#distribution) + + [Customization](#customization) + * [Generated Help Text](#generated-help-text) + + [Customization](#customization-1) + * [Version Flag](#version-flag) + + [Customization](#customization-2) + + [Full API Example](#full-api-example) +- [Contribution Guidelines](#contribution-guidelines) + +<!-- tocstop --> + +## Overview + +Command line apps are usually so tiny that there is absolutely no reason why +your code should *not* be self-documenting. Things like generating help text and +parsing command flags/options should not hinder productivity when writing a +command line app. + +**This is where cli comes into play.** cli makes command line programming fun, +organized, and expressive! + +## Installation + +Make sure you have a working Go environment. Go version 1.2+ is supported. [See +the install instructions for Go](http://golang.org/doc/install.html). + +To install cli, simply run: +``` +$ go get github.com/urfave/cli +``` + +Make sure your `PATH` includes the `$GOPATH/bin` directory so your commands can +be easily used: +``` +export PATH=$PATH:$GOPATH/bin +``` + +### Supported platforms + +cli is tested against multiple versions of Go on Linux, and against the latest +released version of Go on OS X and Windows. For full details, see +[`./.travis.yml`](./.travis.yml) and [`./appveyor.yml`](./appveyor.yml). + +### Using the `v2` branch + +**Warning**: The `v2` branch is currently unreleased and considered unstable. + +There is currently a long-lived branch named `v2` that is intended to land as +the new `master` branch once development there has settled down. The current +`master` branch (mirrored as `v1`) is being manually merged into `v2` on +an irregular human-based schedule, but generally if one wants to "upgrade" to +`v2` *now* and accept the volatility (read: "awesomeness") that comes along with +that, please use whatever version pinning of your preference, such as via +`gopkg.in`: + +``` +$ go get gopkg.in/urfave/cli.v2 +``` + +``` go +... +import ( + "gopkg.in/urfave/cli.v2" // imports as package "cli" +) +... +``` + +### Pinning to the `v1` releases + +Similarly to the section above describing use of the `v2` branch, if one wants +to avoid any unexpected compatibility pains once `v2` becomes `master`, then +pinning to `v1` is an acceptable option, e.g.: + +``` +$ go get gopkg.in/urfave/cli.v1 +``` + +``` go +... +import ( + "gopkg.in/urfave/cli.v1" // imports as package "cli" +) +... +``` + +This will pull the latest tagged `v1` release (e.g. `v1.18.1` at the time of writing). + +## Getting Started + +One of the philosophies behind cli is that an API should be playful and full of +discovery. So a cli app can be as little as one line of code in `main()`. + +<!-- { + "args": ["--help"], + "output": "A new cli application" +} --> +``` go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + cli.NewApp().Run(os.Args) +} +``` + +This app will run and show help text, but is not very useful. Let's give an +action to execute and some help documentation: + +<!-- { + "output": "boom! I say!" +} --> +``` go +package main + +import ( + "fmt" + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + app.Name = "boom" + app.Usage = "make an explosive entrance" + app.Action = func(c *cli.Context) error { + fmt.Println("boom! I say!") + return nil + } + + app.Run(os.Args) +} +``` + +Running this already gives you a ton of functionality, plus support for things +like subcommands and flags, which are covered below. + +## Examples + +Being a programmer can be a lonely job. Thankfully by the power of automation +that is not the case! Let's create a greeter app to fend off our demons of +loneliness! + +Start by creating a directory named `greet`, and within it, add a file, +`greet.go` with the following code in it: + +<!-- { + "output": "Hello friend!" +} --> +``` go +package main + +import ( + "fmt" + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + app.Name = "greet" + app.Usage = "fight the loneliness!" + app.Action = func(c *cli.Context) error { + fmt.Println("Hello friend!") + return nil + } + + app.Run(os.Args) +} +``` + +Install our command to the `$GOPATH/bin` directory: + +``` +$ go install +``` + +Finally run our new command: + +``` +$ greet +Hello friend! +``` + +cli also generates neat help text: + +``` +$ greet help +NAME: + greet - fight the loneliness! + +USAGE: + greet [global options] command [command options] [arguments...] + +VERSION: + 0.0.0 + +COMMANDS: + help, h Shows a list of commands or help for one command + +GLOBAL OPTIONS + --version Shows version information +``` + +### Arguments + +You can lookup arguments by calling the `Args` function on `cli.Context`, e.g.: + +<!-- { + "output": "Hello \"" +} --> +``` go +package main + +import ( + "fmt" + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + + app.Action = func(c *cli.Context) error { + fmt.Printf("Hello %q", c.Args().Get(0)) + return nil + } + + app.Run(os.Args) +} +``` + +### Flags + +Setting and querying flags is simple. + +<!-- { + "output": "Hello Nefertiti" +} --> +``` go +package main + +import ( + "fmt" + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + + app.Flags = []cli.Flag { + cli.StringFlag{ + Name: "lang", + Value: "english", + Usage: "language for the greeting", + }, + } + + app.Action = func(c *cli.Context) error { + name := "Nefertiti" + if c.NArg() > 0 { + name = c.Args().Get(0) + } + if c.String("lang") == "spanish" { + fmt.Println("Hola", name) + } else { + fmt.Println("Hello", name) + } + return nil + } + + app.Run(os.Args) +} +``` + +You can also set a destination variable for a flag, to which the content will be +scanned. + +<!-- { + "output": "Hello someone" +} --> +``` go +package main + +import ( + "os" + "fmt" + + "github.com/urfave/cli" +) + +func main() { + var language string + + app := cli.NewApp() + + app.Flags = []cli.Flag { + cli.StringFlag{ + Name: "lang", + Value: "english", + Usage: "language for the greeting", + Destination: &language, + }, + } + + app.Action = func(c *cli.Context) error { + name := "someone" + if c.NArg() > 0 { + name = c.Args()[0] + } + if language == "spanish" { + fmt.Println("Hola", name) + } else { + fmt.Println("Hello", name) + } + return nil + } + + app.Run(os.Args) +} +``` + +See full list of flags at http://godoc.org/github.com/urfave/cli + +#### Placeholder Values + +Sometimes it's useful to specify a flag's value within the usage string itself. +Such placeholders are indicated with back quotes. + +For example this: + +<!-- { + "args": ["--help"], + "output": "--config FILE, -c FILE" +} --> +```go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + + app.Flags = []cli.Flag{ + cli.StringFlag{ + Name: "config, c", + Usage: "Load configuration from `FILE`", + }, + } + + app.Run(os.Args) +} +``` + +Will result in help output like: + +``` +--config FILE, -c FILE Load configuration from FILE +``` + +Note that only the first placeholder is used. Subsequent back-quoted words will +be left as-is. + +#### Alternate Names + +You can set alternate (or short) names for flags by providing a comma-delimited +list for the `Name`. e.g. + +<!-- { + "args": ["--help"], + "output": "--lang value, -l value.*language for the greeting.*default: \"english\"" +} --> +``` go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + + app.Flags = []cli.Flag { + cli.StringFlag{ + Name: "lang, l", + Value: "english", + Usage: "language for the greeting", + }, + } + + app.Run(os.Args) +} +``` + +That flag can then be set with `--lang spanish` or `-l spanish`. Note that +giving two different forms of the same flag in the same command invocation is an +error. + +#### Ordering + +Flags for the application and commands are shown in the order they are defined. +However, it's possible to sort them from outside this library by using `FlagsByName` +or `CommandsByName` with `sort`. + +For example this: + +<!-- { + "args": ["--help"], + "output": "add a task to the list\n.*complete a task on the list\n.*\n\n.*\n.*Load configuration from FILE\n.*Language for the greeting.*" +} --> +``` go +package main + +import ( + "os" + "sort" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + + app.Flags = []cli.Flag { + cli.StringFlag{ + Name: "lang, l", + Value: "english", + Usage: "Language for the greeting", + }, + cli.StringFlag{ + Name: "config, c", + Usage: "Load configuration from `FILE`", + }, + } + + app.Commands = []cli.Command{ + { + Name: "complete", + Aliases: []string{"c"}, + Usage: "complete a task on the list", + Action: func(c *cli.Context) error { + return nil + }, + }, + { + Name: "add", + Aliases: []string{"a"}, + Usage: "add a task to the list", + Action: func(c *cli.Context) error { + return nil + }, + }, + } + + sort.Sort(cli.FlagsByName(app.Flags)) + sort.Sort(cli.CommandsByName(app.Commands)) + + app.Run(os.Args) +} +``` + +Will result in help output like: + +``` +--config FILE, -c FILE Load configuration from FILE +--lang value, -l value Language for the greeting (default: "english") +``` + +#### Values from the Environment + +You can also have the default value set from the environment via `EnvVar`. e.g. + +<!-- { + "args": ["--help"], + "output": "language for the greeting.*APP_LANG" +} --> +``` go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + + app.Flags = []cli.Flag { + cli.StringFlag{ + Name: "lang, l", + Value: "english", + Usage: "language for the greeting", + EnvVar: "APP_LANG", + }, + } + + app.Run(os.Args) +} +``` + +The `EnvVar` may also be given as a comma-delimited "cascade", where the first +environment variable that resolves is used as the default. + +<!-- { + "args": ["--help"], + "output": "language for the greeting.*LEGACY_COMPAT_LANG.*APP_LANG.*LANG" +} --> +``` go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + + app.Flags = []cli.Flag { + cli.StringFlag{ + Name: "lang, l", + Value: "english", + Usage: "language for the greeting", + EnvVar: "LEGACY_COMPAT_LANG,APP_LANG,LANG", + }, + } + + app.Run(os.Args) +} +``` + +#### Values from alternate input sources (YAML, TOML, and others) + +There is a separate package altsrc that adds support for getting flag values +from other file input sources. + +Currently supported input source formats: +* YAML +* TOML + +In order to get values for a flag from an alternate input source the following +code would be added to wrap an existing cli.Flag like below: + +``` go + altsrc.NewIntFlag(cli.IntFlag{Name: "test"}) +``` + +Initialization must also occur for these flags. Below is an example initializing +getting data from a yaml file below. + +``` go + command.Before = altsrc.InitInputSourceWithContext(command.Flags, NewYamlSourceFromFlagFunc("load")) +``` + +The code above will use the "load" string as a flag name to get the file name of +a yaml file from the cli.Context. It will then use that file name to initialize +the yaml input source for any flags that are defined on that command. As a note +the "load" flag used would also have to be defined on the command flags in order +for this code snipped to work. + +Currently only the aboved specified formats are supported but developers can +add support for other input sources by implementing the +altsrc.InputSourceContext for their given sources. + +Here is a more complete sample of a command using YAML support: + +<!-- { + "args": ["test-cmd", "--help"], + "output": "--test value.*default: 0" +} --> +``` go +package notmain + +import ( + "fmt" + "os" + + "github.com/urfave/cli" + "github.com/urfave/cli/altsrc" +) + +func main() { + app := cli.NewApp() + + flags := []cli.Flag{ + altsrc.NewIntFlag(cli.IntFlag{Name: "test"}), + cli.StringFlag{Name: "load"}, + } + + app.Action = func(c *cli.Context) error { + fmt.Println("yaml ist rad") + return nil + } + + app.Before = altsrc.InitInputSourceWithContext(flags, altsrc.NewYamlSourceFromFlagFunc("load")) + app.Flags = flags + + app.Run(os.Args) +} +``` + +### Subcommands + +Subcommands can be defined for a more git-like command line app. + +<!-- { + "args": ["template", "add"], + "output": "new task template: .+" +} --> +```go +package main + +import ( + "fmt" + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + + app.Commands = []cli.Command{ + { + Name: "add", + Aliases: []string{"a"}, + Usage: "add a task to the list", + Action: func(c *cli.Context) error { + fmt.Println("added task: ", c.Args().First()) + return nil + }, + }, + { + Name: "complete", + Aliases: []string{"c"}, + Usage: "complete a task on the list", + Action: func(c *cli.Context) error { + fmt.Println("completed task: ", c.Args().First()) + return nil + }, + }, + { + Name: "template", + Aliases: []string{"t"}, + Usage: "options for task templates", + Subcommands: []cli.Command{ + { + Name: "add", + Usage: "add a new template", + Action: func(c *cli.Context) error { + fmt.Println("new task template: ", c.Args().First()) + return nil + }, + }, + { + Name: "remove", + Usage: "remove an existing template", + Action: func(c *cli.Context) error { + fmt.Println("removed task template: ", c.Args().First()) + return nil + }, + }, + }, + }, + } + + app.Run(os.Args) +} +``` + +### Subcommands categories + +For additional organization in apps that have many subcommands, you can +associate a category for each command to group them together in the help +output. + +E.g. + +```go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + + app.Commands = []cli.Command{ + { + Name: "noop", + }, + { + Name: "add", + Category: "template", + }, + { + Name: "remove", + Category: "template", + }, + } + + app.Run(os.Args) +} +``` + +Will include: + +``` +COMMANDS: + noop + + Template actions: + add + remove +``` + +### Exit code + +Calling `App.Run` will not automatically call `os.Exit`, which means that by +default the exit code will "fall through" to being `0`. An explicit exit code +may be set by returning a non-nil error that fulfills `cli.ExitCoder`, *or* a +`cli.MultiError` that includes an error that fulfills `cli.ExitCoder`, e.g.: + +``` go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + app := cli.NewApp() + app.Flags = []cli.Flag{ + cli.BoolTFlag{ + Name: "ginger-crouton", + Usage: "is it in the soup?", + }, + } + app.Action = func(ctx *cli.Context) error { + if !ctx.Bool("ginger-crouton") { + return cli.NewExitError("it is not in the soup", 86) + } + return nil + } + + app.Run(os.Args) +} +``` + +### Bash Completion + +You can enable completion commands by setting the `EnableBashCompletion` +flag on the `App` object. By default, this setting will only auto-complete to +show an app's subcommands, but you can write your own completion methods for +the App or its subcommands. + +<!-- { + "args": ["complete", "--generate-bash-completion"], + "output": "laundry" +} --> +``` go +package main + +import ( + "fmt" + "os" + + "github.com/urfave/cli" +) + +func main() { + tasks := []string{"cook", "clean", "laundry", "eat", "sleep", "code"} + + app := cli.NewApp() + app.EnableBashCompletion = true + app.Commands = []cli.Command{ + { + Name: "complete", + Aliases: []string{"c"}, + Usage: "complete a task on the list", + Action: func(c *cli.Context) error { + fmt.Println("completed task: ", c.Args().First()) + return nil + }, + BashComplete: func(c *cli.Context) { + // This will complete if no args are passed + if c.NArg() > 0 { + return + } + for _, t := range tasks { + fmt.Println(t) + } + }, + }, + } + + app.Run(os.Args) +} +``` + +#### Enabling + +Source the `autocomplete/bash_autocomplete` file in your `.bashrc` file while +setting the `PROG` variable to the name of your program: + +`PROG=myprogram source /.../cli/autocomplete/bash_autocomplete` + +#### Distribution + +Copy `autocomplete/bash_autocomplete` into `/etc/bash_completion.d/` and rename +it to the name of the program you wish to add autocomplete support for (or +automatically install it there if you are distributing a package). Don't forget +to source the file to make it active in the current shell. + +``` +sudo cp src/bash_autocomplete /etc/bash_completion.d/<myprogram> +source /etc/bash_completion.d/<myprogram> +``` + +Alternatively, you can just document that users should source the generic +`autocomplete/bash_autocomplete` in their bash configuration with `$PROG` set +to the name of their program (as above). + +#### Customization + +The default bash completion flag (`--generate-bash-completion`) is defined as +`cli.BashCompletionFlag`, and may be redefined if desired, e.g.: + +<!-- { + "args": ["--compgen"], + "output": "wat\nhelp\nh" +} --> +``` go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + cli.BashCompletionFlag = cli.BoolFlag{ + Name: "compgen", + Hidden: true, + } + + app := cli.NewApp() + app.EnableBashCompletion = true + app.Commands = []cli.Command{ + { + Name: "wat", + }, + } + app.Run(os.Args) +} +``` + +### Generated Help Text + +The default help flag (`-h/--help`) is defined as `cli.HelpFlag` and is checked +by the cli internals in order to print generated help text for the app, command, +or subcommand, and break execution. + +#### Customization + +All of the help text generation may be customized, and at multiple levels. The +templates are exposed as variables `AppHelpTemplate`, `CommandHelpTemplate`, and +`SubcommandHelpTemplate` which may be reassigned or augmented, and full override +is possible by assigning a compatible func to the `cli.HelpPrinter` variable, +e.g.: + +<!-- { + "output": "Ha HA. I pwnd the help!!1" +} --> +``` go +package main + +import ( + "fmt" + "io" + "os" + + "github.com/urfave/cli" +) + +func main() { + // EXAMPLE: Append to an existing template + cli.AppHelpTemplate = fmt.Sprintf(`%s + +WEBSITE: http://awesometown.example.com + +SUPPORT: support@awesometown.example.com + +`, cli.AppHelpTemplate) + + // EXAMPLE: Override a template + cli.AppHelpTemplate = `NAME: + {{.Name}} - {{.Usage}} +USAGE: + {{.HelpName}} {{if .VisibleFlags}}[global options]{{end}}{{if .Commands}} command [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}} + {{if len .Authors}} +AUTHOR: + {{range .Authors}}{{ . }}{{end}} + {{end}}{{if .Commands}} +COMMANDS: +{{range .Commands}}{{if not .HideHelp}} {{join .Names ", "}}{{ "\t"}}{{.Usage}}{{ "\n" }}{{end}}{{end}}{{end}}{{if .VisibleFlags}} +GLOBAL OPTIONS: + {{range .VisibleFlags}}{{.}} + {{end}}{{end}}{{if .Copyright }} +COPYRIGHT: + {{.Copyright}} + {{end}}{{if .Version}} +VERSION: + {{.Version}} + {{end}} +` + + // EXAMPLE: Replace the `HelpPrinter` func + cli.HelpPrinter = func(w io.Writer, templ string, data interface{}) { + fmt.Println("Ha HA. I pwnd the help!!1") + } + + cli.NewApp().Run(os.Args) +} +``` + +The default flag may be customized to something other than `-h/--help` by +setting `cli.HelpFlag`, e.g.: + +<!-- { + "args": ["--halp"], + "output": "haaaaalp.*HALP" +} --> +``` go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + cli.HelpFlag = cli.BoolFlag{ + Name: "halp, haaaaalp", + Usage: "HALP", + EnvVar: "SHOW_HALP,HALPPLZ", + } + + cli.NewApp().Run(os.Args) +} +``` + +### Version Flag + +The default version flag (`-v/--version`) is defined as `cli.VersionFlag`, which +is checked by the cli internals in order to print the `App.Version` via +`cli.VersionPrinter` and break execution. + +#### Customization + +The default flag may be customized to something other than `-v/--version` by +setting `cli.VersionFlag`, e.g.: + +<!-- { + "args": ["--print-version"], + "output": "partay version 19\\.99\\.0" +} --> +``` go +package main + +import ( + "os" + + "github.com/urfave/cli" +) + +func main() { + cli.VersionFlag = cli.BoolFlag{ + Name: "print-version, V", + Usage: "print only the version", + } + + app := cli.NewApp() + app.Name = "partay" + app.Version = "19.99.0" + app.Run(os.Args) +} +``` + +Alternatively, the version printer at `cli.VersionPrinter` may be overridden, e.g.: + +<!-- { + "args": ["--version"], + "output": "version=19\\.99\\.0 revision=fafafaf" +} --> +``` go +package main + +import ( + "fmt" + "os" + + "github.com/urfave/cli" +) + +var ( + Revision = "fafafaf" +) + +func main() { + cli.VersionPrinter = func(c *cli.Context) { + fmt.Printf("version=%s revision=%s\n", c.App.Version, Revision) + } + + app := cli.NewApp() + app.Name = "partay" + app.Version = "19.99.0" + app.Run(os.Args) +} +``` + +#### Full API Example + +**Notice**: This is a contrived (functioning) example meant strictly for API +demonstration purposes. Use of one's imagination is encouraged. + +<!-- { + "output": "made it!\nPhew!" +} --> +``` go +package main + +import ( + "errors" + "flag" + "fmt" + "io" + "io/ioutil" + "os" + "time" + + "github.com/urfave/cli" +) + +func init() { + cli.AppHelpTemplate += "\nCUSTOMIZED: you bet ur muffins\n" + cli.CommandHelpTemplate += "\nYMMV\n" + cli.SubcommandHelpTemplate += "\nor something\n" + + cli.HelpFlag = cli.BoolFlag{Name: "halp"} + cli.BashCompletionFlag = cli.BoolFlag{Name: "compgen", Hidden: true} + cli.VersionFlag = cli.BoolFlag{Name: "print-version, V"} + + cli.HelpPrinter = func(w io.Writer, templ string, data interface{}) { + fmt.Fprintf(w, "best of luck to you\n") + } + cli.VersionPrinter = func(c *cli.Context) { + fmt.Fprintf(c.App.Writer, "version=%s\n", c.App.Version) + } + cli.OsExiter = func(c int) { + fmt.Fprintf(cli.ErrWriter, "refusing to exit %d\n", c) + } + cli.ErrWriter = ioutil.Discard + cli.FlagStringer = func(fl cli.Flag) string { + return fmt.Sprintf("\t\t%s", fl.GetName()) + } +} + +type hexWriter struct{} + +func (w *hexWriter) Write(p []byte) (int, error) { + for _, b := range p { + fmt.Printf("%x", b) + } + fmt.Printf("\n") + + return len(p), nil +} + +type genericType struct{ + s string +} + +func (g *genericType) Set(value string) error { + g.s = value + return nil +} + +func (g *genericType) String() string { + return g.s +} + +func main() { + app := cli.NewApp() + app.Name = "kənˈtrīv" + app.Version = "19.99.0" + app.Compiled = time.Now() + app.Authors = []cli.Author{ + cli.Author{ + Name: "Example Human", + Email: "human@example.com", + }, + } + app.Copyright = "(c) 1999 Serious Enterprise" + app.HelpName = "contrive" + app.Usage = "demonstrate available API" + app.UsageText = "contrive - demonstrating the available API" + app.ArgsUsage = "[args and such]" + app.Commands = []cli.Command{ + cli.Command{ + Name: "doo", + Aliases: []string{"do"}, + Category: "motion", + Usage: "do the doo", + UsageText: "doo - does the dooing", + Description: "no really, there is a lot of dooing to be done", + ArgsUsage: "[arrgh]", + Flags: []cli.Flag{ + cli.BoolFlag{Name: "forever, forevvarr"}, + }, + Subcommands: cli.Commands{ + cli.Command{ + Name: "wop", + Action: wopAction, + }, + }, + SkipFlagParsing: false, + HideHelp: false, + Hidden: false, + HelpName: "doo!", + BashComplete: func(c *cli.Context) { + fmt.Fprintf(c.App.Writer, "--better\n") + }, + Before: func(c *cli.Context) error { + fmt.Fprintf(c.App.Writer, "brace for impact\n") + return nil + }, + After: func(c *cli.Context) error { + fmt.Fprintf(c.App.Writer, "did we lose anyone?\n") + return nil + }, + Action: func(c *cli.Context) error { + c.Command.FullName() + c.Command.HasName("wop") + c.Command.Names() + c.Command.VisibleFlags() + fmt.Fprintf(c.App.Writer, "dodododododoodododddooooododododooo\n") + if c.Bool("forever") { + c.Command.Run(c) + } + return nil + }, + OnUsageError: func(c *cli.Context, err error, isSubcommand bool) error { + fmt.Fprintf(c.App.Writer, "for shame\n") + return err + }, + }, + } + app.Flags = []cli.Flag{ + cli.BoolFlag{Name: "fancy"}, + cli.BoolTFlag{Name: "fancier"}, + cli.DurationFlag{Name: "howlong, H", Value: time.Second * 3}, + cli.Float64Flag{Name: "howmuch"}, + cli.GenericFlag{Name: "wat", Value: &genericType{}}, + cli.Int64Flag{Name: "longdistance"}, + cli.Int64SliceFlag{Name: "intervals"}, + cli.IntFlag{Name: "distance"}, + cli.IntSliceFlag{Name: "times"}, + cli.StringFlag{Name: "dance-move, d"}, + cli.StringSliceFlag{Name: "names, N"}, + cli.UintFlag{Name: "age"}, + cli.Uint64Flag{Name: "bigage"}, + } + app.EnableBashCompletion = true + app.HideHelp = false + app.HideVersion = false + app.BashComplete = func(c *cli.Context) { + fmt.Fprintf(c.App.Writer, "lipstick\nkiss\nme\nlipstick\nringo\n") + } + app.Before = func(c *cli.Context) error { + fmt.Fprintf(c.App.Writer, "HEEEERE GOES\n") + return nil + } + app.After = func(c *cli.Context) error { + fmt.Fprintf(c.App.Writer, "Phew!\n") + return nil + } + app.CommandNotFound = func(c *cli.Context, command string) { + fmt.Fprintf(c.App.Writer, "Thar be no %q here.\n", command) + } + app.OnUsageError = func(c *cli.Context, err error, isSubcommand bool) error { + if isSubcommand { + return err + } + + fmt.Fprintf(c.App.Writer, "WRONG: %#v\n", err) + return nil + } + app.Action = func(c *cli.Context) error { + cli.DefaultAppComplete(c) + cli.HandleExitCoder(errors.New("not an exit coder, though")) + cli.ShowAppHelp(c) + cli.ShowCommandCompletions(c, "nope") + cli.ShowCommandHelp(c, "also-nope") + cli.ShowCompletions(c) + cli.ShowSubcommandHelp(c) + cli.ShowVersion(c) + + categories := c.App.Categories() + categories.AddCommand("sounds", cli.Command{ + Name: "bloop", + }) + + for _, category := range c.App.Categories() { + fmt.Fprintf(c.App.Writer, "%s\n", category.Name) + fmt.Fprintf(c.App.Writer, "%#v\n", category.Commands) + fmt.Fprintf(c.App.Writer, "%#v\n", category.VisibleCommands()) + } + + fmt.Printf("%#v\n", c.App.Command("doo")) + if c.Bool("infinite") { + c.App.Run([]string{"app", "doo", "wop"}) + } + + if c.Bool("forevar") { + c.App.RunAsSubcommand(c) + } + c.App.Setup() + fmt.Printf("%#v\n", c.App.VisibleCategories()) + fmt.Printf("%#v\n", c.App.VisibleCommands()) + fmt.Printf("%#v\n", c.App.VisibleFlags()) + + fmt.Printf("%#v\n", c.Args().First()) + if len(c.Args()) > 0 { + fmt.Printf("%#v\n", c.Args()[1]) + } + fmt.Printf("%#v\n", c.Args().Present()) + fmt.Printf("%#v\n", c.Args().Tail()) + + set := flag.NewFlagSet("contrive", 0) + nc := cli.NewContext(c.App, set, c) + + fmt.Printf("%#v\n", nc.Args()) + fmt.Printf("%#v\n", nc.Bool("nope")) + fmt.Printf("%#v\n", nc.BoolT("nerp")) + fmt.Printf("%#v\n", nc.Duration("howlong")) + fmt.Printf("%#v\n", nc.Float64("hay")) + fmt.Printf("%#v\n", nc.Generic("bloop")) + fmt.Printf("%#v\n", nc.Int64("bonk")) + fmt.Printf("%#v\n", nc.Int64Slice("burnks")) + fmt.Printf("%#v\n", nc.Int("bips")) + fmt.Printf("%#v\n", nc.IntSlice("blups")) + fmt.Printf("%#v\n", nc.String("snurt")) + fmt.Printf("%#v\n", nc.StringSlice("snurkles")) + fmt.Printf("%#v\n", nc.Uint("flub")) + fmt.Printf("%#v\n", nc.Uint64("florb")) + fmt.Printf("%#v\n", nc.GlobalBool("global-nope")) + fmt.Printf("%#v\n", nc.GlobalBoolT("global-nerp")) + fmt.Printf("%#v\n", nc.GlobalDuration("global-howlong")) + fmt.Printf("%#v\n", nc.GlobalFloat64("global-hay")) + fmt.Printf("%#v\n", nc.GlobalGeneric("global-bloop")) + fmt.Printf("%#v\n", nc.GlobalInt("global-bips")) + fmt.Printf("%#v\n", nc.GlobalIntSlice("global-blups")) + fmt.Printf("%#v\n", nc.GlobalString("global-snurt")) + fmt.Printf("%#v\n", nc.GlobalStringSlice("global-snurkles")) + + fmt.Printf("%#v\n", nc.FlagNames()) + fmt.Printf("%#v\n", nc.GlobalFlagNames()) + fmt.Printf("%#v\n", nc.GlobalIsSet("wat")) + fmt.Printf("%#v\n", nc.GlobalSet("wat", "nope")) + fmt.Printf("%#v\n", nc.NArg()) + fmt.Printf("%#v\n", nc.NumFlags()) + fmt.Printf("%#v\n", nc.Parent()) + + nc.Set("wat", "also-nope") + + ec := cli.NewExitError("ohwell", 86) + fmt.Fprintf(c.App.Writer, "%d", ec.ExitCode()) + fmt.Printf("made it!\n") + return ec + } + + if os.Getenv("HEXY") != "" { + app.Writer = &hexWriter{} + app.ErrWriter = &hexWriter{} + } + + app.Metadata = map[string]interface{}{ + "layers": "many", + "explicable": false, + "whatever-values": 19.99, + } + + app.Run(os.Args) +} + +func wopAction(c *cli.Context) error { + fmt.Fprintf(c.App.Writer, ":wave: over here, eh\n") + return nil +} +``` + +## Contribution Guidelines + +Feel free to put up a pull request to fix a bug or maybe add a feature. I will +give it a code review and make sure that it does not break backwards +compatibility. If I or any other collaborators agree that it is in line with +the vision of the project, we will work with you to get the code into +a mergeable state and merge it into the master branch. + +If you have contributed something significant to the project, we will most +likely add you as a collaborator. As a collaborator you are given the ability +to merge others pull requests. It is very important that new code does not +break existing code, so be careful about what code you do choose to merge. + +If you feel like you have contributed to the project but have not yet been +added as a collaborator, we probably forgot to add you, please open an issue. diff --git a/vendor/github.com/urfave/cli/app.go b/vendor/github.com/urfave/cli/app.go new file mode 100644 index 00000000..51fc45d8 --- /dev/null +++ b/vendor/github.com/urfave/cli/app.go @@ -0,0 +1,497 @@ +package cli + +import ( + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "sort" + "time" +) + +var ( + changeLogURL = "https://github.com/urfave/cli/blob/master/CHANGELOG.md" + appActionDeprecationURL = fmt.Sprintf("%s#deprecated-cli-app-action-signature", changeLogURL) + runAndExitOnErrorDeprecationURL = fmt.Sprintf("%s#deprecated-cli-app-runandexitonerror", changeLogURL) + + contactSysadmin = "This is an error in the application. Please contact the distributor of this application if this is not you." + + errInvalidActionType = NewExitError("ERROR invalid Action type. "+ + fmt.Sprintf("Must be `func(*Context`)` or `func(*Context) error). %s", contactSysadmin)+ + fmt.Sprintf("See %s", appActionDeprecationURL), 2) +) + +// App is the main structure of a cli application. It is recommended that +// an app be created with the cli.NewApp() function +type App struct { + // The name of the program. Defaults to path.Base(os.Args[0]) + Name string + // Full name of command for help, defaults to Name + HelpName string + // Description of the program. + Usage string + // Text to override the USAGE section of help + UsageText string + // Description of the program argument format. + ArgsUsage string + // Version of the program + Version string + // Description of the program + Description string + // List of commands to execute + Commands []Command + // List of flags to parse + Flags []Flag + // Boolean to enable bash completion commands + EnableBashCompletion bool + // Boolean to hide built-in help command + HideHelp bool + // Boolean to hide built-in version flag and the VERSION section of help + HideVersion bool + // Populate on app startup, only gettable through method Categories() + categories CommandCategories + // An action to execute when the bash-completion flag is set + BashComplete BashCompleteFunc + // An action to execute before any subcommands are run, but after the context is ready + // If a non-nil error is returned, no subcommands are run + Before BeforeFunc + // An action to execute after any subcommands are run, but after the subcommand has finished + // It is run even if Action() panics + After AfterFunc + + // The action to execute when no subcommands are specified + // Expects a `cli.ActionFunc` but will accept the *deprecated* signature of `func(*cli.Context) {}` + // *Note*: support for the deprecated `Action` signature will be removed in a future version + Action interface{} + + // Execute this function if the proper command cannot be found + CommandNotFound CommandNotFoundFunc + // Execute this function if an usage error occurs + OnUsageError OnUsageErrorFunc + // Compilation date + Compiled time.Time + // List of all authors who contributed + Authors []Author + // Copyright of the binary if any + Copyright string + // Name of Author (Note: Use App.Authors, this is deprecated) + Author string + // Email of Author (Note: Use App.Authors, this is deprecated) + Email string + // Writer writer to write output to + Writer io.Writer + // ErrWriter writes error output + ErrWriter io.Writer + // Other custom info + Metadata map[string]interface{} + // Carries a function which returns app specific info. + ExtraInfo func() map[string]string + // CustomAppHelpTemplate the text template for app help topic. + // cli.go uses text/template to render templates. You can + // render custom help text by setting this variable. + CustomAppHelpTemplate string + + didSetup bool +} + +// Tries to find out when this binary was compiled. +// Returns the current time if it fails to find it. +func compileTime() time.Time { + info, err := os.Stat(os.Args[0]) + if err != nil { + return time.Now() + } + return info.ModTime() +} + +// NewApp creates a new cli Application with some reasonable defaults for Name, +// Usage, Version and Action. +func NewApp() *App { + return &App{ + Name: filepath.Base(os.Args[0]), + HelpName: filepath.Base(os.Args[0]), + Usage: "A new cli application", + UsageText: "", + Version: "0.0.0", + BashComplete: DefaultAppComplete, + Action: helpCommand.Action, + Compiled: compileTime(), + Writer: os.Stdout, + } +} + +// Setup runs initialization code to ensure all data structures are ready for +// `Run` or inspection prior to `Run`. It is internally called by `Run`, but +// will return early if setup has already happened. +func (a *App) Setup() { + if a.didSetup { + return + } + + a.didSetup = true + + if a.Author != "" || a.Email != "" { + a.Authors = append(a.Authors, Author{Name: a.Author, Email: a.Email}) + } + + newCmds := []Command{} + for _, c := range a.Commands { + if c.HelpName == "" { + c.HelpName = fmt.Sprintf("%s %s", a.HelpName, c.Name) + } + newCmds = append(newCmds, c) + } + a.Commands = newCmds + + if a.Command(helpCommand.Name) == nil && !a.HideHelp { + a.Commands = append(a.Commands, helpCommand) + if (HelpFlag != BoolFlag{}) { + a.appendFlag(HelpFlag) + } + } + + if !a.HideVersion { + a.appendFlag(VersionFlag) + } + + a.categories = CommandCategories{} + for _, command := range a.Commands { + a.categories = a.categories.AddCommand(command.Category, command) + } + sort.Sort(a.categories) + + if a.Metadata == nil { + a.Metadata = make(map[string]interface{}) + } + + if a.Writer == nil { + a.Writer = os.Stdout + } +} + +// Run is the entry point to the cli app. Parses the arguments slice and routes +// to the proper flag/args combination +func (a *App) Run(arguments []string) (err error) { + a.Setup() + + // handle the completion flag separately from the flagset since + // completion could be attempted after a flag, but before its value was put + // on the command line. this causes the flagset to interpret the completion + // flag name as the value of the flag before it which is undesirable + // note that we can only do this because the shell autocomplete function + // always appends the completion flag at the end of the command + shellComplete, arguments := checkShellCompleteFlag(a, arguments) + + // parse flags + set, err := flagSet(a.Name, a.Flags) + if err != nil { + return err + } + + set.SetOutput(ioutil.Discard) + err = set.Parse(arguments[1:]) + nerr := normalizeFlags(a.Flags, set) + context := NewContext(a, set, nil) + if nerr != nil { + fmt.Fprintln(a.Writer, nerr) + ShowAppHelp(context) + return nerr + } + context.shellComplete = shellComplete + + if checkCompletions(context) { + return nil + } + + if err != nil { + if a.OnUsageError != nil { + err := a.OnUsageError(context, err, false) + HandleExitCoder(err) + return err + } + fmt.Fprintf(a.Writer, "%s %s\n\n", "Incorrect Usage.", err.Error()) + ShowAppHelp(context) + return err + } + + if !a.HideHelp && checkHelp(context) { + ShowAppHelp(context) + return nil + } + + if !a.HideVersion && checkVersion(context) { + ShowVersion(context) + return nil + } + + if a.After != nil { + defer func() { + if afterErr := a.After(context); afterErr != nil { + if err != nil { + err = NewMultiError(err, afterErr) + } else { + err = afterErr + } + } + }() + } + + if a.Before != nil { + beforeErr := a.Before(context) + if beforeErr != nil { + ShowAppHelp(context) + HandleExitCoder(beforeErr) + err = beforeErr + return err + } + } + + args := context.Args() + if args.Present() { + name := args.First() + c := a.Command(name) + if c != nil { + return c.Run(context) + } + } + + if a.Action == nil { + a.Action = helpCommand.Action + } + + // Run default Action + err = HandleAction(a.Action, context) + + HandleExitCoder(err) + return err +} + +// RunAndExitOnError calls .Run() and exits non-zero if an error was returned +// +// Deprecated: instead you should return an error that fulfills cli.ExitCoder +// to cli.App.Run. This will cause the application to exit with the given eror +// code in the cli.ExitCoder +func (a *App) RunAndExitOnError() { + if err := a.Run(os.Args); err != nil { + fmt.Fprintln(a.errWriter(), err) + OsExiter(1) + } +} + +// RunAsSubcommand invokes the subcommand given the context, parses ctx.Args() to +// generate command-specific flags +func (a *App) RunAsSubcommand(ctx *Context) (err error) { + // append help to commands + if len(a.Commands) > 0 { + if a.Command(helpCommand.Name) == nil && !a.HideHelp { + a.Commands = append(a.Commands, helpCommand) + if (HelpFlag != BoolFlag{}) { + a.appendFlag(HelpFlag) + } + } + } + + newCmds := []Command{} + for _, c := range a.Commands { + if c.HelpName == "" { + c.HelpName = fmt.Sprintf("%s %s", a.HelpName, c.Name) + } + newCmds = append(newCmds, c) + } + a.Commands = newCmds + + // parse flags + set, err := flagSet(a.Name, a.Flags) + if err != nil { + return err + } + + set.SetOutput(ioutil.Discard) + err = set.Parse(ctx.Args().Tail()) + nerr := normalizeFlags(a.Flags, set) + context := NewContext(a, set, ctx) + + if nerr != nil { + fmt.Fprintln(a.Writer, nerr) + fmt.Fprintln(a.Writer) + if len(a.Commands) > 0 { + ShowSubcommandHelp(context) + } else { + ShowCommandHelp(ctx, context.Args().First()) + } + return nerr + } + + if checkCompletions(context) { + return nil + } + + if err != nil { + if a.OnUsageError != nil { + err = a.OnUsageError(context, err, true) + HandleExitCoder(err) + return err + } + fmt.Fprintf(a.Writer, "%s %s\n\n", "Incorrect Usage.", err.Error()) + ShowSubcommandHelp(context) + return err + } + + if len(a.Commands) > 0 { + if checkSubcommandHelp(context) { + return nil + } + } else { + if checkCommandHelp(ctx, context.Args().First()) { + return nil + } + } + + if a.After != nil { + defer func() { + afterErr := a.After(context) + if afterErr != nil { + HandleExitCoder(err) + if err != nil { + err = NewMultiError(err, afterErr) + } else { + err = afterErr + } + } + }() + } + + if a.Before != nil { + beforeErr := a.Before(context) + if beforeErr != nil { + HandleExitCoder(beforeErr) + err = beforeErr + return err + } + } + + args := context.Args() + if args.Present() { + name := args.First() + c := a.Command(name) + if c != nil { + return c.Run(context) + } + } + + // Run default Action + err = HandleAction(a.Action, context) + + HandleExitCoder(err) + return err +} + +// Command returns the named command on App. Returns nil if the command does not exist +func (a *App) Command(name string) *Command { + for _, c := range a.Commands { + if c.HasName(name) { + return &c + } + } + + return nil +} + +// Categories returns a slice containing all the categories with the commands they contain +func (a *App) Categories() CommandCategories { + return a.categories +} + +// VisibleCategories returns a slice of categories and commands that are +// Hidden=false +func (a *App) VisibleCategories() []*CommandCategory { + ret := []*CommandCategory{} + for _, category := range a.categories { + if visible := func() *CommandCategory { + for _, command := range category.Commands { + if !command.Hidden { + return category + } + } + return nil + }(); visible != nil { + ret = append(ret, visible) + } + } + return ret +} + +// VisibleCommands returns a slice of the Commands with Hidden=false +func (a *App) VisibleCommands() []Command { + ret := []Command{} + for _, command := range a.Commands { + if !command.Hidden { + ret = append(ret, command) + } + } + return ret +} + +// VisibleFlags returns a slice of the Flags with Hidden=false +func (a *App) VisibleFlags() []Flag { + return visibleFlags(a.Flags) +} + +func (a *App) hasFlag(flag Flag) bool { + for _, f := range a.Flags { + if flag == f { + return true + } + } + + return false +} + +func (a *App) errWriter() io.Writer { + + // When the app ErrWriter is nil use the package level one. + if a.ErrWriter == nil { + return ErrWriter + } + + return a.ErrWriter +} + +func (a *App) appendFlag(flag Flag) { + if !a.hasFlag(flag) { + a.Flags = append(a.Flags, flag) + } +} + +// Author represents someone who has contributed to a cli project. +type Author struct { + Name string // The Authors name + Email string // The Authors email +} + +// String makes Author comply to the Stringer interface, to allow an easy print in the templating process +func (a Author) String() string { + e := "" + if a.Email != "" { + e = " <" + a.Email + ">" + } + + return fmt.Sprintf("%v%v", a.Name, e) +} + +// HandleAction attempts to figure out which Action signature was used. If +// it's an ActionFunc or a func with the legacy signature for Action, the func +// is run! +func HandleAction(action interface{}, context *Context) (err error) { + if a, ok := action.(ActionFunc); ok { + return a(context) + } else if a, ok := action.(func(*Context) error); ok { + return a(context) + } else if a, ok := action.(func(*Context)); ok { // deprecated function signature + a(context) + return nil + } else { + return errInvalidActionType + } +} diff --git a/vendor/github.com/urfave/cli/appveyor.yml b/vendor/github.com/urfave/cli/appveyor.yml new file mode 100644 index 00000000..1e1489c3 --- /dev/null +++ b/vendor/github.com/urfave/cli/appveyor.yml @@ -0,0 +1,26 @@ +version: "{build}" + +os: Windows Server 2016 + +image: Visual Studio 2017 + +clone_folder: c:\gopath\src\github.com\urfave\cli + +environment: + GOPATH: C:\gopath + GOVERSION: 1.8.x + PYTHON: C:\Python36-x64 + PYTHON_VERSION: 3.6.x + PYTHON_ARCH: 64 + +install: +- set PATH=%GOPATH%\bin;C:\go\bin;%PATH% +- go version +- go env +- go get github.com/urfave/gfmrun/... +- go get -v -t ./... + +build_script: +- python runtests vet +- python runtests test +- python runtests gfmrun diff --git a/vendor/github.com/urfave/cli/category.go b/vendor/github.com/urfave/cli/category.go new file mode 100644 index 00000000..1a605502 --- /dev/null +++ b/vendor/github.com/urfave/cli/category.go @@ -0,0 +1,44 @@ +package cli + +// CommandCategories is a slice of *CommandCategory. +type CommandCategories []*CommandCategory + +// CommandCategory is a category containing commands. +type CommandCategory struct { + Name string + Commands Commands +} + +func (c CommandCategories) Less(i, j int) bool { + return c[i].Name < c[j].Name +} + +func (c CommandCategories) Len() int { + return len(c) +} + +func (c CommandCategories) Swap(i, j int) { + c[i], c[j] = c[j], c[i] +} + +// AddCommand adds a command to a category. +func (c CommandCategories) AddCommand(category string, command Command) CommandCategories { + for _, commandCategory := range c { + if commandCategory.Name == category { + commandCategory.Commands = append(commandCategory.Commands, command) + return c + } + } + return append(c, &CommandCategory{Name: category, Commands: []Command{command}}) +} + +// VisibleCommands returns a slice of the Commands with Hidden=false +func (c *CommandCategory) VisibleCommands() []Command { + ret := []Command{} + for _, command := range c.Commands { + if !command.Hidden { + ret = append(ret, command) + } + } + return ret +} diff --git a/vendor/github.com/urfave/cli/cli.go b/vendor/github.com/urfave/cli/cli.go new file mode 100644 index 00000000..90c07eb8 --- /dev/null +++ b/vendor/github.com/urfave/cli/cli.go @@ -0,0 +1,22 @@ +// Package cli provides a minimal framework for creating and organizing command line +// Go applications. cli is designed to be easy to understand and write, the most simple +// cli application can be written as follows: +// func main() { +// cli.NewApp().Run(os.Args) +// } +// +// Of course this application does not do much, so let's make this an actual application: +// func main() { +// app := cli.NewApp() +// app.Name = "greet" +// app.Usage = "say a greeting" +// app.Action = func(c *cli.Context) error { +// println("Greetings") +// return nil +// } +// +// app.Run(os.Args) +// } +package cli + +//go:generate python ./generate-flag-types cli -i flag-types.json -o flag_generated.go diff --git a/vendor/github.com/urfave/cli/command.go b/vendor/github.com/urfave/cli/command.go new file mode 100644 index 00000000..23de2944 --- /dev/null +++ b/vendor/github.com/urfave/cli/command.go @@ -0,0 +1,304 @@ +package cli + +import ( + "fmt" + "io/ioutil" + "sort" + "strings" +) + +// Command is a subcommand for a cli.App. +type Command struct { + // The name of the command + Name string + // short name of the command. Typically one character (deprecated, use `Aliases`) + ShortName string + // A list of aliases for the command + Aliases []string + // A short description of the usage of this command + Usage string + // Custom text to show on USAGE section of help + UsageText string + // A longer explanation of how the command works + Description string + // A short description of the arguments of this command + ArgsUsage string + // The category the command is part of + Category string + // The function to call when checking for bash command completions + BashComplete BashCompleteFunc + // An action to execute before any sub-subcommands are run, but after the context is ready + // If a non-nil error is returned, no sub-subcommands are run + Before BeforeFunc + // An action to execute after any subcommands are run, but after the subcommand has finished + // It is run even if Action() panics + After AfterFunc + // The function to call when this command is invoked + Action interface{} + // TODO: replace `Action: interface{}` with `Action: ActionFunc` once some kind + // of deprecation period has passed, maybe? + + // Execute this function if a usage error occurs. + OnUsageError OnUsageErrorFunc + // List of child commands + Subcommands Commands + // List of flags to parse + Flags []Flag + // Treat all flags as normal arguments if true + SkipFlagParsing bool + // Skip argument reordering which attempts to move flags before arguments, + // but only works if all flags appear after all arguments. This behavior was + // removed n version 2 since it only works under specific conditions so we + // backport here by exposing it as an option for compatibility. + SkipArgReorder bool + // Boolean to hide built-in help command + HideHelp bool + // Boolean to hide this command from help or completion + Hidden bool + + // Full name of command for help, defaults to full command name, including parent commands. + HelpName string + commandNamePath []string + + // CustomHelpTemplate the text template for the command help topic. + // cli.go uses text/template to render templates. You can + // render custom help text by setting this variable. + CustomHelpTemplate string +} + +type CommandsByName []Command + +func (c CommandsByName) Len() int { + return len(c) +} + +func (c CommandsByName) Less(i, j int) bool { + return c[i].Name < c[j].Name +} + +func (c CommandsByName) Swap(i, j int) { + c[i], c[j] = c[j], c[i] +} + +// FullName returns the full name of the command. +// For subcommands this ensures that parent commands are part of the command path +func (c Command) FullName() string { + if c.commandNamePath == nil { + return c.Name + } + return strings.Join(c.commandNamePath, " ") +} + +// Commands is a slice of Command +type Commands []Command + +// Run invokes the command given the context, parses ctx.Args() to generate command-specific flags +func (c Command) Run(ctx *Context) (err error) { + if len(c.Subcommands) > 0 { + return c.startApp(ctx) + } + + if !c.HideHelp && (HelpFlag != BoolFlag{}) { + // append help to flags + c.Flags = append( + c.Flags, + HelpFlag, + ) + } + + set, err := flagSet(c.Name, c.Flags) + if err != nil { + return err + } + set.SetOutput(ioutil.Discard) + + if c.SkipFlagParsing { + err = set.Parse(append([]string{"--"}, ctx.Args().Tail()...)) + } else if !c.SkipArgReorder { + firstFlagIndex := -1 + terminatorIndex := -1 + for index, arg := range ctx.Args() { + if arg == "--" { + terminatorIndex = index + break + } else if arg == "-" { + // Do nothing. A dash alone is not really a flag. + continue + } else if strings.HasPrefix(arg, "-") && firstFlagIndex == -1 { + firstFlagIndex = index + } + } + + if firstFlagIndex > -1 { + args := ctx.Args() + regularArgs := make([]string, len(args[1:firstFlagIndex])) + copy(regularArgs, args[1:firstFlagIndex]) + + var flagArgs []string + if terminatorIndex > -1 { + flagArgs = args[firstFlagIndex:terminatorIndex] + regularArgs = append(regularArgs, args[terminatorIndex:]...) + } else { + flagArgs = args[firstFlagIndex:] + } + + err = set.Parse(append(flagArgs, regularArgs...)) + } else { + err = set.Parse(ctx.Args().Tail()) + } + } else { + err = set.Parse(ctx.Args().Tail()) + } + + nerr := normalizeFlags(c.Flags, set) + if nerr != nil { + fmt.Fprintln(ctx.App.Writer, nerr) + fmt.Fprintln(ctx.App.Writer) + ShowCommandHelp(ctx, c.Name) + return nerr + } + + context := NewContext(ctx.App, set, ctx) + context.Command = c + if checkCommandCompletions(context, c.Name) { + return nil + } + + if err != nil { + if c.OnUsageError != nil { + err := c.OnUsageError(context, err, false) + HandleExitCoder(err) + return err + } + fmt.Fprintln(context.App.Writer, "Incorrect Usage:", err.Error()) + fmt.Fprintln(context.App.Writer) + ShowCommandHelp(context, c.Name) + return err + } + + if checkCommandHelp(context, c.Name) { + return nil + } + + if c.After != nil { + defer func() { + afterErr := c.After(context) + if afterErr != nil { + HandleExitCoder(err) + if err != nil { + err = NewMultiError(err, afterErr) + } else { + err = afterErr + } + } + }() + } + + if c.Before != nil { + err = c.Before(context) + if err != nil { + ShowCommandHelp(context, c.Name) + HandleExitCoder(err) + return err + } + } + + if c.Action == nil { + c.Action = helpSubcommand.Action + } + + err = HandleAction(c.Action, context) + + if err != nil { + HandleExitCoder(err) + } + return err +} + +// Names returns the names including short names and aliases. +func (c Command) Names() []string { + names := []string{c.Name} + + if c.ShortName != "" { + names = append(names, c.ShortName) + } + + return append(names, c.Aliases...) +} + +// HasName returns true if Command.Name or Command.ShortName matches given name +func (c Command) HasName(name string) bool { + for _, n := range c.Names() { + if n == name { + return true + } + } + return false +} + +func (c Command) startApp(ctx *Context) error { + app := NewApp() + app.Metadata = ctx.App.Metadata + // set the name and usage + app.Name = fmt.Sprintf("%s %s", ctx.App.Name, c.Name) + if c.HelpName == "" { + app.HelpName = c.HelpName + } else { + app.HelpName = app.Name + } + + app.Usage = c.Usage + app.Description = c.Description + app.ArgsUsage = c.ArgsUsage + + // set CommandNotFound + app.CommandNotFound = ctx.App.CommandNotFound + app.CustomAppHelpTemplate = c.CustomHelpTemplate + + // set the flags and commands + app.Commands = c.Subcommands + app.Flags = c.Flags + app.HideHelp = c.HideHelp + + app.Version = ctx.App.Version + app.HideVersion = ctx.App.HideVersion + app.Compiled = ctx.App.Compiled + app.Author = ctx.App.Author + app.Email = ctx.App.Email + app.Writer = ctx.App.Writer + app.ErrWriter = ctx.App.ErrWriter + + app.categories = CommandCategories{} + for _, command := range c.Subcommands { + app.categories = app.categories.AddCommand(command.Category, command) + } + + sort.Sort(app.categories) + + // bash completion + app.EnableBashCompletion = ctx.App.EnableBashCompletion + if c.BashComplete != nil { + app.BashComplete = c.BashComplete + } + + // set the actions + app.Before = c.Before + app.After = c.After + if c.Action != nil { + app.Action = c.Action + } else { + app.Action = helpSubcommand.Action + } + app.OnUsageError = c.OnUsageError + + for index, cc := range app.Commands { + app.Commands[index].commandNamePath = []string{c.Name, cc.Name} + } + + return app.RunAsSubcommand(ctx) +} + +// VisibleFlags returns a slice of the Flags with Hidden=false +func (c Command) VisibleFlags() []Flag { + return visibleFlags(c.Flags) +} diff --git a/vendor/github.com/urfave/cli/context.go b/vendor/github.com/urfave/cli/context.go new file mode 100644 index 00000000..db94191e --- /dev/null +++ b/vendor/github.com/urfave/cli/context.go @@ -0,0 +1,278 @@ +package cli + +import ( + "errors" + "flag" + "reflect" + "strings" + "syscall" +) + +// Context is a type that is passed through to +// each Handler action in a cli application. Context +// can be used to retrieve context-specific Args and +// parsed command-line options. +type Context struct { + App *App + Command Command + shellComplete bool + flagSet *flag.FlagSet + setFlags map[string]bool + parentContext *Context +} + +// NewContext creates a new context. For use in when invoking an App or Command action. +func NewContext(app *App, set *flag.FlagSet, parentCtx *Context) *Context { + c := &Context{App: app, flagSet: set, parentContext: parentCtx} + + if parentCtx != nil { + c.shellComplete = parentCtx.shellComplete + } + + return c +} + +// NumFlags returns the number of flags set +func (c *Context) NumFlags() int { + return c.flagSet.NFlag() +} + +// Set sets a context flag to a value. +func (c *Context) Set(name, value string) error { + c.setFlags = nil + return c.flagSet.Set(name, value) +} + +// GlobalSet sets a context flag to a value on the global flagset +func (c *Context) GlobalSet(name, value string) error { + globalContext(c).setFlags = nil + return globalContext(c).flagSet.Set(name, value) +} + +// IsSet determines if the flag was actually set +func (c *Context) IsSet(name string) bool { + if c.setFlags == nil { + c.setFlags = make(map[string]bool) + + c.flagSet.Visit(func(f *flag.Flag) { + c.setFlags[f.Name] = true + }) + + c.flagSet.VisitAll(func(f *flag.Flag) { + if _, ok := c.setFlags[f.Name]; ok { + return + } + c.setFlags[f.Name] = false + }) + + // XXX hack to support IsSet for flags with EnvVar + // + // There isn't an easy way to do this with the current implementation since + // whether a flag was set via an environment variable is very difficult to + // determine here. Instead, we intend to introduce a backwards incompatible + // change in version 2 to add `IsSet` to the Flag interface to push the + // responsibility closer to where the information required to determine + // whether a flag is set by non-standard means such as environment + // variables is avaliable. + // + // See https://github.com/urfave/cli/issues/294 for additional discussion + flags := c.Command.Flags + if c.Command.Name == "" { // cannot == Command{} since it contains slice types + if c.App != nil { + flags = c.App.Flags + } + } + for _, f := range flags { + eachName(f.GetName(), func(name string) { + if isSet, ok := c.setFlags[name]; isSet || !ok { + return + } + + val := reflect.ValueOf(f) + if val.Kind() == reflect.Ptr { + val = val.Elem() + } + + envVarValue := val.FieldByName("EnvVar") + if !envVarValue.IsValid() { + return + } + + eachName(envVarValue.String(), func(envVar string) { + envVar = strings.TrimSpace(envVar) + if _, ok := syscall.Getenv(envVar); ok { + c.setFlags[name] = true + return + } + }) + }) + } + } + + return c.setFlags[name] +} + +// GlobalIsSet determines if the global flag was actually set +func (c *Context) GlobalIsSet(name string) bool { + ctx := c + if ctx.parentContext != nil { + ctx = ctx.parentContext + } + + for ; ctx != nil; ctx = ctx.parentContext { + if ctx.IsSet(name) { + return true + } + } + return false +} + +// FlagNames returns a slice of flag names used in this context. +func (c *Context) FlagNames() (names []string) { + for _, flag := range c.Command.Flags { + name := strings.Split(flag.GetName(), ",")[0] + if name == "help" { + continue + } + names = append(names, name) + } + return +} + +// GlobalFlagNames returns a slice of global flag names used by the app. +func (c *Context) GlobalFlagNames() (names []string) { + for _, flag := range c.App.Flags { + name := strings.Split(flag.GetName(), ",")[0] + if name == "help" || name == "version" { + continue + } + names = append(names, name) + } + return +} + +// Parent returns the parent context, if any +func (c *Context) Parent() *Context { + return c.parentContext +} + +// value returns the value of the flag coressponding to `name` +func (c *Context) value(name string) interface{} { + return c.flagSet.Lookup(name).Value.(flag.Getter).Get() +} + +// Args contains apps console arguments +type Args []string + +// Args returns the command line arguments associated with the context. +func (c *Context) Args() Args { + args := Args(c.flagSet.Args()) + return args +} + +// NArg returns the number of the command line arguments. +func (c *Context) NArg() int { + return len(c.Args()) +} + +// Get returns the nth argument, or else a blank string +func (a Args) Get(n int) string { + if len(a) > n { + return a[n] + } + return "" +} + +// First returns the first argument, or else a blank string +func (a Args) First() string { + return a.Get(0) +} + +// Tail returns the rest of the arguments (not the first one) +// or else an empty string slice +func (a Args) Tail() []string { + if len(a) >= 2 { + return []string(a)[1:] + } + return []string{} +} + +// Present checks if there are any arguments present +func (a Args) Present() bool { + return len(a) != 0 +} + +// Swap swaps arguments at the given indexes +func (a Args) Swap(from, to int) error { + if from >= len(a) || to >= len(a) { + return errors.New("index out of range") + } + a[from], a[to] = a[to], a[from] + return nil +} + +func globalContext(ctx *Context) *Context { + if ctx == nil { + return nil + } + + for { + if ctx.parentContext == nil { + return ctx + } + ctx = ctx.parentContext + } +} + +func lookupGlobalFlagSet(name string, ctx *Context) *flag.FlagSet { + if ctx.parentContext != nil { + ctx = ctx.parentContext + } + for ; ctx != nil; ctx = ctx.parentContext { + if f := ctx.flagSet.Lookup(name); f != nil { + return ctx.flagSet + } + } + return nil +} + +func copyFlag(name string, ff *flag.Flag, set *flag.FlagSet) { + switch ff.Value.(type) { + case *StringSlice: + default: + set.Set(name, ff.Value.String()) + } +} + +func normalizeFlags(flags []Flag, set *flag.FlagSet) error { + visited := make(map[string]bool) + set.Visit(func(f *flag.Flag) { + visited[f.Name] = true + }) + for _, f := range flags { + parts := strings.Split(f.GetName(), ",") + if len(parts) == 1 { + continue + } + var ff *flag.Flag + for _, name := range parts { + name = strings.Trim(name, " ") + if visited[name] { + if ff != nil { + return errors.New("Cannot use two forms of the same flag: " + name + " " + ff.Name) + } + ff = set.Lookup(name) + } + } + if ff == nil { + continue + } + for _, name := range parts { + name = strings.Trim(name, " ") + if !visited[name] { + copyFlag(name, ff, set) + } + } + } + return nil +} diff --git a/vendor/github.com/urfave/cli/errors.go b/vendor/github.com/urfave/cli/errors.go new file mode 100644 index 00000000..562b2953 --- /dev/null +++ b/vendor/github.com/urfave/cli/errors.go @@ -0,0 +1,115 @@ +package cli + +import ( + "fmt" + "io" + "os" + "strings" +) + +// OsExiter is the function used when the app exits. If not set defaults to os.Exit. +var OsExiter = os.Exit + +// ErrWriter is used to write errors to the user. This can be anything +// implementing the io.Writer interface and defaults to os.Stderr. +var ErrWriter io.Writer = os.Stderr + +// MultiError is an error that wraps multiple errors. +type MultiError struct { + Errors []error +} + +// NewMultiError creates a new MultiError. Pass in one or more errors. +func NewMultiError(err ...error) MultiError { + return MultiError{Errors: err} +} + +// Error implements the error interface. +func (m MultiError) Error() string { + errs := make([]string, len(m.Errors)) + for i, err := range m.Errors { + errs[i] = err.Error() + } + + return strings.Join(errs, "\n") +} + +type ErrorFormatter interface { + Format(s fmt.State, verb rune) +} + +// ExitCoder is the interface checked by `App` and `Command` for a custom exit +// code +type ExitCoder interface { + error + ExitCode() int +} + +// ExitError fulfills both the builtin `error` interface and `ExitCoder` +type ExitError struct { + exitCode int + message interface{} +} + +// NewExitError makes a new *ExitError +func NewExitError(message interface{}, exitCode int) *ExitError { + return &ExitError{ + exitCode: exitCode, + message: message, + } +} + +// Error returns the string message, fulfilling the interface required by +// `error` +func (ee *ExitError) Error() string { + return fmt.Sprintf("%v", ee.message) +} + +// ExitCode returns the exit code, fulfilling the interface required by +// `ExitCoder` +func (ee *ExitError) ExitCode() int { + return ee.exitCode +} + +// HandleExitCoder checks if the error fulfills the ExitCoder interface, and if +// so prints the error to stderr (if it is non-empty) and calls OsExiter with the +// given exit code. If the given error is a MultiError, then this func is +// called on all members of the Errors slice and calls OsExiter with the last exit code. +func HandleExitCoder(err error) { + if err == nil { + return + } + + if exitErr, ok := err.(ExitCoder); ok { + if err.Error() != "" { + if _, ok := exitErr.(ErrorFormatter); ok { + fmt.Fprintf(ErrWriter, "%+v\n", err) + } else { + fmt.Fprintln(ErrWriter, err) + } + } + OsExiter(exitErr.ExitCode()) + return + } + + if multiErr, ok := err.(MultiError); ok { + code := handleMultiError(multiErr) + OsExiter(code) + return + } +} + +func handleMultiError(multiErr MultiError) int { + code := 1 + for _, merr := range multiErr.Errors { + if multiErr2, ok := merr.(MultiError); ok { + code = handleMultiError(multiErr2) + } else { + fmt.Fprintln(ErrWriter, merr) + if exitErr, ok := merr.(ExitCoder); ok { + code = exitErr.ExitCode() + } + } + } + return code +} diff --git a/vendor/github.com/urfave/cli/flag-types.json b/vendor/github.com/urfave/cli/flag-types.json new file mode 100644 index 00000000..12231078 --- /dev/null +++ b/vendor/github.com/urfave/cli/flag-types.json @@ -0,0 +1,93 @@ +[ + { + "name": "Bool", + "type": "bool", + "value": false, + "context_default": "false", + "parser": "strconv.ParseBool(f.Value.String())" + }, + { + "name": "BoolT", + "type": "bool", + "value": false, + "doctail": " that is true by default", + "context_default": "false", + "parser": "strconv.ParseBool(f.Value.String())" + }, + { + "name": "Duration", + "type": "time.Duration", + "doctail": " (see https://golang.org/pkg/time/#ParseDuration)", + "context_default": "0", + "parser": "time.ParseDuration(f.Value.String())" + }, + { + "name": "Float64", + "type": "float64", + "context_default": "0", + "parser": "strconv.ParseFloat(f.Value.String(), 64)" + }, + { + "name": "Generic", + "type": "Generic", + "dest": false, + "context_default": "nil", + "context_type": "interface{}" + }, + { + "name": "Int64", + "type": "int64", + "context_default": "0", + "parser": "strconv.ParseInt(f.Value.String(), 0, 64)" + }, + { + "name": "Int", + "type": "int", + "context_default": "0", + "parser": "strconv.ParseInt(f.Value.String(), 0, 64)", + "parser_cast": "int(parsed)" + }, + { + "name": "IntSlice", + "type": "*IntSlice", + "dest": false, + "context_default": "nil", + "context_type": "[]int", + "parser": "(f.Value.(*IntSlice)).Value(), error(nil)" + }, + { + "name": "Int64Slice", + "type": "*Int64Slice", + "dest": false, + "context_default": "nil", + "context_type": "[]int64", + "parser": "(f.Value.(*Int64Slice)).Value(), error(nil)" + }, + { + "name": "String", + "type": "string", + "context_default": "\"\"", + "parser": "f.Value.String(), error(nil)" + }, + { + "name": "StringSlice", + "type": "*StringSlice", + "dest": false, + "context_default": "nil", + "context_type": "[]string", + "parser": "(f.Value.(*StringSlice)).Value(), error(nil)" + }, + { + "name": "Uint64", + "type": "uint64", + "context_default": "0", + "parser": "strconv.ParseUint(f.Value.String(), 0, 64)" + }, + { + "name": "Uint", + "type": "uint", + "context_default": "0", + "parser": "strconv.ParseUint(f.Value.String(), 0, 64)", + "parser_cast": "uint(parsed)" + } +] diff --git a/vendor/github.com/urfave/cli/flag.go b/vendor/github.com/urfave/cli/flag.go new file mode 100644 index 00000000..877ff352 --- /dev/null +++ b/vendor/github.com/urfave/cli/flag.go @@ -0,0 +1,799 @@ +package cli + +import ( + "flag" + "fmt" + "reflect" + "runtime" + "strconv" + "strings" + "syscall" + "time" +) + +const defaultPlaceholder = "value" + +// BashCompletionFlag enables bash-completion for all commands and subcommands +var BashCompletionFlag Flag = BoolFlag{ + Name: "generate-bash-completion", + Hidden: true, +} + +// VersionFlag prints the version for the application +var VersionFlag Flag = BoolFlag{ + Name: "version, v", + Usage: "print the version", +} + +// HelpFlag prints the help for all commands and subcommands +// Set to the zero value (BoolFlag{}) to disable flag -- keeps subcommand +// unless HideHelp is set to true) +var HelpFlag Flag = BoolFlag{ + Name: "help, h", + Usage: "show help", +} + +// FlagStringer converts a flag definition to a string. This is used by help +// to display a flag. +var FlagStringer FlagStringFunc = stringifyFlag + +// FlagsByName is a slice of Flag. +type FlagsByName []Flag + +func (f FlagsByName) Len() int { + return len(f) +} + +func (f FlagsByName) Less(i, j int) bool { + return f[i].GetName() < f[j].GetName() +} + +func (f FlagsByName) Swap(i, j int) { + f[i], f[j] = f[j], f[i] +} + +// Flag is a common interface related to parsing flags in cli. +// For more advanced flag parsing techniques, it is recommended that +// this interface be implemented. +type Flag interface { + fmt.Stringer + // Apply Flag settings to the given flag set + Apply(*flag.FlagSet) + GetName() string +} + +// errorableFlag is an interface that allows us to return errors during apply +// it allows flags defined in this library to return errors in a fashion backwards compatible +// TODO remove in v2 and modify the existing Flag interface to return errors +type errorableFlag interface { + Flag + + ApplyWithError(*flag.FlagSet) error +} + +func flagSet(name string, flags []Flag) (*flag.FlagSet, error) { + set := flag.NewFlagSet(name, flag.ContinueOnError) + + for _, f := range flags { + //TODO remove in v2 when errorableFlag is removed + if ef, ok := f.(errorableFlag); ok { + if err := ef.ApplyWithError(set); err != nil { + return nil, err + } + } else { + f.Apply(set) + } + } + return set, nil +} + +func eachName(longName string, fn func(string)) { + parts := strings.Split(longName, ",") + for _, name := range parts { + name = strings.Trim(name, " ") + fn(name) + } +} + +// Generic is a generic parseable type identified by a specific flag +type Generic interface { + Set(value string) error + String() string +} + +// Apply takes the flagset and calls Set on the generic flag with the value +// provided by the user for parsing by the flag +// Ignores parsing errors +func (f GenericFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError takes the flagset and calls Set on the generic flag with the value +// provided by the user for parsing by the flag +func (f GenericFlag) ApplyWithError(set *flag.FlagSet) error { + val := f.Value + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + if err := val.Set(envVal); err != nil { + return fmt.Errorf("could not parse %s as value for flag %s: %s", envVal, f.Name, err) + } + break + } + } + } + + eachName(f.Name, func(name string) { + set.Var(f.Value, name, f.Usage) + }) + + return nil +} + +// StringSlice is an opaque type for []string to satisfy flag.Value and flag.Getter +type StringSlice []string + +// Set appends the string value to the list of values +func (f *StringSlice) Set(value string) error { + *f = append(*f, value) + return nil +} + +// String returns a readable representation of this value (for usage defaults) +func (f *StringSlice) String() string { + return fmt.Sprintf("%s", *f) +} + +// Value returns the slice of strings set by this flag +func (f *StringSlice) Value() []string { + return *f +} + +// Get returns the slice of strings set by this flag +func (f *StringSlice) Get() interface{} { + return *f +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f StringSliceFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f StringSliceFlag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + newVal := &StringSlice{} + for _, s := range strings.Split(envVal, ",") { + s = strings.TrimSpace(s) + if err := newVal.Set(s); err != nil { + return fmt.Errorf("could not parse %s as string value for flag %s: %s", envVal, f.Name, err) + } + } + f.Value = newVal + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Value == nil { + f.Value = &StringSlice{} + } + set.Var(f.Value, name, f.Usage) + }) + + return nil +} + +// IntSlice is an opaque type for []int to satisfy flag.Value and flag.Getter +type IntSlice []int + +// Set parses the value into an integer and appends it to the list of values +func (f *IntSlice) Set(value string) error { + tmp, err := strconv.Atoi(value) + if err != nil { + return err + } + *f = append(*f, tmp) + return nil +} + +// String returns a readable representation of this value (for usage defaults) +func (f *IntSlice) String() string { + return fmt.Sprintf("%#v", *f) +} + +// Value returns the slice of ints set by this flag +func (f *IntSlice) Value() []int { + return *f +} + +// Get returns the slice of ints set by this flag +func (f *IntSlice) Get() interface{} { + return *f +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f IntSliceFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f IntSliceFlag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + newVal := &IntSlice{} + for _, s := range strings.Split(envVal, ",") { + s = strings.TrimSpace(s) + if err := newVal.Set(s); err != nil { + return fmt.Errorf("could not parse %s as int slice value for flag %s: %s", envVal, f.Name, err) + } + } + f.Value = newVal + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Value == nil { + f.Value = &IntSlice{} + } + set.Var(f.Value, name, f.Usage) + }) + + return nil +} + +// Int64Slice is an opaque type for []int to satisfy flag.Value and flag.Getter +type Int64Slice []int64 + +// Set parses the value into an integer and appends it to the list of values +func (f *Int64Slice) Set(value string) error { + tmp, err := strconv.ParseInt(value, 10, 64) + if err != nil { + return err + } + *f = append(*f, tmp) + return nil +} + +// String returns a readable representation of this value (for usage defaults) +func (f *Int64Slice) String() string { + return fmt.Sprintf("%#v", *f) +} + +// Value returns the slice of ints set by this flag +func (f *Int64Slice) Value() []int64 { + return *f +} + +// Get returns the slice of ints set by this flag +func (f *Int64Slice) Get() interface{} { + return *f +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f Int64SliceFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f Int64SliceFlag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + newVal := &Int64Slice{} + for _, s := range strings.Split(envVal, ",") { + s = strings.TrimSpace(s) + if err := newVal.Set(s); err != nil { + return fmt.Errorf("could not parse %s as int64 slice value for flag %s: %s", envVal, f.Name, err) + } + } + f.Value = newVal + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Value == nil { + f.Value = &Int64Slice{} + } + set.Var(f.Value, name, f.Usage) + }) + return nil +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f BoolFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f BoolFlag) ApplyWithError(set *flag.FlagSet) error { + val := false + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + if envVal == "" { + val = false + break + } + + envValBool, err := strconv.ParseBool(envVal) + if err != nil { + return fmt.Errorf("could not parse %s as bool value for flag %s: %s", envVal, f.Name, err) + } + + val = envValBool + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Destination != nil { + set.BoolVar(f.Destination, name, val, f.Usage) + return + } + set.Bool(name, val, f.Usage) + }) + + return nil +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f BoolTFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f BoolTFlag) ApplyWithError(set *flag.FlagSet) error { + val := true + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + if envVal == "" { + val = false + break + } + + envValBool, err := strconv.ParseBool(envVal) + if err != nil { + return fmt.Errorf("could not parse %s as bool value for flag %s: %s", envVal, f.Name, err) + } + + val = envValBool + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Destination != nil { + set.BoolVar(f.Destination, name, val, f.Usage) + return + } + set.Bool(name, val, f.Usage) + }) + + return nil +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f StringFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f StringFlag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + f.Value = envVal + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Destination != nil { + set.StringVar(f.Destination, name, f.Value, f.Usage) + return + } + set.String(name, f.Value, f.Usage) + }) + + return nil +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f IntFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f IntFlag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + envValInt, err := strconv.ParseInt(envVal, 0, 64) + if err != nil { + return fmt.Errorf("could not parse %s as int value for flag %s: %s", envVal, f.Name, err) + } + f.Value = int(envValInt) + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Destination != nil { + set.IntVar(f.Destination, name, f.Value, f.Usage) + return + } + set.Int(name, f.Value, f.Usage) + }) + + return nil +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f Int64Flag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f Int64Flag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + envValInt, err := strconv.ParseInt(envVal, 0, 64) + if err != nil { + return fmt.Errorf("could not parse %s as int value for flag %s: %s", envVal, f.Name, err) + } + + f.Value = envValInt + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Destination != nil { + set.Int64Var(f.Destination, name, f.Value, f.Usage) + return + } + set.Int64(name, f.Value, f.Usage) + }) + + return nil +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f UintFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f UintFlag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + envValInt, err := strconv.ParseUint(envVal, 0, 64) + if err != nil { + return fmt.Errorf("could not parse %s as uint value for flag %s: %s", envVal, f.Name, err) + } + + f.Value = uint(envValInt) + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Destination != nil { + set.UintVar(f.Destination, name, f.Value, f.Usage) + return + } + set.Uint(name, f.Value, f.Usage) + }) + + return nil +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f Uint64Flag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f Uint64Flag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + envValInt, err := strconv.ParseUint(envVal, 0, 64) + if err != nil { + return fmt.Errorf("could not parse %s as uint64 value for flag %s: %s", envVal, f.Name, err) + } + + f.Value = uint64(envValInt) + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Destination != nil { + set.Uint64Var(f.Destination, name, f.Value, f.Usage) + return + } + set.Uint64(name, f.Value, f.Usage) + }) + + return nil +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f DurationFlag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f DurationFlag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + envValDuration, err := time.ParseDuration(envVal) + if err != nil { + return fmt.Errorf("could not parse %s as duration for flag %s: %s", envVal, f.Name, err) + } + + f.Value = envValDuration + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Destination != nil { + set.DurationVar(f.Destination, name, f.Value, f.Usage) + return + } + set.Duration(name, f.Value, f.Usage) + }) + + return nil +} + +// Apply populates the flag given the flag set and environment +// Ignores errors +func (f Float64Flag) Apply(set *flag.FlagSet) { + f.ApplyWithError(set) +} + +// ApplyWithError populates the flag given the flag set and environment +func (f Float64Flag) ApplyWithError(set *flag.FlagSet) error { + if f.EnvVar != "" { + for _, envVar := range strings.Split(f.EnvVar, ",") { + envVar = strings.TrimSpace(envVar) + if envVal, ok := syscall.Getenv(envVar); ok { + envValFloat, err := strconv.ParseFloat(envVal, 10) + if err != nil { + return fmt.Errorf("could not parse %s as float64 value for flag %s: %s", envVal, f.Name, err) + } + + f.Value = float64(envValFloat) + break + } + } + } + + eachName(f.Name, func(name string) { + if f.Destination != nil { + set.Float64Var(f.Destination, name, f.Value, f.Usage) + return + } + set.Float64(name, f.Value, f.Usage) + }) + + return nil +} + +func visibleFlags(fl []Flag) []Flag { + visible := []Flag{} + for _, flag := range fl { + field := flagValue(flag).FieldByName("Hidden") + if !field.IsValid() || !field.Bool() { + visible = append(visible, flag) + } + } + return visible +} + +func prefixFor(name string) (prefix string) { + if len(name) == 1 { + prefix = "-" + } else { + prefix = "--" + } + + return +} + +// Returns the placeholder, if any, and the unquoted usage string. +func unquoteUsage(usage string) (string, string) { + for i := 0; i < len(usage); i++ { + if usage[i] == '`' { + for j := i + 1; j < len(usage); j++ { + if usage[j] == '`' { + name := usage[i+1 : j] + usage = usage[:i] + name + usage[j+1:] + return name, usage + } + } + break + } + } + return "", usage +} + +func prefixedNames(fullName, placeholder string) string { + var prefixed string + parts := strings.Split(fullName, ",") + for i, name := range parts { + name = strings.Trim(name, " ") + prefixed += prefixFor(name) + name + if placeholder != "" { + prefixed += " " + placeholder + } + if i < len(parts)-1 { + prefixed += ", " + } + } + return prefixed +} + +func withEnvHint(envVar, str string) string { + envText := "" + if envVar != "" { + prefix := "$" + suffix := "" + sep := ", $" + if runtime.GOOS == "windows" { + prefix = "%" + suffix = "%" + sep = "%, %" + } + envText = fmt.Sprintf(" [%s%s%s]", prefix, strings.Join(strings.Split(envVar, ","), sep), suffix) + } + return str + envText +} + +func flagValue(f Flag) reflect.Value { + fv := reflect.ValueOf(f) + for fv.Kind() == reflect.Ptr { + fv = reflect.Indirect(fv) + } + return fv +} + +func stringifyFlag(f Flag) string { + fv := flagValue(f) + + switch f.(type) { + case IntSliceFlag: + return withEnvHint(fv.FieldByName("EnvVar").String(), + stringifyIntSliceFlag(f.(IntSliceFlag))) + case Int64SliceFlag: + return withEnvHint(fv.FieldByName("EnvVar").String(), + stringifyInt64SliceFlag(f.(Int64SliceFlag))) + case StringSliceFlag: + return withEnvHint(fv.FieldByName("EnvVar").String(), + stringifyStringSliceFlag(f.(StringSliceFlag))) + } + + placeholder, usage := unquoteUsage(fv.FieldByName("Usage").String()) + + needsPlaceholder := false + defaultValueString := "" + + if val := fv.FieldByName("Value"); val.IsValid() { + needsPlaceholder = true + defaultValueString = fmt.Sprintf(" (default: %v)", val.Interface()) + + if val.Kind() == reflect.String && val.String() != "" { + defaultValueString = fmt.Sprintf(" (default: %q)", val.String()) + } + } + + if defaultValueString == " (default: )" { + defaultValueString = "" + } + + if needsPlaceholder && placeholder == "" { + placeholder = defaultPlaceholder + } + + usageWithDefault := strings.TrimSpace(fmt.Sprintf("%s%s", usage, defaultValueString)) + + return withEnvHint(fv.FieldByName("EnvVar").String(), + fmt.Sprintf("%s\t%s", prefixedNames(fv.FieldByName("Name").String(), placeholder), usageWithDefault)) +} + +func stringifyIntSliceFlag(f IntSliceFlag) string { + defaultVals := []string{} + if f.Value != nil && len(f.Value.Value()) > 0 { + for _, i := range f.Value.Value() { + defaultVals = append(defaultVals, fmt.Sprintf("%d", i)) + } + } + + return stringifySliceFlag(f.Usage, f.Name, defaultVals) +} + +func stringifyInt64SliceFlag(f Int64SliceFlag) string { + defaultVals := []string{} + if f.Value != nil && len(f.Value.Value()) > 0 { + for _, i := range f.Value.Value() { + defaultVals = append(defaultVals, fmt.Sprintf("%d", i)) + } + } + + return stringifySliceFlag(f.Usage, f.Name, defaultVals) +} + +func stringifyStringSliceFlag(f StringSliceFlag) string { + defaultVals := []string{} + if f.Value != nil && len(f.Value.Value()) > 0 { + for _, s := range f.Value.Value() { + if len(s) > 0 { + defaultVals = append(defaultVals, fmt.Sprintf("%q", s)) + } + } + } + + return stringifySliceFlag(f.Usage, f.Name, defaultVals) +} + +func stringifySliceFlag(usage, name string, defaultVals []string) string { + placeholder, usage := unquoteUsage(usage) + if placeholder == "" { + placeholder = defaultPlaceholder + } + + defaultVal := "" + if len(defaultVals) > 0 { + defaultVal = fmt.Sprintf(" (default: %s)", strings.Join(defaultVals, ", ")) + } + + usageWithDefault := strings.TrimSpace(fmt.Sprintf("%s%s", usage, defaultVal)) + return fmt.Sprintf("%s\t%s", prefixedNames(name, placeholder), usageWithDefault) +} diff --git a/vendor/github.com/urfave/cli/flag_generated.go b/vendor/github.com/urfave/cli/flag_generated.go new file mode 100644 index 00000000..491b6195 --- /dev/null +++ b/vendor/github.com/urfave/cli/flag_generated.go @@ -0,0 +1,627 @@ +package cli + +import ( + "flag" + "strconv" + "time" +) + +// WARNING: This file is generated! + +// BoolFlag is a flag with type bool +type BoolFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Destination *bool +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f BoolFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f BoolFlag) GetName() string { + return f.Name +} + +// Bool looks up the value of a local BoolFlag, returns +// false if not found +func (c *Context) Bool(name string) bool { + return lookupBool(name, c.flagSet) +} + +// GlobalBool looks up the value of a global BoolFlag, returns +// false if not found +func (c *Context) GlobalBool(name string) bool { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupBool(name, fs) + } + return false +} + +func lookupBool(name string, set *flag.FlagSet) bool { + f := set.Lookup(name) + if f != nil { + parsed, err := strconv.ParseBool(f.Value.String()) + if err != nil { + return false + } + return parsed + } + return false +} + +// BoolTFlag is a flag with type bool that is true by default +type BoolTFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Destination *bool +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f BoolTFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f BoolTFlag) GetName() string { + return f.Name +} + +// BoolT looks up the value of a local BoolTFlag, returns +// false if not found +func (c *Context) BoolT(name string) bool { + return lookupBoolT(name, c.flagSet) +} + +// GlobalBoolT looks up the value of a global BoolTFlag, returns +// false if not found +func (c *Context) GlobalBoolT(name string) bool { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupBoolT(name, fs) + } + return false +} + +func lookupBoolT(name string, set *flag.FlagSet) bool { + f := set.Lookup(name) + if f != nil { + parsed, err := strconv.ParseBool(f.Value.String()) + if err != nil { + return false + } + return parsed + } + return false +} + +// DurationFlag is a flag with type time.Duration (see https://golang.org/pkg/time/#ParseDuration) +type DurationFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value time.Duration + Destination *time.Duration +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f DurationFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f DurationFlag) GetName() string { + return f.Name +} + +// Duration looks up the value of a local DurationFlag, returns +// 0 if not found +func (c *Context) Duration(name string) time.Duration { + return lookupDuration(name, c.flagSet) +} + +// GlobalDuration looks up the value of a global DurationFlag, returns +// 0 if not found +func (c *Context) GlobalDuration(name string) time.Duration { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupDuration(name, fs) + } + return 0 +} + +func lookupDuration(name string, set *flag.FlagSet) time.Duration { + f := set.Lookup(name) + if f != nil { + parsed, err := time.ParseDuration(f.Value.String()) + if err != nil { + return 0 + } + return parsed + } + return 0 +} + +// Float64Flag is a flag with type float64 +type Float64Flag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value float64 + Destination *float64 +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f Float64Flag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f Float64Flag) GetName() string { + return f.Name +} + +// Float64 looks up the value of a local Float64Flag, returns +// 0 if not found +func (c *Context) Float64(name string) float64 { + return lookupFloat64(name, c.flagSet) +} + +// GlobalFloat64 looks up the value of a global Float64Flag, returns +// 0 if not found +func (c *Context) GlobalFloat64(name string) float64 { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupFloat64(name, fs) + } + return 0 +} + +func lookupFloat64(name string, set *flag.FlagSet) float64 { + f := set.Lookup(name) + if f != nil { + parsed, err := strconv.ParseFloat(f.Value.String(), 64) + if err != nil { + return 0 + } + return parsed + } + return 0 +} + +// GenericFlag is a flag with type Generic +type GenericFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value Generic +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f GenericFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f GenericFlag) GetName() string { + return f.Name +} + +// Generic looks up the value of a local GenericFlag, returns +// nil if not found +func (c *Context) Generic(name string) interface{} { + return lookupGeneric(name, c.flagSet) +} + +// GlobalGeneric looks up the value of a global GenericFlag, returns +// nil if not found +func (c *Context) GlobalGeneric(name string) interface{} { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupGeneric(name, fs) + } + return nil +} + +func lookupGeneric(name string, set *flag.FlagSet) interface{} { + f := set.Lookup(name) + if f != nil { + parsed, err := f.Value, error(nil) + if err != nil { + return nil + } + return parsed + } + return nil +} + +// Int64Flag is a flag with type int64 +type Int64Flag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value int64 + Destination *int64 +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f Int64Flag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f Int64Flag) GetName() string { + return f.Name +} + +// Int64 looks up the value of a local Int64Flag, returns +// 0 if not found +func (c *Context) Int64(name string) int64 { + return lookupInt64(name, c.flagSet) +} + +// GlobalInt64 looks up the value of a global Int64Flag, returns +// 0 if not found +func (c *Context) GlobalInt64(name string) int64 { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupInt64(name, fs) + } + return 0 +} + +func lookupInt64(name string, set *flag.FlagSet) int64 { + f := set.Lookup(name) + if f != nil { + parsed, err := strconv.ParseInt(f.Value.String(), 0, 64) + if err != nil { + return 0 + } + return parsed + } + return 0 +} + +// IntFlag is a flag with type int +type IntFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value int + Destination *int +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f IntFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f IntFlag) GetName() string { + return f.Name +} + +// Int looks up the value of a local IntFlag, returns +// 0 if not found +func (c *Context) Int(name string) int { + return lookupInt(name, c.flagSet) +} + +// GlobalInt looks up the value of a global IntFlag, returns +// 0 if not found +func (c *Context) GlobalInt(name string) int { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupInt(name, fs) + } + return 0 +} + +func lookupInt(name string, set *flag.FlagSet) int { + f := set.Lookup(name) + if f != nil { + parsed, err := strconv.ParseInt(f.Value.String(), 0, 64) + if err != nil { + return 0 + } + return int(parsed) + } + return 0 +} + +// IntSliceFlag is a flag with type *IntSlice +type IntSliceFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value *IntSlice +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f IntSliceFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f IntSliceFlag) GetName() string { + return f.Name +} + +// IntSlice looks up the value of a local IntSliceFlag, returns +// nil if not found +func (c *Context) IntSlice(name string) []int { + return lookupIntSlice(name, c.flagSet) +} + +// GlobalIntSlice looks up the value of a global IntSliceFlag, returns +// nil if not found +func (c *Context) GlobalIntSlice(name string) []int { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupIntSlice(name, fs) + } + return nil +} + +func lookupIntSlice(name string, set *flag.FlagSet) []int { + f := set.Lookup(name) + if f != nil { + parsed, err := (f.Value.(*IntSlice)).Value(), error(nil) + if err != nil { + return nil + } + return parsed + } + return nil +} + +// Int64SliceFlag is a flag with type *Int64Slice +type Int64SliceFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value *Int64Slice +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f Int64SliceFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f Int64SliceFlag) GetName() string { + return f.Name +} + +// Int64Slice looks up the value of a local Int64SliceFlag, returns +// nil if not found +func (c *Context) Int64Slice(name string) []int64 { + return lookupInt64Slice(name, c.flagSet) +} + +// GlobalInt64Slice looks up the value of a global Int64SliceFlag, returns +// nil if not found +func (c *Context) GlobalInt64Slice(name string) []int64 { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupInt64Slice(name, fs) + } + return nil +} + +func lookupInt64Slice(name string, set *flag.FlagSet) []int64 { + f := set.Lookup(name) + if f != nil { + parsed, err := (f.Value.(*Int64Slice)).Value(), error(nil) + if err != nil { + return nil + } + return parsed + } + return nil +} + +// StringFlag is a flag with type string +type StringFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value string + Destination *string +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f StringFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f StringFlag) GetName() string { + return f.Name +} + +// String looks up the value of a local StringFlag, returns +// "" if not found +func (c *Context) String(name string) string { + return lookupString(name, c.flagSet) +} + +// GlobalString looks up the value of a global StringFlag, returns +// "" if not found +func (c *Context) GlobalString(name string) string { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupString(name, fs) + } + return "" +} + +func lookupString(name string, set *flag.FlagSet) string { + f := set.Lookup(name) + if f != nil { + parsed, err := f.Value.String(), error(nil) + if err != nil { + return "" + } + return parsed + } + return "" +} + +// StringSliceFlag is a flag with type *StringSlice +type StringSliceFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value *StringSlice +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f StringSliceFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f StringSliceFlag) GetName() string { + return f.Name +} + +// StringSlice looks up the value of a local StringSliceFlag, returns +// nil if not found +func (c *Context) StringSlice(name string) []string { + return lookupStringSlice(name, c.flagSet) +} + +// GlobalStringSlice looks up the value of a global StringSliceFlag, returns +// nil if not found +func (c *Context) GlobalStringSlice(name string) []string { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupStringSlice(name, fs) + } + return nil +} + +func lookupStringSlice(name string, set *flag.FlagSet) []string { + f := set.Lookup(name) + if f != nil { + parsed, err := (f.Value.(*StringSlice)).Value(), error(nil) + if err != nil { + return nil + } + return parsed + } + return nil +} + +// Uint64Flag is a flag with type uint64 +type Uint64Flag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value uint64 + Destination *uint64 +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f Uint64Flag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f Uint64Flag) GetName() string { + return f.Name +} + +// Uint64 looks up the value of a local Uint64Flag, returns +// 0 if not found +func (c *Context) Uint64(name string) uint64 { + return lookupUint64(name, c.flagSet) +} + +// GlobalUint64 looks up the value of a global Uint64Flag, returns +// 0 if not found +func (c *Context) GlobalUint64(name string) uint64 { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupUint64(name, fs) + } + return 0 +} + +func lookupUint64(name string, set *flag.FlagSet) uint64 { + f := set.Lookup(name) + if f != nil { + parsed, err := strconv.ParseUint(f.Value.String(), 0, 64) + if err != nil { + return 0 + } + return parsed + } + return 0 +} + +// UintFlag is a flag with type uint +type UintFlag struct { + Name string + Usage string + EnvVar string + Hidden bool + Value uint + Destination *uint +} + +// String returns a readable representation of this value +// (for usage defaults) +func (f UintFlag) String() string { + return FlagStringer(f) +} + +// GetName returns the name of the flag +func (f UintFlag) GetName() string { + return f.Name +} + +// Uint looks up the value of a local UintFlag, returns +// 0 if not found +func (c *Context) Uint(name string) uint { + return lookupUint(name, c.flagSet) +} + +// GlobalUint looks up the value of a global UintFlag, returns +// 0 if not found +func (c *Context) GlobalUint(name string) uint { + if fs := lookupGlobalFlagSet(name, c); fs != nil { + return lookupUint(name, fs) + } + return 0 +} + +func lookupUint(name string, set *flag.FlagSet) uint { + f := set.Lookup(name) + if f != nil { + parsed, err := strconv.ParseUint(f.Value.String(), 0, 64) + if err != nil { + return 0 + } + return uint(parsed) + } + return 0 +} diff --git a/vendor/github.com/urfave/cli/funcs.go b/vendor/github.com/urfave/cli/funcs.go new file mode 100644 index 00000000..cba5e6cb --- /dev/null +++ b/vendor/github.com/urfave/cli/funcs.go @@ -0,0 +1,28 @@ +package cli + +// BashCompleteFunc is an action to execute when the bash-completion flag is set +type BashCompleteFunc func(*Context) + +// BeforeFunc is an action to execute before any subcommands are run, but after +// the context is ready if a non-nil error is returned, no subcommands are run +type BeforeFunc func(*Context) error + +// AfterFunc is an action to execute after any subcommands are run, but after the +// subcommand has finished it is run even if Action() panics +type AfterFunc func(*Context) error + +// ActionFunc is the action to execute when no subcommands are specified +type ActionFunc func(*Context) error + +// CommandNotFoundFunc is executed if the proper command cannot be found +type CommandNotFoundFunc func(*Context, string) + +// OnUsageErrorFunc is executed if an usage error occurs. This is useful for displaying +// customized usage error messages. This function is able to replace the +// original error messages. If this function is not set, the "Incorrect usage" +// is displayed and the execution is interrupted. +type OnUsageErrorFunc func(context *Context, err error, isSubcommand bool) error + +// FlagStringFunc is used by the help generation to display a flag, which is +// expected to be a single line. +type FlagStringFunc func(Flag) string diff --git a/vendor/github.com/urfave/cli/generate-flag-types b/vendor/github.com/urfave/cli/generate-flag-types new file mode 100755 index 00000000..7147381c --- /dev/null +++ b/vendor/github.com/urfave/cli/generate-flag-types @@ -0,0 +1,255 @@ +#!/usr/bin/env python +""" +The flag types that ship with the cli library have many things in common, and +so we can take advantage of the `go generate` command to create much of the +source code from a list of definitions. These definitions attempt to cover +the parts that vary between flag types, and should evolve as needed. + +An example of the minimum definition needed is: + + { + "name": "SomeType", + "type": "sometype", + "context_default": "nil" + } + +In this example, the code generated for the `cli` package will include a type +named `SomeTypeFlag` that is expected to wrap a value of type `sometype`. +Fetching values by name via `*cli.Context` will default to a value of `nil`. + +A more complete, albeit somewhat redundant, example showing all available +definition keys is: + + { + "name": "VeryMuchType", + "type": "*VeryMuchType", + "value": true, + "dest": false, + "doctail": " which really only wraps a []float64, oh well!", + "context_type": "[]float64", + "context_default": "nil", + "parser": "parseVeryMuchType(f.Value.String())", + "parser_cast": "[]float64(parsed)" + } + +The meaning of each field is as follows: + + name (string) - The type "name", which will be suffixed with + `Flag` when generating the type definition + for `cli` and the wrapper type for `altsrc` + type (string) - The type that the generated `Flag` type for `cli` + is expected to "contain" as its `.Value` member + value (bool) - Should the generated `cli` type have a `Value` + member? + dest (bool) - Should the generated `cli` type support a + destination pointer? + doctail (string) - Additional docs for the `cli` flag type comment + context_type (string) - The literal type used in the `*cli.Context` + reader func signature + context_default (string) - The literal value used as the default by the + `*cli.Context` reader funcs when no value is + present + parser (string) - Literal code used to parse the flag `f`, + expected to have a return signature of + (value, error) + parser_cast (string) - Literal code used to cast the `parsed` value + returned from the `parser` code +""" + +from __future__ import print_function, unicode_literals + +import argparse +import json +import os +import subprocess +import sys +import tempfile +import textwrap + + +class _FancyFormatter(argparse.ArgumentDefaultsHelpFormatter, + argparse.RawDescriptionHelpFormatter): + pass + + +def main(sysargs=sys.argv[:]): + parser = argparse.ArgumentParser( + description='Generate flag type code!', + formatter_class=_FancyFormatter) + parser.add_argument( + 'package', + type=str, default='cli', choices=_WRITEFUNCS.keys(), + help='Package for which flag types will be generated' + ) + parser.add_argument( + '-i', '--in-json', + type=argparse.FileType('r'), + default=sys.stdin, + help='Input JSON file which defines each type to be generated' + ) + parser.add_argument( + '-o', '--out-go', + type=argparse.FileType('w'), + default=sys.stdout, + help='Output file/stream to which generated source will be written' + ) + parser.epilog = __doc__ + + args = parser.parse_args(sysargs[1:]) + _generate_flag_types(_WRITEFUNCS[args.package], args.out_go, args.in_json) + return 0 + + +def _generate_flag_types(writefunc, output_go, input_json): + types = json.load(input_json) + + tmp = tempfile.NamedTemporaryFile(suffix='.go', delete=False) + writefunc(tmp, types) + tmp.close() + + new_content = subprocess.check_output( + ['goimports', tmp.name] + ).decode('utf-8') + + print(new_content, file=output_go, end='') + output_go.flush() + os.remove(tmp.name) + + +def _set_typedef_defaults(typedef): + typedef.setdefault('doctail', '') + typedef.setdefault('context_type', typedef['type']) + typedef.setdefault('dest', True) + typedef.setdefault('value', True) + typedef.setdefault('parser', 'f.Value, error(nil)') + typedef.setdefault('parser_cast', 'parsed') + + +def _write_cli_flag_types(outfile, types): + _fwrite(outfile, """\ + package cli + + // WARNING: This file is generated! + + """) + + for typedef in types: + _set_typedef_defaults(typedef) + + _fwrite(outfile, """\ + // {name}Flag is a flag with type {type}{doctail} + type {name}Flag struct {{ + Name string + Usage string + EnvVar string + Hidden bool + """.format(**typedef)) + + if typedef['value']: + _fwrite(outfile, """\ + Value {type} + """.format(**typedef)) + + if typedef['dest']: + _fwrite(outfile, """\ + Destination *{type} + """.format(**typedef)) + + _fwrite(outfile, "\n}\n\n") + + _fwrite(outfile, """\ + // String returns a readable representation of this value + // (for usage defaults) + func (f {name}Flag) String() string {{ + return FlagStringer(f) + }} + + // GetName returns the name of the flag + func (f {name}Flag) GetName() string {{ + return f.Name + }} + + // {name} looks up the value of a local {name}Flag, returns + // {context_default} if not found + func (c *Context) {name}(name string) {context_type} {{ + return lookup{name}(name, c.flagSet) + }} + + // Global{name} looks up the value of a global {name}Flag, returns + // {context_default} if not found + func (c *Context) Global{name}(name string) {context_type} {{ + if fs := lookupGlobalFlagSet(name, c); fs != nil {{ + return lookup{name}(name, fs) + }} + return {context_default} + }} + + func lookup{name}(name string, set *flag.FlagSet) {context_type} {{ + f := set.Lookup(name) + if f != nil {{ + parsed, err := {parser} + if err != nil {{ + return {context_default} + }} + return {parser_cast} + }} + return {context_default} + }} + """.format(**typedef)) + + +def _write_altsrc_flag_types(outfile, types): + _fwrite(outfile, """\ + package altsrc + + import ( + "gopkg.in/urfave/cli.v1" + ) + + // WARNING: This file is generated! + + """) + + for typedef in types: + _set_typedef_defaults(typedef) + + _fwrite(outfile, """\ + // {name}Flag is the flag type that wraps cli.{name}Flag to allow + // for other values to be specified + type {name}Flag struct {{ + cli.{name}Flag + set *flag.FlagSet + }} + + // New{name}Flag creates a new {name}Flag + func New{name}Flag(fl cli.{name}Flag) *{name}Flag {{ + return &{name}Flag{{{name}Flag: fl, set: nil}} + }} + + // Apply saves the flagSet for later usage calls, then calls the + // wrapped {name}Flag.Apply + func (f *{name}Flag) Apply(set *flag.FlagSet) {{ + f.set = set + f.{name}Flag.Apply(set) + }} + + // ApplyWithError saves the flagSet for later usage calls, then calls the + // wrapped {name}Flag.ApplyWithError + func (f *{name}Flag) ApplyWithError(set *flag.FlagSet) error {{ + f.set = set + return f.{name}Flag.ApplyWithError(set) + }} + """.format(**typedef)) + + +def _fwrite(outfile, text): + print(textwrap.dedent(text), end='', file=outfile) + + +_WRITEFUNCS = { + 'cli': _write_cli_flag_types, + 'altsrc': _write_altsrc_flag_types +} + +if __name__ == '__main__': + sys.exit(main()) diff --git a/vendor/github.com/urfave/cli/help.go b/vendor/github.com/urfave/cli/help.go new file mode 100644 index 00000000..57ec98d5 --- /dev/null +++ b/vendor/github.com/urfave/cli/help.go @@ -0,0 +1,338 @@ +package cli + +import ( + "fmt" + "io" + "os" + "strings" + "text/tabwriter" + "text/template" +) + +// AppHelpTemplate is the text template for the Default help topic. +// cli.go uses text/template to render templates. You can +// render custom help text by setting this variable. +var AppHelpTemplate = `NAME: + {{.Name}}{{if .Usage}} - {{.Usage}}{{end}} + +USAGE: + {{if .UsageText}}{{.UsageText}}{{else}}{{.HelpName}} {{if .VisibleFlags}}[global options]{{end}}{{if .Commands}} command [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}}{{end}}{{if .Version}}{{if not .HideVersion}} + +VERSION: + {{.Version}}{{end}}{{end}}{{if .Description}} + +DESCRIPTION: + {{.Description}}{{end}}{{if len .Authors}} + +AUTHOR{{with $length := len .Authors}}{{if ne 1 $length}}S{{end}}{{end}}: + {{range $index, $author := .Authors}}{{if $index}} + {{end}}{{$author}}{{end}}{{end}}{{if .VisibleCommands}} + +COMMANDS:{{range .VisibleCategories}}{{if .Name}} + {{.Name}}:{{end}}{{range .VisibleCommands}} + {{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{end}}{{end}}{{if .VisibleFlags}} + +GLOBAL OPTIONS: + {{range $index, $option := .VisibleFlags}}{{if $index}} + {{end}}{{$option}}{{end}}{{end}}{{if .Copyright}} + +COPYRIGHT: + {{.Copyright}}{{end}} +` + +// CommandHelpTemplate is the text template for the command help topic. +// cli.go uses text/template to render templates. You can +// render custom help text by setting this variable. +var CommandHelpTemplate = `NAME: + {{.HelpName}} - {{.Usage}} + +USAGE: + {{if .UsageText}}{{.UsageText}}{{else}}{{.HelpName}}{{if .VisibleFlags}} [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}}{{end}}{{if .Category}} + +CATEGORY: + {{.Category}}{{end}}{{if .Description}} + +DESCRIPTION: + {{.Description}}{{end}}{{if .VisibleFlags}} + +OPTIONS: + {{range .VisibleFlags}}{{.}} + {{end}}{{end}} +` + +// SubcommandHelpTemplate is the text template for the subcommand help topic. +// cli.go uses text/template to render templates. You can +// render custom help text by setting this variable. +var SubcommandHelpTemplate = `NAME: + {{.HelpName}} - {{if .Description}}{{.Description}}{{else}}{{.Usage}}{{end}} + +USAGE: + {{if .UsageText}}{{.UsageText}}{{else}}{{.HelpName}} command{{if .VisibleFlags}} [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}}{{end}} + +COMMANDS:{{range .VisibleCategories}}{{if .Name}} + {{.Name}}:{{end}}{{range .VisibleCommands}} + {{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}} +{{end}}{{if .VisibleFlags}} +OPTIONS: + {{range .VisibleFlags}}{{.}} + {{end}}{{end}} +` + +var helpCommand = Command{ + Name: "help", + Aliases: []string{"h"}, + Usage: "Shows a list of commands or help for one command", + ArgsUsage: "[command]", + Action: func(c *Context) error { + args := c.Args() + if args.Present() { + return ShowCommandHelp(c, args.First()) + } + + ShowAppHelp(c) + return nil + }, +} + +var helpSubcommand = Command{ + Name: "help", + Aliases: []string{"h"}, + Usage: "Shows a list of commands or help for one command", + ArgsUsage: "[command]", + Action: func(c *Context) error { + args := c.Args() + if args.Present() { + return ShowCommandHelp(c, args.First()) + } + + return ShowSubcommandHelp(c) + }, +} + +// Prints help for the App or Command +type helpPrinter func(w io.Writer, templ string, data interface{}) + +// Prints help for the App or Command with custom template function. +type helpPrinterCustom func(w io.Writer, templ string, data interface{}, customFunc map[string]interface{}) + +// HelpPrinter is a function that writes the help output. If not set a default +// is used. The function signature is: +// func(w io.Writer, templ string, data interface{}) +var HelpPrinter helpPrinter = printHelp + +// HelpPrinterCustom is same as HelpPrinter but +// takes a custom function for template function map. +var HelpPrinterCustom helpPrinterCustom = printHelpCustom + +// VersionPrinter prints the version for the App +var VersionPrinter = printVersion + +// ShowAppHelpAndExit - Prints the list of subcommands for the app and exits with exit code. +func ShowAppHelpAndExit(c *Context, exitCode int) { + ShowAppHelp(c) + os.Exit(exitCode) +} + +// ShowAppHelp is an action that displays the help. +func ShowAppHelp(c *Context) (err error) { + if c.App.CustomAppHelpTemplate == "" { + HelpPrinter(c.App.Writer, AppHelpTemplate, c.App) + return + } + customAppData := func() map[string]interface{} { + if c.App.ExtraInfo == nil { + return nil + } + return map[string]interface{}{ + "ExtraInfo": c.App.ExtraInfo, + } + } + HelpPrinterCustom(c.App.Writer, c.App.CustomAppHelpTemplate, c.App, customAppData()) + return nil +} + +// DefaultAppComplete prints the list of subcommands as the default app completion method +func DefaultAppComplete(c *Context) { + for _, command := range c.App.Commands { + if command.Hidden { + continue + } + for _, name := range command.Names() { + fmt.Fprintln(c.App.Writer, name) + } + } +} + +// ShowCommandHelpAndExit - exits with code after showing help +func ShowCommandHelpAndExit(c *Context, command string, code int) { + ShowCommandHelp(c, command) + os.Exit(code) +} + +// ShowCommandHelp prints help for the given command +func ShowCommandHelp(ctx *Context, command string) error { + // show the subcommand help for a command with subcommands + if command == "" { + HelpPrinter(ctx.App.Writer, SubcommandHelpTemplate, ctx.App) + return nil + } + + for _, c := range ctx.App.Commands { + if c.HasName(command) { + if c.CustomHelpTemplate != "" { + HelpPrinterCustom(ctx.App.Writer, c.CustomHelpTemplate, c, nil) + } else { + HelpPrinter(ctx.App.Writer, CommandHelpTemplate, c) + } + return nil + } + } + + if ctx.App.CommandNotFound == nil { + return NewExitError(fmt.Sprintf("No help topic for '%v'", command), 3) + } + + ctx.App.CommandNotFound(ctx, command) + return nil +} + +// ShowSubcommandHelp prints help for the given subcommand +func ShowSubcommandHelp(c *Context) error { + return ShowCommandHelp(c, c.Command.Name) +} + +// ShowVersion prints the version number of the App +func ShowVersion(c *Context) { + VersionPrinter(c) +} + +func printVersion(c *Context) { + fmt.Fprintf(c.App.Writer, "%v version %v\n", c.App.Name, c.App.Version) +} + +// ShowCompletions prints the lists of commands within a given context +func ShowCompletions(c *Context) { + a := c.App + if a != nil && a.BashComplete != nil { + a.BashComplete(c) + } +} + +// ShowCommandCompletions prints the custom completions for a given command +func ShowCommandCompletions(ctx *Context, command string) { + c := ctx.App.Command(command) + if c != nil && c.BashComplete != nil { + c.BashComplete(ctx) + } +} + +func printHelpCustom(out io.Writer, templ string, data interface{}, customFunc map[string]interface{}) { + funcMap := template.FuncMap{ + "join": strings.Join, + } + if customFunc != nil { + for key, value := range customFunc { + funcMap[key] = value + } + } + + w := tabwriter.NewWriter(out, 1, 8, 2, ' ', 0) + t := template.Must(template.New("help").Funcs(funcMap).Parse(templ)) + err := t.Execute(w, data) + if err != nil { + // If the writer is closed, t.Execute will fail, and there's nothing + // we can do to recover. + if os.Getenv("CLI_TEMPLATE_ERROR_DEBUG") != "" { + fmt.Fprintf(ErrWriter, "CLI TEMPLATE ERROR: %#v\n", err) + } + return + } + w.Flush() +} + +func printHelp(out io.Writer, templ string, data interface{}) { + printHelpCustom(out, templ, data, nil) +} + +func checkVersion(c *Context) bool { + found := false + if VersionFlag.GetName() != "" { + eachName(VersionFlag.GetName(), func(name string) { + if c.GlobalBool(name) || c.Bool(name) { + found = true + } + }) + } + return found +} + +func checkHelp(c *Context) bool { + found := false + if HelpFlag.GetName() != "" { + eachName(HelpFlag.GetName(), func(name string) { + if c.GlobalBool(name) || c.Bool(name) { + found = true + } + }) + } + return found +} + +func checkCommandHelp(c *Context, name string) bool { + if c.Bool("h") || c.Bool("help") { + ShowCommandHelp(c, name) + return true + } + + return false +} + +func checkSubcommandHelp(c *Context) bool { + if c.Bool("h") || c.Bool("help") { + ShowSubcommandHelp(c) + return true + } + + return false +} + +func checkShellCompleteFlag(a *App, arguments []string) (bool, []string) { + if !a.EnableBashCompletion { + return false, arguments + } + + pos := len(arguments) - 1 + lastArg := arguments[pos] + + if lastArg != "--"+BashCompletionFlag.GetName() { + return false, arguments + } + + return true, arguments[:pos] +} + +func checkCompletions(c *Context) bool { + if !c.shellComplete { + return false + } + + if args := c.Args(); args.Present() { + name := args.First() + if cmd := c.App.Command(name); cmd != nil { + // let the command handle the completion + return false + } + } + + ShowCompletions(c) + return true +} + +func checkCommandCompletions(c *Context, name string) bool { + if !c.shellComplete { + return false + } + + ShowCommandCompletions(c, name) + return true +} diff --git a/vendor/github.com/urfave/cli/runtests b/vendor/github.com/urfave/cli/runtests new file mode 100755 index 00000000..ee22bdee --- /dev/null +++ b/vendor/github.com/urfave/cli/runtests @@ -0,0 +1,122 @@ +#!/usr/bin/env python +from __future__ import print_function + +import argparse +import os +import sys +import tempfile + +from subprocess import check_call, check_output + + +PACKAGE_NAME = os.environ.get( + 'CLI_PACKAGE_NAME', 'github.com/urfave/cli' +) + + +def main(sysargs=sys.argv[:]): + targets = { + 'vet': _vet, + 'test': _test, + 'gfmrun': _gfmrun, + 'toc': _toc, + 'gen': _gen, + } + + parser = argparse.ArgumentParser() + parser.add_argument( + 'target', nargs='?', choices=tuple(targets.keys()), default='test' + ) + args = parser.parse_args(sysargs[1:]) + + targets[args.target]() + return 0 + + +def _test(): + if check_output('go version'.split()).split()[2] < 'go1.2': + _run('go test -v .') + return + + coverprofiles = [] + for subpackage in ['', 'altsrc']: + coverprofile = 'cli.coverprofile' + if subpackage != '': + coverprofile = '{}.coverprofile'.format(subpackage) + + coverprofiles.append(coverprofile) + + _run('go test -v'.split() + [ + '-coverprofile={}'.format(coverprofile), + ('{}/{}'.format(PACKAGE_NAME, subpackage)).rstrip('/') + ]) + + combined_name = _combine_coverprofiles(coverprofiles) + _run('go tool cover -func={}'.format(combined_name)) + os.remove(combined_name) + + +def _gfmrun(): + go_version = check_output('go version'.split()).split()[2] + if go_version < 'go1.3': + print('runtests: skip on {}'.format(go_version), file=sys.stderr) + return + _run(['gfmrun', '-c', str(_gfmrun_count()), '-s', 'README.md']) + + +def _vet(): + _run('go vet ./...') + + +def _toc(): + _run('node_modules/.bin/markdown-toc -i README.md') + _run('git diff --exit-code') + + +def _gen(): + go_version = check_output('go version'.split()).split()[2] + if go_version < 'go1.5': + print('runtests: skip on {}'.format(go_version), file=sys.stderr) + return + + _run('go generate ./...') + _run('git diff --exit-code') + + +def _run(command): + if hasattr(command, 'split'): + command = command.split() + print('runtests: {}'.format(' '.join(command)), file=sys.stderr) + check_call(command) + + +def _gfmrun_count(): + with open('README.md') as infile: + lines = infile.read().splitlines() + return len(filter(_is_go_runnable, lines)) + + +def _is_go_runnable(line): + return line.startswith('package main') + + +def _combine_coverprofiles(coverprofiles): + combined = tempfile.NamedTemporaryFile( + suffix='.coverprofile', delete=False + ) + combined.write('mode: set\n') + + for coverprofile in coverprofiles: + with open(coverprofile, 'r') as infile: + for line in infile.readlines(): + if not line.startswith('mode: '): + combined.write(line) + + combined.flush() + name = combined.name + combined.close() + return name + + +if __name__ == '__main__': + sys.exit(main()) diff --git a/vendor/github.com/vektah/gqlparser/ast/definition.go b/vendor/github.com/vektah/gqlparser/ast/definition.go index 74f4ece5..f5c8ea37 100644 --- a/vendor/github.com/vektah/gqlparser/ast/definition.go +++ b/vendor/github.com/vektah/gqlparser/ast/definition.go @@ -30,6 +30,7 @@ type Definition struct { EnumValues EnumValueList // enum Position *Position `dump:"-"` + BuiltIn bool `dump:"-"` } func (d *Definition) IsLeafType() bool { diff --git a/vendor/github.com/vektah/gqlparser/ast/document.go b/vendor/github.com/vektah/gqlparser/ast/document.go index b7657d62..4672d0c0 100644 --- a/vendor/github.com/vektah/gqlparser/ast/document.go +++ b/vendor/github.com/vektah/gqlparser/ast/document.go @@ -32,6 +32,7 @@ type Schema struct { Directives map[string]*DirectiveDefinition PossibleTypes map[string][]*Definition + Implements map[string][]*Definition } func (s *Schema) AddPossibleType(name string, def *Definition) { @@ -40,17 +41,18 @@ func (s *Schema) AddPossibleType(name string, def *Definition) { // GetPossibleTypes will enumerate all the definitions for a given interface or union func (s *Schema) GetPossibleTypes(def *Definition) []*Definition { - if def.Kind == Union { - var defs []*Definition - for _, t := range def.Types { - defs = append(defs, s.Types[t]) - } - return defs - } - return s.PossibleTypes[def.Name] } +func (s *Schema) AddImplements(name string, iface *Definition) { + s.Implements[name] = append(s.Implements[name], iface) +} + +// GetImplements returns all the interface and union definitions that the given definition satisfies +func (s *Schema) GetImplements(def *Definition) []*Definition { + return s.Implements[def.Name] +} + type SchemaDefinition struct { Description string Directives DirectiveList diff --git a/vendor/github.com/vektah/gqlparser/ast/source.go b/vendor/github.com/vektah/gqlparser/ast/source.go index 9d44dd9c..acb07ba6 100644 --- a/vendor/github.com/vektah/gqlparser/ast/source.go +++ b/vendor/github.com/vektah/gqlparser/ast/source.go @@ -1,8 +1,9 @@ package ast type Source struct { - Name string - Input string + Name string + Input string + BuiltIn bool } type Position struct { diff --git a/vendor/github.com/vektah/gqlparser/ast/value.go b/vendor/github.com/vektah/gqlparser/ast/value.go index 3168b266..c25ef150 100644 --- a/vendor/github.com/vektah/gqlparser/ast/value.go +++ b/vendor/github.com/vektah/gqlparser/ast/value.go @@ -107,7 +107,7 @@ func (v *Value) String() string { case ObjectValue: var val []string for _, elem := range v.Children { - val = append(val, strconv.Quote(elem.Name)+":"+elem.Value.String()) + val = append(val, elem.Name+":"+elem.Value.String()) } return "{" + strings.Join(val, ",") + "}" default: diff --git a/vendor/github.com/vektah/gqlparser/lexer/lexer.go b/vendor/github.com/vektah/gqlparser/lexer/lexer.go index 3aaa7102..89687857 100644 --- a/vendor/github.com/vektah/gqlparser/lexer/lexer.go +++ b/vendor/github.com/vektah/gqlparser/lexer/lexer.go @@ -448,7 +448,7 @@ func (s *Lexer) readBlockString() (Token, *gqlerror.Error) { s.end += 4 s.endRunes += 4 } else if r == '\r' { - if s.end+1 <= inputLen && s.Input[s.end+1] == '\n' { + if s.end+1 < inputLen && s.Input[s.end+1] == '\n' { s.end++ s.endRunes++ } diff --git a/vendor/github.com/vektah/gqlparser/parser/parser.go b/vendor/github.com/vektah/gqlparser/parser/parser.go index f3648cb3..96e98402 100644 --- a/vendor/github.com/vektah/gqlparser/parser/parser.go +++ b/vendor/github.com/vektah/gqlparser/parser/parser.go @@ -82,6 +82,10 @@ func (p *parser) expect(kind lexer.Type) lexer.Token { } func (p *parser) skip(kind lexer.Type) bool { + if p.err != nil { + return false + } + tok := p.peek() if tok.Kind != kind { @@ -110,3 +114,23 @@ func (p *parser) many(start lexer.Type, end lexer.Type, cb func()) { } p.next() } + +func (p *parser) some(start lexer.Type, end lexer.Type, cb func()) { + hasDef := p.skip(start) + if !hasDef { + return + } + + called := false + for p.peek().Kind != end && p.err == nil { + called = true + cb() + } + + if !called { + p.error(p.peek(), "expected at least one definition, found %s", p.peek().Kind.String()) + return + } + + p.next() +} diff --git a/vendor/github.com/vektah/gqlparser/parser/query.go b/vendor/github.com/vektah/gqlparser/parser/query.go index 7fecb57f..89e1e2e3 100644 --- a/vendor/github.com/vektah/gqlparser/parser/query.go +++ b/vendor/github.com/vektah/gqlparser/parser/query.go @@ -46,7 +46,7 @@ func (p *parser) parseOperationDefinition() *OperationDefinition { return &OperationDefinition{ Position: p.peekPos(), Operation: Query, - SelectionSet: p.parseSelectionSet(), + SelectionSet: p.parseRequiredSelectionSet(), } } @@ -60,7 +60,7 @@ func (p *parser) parseOperationDefinition() *OperationDefinition { od.VariableDefinitions = p.parseVariableDefinitions() od.Directives = p.parseDirectives(false) - od.SelectionSet = p.parseSelectionSet() + od.SelectionSet = p.parseRequiredSelectionSet() return &od } @@ -109,9 +109,23 @@ func (p *parser) parseVariable() string { return p.parseName() } -func (p *parser) parseSelectionSet() SelectionSet { +func (p *parser) parseOptionalSelectionSet() SelectionSet { var selections []Selection - p.many(lexer.BraceL, lexer.BraceR, func() { + p.some(lexer.BraceL, lexer.BraceR, func() { + selections = append(selections, p.parseSelection()) + }) + + return SelectionSet(selections) +} + +func (p *parser) parseRequiredSelectionSet() SelectionSet { + if p.peek().Kind != lexer.BraceL { + p.error(p.peek(), "Expected %s, found %s", lexer.BraceL, p.peek().Kind.String()) + return nil + } + + var selections []Selection + p.some(lexer.BraceL, lexer.BraceR, func() { selections = append(selections, p.parseSelection()) }) @@ -139,7 +153,7 @@ func (p *parser) parseField() *Field { field.Arguments = p.parseArguments(false) field.Directives = p.parseDirectives(false) if p.peek().Kind == lexer.BraceL { - field.SelectionSet = p.parseSelectionSet() + field.SelectionSet = p.parseOptionalSelectionSet() } return &field @@ -184,7 +198,7 @@ func (p *parser) parseFragment() Selection { } def.Directives = p.parseDirectives(false) - def.SelectionSet = p.parseSelectionSet() + def.SelectionSet = p.parseRequiredSelectionSet() return &def } @@ -200,7 +214,7 @@ func (p *parser) parseFragmentDefinition() *FragmentDefinition { def.TypeCondition = p.parseName() def.Directives = p.parseDirectives(false) - def.SelectionSet = p.parseSelectionSet() + def.SelectionSet = p.parseRequiredSelectionSet() return &def } diff --git a/vendor/github.com/vektah/gqlparser/parser/query_test.yml b/vendor/github.com/vektah/gqlparser/parser/query_test.yml index f392eb8e..902bb15f 100644 --- a/vendor/github.com/vektah/gqlparser/parser/query_test.yml +++ b/vendor/github.com/vektah/gqlparser/parser/query_test.yml @@ -504,4 +504,17 @@ large queries: Value: $b - <Argument> Name: "obj" - Value: {"key":"value","block":"block string uses \"\"\""} + Value: {key:"value",block:"block string uses \"\"\""} + +fuzzer: +- name: 01 + input: '{__typename{...}}' + error: + message: 'Expected {, found }' + locations: [{ line: 1, column: 16 }] + +- name: 02 + input: '{...{__typename{...{}}}}' + error: + message: 'expected at least one definition, found }' + locations: [{ line: 1, column: 21 }] diff --git a/vendor/github.com/vektah/gqlparser/parser/schema.go b/vendor/github.com/vektah/gqlparser/parser/schema.go index f409f1f4..5689e433 100644 --- a/vendor/github.com/vektah/gqlparser/parser/schema.go +++ b/vendor/github.com/vektah/gqlparser/parser/schema.go @@ -10,7 +10,31 @@ func ParseSchema(source *Source) (*SchemaDocument, *gqlerror.Error) { p := parser{ lexer: lexer.New(source), } - return p.parseSchemaDocument(), p.err + ast, err := p.parseSchemaDocument(), p.err + if err != nil { + return nil, err + } + + for _, def := range ast.Definitions { + def.BuiltIn = source.BuiltIn + } + for _, def := range ast.Extensions { + def.BuiltIn = source.BuiltIn + } + + return ast, nil +} + +func ParseSchemas(inputs ...*Source) (*SchemaDocument, *gqlerror.Error) { + ast := &SchemaDocument{} + for _, input := range inputs { + inputAst, err := ParseSchema(input) + if err != nil { + return nil, err + } + ast.Merge(inputAst) + } + return ast, nil } func (p *parser) parseSchemaDocument() *SchemaDocument { @@ -96,7 +120,7 @@ func (p *parser) parseSchemaDefinition(description string) *SchemaDefinition { def.Description = description def.Directives = p.parseDirectives(true) - p.many(lexer.BraceL, lexer.BraceR, func() { + p.some(lexer.BraceL, lexer.BraceR, func() { def.OperationTypes = append(def.OperationTypes, p.parseOperationTypeDefinition()) }) return &def @@ -154,7 +178,7 @@ func (p *parser) parseImplementsInterfaces() []string { func (p *parser) parseFieldsDefinition() FieldList { var defs FieldList - p.many(lexer.BraceL, lexer.BraceR, func() { + p.some(lexer.BraceL, lexer.BraceR, func() { defs = append(defs, p.parseFieldDefinition()) }) return defs @@ -175,7 +199,7 @@ func (p *parser) parseFieldDefinition() *FieldDefinition { func (p *parser) parseArgumentDefs() ArgumentDefinitionList { var args ArgumentDefinitionList - p.many(lexer.ParenL, lexer.ParenR, func() { + p.some(lexer.ParenL, lexer.ParenR, func() { args = append(args, p.parseArgumentDef()) }) return args @@ -264,7 +288,7 @@ func (p *parser) parseEnumTypeDefinition(description string) *Definition { func (p *parser) parseEnumValuesDefinition() EnumValueList { var values EnumValueList - p.many(lexer.BraceL, lexer.BraceR, func() { + p.some(lexer.BraceL, lexer.BraceR, func() { values = append(values, p.parseEnumValueDefinition()) }) return values @@ -294,7 +318,7 @@ func (p *parser) parseInputObjectTypeDefinition(description string) *Definition func (p *parser) parseInputFieldsDefinition() FieldList { var values FieldList - p.many(lexer.BraceL, lexer.BraceR, func() { + p.some(lexer.BraceL, lexer.BraceR, func() { values = append(values, p.parseInputValueDef()) }) return values @@ -329,7 +353,7 @@ func (p *parser) parseSchemaExtension() *SchemaDefinition { var def SchemaDefinition def.Position = p.peekPos() def.Directives = p.parseDirectives(true) - p.many(lexer.BraceL, lexer.BraceR, func() { + p.some(lexer.BraceL, lexer.BraceR, func() { def.OperationTypes = append(def.OperationTypes, p.parseOperationTypeDefinition()) }) if len(def.Directives) == 0 && len(def.OperationTypes) == 0 { diff --git a/vendor/github.com/vektah/gqlparser/parser/schema_test.yml b/vendor/github.com/vektah/gqlparser/parser/schema_test.yml index c65239a5..394bd363 100644 --- a/vendor/github.com/vektah/gqlparser/parser/schema_test.yml +++ b/vendor/github.com/vektah/gqlparser/parser/schema_test.yml @@ -136,6 +136,12 @@ object types: Name: "argTwo" Type: Int Type: String + - name: must define one or more fields + input: | + type Hello {} + error: + message: "expected at least one definition, found }" + locations: [{ line: 1, column: 13 }] type extensions: - name: Object extension @@ -378,6 +384,12 @@ enums: Name: "WO" - <EnumValueDefinition> Name: "RLD" + - name: must define one or more unique enum values + input: | + enum Hello {} + error: + message: "expected at least one definition, found }" + locations: [{ line: 1, column: 13 }] interface: - name: simple @@ -395,6 +407,12 @@ interface: - <FieldDefinition> Name: "world" Type: String + - name: must define one or more fields + input: | + interface Hello {} + error: + message: "expected at least one definition, found }" + locations: [{ line: 1, column: 18 }] unions: - name: simple @@ -485,6 +503,12 @@ input object: error: message: "Expected :, found (" locations: [{ line: 2, column: 8 }] + - name: must define one or more input fields + input: | + input Hello {} + error: + message: "expected at least one definition, found }" + locations: [{ line: 1, column: 14 }] directives: - name: simple @@ -503,3 +527,14 @@ directives: message: 'Unexpected Name "INCORRECT_LOCATION"' locations: [{ line: 1, column: 27 }] +fuzzer: + - name: 1 + input: "type o{d(g:[" + error: + message: 'Expected Name, found <EOF>' + locations: [{ line: 1, column: 13 }] + - name: 2 + input: "\"\"\"\r" + error: + message: 'Unexpected <Invalid>' + locations: [{ line: 1, column: 5 }] diff --git a/vendor/github.com/vektah/gqlparser/validator/prelude.go b/vendor/github.com/vektah/gqlparser/validator/prelude.go index 80ce8a21..c7a4d35b 100644 --- a/vendor/github.com/vektah/gqlparser/validator/prelude.go +++ b/vendor/github.com/vektah/gqlparser/validator/prelude.go @@ -2,4 +2,8 @@ package validator import "github.com/vektah/gqlparser/ast" -var Prelude = &ast.Source{Name: "prelude.graphql", Input: "# This file defines all the implicitly declared types that are required by the graphql spec. It is implicitly included by calls to LoadSchema\n\n# The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.\nscalar Int\n\n# The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).\nscalar Float\n\n# The `String`scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.\nscalar String\n\n# The `Boolean` scalar type represents ` + \"`\" + `true` + \"`\" + ` or ` + \"`\" + `false` + \"`\" + `.\nscalar Boolean\n\n# The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as \"4\") or integer (such as 4) input value will be accepted as an ID.\nscalar ID\n\n# The @include directive may be provided for fields, fragment spreads, and inline fragments, and allows for conditional inclusion during execution as described by the if argument.\ndirective @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT\n\n# The @skip directive may be provided for fields, fragment spreads, and inline fragments, and allows for conditional exclusion during execution as described by the if argument.\ndirective @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT\n\n# The @deprecated directive is used within the type system definition language to indicate deprecated portions of a GraphQL service’s schema, such as deprecated fields on a type or deprecated enum values.\ndirective @deprecated(reason: String = \"No longer supported\") on FIELD_DEFINITION | ENUM_VALUE\n\ntype __Schema {\n types: [__Type!]!\n queryType: __Type!\n mutationType: __Type\n subscriptionType: __Type\n directives: [__Directive!]!\n}\n\ntype __Type {\n kind: __TypeKind!\n name: String\n description: String\n\n # OBJECT and INTERFACE only\n fields(includeDeprecated: Boolean = false): [__Field!]\n\n # OBJECT only\n interfaces: [__Type!]\n\n # INTERFACE and UNION only\n possibleTypes: [__Type!]\n\n # ENUM only\n enumValues(includeDeprecated: Boolean = false): [__EnumValue!]\n\n # INPUT_OBJECT only\n inputFields: [__InputValue!]\n\n # NON_NULL and LIST only\n ofType: __Type\n}\n\ntype __Field {\n name: String!\n description: String\n args: [__InputValue!]!\n type: __Type!\n isDeprecated: Boolean!\n deprecationReason: String\n}\n\ntype __InputValue {\n name: String!\n description: String\n type: __Type!\n defaultValue: String\n}\n\ntype __EnumValue {\n name: String!\n description: String\n isDeprecated: Boolean!\n deprecationReason: String\n}\n\nenum __TypeKind {\n SCALAR\n OBJECT\n INTERFACE\n UNION\n ENUM\n INPUT_OBJECT\n LIST\n NON_NULL\n}\n\ntype __Directive {\n name: String!\n description: String\n locations: [__DirectiveLocation!]!\n args: [__InputValue!]!\n}\n\nenum __DirectiveLocation {\n QUERY\n MUTATION\n SUBSCRIPTION\n FIELD\n FRAGMENT_DEFINITION\n FRAGMENT_SPREAD\n INLINE_FRAGMENT\n SCHEMA\n SCALAR\n OBJECT\n FIELD_DEFINITION\n ARGUMENT_DEFINITION\n INTERFACE\n UNION\n ENUM\n ENUM_VALUE\n INPUT_OBJECT\n INPUT_FIELD_DEFINITION\n}\n"} +var Prelude = &ast.Source{ + Name: "prelude.graphql", + Input: "# This file defines all the implicitly declared types that are required by the graphql spec. It is implicitly included by calls to LoadSchema\n\n# The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.\nscalar Int\n\n# The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).\nscalar Float\n\n# The `String`scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.\nscalar String\n\n# The `Boolean` scalar type represents ` + \"`\" + `true` + \"`\" + ` or ` + \"`\" + `false` + \"`\" + `.\nscalar Boolean\n\n# The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as \"4\") or integer (such as 4) input value will be accepted as an ID.\nscalar ID\n\n# The @include directive may be provided for fields, fragment spreads, and inline fragments, and allows for conditional inclusion during execution as described by the if argument.\ndirective @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT\n\n# The @skip directive may be provided for fields, fragment spreads, and inline fragments, and allows for conditional exclusion during execution as described by the if argument.\ndirective @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT\n\n# The @deprecated directive is used within the type system definition language to indicate deprecated portions of a GraphQL service’s schema, such as deprecated fields on a type or deprecated enum values.\ndirective @deprecated(reason: String = \"No longer supported\") on FIELD_DEFINITION | ENUM_VALUE\n\ntype __Schema {\n types: [__Type!]!\n queryType: __Type!\n mutationType: __Type\n subscriptionType: __Type\n directives: [__Directive!]!\n}\n\ntype __Type {\n kind: __TypeKind!\n name: String\n description: String\n\n # OBJECT and INTERFACE only\n fields(includeDeprecated: Boolean = false): [__Field!]\n\n # OBJECT only\n interfaces: [__Type!]\n\n # INTERFACE and UNION only\n possibleTypes: [__Type!]\n\n # ENUM only\n enumValues(includeDeprecated: Boolean = false): [__EnumValue!]\n\n # INPUT_OBJECT only\n inputFields: [__InputValue!]\n\n # NON_NULL and LIST only\n ofType: __Type\n}\n\ntype __Field {\n name: String!\n description: String\n args: [__InputValue!]!\n type: __Type!\n isDeprecated: Boolean!\n deprecationReason: String\n}\n\ntype __InputValue {\n name: String!\n description: String\n type: __Type!\n defaultValue: String\n}\n\ntype __EnumValue {\n name: String!\n description: String\n isDeprecated: Boolean!\n deprecationReason: String\n}\n\nenum __TypeKind {\n SCALAR\n OBJECT\n INTERFACE\n UNION\n ENUM\n INPUT_OBJECT\n LIST\n NON_NULL\n}\n\ntype __Directive {\n name: String!\n description: String\n locations: [__DirectiveLocation!]!\n args: [__InputValue!]!\n}\n\nenum __DirectiveLocation {\n QUERY\n MUTATION\n SUBSCRIPTION\n FIELD\n FRAGMENT_DEFINITION\n FRAGMENT_SPREAD\n INLINE_FRAGMENT\n SCHEMA\n SCALAR\n OBJECT\n FIELD_DEFINITION\n ARGUMENT_DEFINITION\n INTERFACE\n UNION\n ENUM\n ENUM_VALUE\n INPUT_OBJECT\n INPUT_FIELD_DEFINITION\n}\n", + BuiltIn: true, +} diff --git a/vendor/github.com/vektah/gqlparser/validator/rules/known_argument_names.go b/vendor/github.com/vektah/gqlparser/validator/rules/known_argument_names.go index 83b47387..1a46431d 100644 --- a/vendor/github.com/vektah/gqlparser/validator/rules/known_argument_names.go +++ b/vendor/github.com/vektah/gqlparser/validator/rules/known_argument_names.go @@ -9,7 +9,7 @@ func init() { AddRule("KnownArgumentNames", func(observers *Events, addError AddErrFunc) { // A GraphQL field is only valid if all supplied arguments are defined by that field. observers.OnField(func(walker *Walker, field *ast.Field) { - if field.Definition == nil { + if field.Definition == nil || field.ObjectDefinition == nil { return } for _, arg := range field.Arguments { diff --git a/vendor/github.com/vektah/gqlparser/validator/rules/overlapping_fields_can_be_merged.go b/vendor/github.com/vektah/gqlparser/validator/rules/overlapping_fields_can_be_merged.go index 52eab3a2..bb2f1831 100644 --- a/vendor/github.com/vektah/gqlparser/validator/rules/overlapping_fields_can_be_merged.go +++ b/vendor/github.com/vektah/gqlparser/validator/rules/overlapping_fields_can_be_merged.go @@ -292,7 +292,11 @@ func (m *overlappingFieldsCanBeMergedManager) collectConflictsBetweenFieldsAndFr // (E) Then collect any conflicts between the provided collection of fields // and any fragment names found in the given fragment. + baseFragmentSpread := fragmentSpread for _, fragmentSpread := range fragmentSpreads { + if fragmentSpread.Name == baseFragmentSpread.Name { + continue + } m.collectConflictsBetweenFieldsAndFragment(conflicts, areMutuallyExclusive, fieldsMap, fragmentSpread) } } diff --git a/vendor/github.com/vektah/gqlparser/validator/rules/possible_fragment_spreads.go b/vendor/github.com/vektah/gqlparser/validator/rules/possible_fragment_spreads.go index 971decbf..04611834 100644 --- a/vendor/github.com/vektah/gqlparser/validator/rules/possible_fragment_spreads.go +++ b/vendor/github.com/vektah/gqlparser/validator/rules/possible_fragment_spreads.go @@ -20,7 +20,7 @@ func init() { case ast.Interface, ast.Union: parentDefs = walker.Schema.GetPossibleTypes(parentDef) default: - panic("unexpected type") + return } fragmentDefType := walker.Schema.Types[fragmentName] diff --git a/vendor/github.com/vektah/gqlparser/validator/schema.go b/vendor/github.com/vektah/gqlparser/validator/schema.go index 8fa18d7e..57d2022e 100644 --- a/vendor/github.com/vektah/gqlparser/validator/schema.go +++ b/vendor/github.com/vektah/gqlparser/validator/schema.go @@ -4,6 +4,7 @@ package validator import ( "strconv" + "strings" . "github.com/vektah/gqlparser/ast" "github.com/vektah/gqlparser/gqlerror" @@ -11,20 +12,19 @@ import ( ) func LoadSchema(inputs ...*Source) (*Schema, *gqlerror.Error) { - ast := &SchemaDocument{} - for _, input := range inputs { - inputAst, err := parser.ParseSchema(input) - if err != nil { - return nil, err - } - - ast.Merge(inputAst) + ast, err := parser.ParseSchemas(inputs...) + if err != nil { + return nil, err } + return ValidateSchemaDocument(ast) +} +func ValidateSchemaDocument(ast *SchemaDocument) (*Schema, *gqlerror.Error) { schema := Schema{ Types: map[string]*Definition{}, Directives: map[string]*DirectiveDefinition{}, PossibleTypes: map[string][]*Definition{}, + Implements: map[string][]*Definition{}, } for i, def := range ast.Definitions { @@ -32,13 +32,6 @@ func LoadSchema(inputs ...*Source) (*Schema, *gqlerror.Error) { return nil, gqlerror.ErrorPosf(def.Position, "Cannot redeclare type %s.", def.Name) } schema.Types[def.Name] = ast.Definitions[i] - - if def.Kind != Interface { - for _, intf := range def.Interfaces { - schema.AddPossibleType(intf, ast.Definitions[i]) - } - schema.AddPossibleType(def.Name, ast.Definitions[i]) - } } for _, ext := range ast.Extensions { @@ -58,6 +51,22 @@ func LoadSchema(inputs ...*Source) (*Schema, *gqlerror.Error) { def.EnumValues = append(def.EnumValues, ext.EnumValues...) } + for _, def := range ast.Definitions { + switch def.Kind { + case Union: + for _, t := range def.Types { + schema.AddPossibleType(def.Name, schema.Types[t]) + schema.AddImplements(t, def) + } + case InputObject, Object: + for _, intf := range def.Interfaces { + schema.AddPossibleType(intf, def) + schema.AddImplements(def.Name, schema.Types[intf]) + } + schema.AddPossibleType(def.Name, def) + } + } + for i, dir := range ast.Directives { if schema.Directives[dir.Name] != nil { return nil, gqlerror.ErrorPosf(dir.Position, "Cannot redeclare directive %s.", dir.Name) @@ -150,11 +159,20 @@ func LoadSchema(inputs ...*Source) (*Schema, *gqlerror.Error) { } func validateDirective(schema *Schema, def *DirectiveDefinition) *gqlerror.Error { + if err := validateName(def.Position, def.Name); err != nil { + // now, GraphQL spec doesn't have reserved directive name + return err + } + return validateArgs(schema, def.Arguments, def) } func validateDefinition(schema *Schema, def *Definition) *gqlerror.Error { for _, field := range def.Fields { + if err := validateName(field.Position, field.Name); err != nil { + // now, GraphQL spec doesn't have reserved field name + return err + } if err := validateTypeRef(schema, field.Type); err != nil { return err } @@ -176,6 +194,37 @@ func validateDefinition(schema *Schema, def *Definition) *gqlerror.Error { } } + switch def.Kind { + case Object, Interface: + if len(def.Fields) == 0 { + return gqlerror.ErrorPosf(def.Position, "%s must define one or more fields.", def.Kind) + } + case Enum: + if len(def.EnumValues) == 0 { + return gqlerror.ErrorPosf(def.Position, "%s must define one or more unique enum values.", def.Kind) + } + case InputObject: + if len(def.Fields) == 0 { + return gqlerror.ErrorPosf(def.Position, "%s must define one or more input fields.", def.Kind) + } + } + + for idx, field1 := range def.Fields { + for _, field2 := range def.Fields[idx+1:] { + if field1.Name == field2.Name { + return gqlerror.ErrorPosf(field2.Position, "Field %s.%s can only be defined once.", def.Name, field2.Name) + } + } + } + + if !def.BuiltIn { + // GraphQL spec has reserved type names a lot! + err := validateName(def.Position, def.Name) + if err != nil { + return err + } + } + return validateDirectives(schema, def.Directives, nil) } @@ -188,6 +237,10 @@ func validateTypeRef(schema *Schema, typ *Type) *gqlerror.Error { func validateArgs(schema *Schema, args ArgumentDefinitionList, currentDirective *DirectiveDefinition) *gqlerror.Error { for _, arg := range args { + if err := validateName(arg.Position, arg.Name); err != nil { + // now, GraphQL spec doesn't have reserved argument name + return err + } if err := validateTypeRef(schema, arg.Type); err != nil { return err } @@ -200,6 +253,10 @@ func validateArgs(schema *Schema, args ArgumentDefinitionList, currentDirective func validateDirectives(schema *Schema, dirs DirectiveList, currentDirective *DirectiveDefinition) *gqlerror.Error { for _, dir := range dirs { + if err := validateName(dir.Position, dir.Name); err != nil { + // now, GraphQL spec doesn't have reserved directive name + return err + } if currentDirective != nil && dir.Name == currentDirective.Name { return gqlerror.ErrorPosf(dir.Position, "Directive %s cannot refer to itself.", currentDirective.Name) } @@ -210,3 +267,10 @@ func validateDirectives(schema *Schema, dirs DirectiveList, currentDirective *Di } return nil } + +func validateName(pos *Position, name string) *gqlerror.Error { + if strings.HasPrefix(name, "__") { + return gqlerror.ErrorPosf(pos, `Name "%s" must not begin with "__", which is reserved by GraphQL introspection.`, name) + } + return nil +} diff --git a/vendor/github.com/vektah/gqlparser/validator/schema_test.yml b/vendor/github.com/vektah/gqlparser/validator/schema_test.yml index 59e7145c..abc8dd7e 100644 --- a/vendor/github.com/vektah/gqlparser/validator/schema_test.yml +++ b/vendor/github.com/vektah/gqlparser/validator/schema_test.yml @@ -10,6 +10,84 @@ types: error: message: "Cannot redeclare type A." locations: [{line: 4, column: 6}] + - name: cannot be duplicated field at same definition 1 + input: | + type A { + name: String + name: String + } + error: + message: "Field A.name can only be defined once." + locations: [{line: 3, column: 3}] + - name: cannot be duplicated field at same definition 2 + input: | + type A { + name: String + } + extend type A { + name: String + } + error: + message: "Field A.name can only be defined once." + locations: [{line: 5, column: 3}] + - name: cannot be duplicated field at same definition 3 + input: | + type A { + name: String + } + extend type A { + age: Int + age: Int + } + error: + message: "Field A.age can only be defined once." + locations: [{line: 6, column: 3}] + +object types: + - name: must define one or more fields + input: | + directive @D on OBJECT + + # This pattern rejected by parser + # type InvalidObject1 {} + + type InvalidObject2 @D + + type ValidObject { + id: ID + } + extend type ValidObject @D + extend type ValidObject { + b: Int + } + error: + message: 'OBJECT must define one or more fields.' + locations: [{line: 6, column: 6}] + - name: check reserved names on type name + input: | + type __FooBar { + id: ID + } + error: + message: 'Name "__FooBar" must not begin with "__", which is reserved by GraphQL introspection.' + locations: [{line: 1, column: 6}] + - name: check reserved names on type field + input: | + type FooBar { + __id: ID + } + error: + message: 'Name "__id" must not begin with "__", which is reserved by GraphQL introspection.' + locations: [{line: 2, column: 3}] + + - name: check reserved names on type field argument + input: | + type FooBar { + foo(__bar: ID): ID + } + error: + message: 'Name "__bar" must not begin with "__", which is reserved by GraphQL introspection.' + locations: [{line: 2, column: 7}] interfaces: - name: must exist @@ -42,6 +120,93 @@ interfaces: message: '"Object" is a non interface type OBJECT.' locations: [{line: 1, column: 6}] + - name: must define one or more fields + input: | + directive @D on INTERFACE + + # This pattern rejected by parser + # interface InvalidInterface1 {} + + interface InvalidInterface2 @D + + interface ValidInterface { + id: ID + } + extend interface ValidInterface @D + extend interface ValidInterface { + b: Int + } + error: + message: 'INTERFACE must define one or more fields.' + locations: [{line: 6, column: 11}] + - name: check reserved names on type name + input: | + interface __FooBar { + id: ID + } + error: + message: 'Name "__FooBar" must not begin with "__", which is reserved by GraphQL introspection.' + locations: [{line: 1, column: 11}] + +inputs: + - name: must define one or more input fields + input: | + directive @D on INPUT_OBJECT + + # This pattern rejected by parser + # input InvalidInput1 {} + + input InvalidInput2 @D + + input ValidInput { + id: ID + } + extend input ValidInput @D + extend input ValidInput { + b: Int + } + error: + message: 'INPUT_OBJECT must define one or more input fields.' + locations: [{line: 6, column: 7}] + - name: check reserved names on type name + input: | + input __FooBar { + id: ID + } + error: + message: 'Name "__FooBar" must not begin with "__", which is reserved by GraphQL introspection.' + locations: [{line: 1, column: 7}] + +enums: + - name: must define one or more unique enum values + input: | + directive @D on ENUM + + # This pattern rejected by parser + # enum InvalidEmum1 {} + + enum InvalidEnum2 @D + + enum ValidEnum { + FOO + } + extend enum ValidEnum @D + extend enum ValidEnum { + BAR + } + error: + message: 'ENUM must define one or more unique enum values.' + locations: [{line: 6, column: 6}] + - name: check reserved names on type name + input: | + enum __FooBar { + A + B + } + error: + message: 'Name "__FooBar" must not begin with "__", which is reserved by GraphQL introspection.' + locations: [{line: 1, column: 6}] + type extensions: - name: cannot extend non existant types input: | @@ -86,6 +251,12 @@ directives: error: message: "Directive A cannot refer to itself." locations: [{line: 1, column: 25}] + - name: check reserved names on type name + input: | + directive @__A on FIELD_DEFINITION + error: + message: 'Name "__A" must not begin with "__", which is reserved by GraphQL introspection.' + locations: [{line: 1, column: 12}] entry points: - name: multiple schema entry points diff --git a/vendor/github.com/vektah/gqlparser/validator/vars.go b/vendor/github.com/vektah/gqlparser/validator/vars.go index 0743f5cc..aaf3a0d1 100644 --- a/vendor/github.com/vektah/gqlparser/validator/vars.go +++ b/vendor/github.com/vektah/gqlparser/validator/vars.go @@ -73,12 +73,19 @@ type varValidator struct { } func (v *varValidator) validateVarType(typ *ast.Type, val reflect.Value) *gqlerror.Error { + currentPath := v.path + resetPath := func() { + v.path = currentPath + } + defer resetPath() + if typ.Elem != nil { if val.Kind() != reflect.Slice { return gqlerror.ErrorPathf(v.path, "must be an array") } for i := 0; i < val.Len(); i++ { + resetPath() v.path = append(v.path, i) field := val.Index(i) @@ -92,8 +99,6 @@ func (v *varValidator) validateVarType(typ *ast.Type, val reflect.Value) *gqlerr if err := v.validateVarType(typ.Elem, field); err != nil { return err } - - v.path = v.path[0 : len(v.path)-1] } return nil @@ -150,15 +155,16 @@ func (v *varValidator) validateVarType(typ *ast.Type, val reflect.Value) *gqlerr for _, name := range val.MapKeys() { val.MapIndex(name) fieldDef := def.Fields.ForName(name.String()) - v.path = append(v.path, name) + resetPath() + v.path = append(v.path, name.String()) if fieldDef == nil { return gqlerror.ErrorPathf(v.path, "unknown field") } - v.path = v.path[0 : len(v.path)-1] } for _, fieldDef := range def.Fields { + resetPath() v.path = append(v.path, fieldDef.Name) field := val.MapIndex(reflect.ValueOf(fieldDef.Name)) @@ -184,8 +190,6 @@ func (v *varValidator) validateVarType(typ *ast.Type, val reflect.Value) *gqlerr if err != nil { return err } - - v.path = v.path[0 : len(v.path)-1] } default: panic(fmt.Errorf("unsupported type %s", def.Kind)) diff --git a/webui/package-lock.json b/webui/package-lock.json index 174ff2ed..57b955c8 100644 --- a/webui/package-lock.json +++ b/webui/package-lock.json @@ -4,28 +4,862 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@babel/code-frame": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", + "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", + "requires": { + "@babel/highlight": "^7.0.0" + } + }, + "@babel/core": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.1.0.tgz", + "integrity": "sha512-9EWmD0cQAbcXSc+31RIoYgEHx3KQ2CCSMDBhnXrShWvo45TMw+3/55KVxlhkG53kw9tl87DqINgHDgFVhZJV/Q==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/generator": "^7.0.0", + "@babel/helpers": "^7.1.0", + "@babel/parser": "^7.1.0", + "@babel/template": "^7.1.0", + "@babel/traverse": "^7.1.0", + "@babel/types": "^7.0.0", + "convert-source-map": "^1.1.0", + "debug": "^3.1.0", + "json5": "^0.5.0", + "lodash": "^4.17.10", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "@babel/generator": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.2.2.tgz", + "integrity": "sha512-I4o675J/iS8k+P38dvJ3IBGqObLXyQLTxtrR4u9cSUJOURvafeEWb/pFMOTwtNrmq73mJzyF6ueTbO1BtN0Zeg==", + "requires": { + "@babel/types": "^7.2.2", + "jsesc": "^2.5.1", + "lodash": "^4.17.10", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz", + "integrity": "sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz", + "integrity": "sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w==", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-builder-react-jsx": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.0.0.tgz", + "integrity": "sha512-ebJ2JM6NAKW0fQEqN8hOLxK84RbRz9OkUhGS/Xd5u56ejMfVbayJ4+LykERZCOUM6faa6Fp3SZNX3fcT16MKHw==", + "requires": { + "@babel/types": "^7.0.0", + "esutils": "^2.0.0" + } + }, + "@babel/helper-call-delegate": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz", + "integrity": "sha512-YEtYZrw3GUK6emQHKthltKNZwszBcHK58Ygcis+gVUrF4/FmTVr5CCqQNSfmvg2y+YDEANyYoaLz/SHsnusCwQ==", + "requires": { + "@babel/helper-hoist-variables": "^7.0.0", + "@babel/traverse": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-define-map": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz", + "integrity": "sha512-yPPcW8dc3gZLN+U1mhYV91QU3n5uTbx7DUdf8NnPbjS0RMwBuHi9Xt2MUgppmNz7CJxTBWsGczTiEp1CSOTPRg==", + "requires": { + "@babel/helper-function-name": "^7.1.0", + "@babel/types": "^7.0.0", + "lodash": "^4.17.10" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz", + "integrity": "sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA==", + "requires": { + "@babel/traverse": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-function-name": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", + "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", + "requires": { + "@babel/helper-get-function-arity": "^7.0.0", + "@babel/template": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", + "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz", + "integrity": "sha512-Ggv5sldXUeSKsuzLkddtyhyHe2YantsxWKNi7A+7LeD12ExRDWTRk29JCXpaHPAbMaIPZSil7n+lq78WY2VY7w==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz", + "integrity": "sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz", + "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-module-transforms": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz", + "integrity": "sha512-YRD7I6Wsv+IHuTPkAmAS4HhY0dkPobgLftHp0cRGZSdrRvmZY8rFvae/GVu3bD00qscuvK3WPHB3YdNpBXUqrA==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/helper-simple-access": "^7.1.0", + "@babel/helper-split-export-declaration": "^7.0.0", + "@babel/template": "^7.2.2", + "@babel/types": "^7.2.2", + "lodash": "^4.17.10" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz", + "integrity": "sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", + "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==" + }, + "@babel/helper-regex": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.0.0.tgz", + "integrity": "sha512-TR0/N0NDCcUIUEbqV6dCO+LptmmSQFQ7q70lfcEB4URsjD0E1HzicrwUH+ap6BAQ2jhCX9Q4UqZy4wilujWlkg==", + "requires": { + "lodash": "^4.17.10" + } + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz", + "integrity": "sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.0.0", + "@babel/helper-wrap-function": "^7.1.0", + "@babel/template": "^7.1.0", + "@babel/traverse": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-replace-supers": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.2.3.tgz", + "integrity": "sha512-GyieIznGUfPXPWu0yLS6U55Mz67AZD9cUk0BfirOWlPrXlBcan9Gz+vHGz+cPfuoweZSnPzPIm67VtQM0OWZbA==", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.0.0", + "@babel/helper-optimise-call-expression": "^7.0.0", + "@babel/traverse": "^7.2.3", + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz", + "integrity": "sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w==", + "requires": { + "@babel/template": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz", + "integrity": "sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-wrap-function": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz", + "integrity": "sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==", + "requires": { + "@babel/helper-function-name": "^7.1.0", + "@babel/template": "^7.1.0", + "@babel/traverse": "^7.1.0", + "@babel/types": "^7.2.0" + } + }, + "@babel/helpers": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.2.0.tgz", + "integrity": "sha512-Fr07N+ea0dMcMN8nFpuK6dUIT7/ivt9yKQdEEnjVS83tG2pHwPi03gYmk/tyuwONnZ+sY+GFFPlWGgCtW1hF9A==", + "requires": { + "@babel/template": "^7.1.2", + "@babel/traverse": "^7.1.5", + "@babel/types": "^7.2.0" + } + }, + "@babel/highlight": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", + "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.2.3.tgz", + "integrity": "sha512-0LyEcVlfCoFmci8mXx8A5oIkpkOgyo8dRHtxBnK9RRBwxO2+JZPNsqtVEZQ7mJFPxnXF9lfmU24mHOPI0qnlkA==" + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz", + "integrity": "sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-remap-async-to-generator": "^7.1.0", + "@babel/plugin-syntax-async-generators": "^7.2.0" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.1.0.tgz", + "integrity": "sha512-/PCJWN+CKt5v1xcGn4vnuu13QDoV+P7NcICP44BoonAJoPSGwVkgrXihFIQGiEjjPlUDBIw1cM7wYFLARS2/hw==", + "requires": { + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-member-expression-to-functions": "^7.0.0", + "@babel/helper-optimise-call-expression": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-replace-supers": "^7.1.0", + "@babel/plugin-syntax-class-properties": "^7.0.0" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.1.2.tgz", + "integrity": "sha512-YooynBO6PmBgHvAd0fl5e5Tq/a0pEC6RqF62ouafme8FzdIVH41Mz/u1dn8fFVm4jzEJ+g/MsOxouwybJPuP8Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-replace-supers": "^7.1.0", + "@babel/helper-split-export-declaration": "^7.0.0", + "@babel/plugin-syntax-decorators": "^7.1.0" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz", + "integrity": "sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-json-strings": "^7.2.0" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.2.0.tgz", + "integrity": "sha512-1L5mWLSvR76XYUQJXkd/EEQgjq8HHRP6lQuZTTg0VA4tTGPpGemmCdAfQIz1rzEuWAm+ecP8PyyEm30jC1eQCg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-object-rest-spread": "^7.2.0" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz", + "integrity": "sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.2.0" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.2.0.tgz", + "integrity": "sha512-LvRVYb7kikuOtIoUeWTkOxQEV1kYvL5B6U3iWEGCzPNRus1MzJweFqORTj+0jkxozkTSYNJozPOddxmqdqsRpw==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-regex": "^7.0.0", + "regexpu-core": "^4.2.0" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz", + "integrity": "sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.2.0.tgz", + "integrity": "sha512-UxYaGXYQ7rrKJS/PxIKRkv3exi05oH7rokBAsmCSsCxz1sVPZ7Fu6FzKoGgUvmY+0YgSkYHgUoCh5R5bCNBQlw==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz", + "integrity": "sha512-38QdqVoXdHUQfTpZo3rQwqQdWtCn5tMv4uV6r2RMfTqNBuv4ZBhz79SfaQWKTVmxHjeFv/DnXVC/+agHCklYWA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.0.0.tgz", + "integrity": "sha512-Gt9xNyRrCHCiyX/ZxDGOcBnlJl0I3IWicpZRC4CdC0P5a/I07Ya2OAMEBU+J7GmRFVmIetqEYRko6QYRuKOESw==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz", + "integrity": "sha512-r6YMuZDWLtLlu0kqIim5o/3TNRAlWb073HwT3e2nKf9I8IIvOggPrnILYPsrrKilmn/mYEMCf/Z07w3yQJF6dg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz", + "integrity": "sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz", + "integrity": "sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", + "integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz", + "integrity": "sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.2.0.tgz", + "integrity": "sha512-WhKr6yu6yGpGcNMVgIBuI9MkredpVc7Y3YR4UzEZmDztHoL6wV56YBHLhWnjO1EvId1B32HrD3DRFc+zSoKI1g==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz", + "integrity": "sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.2.0.tgz", + "integrity": "sha512-CEHzg4g5UraReozI9D4fblBYABs7IM6UerAVG7EJVrTLC5keh00aEuLUT+O40+mJCEzaXkYfTCUKIyeDfMOFFQ==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-remap-async-to-generator": "^7.1.0" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz", + "integrity": "sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.2.0.tgz", + "integrity": "sha512-vDTgf19ZEV6mx35yiPJe4fS02mPQUUcBNwWQSZFXSzTSbsJFQvHt7DqyS3LK8oOWALFOsJ+8bbqBgkirZteD5Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "lodash": "^4.17.10" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.2.tgz", + "integrity": "sha512-gEZvgTy1VtcDOaQty1l10T3jQmJKlNVxLDCs+3rCVPr6nMkODLELxViq5X9l+rfxbie3XrfrMCYYY6eX3aOcOQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.0.0", + "@babel/helper-define-map": "^7.1.0", + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-optimise-call-expression": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-replace-supers": "^7.1.0", + "@babel/helper-split-export-declaration": "^7.0.0", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz", + "integrity": "sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.2.0.tgz", + "integrity": "sha512-coVO2Ayv7g0qdDbrNiadE4bU7lvCd9H539m2gMknyVjjMdwF/iCOM7R+E8PkntoqLkltO0rk+3axhpp/0v68VQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz", + "integrity": "sha512-sKxnyHfizweTgKZf7XsXu/CNupKhzijptfTM+bozonIuyVrLWVUvYjE2bhuSBML8VQeMxq4Mm63Q9qvcvUcciQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-regex": "^7.0.0", + "regexpu-core": "^4.1.3" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz", + "integrity": "sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz", + "integrity": "sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.1.0", + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.0.0.tgz", + "integrity": "sha512-WhXUNb4It5a19RsgKKbQPrjmy4yWOY1KynpEbNw7bnd1QTcrT/EIl3MJvnGgpgvrKyKbqX7nUNOJfkpLOnoDKA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.0.0" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz", + "integrity": "sha512-Kz7Mt0SsV2tQk6jG5bBv5phVbkd0gd27SgYD4hH1aLMJRchM0dzHaXvrWhVZ+WxAlDoAKZ7Uy3jVTW2mKXQ1WQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz", + "integrity": "sha512-kWgksow9lHdvBC2Z4mxTsvc7YdY7w/V6B2vy9cTIPtLEE9NhwoWivaxdNM/S37elu5bqlLP/qOY906LukO9lkQ==", + "requires": { + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz", + "integrity": "sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz", + "integrity": "sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw==", + "requires": { + "@babel/helper-module-transforms": "^7.1.0", + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz", + "integrity": "sha512-V6y0uaUQrQPXUrmj+hgnks8va2L0zcZymeU7TtWEgdRLNkceafKXEduv7QzgQAE4lT+suwooG9dC7LFhdRAbVQ==", + "requires": { + "@babel/helper-module-transforms": "^7.1.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-simple-access": "^7.1.0" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.2.0.tgz", + "integrity": "sha512-aYJwpAhoK9a+1+O625WIjvMY11wkB/ok0WClVwmeo3mCjcNRjt+/8gHWrB5i+00mUju0gWsBkQnPpdvQ7PImmQ==", + "requires": { + "@babel/helper-hoist-variables": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz", + "integrity": "sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==", + "requires": { + "@babel/helper-module-transforms": "^7.1.0", + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz", + "integrity": "sha512-yin069FYjah+LbqfGeTfzIBODex/e++Yfa0rH0fpfam9uTbuEeEOx5GLGr210ggOV77mVRNoeqSYqeuaqSzVSw==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz", + "integrity": "sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-replace-supers": "^7.1.0" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.2.0.tgz", + "integrity": "sha512-kB9+hhUidIgUoBQ0MsxMewhzr8i60nMa2KgeJKQWYrqQpqcBYtnpR+JgkadZVZoaEZ/eKu9mclFaVwhRpLNSzA==", + "requires": { + "@babel/helper-call-delegate": "^7.1.0", + "@babel/helper-get-function-arity": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-react-constant-elements": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.2.0.tgz", + "integrity": "sha512-YYQFg6giRFMsZPKUM9v+VcHOdfSQdz9jHCx3akAi3UYgyjndmdYGSXylQ/V+HswQt4fL8IklchD9HTsaOCrWQQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz", + "integrity": "sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.2.0.tgz", + "integrity": "sha512-h/fZRel5wAfCqcKgq3OhbmYaReo7KkoJBpt8XnvpS7wqaNMqtw5xhxutzcm35iMUWucfAdT/nvGTsWln0JTg2Q==", + "requires": { + "@babel/helper-builder-react-jsx": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0" + } + }, + "@babel/plugin-transform-react-jsx-self": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz", + "integrity": "sha512-v6S5L/myicZEy+jr6ielB0OR8h+EH/1QFx/YJ7c7Ua+7lqsjj/vW6fD5FR9hB/6y7mGbfT4vAURn3xqBxsUcdg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0" + } + }, + "@babel/plugin-transform-react-jsx-source": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz", + "integrity": "sha512-A32OkKTp4i5U6aE88GwwcuV4HAprUgHcTq0sSafLxjr6AW0QahrCRCjxogkbbcdtpbXkuTOlgpjophCxb6sh5g==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz", + "integrity": "sha512-sj2qzsEx8KDVv1QuJc/dEfilkg3RRPvPYx/VnKLtItVQRWt1Wqf5eVCOLZm29CiGFfYYsA3VPjfizTCV0S0Dlw==", + "requires": { + "regenerator-transform": "^0.13.3" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.1.0.tgz", + "integrity": "sha512-WFLMgzu5DLQEah0lKTJzYb14vd6UiES7PTnXcvrPZ1VrwFeJ+mTbvr65fFAsXYMt2bIoOoC0jk76zY1S7HZjUg==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0", + "resolve": "^1.8.1", + "semver": "^5.5.1" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz", + "integrity": "sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz", + "integrity": "sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz", + "integrity": "sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-regex": "^7.0.0" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz", + "integrity": "sha512-FkPix00J9A/XWXv4VoKJBMeSkyY9x/TqIh76wzcdfl57RJJcf8CehQ08uwfhCDNtRQYtHQKBTwKZDEyjE13Lwg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz", + "integrity": "sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.2.0.tgz", + "integrity": "sha512-EnI7i2/gJ7ZNr2MuyvN2Hu+BHJENlxWte5XygPvfj/MbvtOkWor9zcnHpMMQL2YYaaCcqtIvJUyJ7QVfoGs7ew==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-typescript": "^7.2.0" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz", + "integrity": "sha512-m48Y0lMhrbXEJnVUaYly29jRXbQ3ksxPrS1Tg8t+MHqzXhtBYAvI51euOBaoAlZLPHsieY9XPVMf80a5x0cPcA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-regex": "^7.0.0", + "regexpu-core": "^4.1.3" + } + }, + "@babel/preset-env": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.2.3.tgz", + "integrity": "sha512-AuHzW7a9rbv5WXmvGaPX7wADxFkZIqKlbBh1dmZUQp4iwiPpkE/Qnrji6SC4UQCQzvWY/cpHET29eUhXS9cLPw==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-async-generator-functions": "^7.2.0", + "@babel/plugin-proposal-json-strings": "^7.2.0", + "@babel/plugin-proposal-object-rest-spread": "^7.2.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.2.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.2.0", + "@babel/plugin-syntax-async-generators": "^7.2.0", + "@babel/plugin-syntax-object-rest-spread": "^7.2.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.2.0", + "@babel/plugin-transform-arrow-functions": "^7.2.0", + "@babel/plugin-transform-async-to-generator": "^7.2.0", + "@babel/plugin-transform-block-scoped-functions": "^7.2.0", + "@babel/plugin-transform-block-scoping": "^7.2.0", + "@babel/plugin-transform-classes": "^7.2.0", + "@babel/plugin-transform-computed-properties": "^7.2.0", + "@babel/plugin-transform-destructuring": "^7.2.0", + "@babel/plugin-transform-dotall-regex": "^7.2.0", + "@babel/plugin-transform-duplicate-keys": "^7.2.0", + "@babel/plugin-transform-exponentiation-operator": "^7.2.0", + "@babel/plugin-transform-for-of": "^7.2.0", + "@babel/plugin-transform-function-name": "^7.2.0", + "@babel/plugin-transform-literals": "^7.2.0", + "@babel/plugin-transform-modules-amd": "^7.2.0", + "@babel/plugin-transform-modules-commonjs": "^7.2.0", + "@babel/plugin-transform-modules-systemjs": "^7.2.0", + "@babel/plugin-transform-modules-umd": "^7.2.0", + "@babel/plugin-transform-new-target": "^7.0.0", + "@babel/plugin-transform-object-super": "^7.2.0", + "@babel/plugin-transform-parameters": "^7.2.0", + "@babel/plugin-transform-regenerator": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.2.0", + "@babel/plugin-transform-spread": "^7.2.0", + "@babel/plugin-transform-sticky-regex": "^7.2.0", + "@babel/plugin-transform-template-literals": "^7.2.0", + "@babel/plugin-transform-typeof-symbol": "^7.2.0", + "@babel/plugin-transform-unicode-regex": "^7.2.0", + "browserslist": "^4.3.4", + "invariant": "^2.2.2", + "js-levenshtein": "^1.1.3", + "semver": "^5.3.0" + } + }, + "@babel/preset-react": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.0.0.tgz", + "integrity": "sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-react-jsx-self": "^7.0.0", + "@babel/plugin-transform-react-jsx-source": "^7.0.0" + } + }, + "@babel/preset-typescript": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.1.0.tgz", + "integrity": "sha512-LYveByuF9AOM8WrsNne5+N79k1YxjNB6gmpCQsnuSBAcV8QUeB+ZUxQzL7Rz7HksPbahymKkq2qBR+o36ggFZA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.1.0" + } + }, "@babel/runtime": { - "version": "7.0.0-beta.42", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0-beta.42.tgz", - "integrity": "sha512-iOGRzUoONLOtmCvjUsZv3mZzgCT6ljHQY5fr1qG1QIiJQwtM7zbPWGGpa3QWETq+UqwWyJnoi5XZDZRwZDFciQ==", + "version": "7.0.0-rc.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0-rc.1.tgz", + "integrity": "sha512-Nifv2kwP/nwR39cAOasNxzjYfpeuf/ZbZNtQz5eYxWTC9yHARU9wItFnAwz1GTZ62MU+AtSjzZPMbLK5Q9hmbg==", "requires": { - "core-js": "^2.5.3", - "regenerator-runtime": "^0.11.1" + "regenerator-runtime": "^0.12.0" }, "dependencies": { - "core-js": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", - "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==" + "regenerator-runtime": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz", + "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" } } }, + "@babel/template": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz", + "integrity": "sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.2.2", + "@babel/types": "^7.2.2" + } + }, + "@babel/traverse": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.2.3.tgz", + "integrity": "sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/generator": "^7.2.2", + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-split-export-declaration": "^7.0.0", + "@babel/parser": "^7.2.3", + "@babel/types": "^7.2.2", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.10" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "@babel/types": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.2.2.tgz", + "integrity": "sha512-fKCuD6UFUMkR541eDWL+2ih/xFZBXPOg/7EQFeTluMDebfqR4jrpaCjLhkWlQS4hT6nRa2PMEgXKbRB5/H2fpg==", + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.17.10", + "to-fast-properties": "^2.0.0" + } + }, + "@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" + }, "@material-ui/core": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-1.5.0.tgz", - "integrity": "sha512-beqrCT2QTw+R9DLc+V2W2GGr/jU87L2eVTrL1kU2qfnkRz+LwJHL6YCyh0gUFgZig4ywDCIQiaMMs0/3rU3qDw==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-1.5.1.tgz", + "integrity": "sha512-hGT0JelWZGZqgWZzRbON/uqFCgWa4XhmEFG/IEd9SBwCU4sWC99Kv1KpywLhYYWecobqT4Dh7ijO1ZaIAk8HyA==", "requires": { - "@babel/runtime": "7.0.0-beta.42", + "@babel/runtime": "7.0.0-rc.1", "@types/jss": "^9.5.3", "@types/react-transition-group": "^2.0.8", "brcast": "^3.0.1", @@ -55,68 +889,280 @@ } }, "@material-ui/icons": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@material-ui/icons/-/icons-2.0.2.tgz", - "integrity": "sha512-Ct3PijJRPACnorgdr93QUKn5o6ixfVKTmy9yLyUpeYQgkaBpkaS60qKaQnSQ3ayA+BeFJQOHOHfGfCYGqBPVBg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@material-ui/icons/-/icons-2.0.3.tgz", + "integrity": "sha512-wgKUB4vgCzdKseV3MHdsR7lZMyNYKykrghKX4GHuMmlZrrWMh26jO1E6xyjuCpJ/E8DX+m+YGURbBYN9CxZ+rw==", "requires": { - "@babel/runtime": "7.0.0-beta.42", + "@babel/runtime": "7.0.0-rc.1", "recompose": "^0.28.0" } }, + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + } + }, + "@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" + }, + "@svgr/core": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-2.4.1.tgz", + "integrity": "sha512-2i1cUbjpKt1KcIP05e10vkmu9Aedp32EFqVcSQ08onbB8lVxJqMPci3Hr54aI14S9cLg4JdcpO0D35HHUtT8oQ==", + "requires": { + "camelcase": "^5.0.0", + "cosmiconfig": "^5.0.6", + "h2x-core": "^1.1.0", + "h2x-plugin-jsx": "^1.1.0", + "merge-deep": "^3.0.2", + "prettier": "^1.14.2", + "svgo": "^1.0.5" + } + }, + "@svgr/webpack": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-2.4.1.tgz", + "integrity": "sha512-sMHYq0zbMtSHcc9kVfkYI2zrl88u4mKGyQLgKt7r+ul5nITcncm/EPBhzEUrJY5izdlaU6EvyH8zOhZnfaSmOA==", + "requires": { + "@babel/core": "^7.0.1", + "@babel/plugin-transform-react-constant-elements": "^7.0.0", + "@babel/preset-env": "^7.0.0", + "@babel/preset-react": "^7.0.0", + "@svgr/core": "^2.4.1", + "loader-utils": "^1.1.0" + } + }, "@types/async": { - "version": "2.0.49", - "resolved": "https://registry.npmjs.org/@types/async/-/async-2.0.49.tgz", - "integrity": "sha512-Benr3i5odUkvpFkOpzGqrltGdbSs+EVCkEBGXbuR7uT0VzhXKIkhem6PDzHdx5EonA+rfbB3QvP6aDOw5+zp5Q==", + "version": "2.0.50", + "resolved": "https://registry.npmjs.org/@types/async/-/async-2.0.50.tgz", + "integrity": "sha512-VMhZMMQgV1zsR+lX/0IBfAk+8Eb7dPVMWiQGFAt3qjo5x7Ml6b77jUo0e1C3ToD+XRDXqtrfw+6AB0uUsPEr3Q==", "optional": true }, - "@types/graphql": { - "version": "0.12.6", - "resolved": "https://registry.npmjs.org/@types/graphql/-/graphql-0.12.6.tgz", - "integrity": "sha512-wXAVyLfkG1UMkKOdMijVWFky39+OD/41KftzqfX1Oejd0Gm6dOIKjCihSVECg6X7PHjftxXmfOKA/d1H79ZfvQ==" - }, "@types/jss": { - "version": "9.5.4", - "resolved": "https://registry.npmjs.org/@types/jss/-/jss-9.5.4.tgz", - "integrity": "sha512-FAZoCrLjEb0GUgDP1I20748eIwyshM38cXJMFJ7hW2XbtSEo8RrSebgAH3jdXF4FV4NKzyD0TvXlf2MDE8yGrA==", + "version": "9.5.7", + "resolved": "https://registry.npmjs.org/@types/jss/-/jss-9.5.7.tgz", + "integrity": "sha512-OZimStu2QdDMtZ0h72JXqvLVbWUjXd5ZLk8vxLmfuC/nM1AabRyyGoxSufnzixrbpEcVcyy/JV5qeQu2JnjVZw==", "requires": { "csstype": "^2.0.0", "indefinite-observable": "^1.0.1" } }, "@types/prop-types": { - "version": "15.5.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.5.5.tgz", - "integrity": "sha512-mOrlCEdwX3seT3n0AXNt4KNPAZZxcsABUHwBgFXOt+nvFUXkxCAO6UBJHPrDxWEa2KDMil86355fjo8jbZ+K0Q==", - "requires": { - "@types/react": "*" - } + "version": "15.5.8", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.5.8.tgz", + "integrity": "sha512-3AQoUxQcQtLHsK25wtTWIoIpgYjH3vSDroZOUr7PpCHw/jLY1RB9z9E8dBT/OSmwStVgkRNvdh+ZHNiomRieaw==" + }, + "@types/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.1.tgz", + "integrity": "sha512-eqz8c/0kwNi/OEHQfvIuJVLTst3in0e7uTKeuY+WL/zfKn0xVujOTp42bS/vUUokhK5P2BppLd9JXMOMHcgbjA==" }, "@types/react": { - "version": "16.4.9", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.4.9.tgz", - "integrity": "sha512-hG3/RD7baE2bY3N9hRodZbl9qcpG38njeQcbLZvOFOUqDShk7dtAEq5vH2HHf/GYHw4mc3m7zuIVgLnAlTVAnA==", + "version": "16.7.18", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.7.18.tgz", + "integrity": "sha512-Tx4uu3ppK53/iHk6VpamMP3f3ahfDLEVt3ZQc8TFm30a1H3v9lMsCntBREswZIW/SKrvJjkb3Hq8UwO6GREBng==", "requires": { "@types/prop-types": "*", "csstype": "^2.2.0" } }, "@types/react-transition-group": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-2.0.13.tgz", - "integrity": "sha512-A3DV2+aU1P2/wD4r2Lz3lKTV8hFjUslWmT18gGhBdMtZ6FVOAJV7HyZA7dt+Kc+pa1jjevLBhHj344Gnh8yo1g==", + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-2.0.15.tgz", + "integrity": "sha512-S0QnNzbHoWXDbKBl/xk5dxA4FT+BNlBcI3hku991cl8Cz3ytOkUMcCRtzdX11eb86E131bSsQqy5WrPCdJYblw==", "requires": { "@types/react": "*" } }, + "@types/tapable": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.2.tgz", + "integrity": "sha512-42zEJkBpNfMEAvWR5WlwtTH22oDzcMjFsL9gDGExwF8X8WvAiw7Vwop7hPw03QT8TKfec83LwbHj6SvpqM4ELQ==" + }, "@types/zen-observable": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.5.4.tgz", - "integrity": "sha512-sW6xN96wUak4tgc89d0tbTg7QDGYhGv5hvQIS6h4mRCd8h2btiZ80loPU8cyLwsBbA4ZeQt0FjvUhJ4rNhdsGg==" + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.0.tgz", + "integrity": "sha512-te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg==" + }, + "@webassemblyjs/ast": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.6.tgz", + "integrity": "sha512-8nkZS48EVsMUU0v6F1LCIOw4RYWLm2plMtbhFTjNgeXmsTNLuU3xTRtnljt9BFQB+iPbLRobkNrCWftWnNC7wQ==", + "requires": { + "@webassemblyjs/helper-module-context": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/wast-parser": "1.7.6", + "mamacro": "^0.0.3" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.6.tgz", + "integrity": "sha512-VBOZvaOyBSkPZdIt5VBMg3vPWxouuM13dPXGWI1cBh3oFLNcFJ8s9YA7S9l4mPI7+Q950QqOmqj06oa83hNWBA==" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.6.tgz", + "integrity": "sha512-SCzhcQWHXfrfMSKcj8zHg1/kL9kb3aa5TN4plc/EREOs5Xop0ci5bdVBApbk2yfVi8aL+Ly4Qpp3/TRAUInjrg==" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.6.tgz", + "integrity": "sha512-1/gW5NaGsEOZ02fjnFiU8/OEEXU1uVbv2um0pQ9YVL3IHSkyk6xOwokzyqqO1qDZQUAllb+V8irtClPWntbVqw==" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.6.tgz", + "integrity": "sha512-+suMJOkSn9+vEvDvgyWyrJo5vJsWSDXZmJAjtoUq4zS4eqHyXImpktvHOZwXp1XQjO5H+YQwsBgqTQEc0J/5zg==", + "requires": { + "@webassemblyjs/wast-printer": "1.7.6" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.6.tgz", + "integrity": "sha512-HCS6KN3wgxUihGBW7WFzEC/o8Eyvk0d56uazusnxXthDPnkWiMv+kGi9xXswL2cvfYfeK5yiM17z2K5BVlwypw==" + }, + "@webassemblyjs/helper-module-context": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.6.tgz", + "integrity": "sha512-e8/6GbY7OjLM+6OsN7f2krC2qYVNaSr0B0oe4lWdmq5sL++8dYDD1TFbD1TdAdWMRTYNr/Qq7ovXWzia2EbSjw==", + "requires": { + "mamacro": "^0.0.3" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.6.tgz", + "integrity": "sha512-PzYFCb7RjjSdAOljyvLWVqd6adAOabJW+8yRT+NWhXuf1nNZWH+igFZCUK9k7Cx7CsBbzIfXjJc7u56zZgFj9Q==" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.6.tgz", + "integrity": "sha512-3GS628ppDPSuwcYlQ7cDCGr4W2n9c4hLzvnRKeuz+lGsJSmc/ADVoYpm1ts2vlB1tGHkjtQMni+yu8mHoMlKlA==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-buffer": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/wasm-gen": "1.7.6" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.6.tgz", + "integrity": "sha512-V4cIp0ruyw+hawUHwQLn6o2mFEw4t50tk530oKsYXQhEzKR+xNGDxs/SFFuyTO7X3NzEu4usA3w5jzhl2RYyzQ==", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.6.tgz", + "integrity": "sha512-ojdlG8WpM394lBow4ncTGJoIVZ4aAtNOWHhfAM7m7zprmkVcKK+2kK5YJ9Bmj6/ketTtOn7wGSHCtMt+LzqgYQ==", + "requires": { + "@xtuc/long": "4.2.1" + } + }, + "@webassemblyjs/utf8": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.6.tgz", + "integrity": "sha512-oId+tLxQ+AeDC34ELRYNSqJRaScB0TClUU6KQfpB8rNT6oelYlz8axsPhf6yPTg7PBJ/Z5WcXmUYiHEWgbbHJw==" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.6.tgz", + "integrity": "sha512-pTNjLO3o41v/Vz9VFLl+I3YLImpCSpodFW77pNoH4agn5I6GgSxXHXtvWDTvYJFty0jSeXZWLEmbaSIRUDlekg==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-buffer": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/helper-wasm-section": "1.7.6", + "@webassemblyjs/wasm-gen": "1.7.6", + "@webassemblyjs/wasm-opt": "1.7.6", + "@webassemblyjs/wasm-parser": "1.7.6", + "@webassemblyjs/wast-printer": "1.7.6" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.6.tgz", + "integrity": "sha512-mQvFJVumtmRKEUXMohwn8nSrtjJJl6oXwF3FotC5t6e2hlKMh8sIaW03Sck2MDzw9xPogZD7tdP5kjPlbH9EcQ==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/ieee754": "1.7.6", + "@webassemblyjs/leb128": "1.7.6", + "@webassemblyjs/utf8": "1.7.6" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.6.tgz", + "integrity": "sha512-go44K90fSIsDwRgtHhX14VtbdDPdK2sZQtZqUcMRvTojdozj5tLI0VVJAzLCfz51NOkFXezPeVTAYFqrZ6rI8Q==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-buffer": "1.7.6", + "@webassemblyjs/wasm-gen": "1.7.6", + "@webassemblyjs/wasm-parser": "1.7.6" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.6.tgz", + "integrity": "sha512-t1T6TfwNY85pDA/HWPA8kB9xA4sp9ajlRg5W7EKikqrynTyFo+/qDzIpvdkOkOGjlS6d4n4SX59SPuIayR22Yg==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-api-error": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/ieee754": "1.7.6", + "@webassemblyjs/leb128": "1.7.6", + "@webassemblyjs/utf8": "1.7.6" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.6.tgz", + "integrity": "sha512-1MaWTErN0ziOsNUlLdvwS+NS1QWuI/kgJaAGAMHX8+fMJFgOJDmN/xsG4h/A1Gtf/tz5VyXQciaqHZqp2q0vfg==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/floating-point-hex-parser": "1.7.6", + "@webassemblyjs/helper-api-error": "1.7.6", + "@webassemblyjs/helper-code-frame": "1.7.6", + "@webassemblyjs/helper-fsm": "1.7.6", + "@xtuc/long": "4.2.1", + "mamacro": "^0.0.3" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.6.tgz", + "integrity": "sha512-vHdHSK1tOetvDcl1IV1OdDeGNe/NDDQ+KzuZHMtqTVP1xO/tZ/IKNpj5BaGk1OYFdsDWQqb31PIwdEyPntOWRQ==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/wast-parser": "1.7.6", + "@xtuc/long": "4.2.1" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "@xtuc/long": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz", + "integrity": "sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==" }, "abab": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz", - "integrity": "sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4=" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz", + "integrity": "sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w==" }, "accepts": { "version": "1.3.5", @@ -128,54 +1174,43 @@ } }, "acorn": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz", - "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==" + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.0.4.tgz", + "integrity": "sha512-VY4i5EKSKkofY2I+6QLTbTTN/UvEQPCo6eiwzzSaSWfpaDhOmStMCMod6wmuPciNq+XS0faCglFu2lHZpdHUtg==" }, "acorn-dynamic-import": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz", - "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz", + "integrity": "sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==", "requires": { - "acorn": "^4.0.3" + "acorn": "^5.0.0" }, "dependencies": { "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", + "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==" } } }, "acorn-globals": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz", - "integrity": "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.0.tgz", + "integrity": "sha512-hMtHj3s5RnuhvHPowpBYvJVj3rAar82JiDQHvGs1zO0l10ocX/xEdBShNHTJaboucJUsScghp74pH3s7EnHHQw==", "requires": { - "acorn": "^4.0.4" - }, - "dependencies": { - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" - } + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" } }, "acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", - "requires": { - "acorn": "^3.0.4" - }, - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" - } - } + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz", + "integrity": "sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg==" + }, + "acorn-walk": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.1.1.tgz", + "integrity": "sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw==" }, "address": { "version": "1.0.3", @@ -183,58 +1218,35 @@ "integrity": "sha512-z55ocwKBRLryBs394Sm3ushTtBeg6VAeuku7utSoSnsJKvKcnXFIyC6vh27n3rXyxSgkJBBCAvyOn7gSUcTYjg==" }, "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.6.2.tgz", + "integrity": "sha512-FBHEW6Jf5TB9MGBgUUA9XHkTbjXYfAUjY43ACMfmdMRHniyoMHjHjzD50OK8LGDWQwp4rWEsIq5kEqq7rvIM1g==", "requires": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", + "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.3.0" + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" + }, "ajv-keywords": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=" }, - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", - "requires": { - "kind-of": "^3.0.2", - "longest": "^1.0.1", - "repeat-string": "^1.5.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, "alphanum-sort": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" - }, - "ansi-align": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", - "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", - "requires": { - "string-width": "^2.0.0" - } + "ansi-colors": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", + "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==" }, "ansi-escapes": { "version": "3.1.0", @@ -260,91 +1272,280 @@ } }, "anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "requires": { - "micromatch": "^2.1.5", - "normalize-path": "^2.0.0" + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" }, "dependencies": { "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "requires": { - "arr-flatten": "^1.0.1" - } + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" }, "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" }, "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" + "ms": "2.0.0" } }, "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "requires": { - "is-posix-bracket": "^0.1.0" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "http://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "http://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } } }, "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "requires": { - "is-extglob": "^1.0.0" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { - "is-buffer": "^1.1.5" + "kind-of": "^6.0.0" } }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, "apollo-boost": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/apollo-boost/-/apollo-boost-0.1.10.tgz", - "integrity": "sha512-Bevaab5xqmOuxVmn8DV+7suoKP/ADX8NKzvfZhD3LgbP72MzpFXxulnP5/xSIBKn08mZvloeYGYdQkoxa7q3/Q==", + "version": "0.1.23", + "resolved": "https://registry.npmjs.org/apollo-boost/-/apollo-boost-0.1.23.tgz", + "integrity": "sha512-yQr1Ph3DEVvU7XeQhAh+6p2wZ++azxgGAtwXc+D5EP1CHU0HMVfVgtj1M0CDO1z14SZgQbrurQ60bgiyquoiVg==", "requires": { - "apollo-cache": "^1.1.12", - "apollo-cache-inmemory": "^1.2.5", - "apollo-client": "^2.3.5", + "apollo-cache": "^1.1.22", + "apollo-cache-inmemory": "^1.3.12", + "apollo-client": "^2.4.8", "apollo-link": "^1.0.6", "apollo-link-error": "^1.0.3", "apollo-link-http": "^1.3.1", @@ -353,106 +1554,111 @@ } }, "apollo-cache": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.1.12.tgz", - "integrity": "sha512-D0BPiHvJ6vIrXRh6P4mwlxuUOvODGuJxJq+zIjP8fADIqwjYtH3U3d/PY8dQ2fn4bDbvIAWBUkADBuJLpLIIpg==", + "version": "1.1.22", + "resolved": "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.1.22.tgz", + "integrity": "sha512-8PoxhQLISj2oHwT7i/r4l+ly4y3RKZls+dtXzAewu3U77P9dNZKhYkRNAhx9iEfsrNoHgXBV8vMp64hb1uYh+g==", "requires": { - "apollo-utilities": "^1.0.16" + "apollo-utilities": "^1.0.27" } }, "apollo-cache-inmemory": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.2.5.tgz", - "integrity": "sha512-D9KIT4bq7ORm0BVXjSIxU09SvTUunWKxM63Lvr81hR83I7B7RRM3uFBDUV9VG8rlIGkD+1obBNlW2ycerFV8wQ==", + "version": "1.3.12", + "resolved": "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.3.12.tgz", + "integrity": "sha512-jxWcW64QoYQZ09UH6v3syvCCl3MWr6bsxT3wYYL6ORi8svdJUpnNrHTcv5qXqJYVg/a+NHhfEt+eGjJUG2ytXA==", "requires": { - "apollo-cache": "^1.1.12", - "apollo-utilities": "^1.0.16", - "graphql-anywhere": "^4.1.14" + "apollo-cache": "^1.1.22", + "apollo-utilities": "^1.0.27", + "optimism": "^0.6.8" } }, "apollo-client": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/apollo-client/-/apollo-client-2.3.5.tgz", - "integrity": "sha512-FYg+Mj/HWSaO/ZllT5JnyHGUhkFhZ+UOdEvJd/DYKjxHNPal/d3jyXtG947r4IhUqPmmxXsAXNwvJGPieBKJGg==", + "version": "2.4.8", + "resolved": "https://registry.npmjs.org/apollo-client/-/apollo-client-2.4.8.tgz", + "integrity": "sha512-OAFbCTnGPtaIv0j+EZYzY20d+MD2JNbJ/YXZ4s0/oZlSg87bb0gjcIbccw2lnytipymZcZNr5ArFFeh0saGEwA==", "requires": { - "@types/async": "2.0.49", - "@types/zen-observable": "^0.5.3", - "apollo-cache": "^1.1.12", + "@types/async": "2.0.50", + "@types/zen-observable": "^0.8.0", + "apollo-cache": "1.1.22", "apollo-link": "^1.0.0", "apollo-link-dedup": "^1.0.0", - "apollo-utilities": "^1.0.16", + "apollo-utilities": "1.0.27", "symbol-observable": "^1.0.2", "zen-observable": "^0.8.0" } }, "apollo-link": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.2.tgz", - "integrity": "sha512-Uk/BC09dm61DZRDSu52nGq0nFhq7mcBPTjy5EEH1eunJndtCaNXQhQz/BjkI2NdrfGI+B+i5he6YSoRBhYizdw==", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.6.tgz", + "integrity": "sha512-sUNlA20nqIF3gG3F8eyMD+mO80fmf3dPZX+GUOs3MI9oZR8ug09H3F0UsWJMcpEg6h55Yy5wZ+BMmAjrbenF/Q==", "requires": { - "@types/graphql": "0.12.6", "apollo-utilities": "^1.0.0", - "zen-observable-ts": "^0.8.9" + "zen-observable-ts": "^0.8.13" } }, "apollo-link-dedup": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/apollo-link-dedup/-/apollo-link-dedup-1.0.9.tgz", - "integrity": "sha512-RbuEKpmSHVMtoREMPh2wUFTeh65q+0XPVeqgaOP/rGEAfvLyOMvX0vT2nVaejMohoMxuUnfZwpldXaDFWnlVbg==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/apollo-link-dedup/-/apollo-link-dedup-1.0.13.tgz", + "integrity": "sha512-i4NuqT3DSFczFcC7NMUzmnYjKX7NggLY+rqYVf+kE9JjqKOQhT6wqhaWsVIABfIUGE/N0DTgYJBCMu/18aXmYA==", "requires": { - "apollo-link": "^1.2.2" + "apollo-link": "^1.2.6" } }, "apollo-link-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/apollo-link-error/-/apollo-link-error-1.1.0.tgz", - "integrity": "sha512-4Vu/IUn6Kn6+Fthym4iuqypCKcLdwTg3MaCvtLdaLbt9X2hNCq3y8mv6vuWIlAY51X8wKhCgYghQSOs5R/embQ==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/apollo-link-error/-/apollo-link-error-1.1.5.tgz", + "integrity": "sha512-gE0P711K+rI3QcTzfYhzRI9axXaiuq/emu8x8Y5NHK9jl9wxh7qmEc3ZTyGpnGFDDTXfhalmX17X5lp3RCVHDQ==", "requires": { - "apollo-link": "^1.2.2" + "apollo-link": "^1.2.6", + "apollo-link-http-common": "^0.2.8" } }, "apollo-link-http": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.4.tgz", - "integrity": "sha512-e9Ng3HfnW00Mh3TI6DhNRfozmzQOtKgdi+qUAsHBOEcTP0PTAmb+9XpeyEEOueLyO0GXhB92HUCIhzrWMXgwyg==", + "version": "1.5.9", + "resolved": "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.9.tgz", + "integrity": "sha512-9tJy2zGm4Cm/1ycScDNZJe51dgnTSfKx7pKIgPZmcxkdDpgUY2DZitDH6ZBv4yp9z8MC9Xr9wgwc29s6hcadUQ==", "requires": { - "apollo-link": "^1.2.2", - "apollo-link-http-common": "^0.2.4" + "apollo-link": "^1.2.6", + "apollo-link-http-common": "^0.2.8" } }, "apollo-link-http-common": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.4.tgz", - "integrity": "sha512-4j6o6WoXuSPen9xh4NBaX8/vL98X1xY2cYzUEK1F8SzvHe2oFONfxJBTekwU8hnvapcuq8Qh9Uct+gelu8T10g==", + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.8.tgz", + "integrity": "sha512-gGmXZN8mr7e9zjopzKQfZ7IKnh8H12NxBDzvp9nXI3U82aCVb72p+plgoYLcpMY8w6krvoYjgicFmf8LO20TCQ==", "requires": { - "apollo-link": "^1.2.2" + "apollo-link": "^1.2.6" } }, "apollo-link-state": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/apollo-link-state/-/apollo-link-state-0.4.1.tgz", - "integrity": "sha512-69/til4ENfl/Fvf7br2xSsLSBcxcXPbOHVNkzLLejvUZickl93HLO4/fO+uvoBi4dCYRgN17Zr8FwI41ueRx0g==", + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/apollo-link-state/-/apollo-link-state-0.4.2.tgz", + "integrity": "sha512-xMPcAfuiPVYXaLwC6oJFIZrKgV3GmdO31Ag2eufRoXpvT0AfJZjdaPB4450Nu9TslHRePN9A3quxNueILlQxlw==", "requires": { "apollo-utilities": "^1.0.8", "graphql-anywhere": "^4.1.0-alpha.0" } }, "apollo-utilities": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.16.tgz", - "integrity": "sha512-5oKnElKqkV920KRbitiyISLeG63tUGAyNdotg58bQSX9Omr+smoNDTIRMRLbyIdKOYLaw3LpDaRepOPqljj0NQ==", + "version": "1.0.27", + "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.27.tgz", + "integrity": "sha512-nzrMQ89JMpNmYnVGJ4t8zN75gQbql27UDhlxNi+3OModp0Masx5g+fQmQJ5B4w2dpRuYOsdwFLmj3lQbwOKV1Q==", "requires": { "fast-json-stable-stringify": "^2.0.0" } }, "append-transform": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz", - "integrity": "sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-0.4.0.tgz", + "integrity": "sha1-126/jKlNJ24keja61EpLdKthGZE=", "requires": { - "default-require-extensions": "^2.0.0" + "default-require-extensions": "^1.0.0" } }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -462,18 +1668,21 @@ } }, "aria-query": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-0.7.1.tgz", - "integrity": "sha1-Jsu1r/ZBRLCoJb4YRuCxbPoAsR4=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", + "integrity": "sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=", "requires": { "ast-types-flow": "0.0.7", "commander": "^2.11.0" } }, "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "requires": { + "arr-flatten": "^1.0.1" + } }, "arr-flatten": { "version": "1.1.0", @@ -495,15 +1704,10 @@ "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz", "integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw=" }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" - }, "array-flatten": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz", - "integrity": "sha1-Qmu52oQJDBg42BLIFQryCoMx4pY=" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" }, "array-includes": { "version": "3.0.3", @@ -538,9 +1742,9 @@ "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" }, "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" }, "arrify": { "version": "1.0.1", @@ -553,9 +1757,12 @@ "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" }, "asn1": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } }, "asn1.js": { "version": "4.10.1", @@ -605,6 +1812,11 @@ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" + }, "async": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", @@ -618,27 +1830,49 @@ "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" }, + "async-limiter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", + "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==" + }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, "atob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz", - "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" }, "autoprefixer": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.1.6.tgz", - "integrity": "sha512-C9yv/UF3X+eJTi/zvfxuyfxmLibYrntpF3qoJYrMeQwgUJOZrZvpJiMG2FMQ3qnhWtF/be4pYONBBw95ZGe3vA==", + "version": "9.4.3", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.4.3.tgz", + "integrity": "sha512-/XSnzDepRkAU//xLcXA/lUWxpsBuw0WiriAHOqnxkuCtzLhaz+fL4it4gp20BQ8n5SyLzK/FOc7A0+u/rti2FQ==", "requires": { - "browserslist": "^2.5.1", - "caniuse-lite": "^1.0.30000748", + "browserslist": "^4.3.6", + "caniuse-lite": "^1.0.30000921", "normalize-range": "^0.1.2", "num2fraction": "^1.2.2", - "postcss": "^6.0.13", - "postcss-value-parser": "^3.2.3" + "postcss": "^7.0.6", + "postcss-value-parser": "^3.3.1" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, "aws-sign2": { @@ -647,14 +1881,14 @@ "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" }, "aws4": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz", - "integrity": "sha512-32NDda82rhwD9/JBCCkB+MRYDp0oSvlo2IL6rQWA10PQi7tDUM3eqMSltXmY+Oyl/7N3P3qNtAlv7X0d9bI28w==" + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", + "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" }, "axobject-query": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-0.1.0.tgz", - "integrity": "sha1-YvWdvFnJ+SQnWco0mWDnov48NsA=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.0.2.tgz", + "integrity": "sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww==", "requires": { "ast-types-flow": "0.0.7" } @@ -669,55 +1903,59 @@ "js-tokens": "^3.0.2" }, "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, "js-tokens": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" + }, + "supports-color": { + "version": "2.0.0", + "resolved": "http://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" } } }, "babel-core": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz", - "integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=", + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==" + }, + "babel-eslint": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-9.0.0.tgz", + "integrity": "sha512-itv1MwE3TMbY0QtNfeL7wzak1mV47Uy+n6HtSOO4Xd7rvmO+tsGQSgyOEEgo6Y2vHZKZphaoelNeSVj4vkLA1g==", "requires": { - "babel-code-frame": "^6.26.0", - "babel-generator": "^6.26.0", - "babel-helpers": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "babel-template": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "convert-source-map": "^1.5.0", - "debug": "^2.6.8", - "json5": "^0.5.1", - "lodash": "^4.17.4", - "minimatch": "^3.0.4", - "path-is-absolute": "^1.0.1", - "private": "^0.1.7", - "slash": "^1.0.0", - "source-map": "^0.5.6" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "eslint-scope": "3.7.1", + "eslint-visitor-keys": "^1.0.0" } }, - "babel-eslint": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-7.2.3.tgz", - "integrity": "sha1-sv4tgBJkcPXBlELcdXJTqJdxCCc=", + "babel-extract-comments": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", + "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", "requires": { - "babel-code-frame": "^6.22.0", - "babel-traverse": "^6.23.1", - "babel-types": "^6.23.0", - "babylon": "^6.17.0" + "babylon": "^6.18.0" } }, "babel-generator": { @@ -735,139 +1973,13 @@ "trim-right": "^1.0.1" }, "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "jsesc": { + "version": "1.3.0", + "resolved": "http://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", + "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" } } }, - "babel-helper-builder-binary-assignment-operator-visitor": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", - "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", - "requires": { - "babel-helper-explode-assignable-expression": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-builder-react-jsx": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz", - "integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=", - "requires": { - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "esutils": "^2.0.2" - } - }, - "babel-helper-call-delegate": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", - "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", - "requires": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-define-map": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz", - "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=", - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "lodash": "^4.17.4" - } - }, - "babel-helper-explode-assignable-expression": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz", - "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", - "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", - "requires": { - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-get-function-arity": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", - "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-hoist-variables": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", - "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-optimise-call-expression": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", - "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-regex": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz", - "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=", - "requires": { - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "lodash": "^4.17.4" - } - }, - "babel-helper-remap-async-to-generator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz", - "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-replace-supers": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", - "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=", - "requires": { - "babel-helper-optimise-call-expression": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, "babel-helpers": { "version": "6.24.1", "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", @@ -878,23 +1990,23 @@ } }, "babel-jest": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-20.0.3.tgz", - "integrity": "sha1-5KA7E9wQOJ4UD8ZF0J/8TO0wFnE=", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-23.6.0.tgz", + "integrity": "sha512-lqKGG6LYXYu+DQh/slrQ8nxXQkEkhugdXsU6St7GmhVS7Ilc/22ArwqXNJrf0QaOBjZB0360qZMwXqDYQHXaew==", "requires": { - "babel-core": "^6.0.0", - "babel-plugin-istanbul": "^4.0.0", - "babel-preset-jest": "^20.0.3" + "babel-plugin-istanbul": "^4.1.6", + "babel-preset-jest": "^23.2.0" } }, "babel-loader": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.2.tgz", - "integrity": "sha512-jRwlFbINAeyDStqK6Dd5YuY0k5YuzQUvlz2ZamuXrXmxav3pNqe9vfJ402+2G+OmlJSXxCOpB6Uz0INM7RQe2A==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.4.tgz", + "integrity": "sha512-fhBhNkUToJcW9nV46v8w87AJOwAJDz84c1CL57n3Stj73FANM/b9TbCUK4YhdOwEyZ+OxhYpdeZDNzSI29Firw==", "requires": { "find-cache-dir": "^1.0.0", "loader-utils": "^1.0.2", - "mkdirp": "^0.5.1" + "mkdirp": "^0.5.1", + "util.promisify": "^1.0.0" } }, "babel-messages": { @@ -905,22 +2017,12 @@ "babel-runtime": "^6.22.0" } }, - "babel-plugin-check-es2015-constants": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", - "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, "babel-plugin-dynamic-import-node": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.1.0.tgz", - "integrity": "sha512-tTfZbM9Ecwj3GK50mnPrUpinTwA4xXmDiQGCk/aBYbvl1+X8YqldK86wZ1owVJ4u3mrKbRlXMma80J18qwiaTQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.2.0.tgz", + "integrity": "sha512-fP899ELUnTaBcIzmrW7nniyqqdYWrWuJUyPWHxFa/c7r7hS6KC8FscNfLlBNIoPSc55kYMGEEKjPjJGCLbE1qA==", "requires": { - "babel-plugin-syntax-dynamic-import": "^6.18.0", - "babel-template": "^6.26.0", - "babel-types": "^6.26.0" + "object.assign": "^4.1.0" } }, "babel-plugin-istanbul": { @@ -935,302 +2037,29 @@ } }, "babel-plugin-jest-hoist": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz", - "integrity": "sha1-r+3IU70/jcNUjqZx++adA8wsF2c=" - }, - "babel-plugin-syntax-async-functions": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz", - "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=" + "version": "23.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz", + "integrity": "sha1-5h+uBaHKiAGq3uV6bWa4zvr0QWc=" }, - "babel-plugin-syntax-class-properties": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz", - "integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=" - }, - "babel-plugin-syntax-dynamic-import": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz", - "integrity": "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=" - }, - "babel-plugin-syntax-exponentiation-operator": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz", - "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=" - }, - "babel-plugin-syntax-flow": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz", - "integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=" + "babel-plugin-macros": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.4.2.tgz", + "integrity": "sha512-NBVpEWN4OQ/bHnu1fyDaAaTPAjnhXCEPqr1RwqxrU7b6tZ2hypp+zX4hlNfmVGfClD5c3Sl6Hfj5TJNF5VG5aA==", + "requires": { + "cosmiconfig": "^5.0.5", + "resolve": "^1.8.1" + } }, - "babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + "babel-plugin-named-asset-import": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.2.3.tgz", + "integrity": "sha512-9mx2Z9M4EGbutvXxoLV7aUBCY6ps3sqLFl094FeA2tFQzQffIh0XSsmwwQRxiSfpg3rnb5x/o46qRLxS/OzFTg==" }, "babel-plugin-syntax-object-rest-spread": { "version": "6.13.0", "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" }, - "babel-plugin-syntax-trailing-function-commas": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", - "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=" - }, - "babel-plugin-transform-async-to-generator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz", - "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", - "requires": { - "babel-helper-remap-async-to-generator": "^6.24.1", - "babel-plugin-syntax-async-functions": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-class-properties": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz", - "integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=", - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-plugin-syntax-class-properties": "^6.8.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-arrow-functions": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", - "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-block-scoped-functions": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", - "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-block-scoping": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz", - "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=", - "requires": { - "babel-runtime": "^6.26.0", - "babel-template": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "lodash": "^4.17.4" - } - }, - "babel-plugin-transform-es2015-classes": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", - "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=", - "requires": { - "babel-helper-define-map": "^6.24.1", - "babel-helper-function-name": "^6.24.1", - "babel-helper-optimise-call-expression": "^6.24.1", - "babel-helper-replace-supers": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-computed-properties": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", - "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-destructuring": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", - "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-duplicate-keys": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", - "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-for-of": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", - "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", - "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-literals": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", - "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-modules-amd": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", - "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=", - "requires": { - "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-modules-commonjs": { - "version": "6.26.2", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", - "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==", - "requires": { - "babel-plugin-transform-strict-mode": "^6.24.1", - "babel-runtime": "^6.26.0", - "babel-template": "^6.26.0", - "babel-types": "^6.26.0" - } - }, - "babel-plugin-transform-es2015-modules-systemjs": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", - "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=", - "requires": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-modules-umd": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", - "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=", - "requires": { - "babel-plugin-transform-es2015-modules-amd": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-object-super": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", - "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=", - "requires": { - "babel-helper-replace-supers": "^6.24.1", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-parameters": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", - "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", - "requires": { - "babel-helper-call-delegate": "^6.24.1", - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-shorthand-properties": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", - "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-spread": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", - "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-sticky-regex": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", - "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", - "requires": { - "babel-helper-regex": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-template-literals": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", - "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-typeof-symbol": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", - "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-unicode-regex": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", - "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", - "requires": { - "babel-helper-regex": "^6.24.1", - "babel-runtime": "^6.22.0", - "regexpu-core": "^2.0.0" - } - }, - "babel-plugin-transform-exponentiation-operator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", - "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", - "requires": { - "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1", - "babel-plugin-syntax-exponentiation-operator": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-flow-strip-types": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz", - "integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=", - "requires": { - "babel-plugin-syntax-flow": "^6.18.0", - "babel-runtime": "^6.22.0" - } - }, "babel-plugin-transform-object-rest-spread": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", @@ -1240,159 +2069,156 @@ "babel-runtime": "^6.26.0" } }, - "babel-plugin-transform-react-constant-elements": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-constant-elements/-/babel-plugin-transform-react-constant-elements-6.23.0.tgz", - "integrity": "sha1-LxGb9NLN1F65uqrldAU8YE9hR90=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-react-display-name": { - "version": "6.25.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz", - "integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-react-jsx": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz", - "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=", - "requires": { - "babel-helper-builder-react-jsx": "^6.24.1", - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-react-jsx-self": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz", - "integrity": "sha1-322AqdomEqEh5t3XVYvL7PBuY24=", - "requires": { - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-react-jsx-source": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz", - "integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=", - "requires": { - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-regenerator": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz", - "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=", - "requires": { - "regenerator-transform": "^0.10.0" - } - }, - "babel-plugin-transform-runtime": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz", - "integrity": "sha1-iEkNRGUC6puOfvsP4J7E2ZR5se4=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-strict-mode": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", - "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-preset-env": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.1.tgz", - "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==", - "requires": { - "babel-plugin-check-es2015-constants": "^6.22.0", - "babel-plugin-syntax-trailing-function-commas": "^6.22.0", - "babel-plugin-transform-async-to-generator": "^6.22.0", - "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", - "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0", - "babel-plugin-transform-es2015-block-scoping": "^6.23.0", - "babel-plugin-transform-es2015-classes": "^6.23.0", - "babel-plugin-transform-es2015-computed-properties": "^6.22.0", - "babel-plugin-transform-es2015-destructuring": "^6.23.0", - "babel-plugin-transform-es2015-duplicate-keys": "^6.22.0", - "babel-plugin-transform-es2015-for-of": "^6.23.0", - "babel-plugin-transform-es2015-function-name": "^6.22.0", - "babel-plugin-transform-es2015-literals": "^6.22.0", - "babel-plugin-transform-es2015-modules-amd": "^6.22.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.23.0", - "babel-plugin-transform-es2015-modules-systemjs": "^6.23.0", - "babel-plugin-transform-es2015-modules-umd": "^6.23.0", - "babel-plugin-transform-es2015-object-super": "^6.22.0", - "babel-plugin-transform-es2015-parameters": "^6.23.0", - "babel-plugin-transform-es2015-shorthand-properties": "^6.22.0", - "babel-plugin-transform-es2015-spread": "^6.22.0", - "babel-plugin-transform-es2015-sticky-regex": "^6.22.0", - "babel-plugin-transform-es2015-template-literals": "^6.22.0", - "babel-plugin-transform-es2015-typeof-symbol": "^6.23.0", - "babel-plugin-transform-es2015-unicode-regex": "^6.22.0", - "babel-plugin-transform-exponentiation-operator": "^6.22.0", - "babel-plugin-transform-regenerator": "^6.22.0", - "browserslist": "^2.1.2", - "invariant": "^2.2.2", - "semver": "^5.3.0" - } - }, - "babel-preset-flow": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz", - "integrity": "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=", - "requires": { - "babel-plugin-transform-flow-strip-types": "^6.22.0" - } + "babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.18.tgz", + "integrity": "sha512-azed2nHo8vmOy7EY26KH+om5oOcWRs0r1U8wOmhwta+SBMMnmJ4H6yaBZRCcHBtMeWp9AVhvBTL/lpR1kEx+Xw==" }, "babel-preset-jest": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz", - "integrity": "sha1-y6yq3stdaJyh4d4TYOv8ZoYsF4o=", - "requires": { - "babel-plugin-jest-hoist": "^20.0.3" - } - }, - "babel-preset-react": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz", - "integrity": "sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=", + "version": "23.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz", + "integrity": "sha1-jsegOhOPABoaj7HoETZSvxpV2kY=", "requires": { - "babel-plugin-syntax-jsx": "^6.3.13", - "babel-plugin-transform-react-display-name": "^6.23.0", - "babel-plugin-transform-react-jsx": "^6.24.1", - "babel-plugin-transform-react-jsx-self": "^6.22.0", - "babel-plugin-transform-react-jsx-source": "^6.22.0", - "babel-preset-flow": "^6.23.0" + "babel-plugin-jest-hoist": "^23.2.0", + "babel-plugin-syntax-object-rest-spread": "^6.13.0" } }, "babel-preset-react-app": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-3.1.2.tgz", - "integrity": "sha512-/sh5Qd5T08PYa6t4kuCdKh9tXp6/m/Jwyx7PJTqugsYMfsDUJMlBXOs5EwFODHprzjWrmQ0SydnMZu9FY4MZYg==", - "requires": { - "babel-plugin-dynamic-import-node": "1.1.0", - "babel-plugin-syntax-dynamic-import": "6.18.0", - "babel-plugin-transform-class-properties": "6.24.1", - "babel-plugin-transform-es2015-destructuring": "6.23.0", - "babel-plugin-transform-object-rest-spread": "6.26.0", - "babel-plugin-transform-react-constant-elements": "6.23.0", - "babel-plugin-transform-react-jsx": "6.24.1", - "babel-plugin-transform-react-jsx-self": "6.22.0", - "babel-plugin-transform-react-jsx-source": "6.22.0", - "babel-plugin-transform-regenerator": "6.26.0", - "babel-plugin-transform-runtime": "6.23.0", - "babel-preset-env": "1.6.1", - "babel-preset-react": "6.24.1" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-6.1.0.tgz", + "integrity": "sha512-8PJ4N+acfYsjhDK4gMWkqJMVRMjDKb93D+nz7lWlNe73Jcv38FNu37i5K/dVQnFDdRYHbe1SjII+Y0mCgink9A==", + "requires": { + "@babel/core": "7.1.0", + "@babel/plugin-proposal-class-properties": "7.1.0", + "@babel/plugin-proposal-decorators": "7.1.2", + "@babel/plugin-proposal-object-rest-spread": "7.0.0", + "@babel/plugin-syntax-dynamic-import": "7.0.0", + "@babel/plugin-transform-classes": "7.1.0", + "@babel/plugin-transform-destructuring": "7.0.0", + "@babel/plugin-transform-flow-strip-types": "7.0.0", + "@babel/plugin-transform-react-constant-elements": "7.0.0", + "@babel/plugin-transform-react-display-name": "7.0.0", + "@babel/plugin-transform-runtime": "7.1.0", + "@babel/preset-env": "7.1.0", + "@babel/preset-react": "7.0.0", + "@babel/preset-typescript": "7.1.0", + "@babel/runtime": "7.0.0", + "babel-loader": "8.0.4", + "babel-plugin-dynamic-import-node": "2.2.0", + "babel-plugin-macros": "2.4.2", + "babel-plugin-transform-react-remove-prop-types": "0.4.18" + }, + "dependencies": { + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0.tgz", + "integrity": "sha512-14fhfoPcNu7itSen7Py1iGN0gEm87hX/B+8nZPqkdmANyyYWYMY2pjA3r8WXbWVKMzfnSNS0xY8GVS0IjXi/iw==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-object-rest-spread": "^7.0.0" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.1.0.tgz", + "integrity": "sha512-rNaqoD+4OCBZjM7VaskladgqnZ1LO6o2UxuWSDzljzW21pN1KXkB7BstAVweZdxQkHAujps5QMNOTWesBciKFg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.0.0", + "@babel/helper-define-map": "^7.1.0", + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-optimise-call-expression": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-replace-supers": "^7.1.0", + "@babel/helper-split-export-declaration": "^7.0.0", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.0.0.tgz", + "integrity": "sha512-Fr2GtF8YJSXGTyFPakPFB4ODaEKGU04bPsAllAIabwoXdFrPxL0LVXQX5dQWoxOjjgozarJcC9eWGsj0fD6Zsg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-react-constant-elements": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.0.0.tgz", + "integrity": "sha512-z8yrW4KCVcqPYr0r9dHXe7fu3daLzn0r6TQEFoGbXahdrzEwT1d1ux+/EnFcqIHv9uPilUlnRnPIUf7GMO0ehg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.0.0.tgz", + "integrity": "sha512-BX8xKuQTO0HzINxT6j/GiCwoJB0AOMs0HmLbEnAvcte8U8rSkNa/eSCAY+l1OA4JnCVq2jw2p6U8QQryy2fTPg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/preset-env": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.1.0.tgz", + "integrity": "sha512-ZLVSynfAoDHB/34A17/JCZbyrzbQj59QC1Anyueb4Bwjh373nVPq5/HMph0z+tCmcDjXDe+DlKQq9ywQuvWrQg==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-async-generator-functions": "^7.1.0", + "@babel/plugin-proposal-json-strings": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.0.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.0.0", + "@babel/plugin-syntax-async-generators": "^7.0.0", + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-async-to-generator": "^7.1.0", + "@babel/plugin-transform-block-scoped-functions": "^7.0.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.1.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.0.0", + "@babel/plugin-transform-dotall-regex": "^7.0.0", + "@babel/plugin-transform-duplicate-keys": "^7.0.0", + "@babel/plugin-transform-exponentiation-operator": "^7.1.0", + "@babel/plugin-transform-for-of": "^7.0.0", + "@babel/plugin-transform-function-name": "^7.1.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-modules-amd": "^7.1.0", + "@babel/plugin-transform-modules-commonjs": "^7.1.0", + "@babel/plugin-transform-modules-systemjs": "^7.0.0", + "@babel/plugin-transform-modules-umd": "^7.1.0", + "@babel/plugin-transform-new-target": "^7.0.0", + "@babel/plugin-transform-object-super": "^7.1.0", + "@babel/plugin-transform-parameters": "^7.1.0", + "@babel/plugin-transform-regenerator": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-sticky-regex": "^7.0.0", + "@babel/plugin-transform-template-literals": "^7.0.0", + "@babel/plugin-transform-typeof-symbol": "^7.0.0", + "@babel/plugin-transform-unicode-regex": "^7.0.0", + "browserslist": "^4.1.0", + "invariant": "^2.2.2", + "js-levenshtein": "^1.1.3", + "semver": "^5.3.0" + } + }, + "@babel/runtime": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0.tgz", + "integrity": "sha512-7hGhzlcmg01CvH1EHdSPVXYX1aJ8KCEyz6I9xYIi/asDtzBPMyMhVibhM/K6g/5qnKBwjZtp10bNZIEFTRW1MA==", + "requires": { + "regenerator-runtime": "^0.12.0" + } + }, + "regenerator-runtime": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz", + "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" + } } }, "babel-register": { @@ -1409,10 +2235,49 @@ "source-map-support": "^0.4.15" }, "dependencies": { + "babel-core": { + "version": "6.26.3", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz", + "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-generator": "^6.26.0", + "babel-helpers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "convert-source-map": "^1.5.1", + "debug": "^2.6.9", + "json5": "^0.5.1", + "lodash": "^4.17.4", + "minimatch": "^3.0.4", + "path-is-absolute": "^1.0.1", + "private": "^0.1.8", + "slash": "^1.0.0", + "source-map": "^0.5.7" + } + }, "core-js": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", - "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==" + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.1.tgz", + "integrity": "sha512-L72mmmEayPJBejKIWe2pYtGis5r0tQ5NaJekdhyXgeMQTpJoBsH0NL4ElY2LfSoV15xeQWKQ+XTTOZdyero5Xg==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -1426,9 +2291,9 @@ }, "dependencies": { "core-js": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", - "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==" + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.1.tgz", + "integrity": "sha512-L72mmmEayPJBejKIWe2pYtGis5r0tQ5NaJekdhyXgeMQTpJoBsH0NL4ElY2LfSoV15xeQWKQ+XTTOZdyero5Xg==" } } }, @@ -1458,6 +2323,26 @@ "globals": "^9.18.0", "invariant": "^2.2.2", "lodash": "^4.17.4" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "babel-types": { @@ -1469,6 +2354,13 @@ "esutils": "^2.0.2", "lodash": "^4.17.4", "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" + } } }, "babylon": { @@ -1528,6 +2420,11 @@ "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -1545,25 +2442,35 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "optional": true, "requires": { "tweetnacl": "^0.14.3" } }, + "bfj": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.1.tgz", + "integrity": "sha512-+GUNvzHR4nRyGybQc2WpNJL4MJazMuvf92ueIyA0bIkPRwhhQu3IfZQ2PSoVPpCBJfmoSdOxu5rnotfFLlvYRQ==", + "requires": { + "bluebird": "^3.5.1", + "check-types": "^7.3.0", + "hoopy": "^0.1.2", + "tryer": "^1.0.0" + } + }, "big.js": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==" }, "binary-extensions": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz", - "integrity": "sha1-RqoXUftqL5PuXmibsQh9SxTGwgU=" + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz", + "integrity": "sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==" }, "bluebird": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", - "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==" + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz", + "integrity": "sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==" }, "bn.js": { "version": "4.11.8", @@ -1571,31 +2478,34 @@ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==" }, "body-parser": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", - "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", + "version": "1.18.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", + "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", "requires": { "bytes": "3.0.0", "content-type": "~1.0.4", "debug": "2.6.9", - "depd": "~1.1.1", - "http-errors": "~1.6.2", - "iconv-lite": "0.4.19", + "depd": "~1.1.2", + "http-errors": "~1.6.3", + "iconv-lite": "0.4.23", "on-finished": "~2.3.0", - "qs": "6.5.1", - "raw-body": "2.3.2", - "type-is": "~1.6.15" + "qs": "6.5.2", + "raw-body": "2.3.3", + "type-is": "~1.6.16" }, "dependencies": { - "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -1617,37 +2527,6 @@ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" }, - "boxen": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", - "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", - "requires": { - "ansi-align": "^2.0.0", - "camelcase": "^4.0.0", - "chalk": "^2.0.1", - "cli-boxes": "^1.0.0", - "string-width": "^2.0.0", - "term-size": "^1.2.0", - "widest-line": "^2.0.0" - }, - "dependencies": { - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } - } - }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -1658,30 +2537,13 @@ } }, "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" } }, "brcast": { @@ -1694,6 +2556,11 @@ "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" }, + "browser-process-hrtime": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz", + "integrity": "sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==" + }, "browser-resolve": { "version": "1.11.3", "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", @@ -1775,12 +2642,13 @@ } }, "browserslist": { - "version": "2.11.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz", - "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.3.6.tgz", + "integrity": "sha512-kMGKs4BTzRWviZ8yru18xBpx+CyHG9eqgRbj9XbE3IMgtczf4aiA0Y1YCpVdvUieKGZ03kolSPXqTcscBCb9qw==", "requires": { - "caniuse-lite": "^1.0.30000792", - "electron-to-chromium": "^1.3.30" + "caniuse-lite": "^1.0.30000921", + "electron-to-chromium": "^1.3.92", + "node-releases": "^1.1.1" } }, "bser": { @@ -1802,9 +2670,9 @@ } }, "buffer-from": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz", - "integrity": "sha512-c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" }, "buffer-indexof": { "version": "1.1.1", @@ -1831,6 +2699,47 @@ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" }, + "cacache": { + "version": "11.3.2", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-11.3.2.tgz", + "integrity": "sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg==", + "requires": { + "bluebird": "^3.5.3", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.2", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" + }, + "yallist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", + "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==" + } + } + }, "cache-base": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", @@ -1847,18 +2756,31 @@ "unset-value": "^1.0.0" } }, + "call-me-maybe": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "requires": { + "callsites": "^2.0.0" + } + }, "caller-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", - "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", "requires": { - "callsites": "^0.2.0" + "caller-callsite": "^2.0.0" } }, "callsites": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", - "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=" + "version": "2.0.0", + "resolved": "http://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" }, "camel-case": { "version": "3.0.0", @@ -1870,104 +2792,52 @@ } }, "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" - }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", - "requires": { - "camelcase": "^2.0.0", - "map-obj": "^1.0.0" - }, - "dependencies": { - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" - } - } + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz", + "integrity": "sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==" }, "caniuse-api": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz", - "integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "requires": { - "browserslist": "^1.3.6", - "caniuse-db": "^1.0.30000529", + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", "lodash.memoize": "^4.1.2", "lodash.uniq": "^4.5.0" - }, - "dependencies": { - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", - "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" - } - } } }, - "caniuse-db": { - "version": "1.0.30000867", - "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000867.tgz", - "integrity": "sha1-tVpuz6wxB5iJQMnH3+GGYxUxLJc=" - }, "caniuse-lite": { - "version": "1.0.30000865", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000865.tgz", - "integrity": "sha512-vs79o1mOSKRGv/1pSkp4EXgl4ZviWeYReXw60XfacPU64uQWZwJT6vZNmxRF9O+6zu71sJwMxLK5JXxbzuVrLw==" + "version": "1.0.30000923", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000923.tgz", + "integrity": "sha512-j5ur7eeluOFjjPUkydtXP4KFAsmH3XaQNch5tvWSO+dLHYt5PE+VgJZLWtbVOodfWij6m6zas28T4gB/cLYq1w==" }, - "capture-stack-trace": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz", - "integrity": "sha1-Sm+gc5nCa7pH8LJJa00PtAjFVQ0=" + "capture-exit": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-1.2.0.tgz", + "integrity": "sha1-HF/MSJ/QqwDU8ax64QcuMXP7q28=", + "requires": { + "rsvp": "^3.3.3" + } }, "case-sensitive-paths-webpack-plugin": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.1.1.tgz", - "integrity": "sha1-PSnO2MHxJL9vU4Rvs/WJRzH9yQk=" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.1.2.tgz", + "integrity": "sha512-oEZgAFfEvKtjSRCu6VgYkuGxwrWXMnQzyBmlLPP7r6PWQVtHxP5Z5N6XsuJvtoVax78am/r7lr46bwo3IVEBOg==" }, "caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", - "requires": { - "align-text": "^0.1.3", - "lazy-cache": "^1.0.3" - } - }, "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } }, "change-emitter": { @@ -1976,9 +2846,14 @@ "integrity": "sha1-6LL+PX8at9aaMhma/5HqaTFAlRU=" }, "chardet": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", - "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=" + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + }, + "check-types": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-7.4.0.tgz", + "integrity": "sha512-YbulWHdfP99UfZ73NcUDlNJhEIDgm9Doq9GhpyXbF+7Aegi3CVV7qqMCKTTqJxlvEvnQBp9IA+dxsGN6xK/nSg==" }, "chokidar": { "version": "2.0.4", @@ -2000,13 +2875,45 @@ "upath": "^1.0.5" }, "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" } }, "glob-parent": { @@ -2040,13 +2947,34 @@ "requires": { "is-extglob": "^2.1.1" } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + } } } }, + "chownr": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz", + "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==" + }, + "chrome-trace-event": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz", + "integrity": "sha512-xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==", + "requires": { + "tslib": "^1.9.0" + } + }, "ci-info": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.1.3.tgz", - "integrity": "sha512-SK/846h/Rcy8q9Z9CAwGBLfCJ6EkjJWdpelWDufQpqVDYq2Wnnv8zlSO6AMQap02jvhVruKKpEtQOufo3pFhLg==" + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", + "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==" }, "cipher-base": { "version": "1.0.4", @@ -2062,14 +2990,6 @@ "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==" }, - "clap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz", - "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==", - "requires": { - "chalk": "^1.1.3" - } - }, "class-utils": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", @@ -2097,25 +3017,20 @@ "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" }, "clean-css": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.1.11.tgz", - "integrity": "sha1-Ls3xRaujj1R0DybO/Q/z4D4SXWo=", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", + "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", "requires": { - "source-map": "0.5.x" + "source-map": "~0.6.0" }, "dependencies": { "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "cli-boxes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", - "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=" - }, "cli-cursor": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", @@ -2130,26 +3045,41 @@ "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=" }, "cliui": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", + "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", "requires": { - "center-align": "^0.1.1", - "right-align": "^0.1.1", - "wordwrap": "0.0.2" + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" }, "dependencies": { - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "requires": { + "ansi-regex": "^3.0.0" + } } } }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + "clone-deep": { + "version": "0.2.4", + "resolved": "http://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", + "integrity": "sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=", + "requires": { + "for-own": "^0.1.3", + "is-plain-object": "^2.0.1", + "kind-of": "^3.0.2", + "lazy-cache": "^1.0.3", + "shallow-clone": "^0.1.2" + } }, "co": { "version": "4.6.0", @@ -2157,10 +3087,12 @@ "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" }, "coa": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz", - "integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", "q": "^1.1.2" } }, @@ -2179,44 +3111,34 @@ } }, "color": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz", - "integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.0.tgz", + "integrity": "sha512-CwyopLkuRYO5ei2EpzpIh6LqJMt6Mt+jZhO5VI5f/wJLZriXQE32/SSqzmrh+QB+AZT81Cj8yv+7zwToW8ahZg==", "requires": { - "clone": "^1.0.2", - "color-convert": "^1.3.0", - "color-string": "^0.3.0" + "color-convert": "^1.9.1", + "color-string": "^1.5.2" } }, "color-convert": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz", - "integrity": "sha512-3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==", + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "requires": { - "color-name": "1.1.1" + "color-name": "1.1.3" } }, "color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=" + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "color-string": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz", - "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz", + "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==", "requires": { - "color-name": "^1.0.0" - } - }, - "colormin": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz", - "integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=", - "requires": { - "color": "^0.11.0", - "css-color-names": "0.0.4", - "has": "^1.0.1" + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" } }, "colors": { @@ -2225,46 +3147,39 @@ "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=" }, "combined-stream": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", - "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz", + "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==", "requires": { "delayed-stream": "~1.0.0" } }, "commander": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.16.0.tgz", - "integrity": "sha512-sVXqklSaotK9at437sFlFpyOcJonxe0yST/AG9DkQKUdIE6IqGIMv4SfAQSKaJbSdVEJYItASCrBiVQHq1HQew==" + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==" + }, + "common-tags": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", + "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" }, "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" }, - "compare-versions": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.3.0.tgz", - "integrity": "sha512-MAAAIOdi2s4Gl6rZ76PNcUa9IOYB+5ICdT41o5uMRf09aEu/F9RK+qhe8RjXNPwcTjGV7KU7h2P/fljThFVqyQ==" - }, "component-emitter": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" }, "compressible": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.14.tgz", - "integrity": "sha1-MmxfUH+7BV9UEWeCuWmoG2einac=", + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.15.tgz", + "integrity": "sha512-4aE67DL33dSW9gw4CI2H/yTxqHLNcxp0yS6jB+4h+wr3e43+1z7vm0HU9qXOH8j+qjKuL8+UtkOxYQSMq60Ylw==", "requires": { - "mime-db": ">= 1.34.0 < 2" - }, - "dependencies": { - "mime-db": { - "version": "1.35.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz", - "integrity": "sha512-JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==" - } + "mime-db": ">= 1.36.0 < 2" } }, "compression": { @@ -2279,6 +3194,21 @@ "on-headers": "~1.0.1", "safe-buffer": "5.1.2", "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "concat-map": { @@ -2297,18 +3227,10 @@ "typedarray": "^0.0.6" } }, - "configstore": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz", - "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==", - "requires": { - "dot-prop": "^4.1.0", - "graceful-fs": "^4.1.2", - "make-dir": "^1.0.0", - "unique-string": "^1.0.0", - "write-file-atomic": "^2.0.0", - "xdg-basedir": "^3.0.0" - } + "confusing-browser-globals": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.5.tgz", + "integrity": "sha512-tHo1tQL/9Ox5RELbkCAJhnViqWlzBz3MG1bB2czbHjH2mWd4aYUgNCNLfysFL7c4LoDws7pjg2tj48Gmpw4QHA==" }, "connect-history-api-fallback": { "version": "1.5.0", @@ -2343,15 +3265,13 @@ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" }, - "content-type-parser": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/content-type-parser/-/content-type-parser-1.0.2.tgz", - "integrity": "sha512-lM4l4CnMEwOLHAHr/P6MEZwZFPJFtAAKgL6pogbXmVZggIqXhdB6RbBtPOTsw2FcXwYhehRGERJmRrjOiIB8pQ==" - }, "convert-source-map": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz", - "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=" + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", + "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", + "requires": { + "safe-buffer": "~5.1.1" + } }, "cookie": { "version": "0.3.1", @@ -2363,6 +3283,19 @@ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, "copy-descriptor": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", @@ -2379,24 +3312,14 @@ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, "cosmiconfig": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz", - "integrity": "sha512-GiNXLwAFPYHy25XmTPpafYvn3CLAkJ8FLsscq78MQd1Kh0OU6Yzhn4eV2MVF4G9WEQZoWEGltatdR+ntGPMl5A==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.7.tgz", + "integrity": "sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA==", "requires": { + "import-fresh": "^2.0.0", "is-directory": "^0.3.1", - "js-yaml": "^3.4.3", - "minimist": "^1.2.0", - "object-assign": "^4.1.0", - "os-homedir": "^1.0.1", - "parse-json": "^2.2.0", - "require-from-string": "^1.1.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } + "js-yaml": "^3.9.0", + "parse-json": "^4.0.0" } }, "create-ecdh": { @@ -2408,14 +3331,6 @@ "elliptic": "^6.0.0" } }, - "create-error-class": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", - "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", - "requires": { - "capture-stack-trace": "^1.0.0" - } - }, "create-hash": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", @@ -2442,11 +3357,13 @@ } }, "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "requires": { - "lru-cache": "^4.0.1", + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", "shebang-command": "^1.2.0", "which": "^1.2.9" } @@ -2469,89 +3386,87 @@ "randomfill": "^1.0.3" } }, - "crypto-random-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", - "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" - }, "css-color-names": { "version": "0.0.4", "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" }, - "css-loader": { - "version": "0.28.7", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-0.28.7.tgz", - "integrity": "sha512-GxMpax8a/VgcfRrVy0gXD6yLd5ePYbXX/5zGgTVYp4wXtJklS8Z2VaUArJgc//f6/Dzil7BaJObdSv8eKKCPgg==", + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", "requires": { - "babel-code-frame": "^6.11.0", - "css-selector-tokenizer": "^0.7.0", - "cssnano": ">=2.6.1 <4", - "icss-utils": "^2.1.0", - "loader-utils": "^1.0.2", - "lodash.camelcase": "^4.3.0", - "object-assign": "^4.0.1", - "postcss": "^5.0.6", - "postcss-modules-extract-imports": "^1.0.0", - "postcss-modules-local-by-default": "^1.0.1", - "postcss-modules-scope": "^1.0.0", - "postcss-modules-values": "^1.1.0", - "postcss-value-parser": "^3.3.0", - "source-list-map": "^2.0.0" + "postcss": "^7.0.1", + "timsort": "^0.3.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, + "css-loader": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-1.0.0.tgz", + "integrity": "sha512-tMXlTYf3mIMt3b0dDCOQFJiVvxbocJ5Ho577WiGPYPZcqVEO218L2iU22pDXzkTZCLDE+9AmGSUkWxeh/nZReA==", + "requires": { + "babel-code-frame": "^6.26.0", + "css-selector-tokenizer": "^0.7.0", + "icss-utils": "^2.1.0", + "loader-utils": "^1.0.2", + "lodash.camelcase": "^4.3.0", + "postcss": "^6.0.23", + "postcss-modules-extract-imports": "^1.2.0", + "postcss-modules-local-by-default": "^1.2.0", + "postcss-modules-scope": "^1.1.0", + "postcss-modules-values": "^1.3.0", + "postcss-value-parser": "^3.3.0", + "source-list-map": "^2.0.0" + } + }, "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.0.2.tgz", + "integrity": "sha512-dSpYaDVoWaELjvZ3mS6IKZM/y2PMPa/XYoEfYNZePL4U/XgyxZNroHEHReDx/d+VgXh9VbCTtFqLkFbmeqeaRQ==", "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" + "boolbase": "^1.0.0", + "css-what": "^2.1.2", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" } }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, "css-selector-tokenizer": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz", - "integrity": "sha1-5piEdK6MlTR3v15+/s/OzNnPTIY=", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz", + "integrity": "sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA==", "requires": { "cssesc": "^0.1.0", "fastparse": "^1.1.1", "regexpu-core": "^1.0.0" }, "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "http://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + }, "regexpu-core": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz", @@ -2561,9 +3476,41 @@ "regjsgen": "^0.2.0", "regjsparser": "^0.1.4" } + }, + "regjsgen": { + "version": "0.2.0", + "resolved": "http://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", + "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=" + }, + "regjsparser": { + "version": "0.1.5", + "resolved": "http://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", + "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", + "requires": { + "jsesc": "~0.5.0" + } } } }, + "css-tree": { + "version": "1.0.0-alpha.28", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.28.tgz", + "integrity": "sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w==", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + } + }, + "css-unit-converter": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz", + "integrity": "sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY=" + }, + "css-url-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz", + "integrity": "sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w=" + }, "css-vendor": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-0.3.8.tgz", @@ -2573,9 +3520,14 @@ } }, "css-what": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz", - "integrity": "sha1-lGfQMsOM+u+58teVASUwYvh/ob0=" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.2.tgz", + "integrity": "sha512-wan8dMWQ0GUeF7DGEPVjhHemVW/vy6xUYmFzRY8RYqgA0JtXC9rJmbScBjqSu6dg9q0lwPQy6ZAmJVr3PPTvqQ==" + }, + "cssdb": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-3.2.1.tgz", + "integrity": "sha512-I0IS8zvxED8sQtFZnV7M+AkhWqTgp1HIyfMQJBbjdn4GgurBt7NCZaDgrWiAN2kNJN34mhF1p50aZIMQu290mA==" }, "cssesc": { "version": "0.1.0", @@ -2583,110 +3535,143 @@ "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=" }, "cssnano": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz", - "integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=", + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.8.tgz", + "integrity": "sha512-5GIY0VzAHORpbKiL3rMXp4w4M1Ki+XlXgEXyuWXVd3h6hlASb+9Vo76dNP56/elLMVBBsUfusCo1q56uW0UWig==", "requires": { - "autoprefixer": "^6.3.1", - "decamelize": "^1.1.2", - "defined": "^1.0.0", - "has": "^1.0.1", - "object-assign": "^4.0.1", - "postcss": "^5.0.14", - "postcss-calc": "^5.2.0", - "postcss-colormin": "^2.1.8", - "postcss-convert-values": "^2.3.4", - "postcss-discard-comments": "^2.0.4", - "postcss-discard-duplicates": "^2.0.1", - "postcss-discard-empty": "^2.0.1", - "postcss-discard-overridden": "^0.1.1", - "postcss-discard-unused": "^2.2.1", - "postcss-filter-plugins": "^2.0.0", - "postcss-merge-idents": "^2.1.5", - "postcss-merge-longhand": "^2.0.1", - "postcss-merge-rules": "^2.0.3", - "postcss-minify-font-values": "^1.0.2", - "postcss-minify-gradients": "^1.0.1", - "postcss-minify-params": "^1.0.4", - "postcss-minify-selectors": "^2.0.4", - "postcss-normalize-charset": "^1.1.0", - "postcss-normalize-url": "^3.0.7", - "postcss-ordered-values": "^2.1.0", - "postcss-reduce-idents": "^2.2.2", - "postcss-reduce-initial": "^1.0.0", - "postcss-reduce-transforms": "^1.0.3", - "postcss-svgo": "^2.1.1", - "postcss-unique-selectors": "^2.0.2", - "postcss-value-parser": "^3.2.3", - "postcss-zindex": "^2.0.1" - }, - "dependencies": { - "autoprefixer": { - "version": "6.7.7", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", - "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", - "requires": { - "browserslist": "^1.7.6", - "caniuse-db": "^1.0.30000634", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^5.2.16", - "postcss-value-parser": "^3.2.3" - } - }, - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.6", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssnano-preset-default": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.6.tgz", + "integrity": "sha512-UPboYbFaJFtDUhJ4fqctThWbbyF4q01/7UhsZbLzp35l+nUxtzh1SifoVlEfyLM3n3Z0htd8B1YlCxy9i+bQvg==", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.0", + "postcss-colormin": "^4.0.2", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.1", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.10", + "postcss-merge-rules": "^4.0.2", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.1", + "postcss-minify-params": "^4.0.1", + "postcss-minify-selectors": "^4.0.1", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.1", + "postcss-normalize-positions": "^4.0.1", + "postcss-normalize-repeat-style": "^4.0.1", + "postcss-normalize-string": "^4.0.1", + "postcss-normalize-timing-functions": "^4.0.1", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.1", + "postcss-ordered-values": "^4.1.1", + "postcss-reduce-initial": "^4.0.2", + "postcss-reduce-transforms": "^4.0.1", + "postcss-svgo": "^4.0.1", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": { "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=" + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=" + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" + }, "csso": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz", - "integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz", + "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==", "requires": { - "clap": "^1.0.9", - "source-map": "^0.5.3" + "css-tree": "1.0.0-alpha.29" }, "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "css-tree": { + "version": "1.0.0-alpha.29", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz", + "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + } } } }, @@ -2696,33 +3681,22 @@ "integrity": "sha512-+7prCSORpXNeR4/fUP3rL+TzqtiFfhMvTd7uEqMdgPvLPt4+uzFUeufx5RHjGTACCargg/DiEt/moMQmvnfkog==" }, "cssstyle": { - "version": "0.2.37", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz", - "integrity": "sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ=", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.1.1.tgz", + "integrity": "sha512-364AI1l/M5TYcFH83JnOH/pSqgaNnKmYgKrm0didZMGKWjQB60dymwWy1rKUgL3J1ffdq9xVi2yGLHdSjjSNog==", "requires": { "cssom": "0.3.x" } }, "csstype": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.5.6.tgz", - "integrity": "sha512-tKPyhy0FmfYD2KQYXD5GzkvAYLYj96cMLXr648CKGd3wBe0QqoPipImjGiLze9c8leJK8J3n7ap90tpk3E6HGQ==" - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", - "requires": { - "array-find-index": "^1.0.1" - } + "version": "2.5.8", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.5.8.tgz", + "integrity": "sha512-r4DbsyNJ7slwBSKoGesxDubRWJ71ghG8W2+1HcsDlAo12KGca9dDLv0u98tfdFw7ldBdoA7XmCnI6Q8LpAJXaQ==" }, - "d": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", - "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", - "requires": { - "es5-ext": "^0.10.9" - } + "cyclist": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", + "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=" }, "damerau-levenshtein": { "version": "1.0.4", @@ -2737,22 +3711,32 @@ "assert-plus": "^1.0.0" } }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, "date-now": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=" }, "debounce": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.1.0.tgz", - "integrity": "sha512-ZQVKfRVlwRfD150ndzEK8M90ABT+Y/JQKs4Y7U4MXdpuoUkkrr4DwKbVux3YjylA5bUMUj0Nc3pMxPJX6N2QQQ==" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.0.tgz", + "integrity": "sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==" }, "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", "requires": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, "decamelize": { @@ -2770,43 +3754,55 @@ "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - }, "deep-is": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" }, "deepmerge": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.1.1.tgz", - "integrity": "sha512-urQxA1smbLZ2cBbXbaYObM1dJ82aJ2H57A1C/Kklfh/ZN1bgH4G/n5KWhdNfOK11W98gqZfyYj7W4frJJRwA2w==" + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.2.1.tgz", + "integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==" }, - "default-require-extensions": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz", - "integrity": "sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc=", + "default-gateway": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-2.7.2.tgz", + "integrity": "sha512-lAc4i9QJR0YHSDFdzeBQKfZ1SRDG3hsJNEkrpcZa8QhBfidLAilT60BDEIVUUGqosFp425KOgB3uYqcnQrWafQ==", "requires": { - "strip-bom": "^3.0.0" + "execa": "^0.10.0", + "ip-regex": "^2.1.0" }, "dependencies": { - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + "execa": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", + "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } } } }, + "default-require-extensions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-1.0.0.tgz", + "integrity": "sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=", + "requires": { + "strip-bom": "^2.0.0" + } + }, "define-properties": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", - "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "requires": { - "foreach": "^2.0.5", - "object-keys": "^1.0.8" + "object-keys": "^1.0.12" } }, "define-property": { @@ -2843,26 +3839,51 @@ "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" - }, "del": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", + "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", "requires": { - "globby": "^5.0.0", + "globby": "^6.1.0", "is-path-cwd": "^1.0.0", "is-path-in-cwd": "^1.0.0", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", + "p-map": "^1.1.1", + "pify": "^3.0.0", "rimraf": "^2.2.8" + }, + "dependencies": { + "globby": { + "version": "6.1.0", + "resolved": "http://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } } }, "delayed-stream": { @@ -2897,10 +3918,15 @@ "repeating": "^2.0.0" } }, + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=" + }, "detect-node": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.3.tgz", - "integrity": "sha1-ogM8CcyOFY03dI+951B4Mr1s4Sc=" + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", + "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" }, "detect-port-alt": { "version": "1.1.6", @@ -2909,6 +3935,21 @@ "requires": { "address": "^1.0.1", "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "diff": { @@ -2926,6 +3967,30 @@ "randombytes": "^2.0.0" } }, + "dir-glob": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "requires": { + "arrify": "^1.0.1", + "path-type": "^3.0.0" + }, + "dependencies": { + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + } + }, "dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", @@ -2957,25 +4022,36 @@ } }, "dom-converter": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.1.4.tgz", - "integrity": "sha1-pF71cnuJDJv/5tfIduexnLDhfzs=", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", "requires": { - "utila": "~0.3" + "utila": "~0.4" + } + }, + "dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "requires": { + "@babel/runtime": "^7.1.2" }, "dependencies": { - "utila": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.3.3.tgz", - "integrity": "sha1-1+jn1+MJEHCSsF+NloiCTWM6QiY=" + "@babel/runtime": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.2.0.tgz", + "integrity": "sha512-oouEibCbHMVdZSDlJBO6bZmID/zA/G/Qx3H1d3rSNPTD+L8UNKvCat7aKWSJ74zYbm5zWGh0GQN0hKj8zYFTCg==", + "requires": { + "regenerator-runtime": "^0.12.0" + } + }, + "regenerator-runtime": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz", + "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" } } }, - "dom-helpers": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.3.1.tgz", - "integrity": "sha512-2Sm+JaYn74OiTM2wHvxJOo3roiq/h25Yi69Fqk269cNUwIXsCvATB6CRSFC9Am/20G2b28hGv/+7NiWydIrPvg==" - }, "dom-serializer": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", @@ -2992,23 +4068,23 @@ } } }, - "dom-urls": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/dom-urls/-/dom-urls-1.1.0.tgz", - "integrity": "sha1-AB3fgWKM0ecGElxxdvU8zsVdkY4=", - "requires": { - "urijs": "^1.16.1" - } - }, "domain-browser": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" }, "domelementtype": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", - "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=" + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "requires": { + "webidl-conversions": "^4.0.2" + } }, "domhandler": { "version": "2.1.0", @@ -3019,9 +4095,9 @@ } }, "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", "requires": { "dom-serializer": "0", "domelementtype": "1" @@ -3036,9 +4112,9 @@ } }, "dotenv": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz", - "integrity": "sha1-hk7xN5rO1Vzm+V3r7NzhefegzR0=" + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-6.0.0.tgz", + "integrity": "sha512-FlWbnhgjtwD+uNLUGHbMykMOYQaTivdHEmYwAKFjn6GKe/CqY0fNae93ZHTd20snh9ZLr8mTzIL9m0APQ1pjQg==" }, "dotenv-expand": { "version": "4.2.0", @@ -3050,18 +4126,24 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=" }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + "duplexify": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.1.tgz", + "integrity": "sha512-vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA==", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } }, "ecc-jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", - "optional": true, + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", "requires": { - "jsbn": "~0.1.0" + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" } }, "ee-first": { @@ -3070,14 +4152,14 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.52", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.52.tgz", - "integrity": "sha1-0tnxJwuko7lnuDHEDvcftNmrXOA=" + "version": "1.3.96", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.96.tgz", + "integrity": "sha512-ZUXBUyGLeoJxp4Nt6G/GjBRLnyz8IKQGexZ2ndWaoegThgMGFO1tdDYID5gBV32/1S83osjJHyfzvanE/8HY4Q==" }, "elliptic": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz", - "integrity": "sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8=", + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", + "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==", "requires": { "bn.js": "^4.4.0", "brorand": "^1.0.1", @@ -3111,21 +4193,28 @@ "iconv-lite": "~0.4.13" } }, + "end-of-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", + "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "requires": { + "once": "^1.4.0" + } + }, "enhanced-resolve": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz", - "integrity": "sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", + "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", "requires": { "graceful-fs": "^4.1.2", "memory-fs": "^0.4.0", - "object-assign": "^4.0.1", - "tapable": "^0.2.7" + "tapable": "^1.0.0" } }, "entities": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", - "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" }, "errno": { "version": "0.1.7", @@ -3156,83 +4245,13 @@ } }, "es-to-primitive": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", - "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", + "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", "requires": { - "is-callable": "^1.1.1", + "is-callable": "^1.1.4", "is-date-object": "^1.0.1", - "is-symbol": "^1.0.1" - } - }, - "es5-ext": { - "version": "0.10.45", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.45.tgz", - "integrity": "sha512-FkfM6Vxxfmztilbxxz5UKSD4ICMf5tSpRFtDNtkAhOxZ0EKtX6qwmXNyH/sFyIbX2P/nU5AMiA9jilWsUGJzCQ==", - "requires": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.1", - "next-tick": "1" - } - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-map": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", - "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", - "requires": { - "d": "1", - "es5-ext": "~0.10.14", - "es6-iterator": "~2.0.1", - "es6-set": "~0.1.5", - "es6-symbol": "~3.1.1", - "event-emitter": "~0.3.5" - } - }, - "es6-promise": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz", - "integrity": "sha512-/NdNZVJg+uZgtm9eS3O6lrOLYmQag2DjdEXuPaHlZ6RuVqgqaVZfgYCepEIKsLqwdQArOPtC3XzRLqGGfT8KQQ==" - }, - "es6-set": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", - "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", - "requires": { - "d": "1", - "es5-ext": "~0.10.14", - "es6-iterator": "~2.0.1", - "es6-symbol": "3.1.1", - "event-emitter": "~0.3.5" - } - }, - "es6-symbol": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", - "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", - "requires": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, - "es6-weak-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz", - "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=", - "requires": { - "d": "1", - "es5-ext": "^0.10.14", - "es6-iterator": "^2.0.1", - "es6-symbol": "^3.1.1" + "is-symbol": "^1.0.2" } }, "escape-html": { @@ -3261,62 +4280,58 @@ "version": "3.1.3", "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true } } }, - "escope": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", - "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=", - "requires": { - "es6-map": "^0.1.3", - "es6-weak-map": "^2.0.1", - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, "eslint": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.10.0.tgz", - "integrity": "sha512-MMVl8P/dYUFZEvolL8PYt7qc5LNdS2lwheq9BYa5Y07FblhcZqFyaUqlS8TW5QITGex21tV4Lk0a3fK8lsJIkA==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.6.0.tgz", + "integrity": "sha512-/eVYs9VVVboX286mBK7bbKnO1yamUy2UCRjiY6MryhQL2PaaXCExsCQ2aO83OeYRhU2eCU/FMFP+tVMoOrzNrA==", "requires": { - "ajv": "^5.2.0", - "babel-code-frame": "^6.22.0", + "@babel/code-frame": "^7.0.0", + "ajv": "^6.5.3", "chalk": "^2.1.0", - "concat-stream": "^1.6.0", - "cross-spawn": "^5.1.0", - "debug": "^3.0.1", - "doctrine": "^2.0.0", - "eslint-scope": "^3.7.1", - "espree": "^3.5.1", - "esquery": "^1.0.0", - "estraverse": "^4.2.0", + "cross-spawn": "^6.0.5", + "debug": "^3.1.0", + "doctrine": "^2.1.0", + "eslint-scope": "^4.0.0", + "eslint-utils": "^1.3.1", + "eslint-visitor-keys": "^1.0.0", + "espree": "^4.0.0", + "esquery": "^1.0.1", "esutils": "^2.0.2", "file-entry-cache": "^2.0.0", "functional-red-black-tree": "^1.0.1", "glob": "^7.1.2", - "globals": "^9.17.0", - "ignore": "^3.3.3", + "globals": "^11.7.0", + "ignore": "^4.0.6", "imurmurhash": "^0.1.4", - "inquirer": "^3.0.6", - "is-resolvable": "^1.0.0", - "js-yaml": "^3.9.1", - "json-stable-stringify": "^1.0.1", + "inquirer": "^6.1.0", + "is-resolvable": "^1.1.0", + "js-yaml": "^3.12.0", + "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.3.0", - "lodash": "^4.17.4", - "minimatch": "^3.0.2", + "lodash": "^4.17.5", + "minimatch": "^3.0.4", "mkdirp": "^0.5.1", "natural-compare": "^1.4.0", "optionator": "^0.8.2", "path-is-inside": "^1.0.2", "pluralize": "^7.0.0", "progress": "^2.0.0", + "regexpp": "^2.0.0", "require-uncached": "^1.0.3", - "semver": "^5.3.0", + "semver": "^5.5.1", "strip-ansi": "^4.0.0", - "strip-json-comments": "~2.0.1", - "table": "^4.0.1", - "text-table": "~0.2.0" + "strip-json-comments": "^2.0.1", + "table": "^4.0.3", + "text-table": "^0.2.0" }, "dependencies": { "ansi-regex": { @@ -3324,36 +4339,13 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "js-yaml": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", - "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", + "eslint-scope": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz", + "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==", "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" } }, "strip-ansi": { @@ -3367,9 +4359,9 @@ } }, "eslint-config-prettier": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-3.0.1.tgz", - "integrity": "sha512-vA0TB8HCx/idHXfKHYcg9J98p0Q8nkfNwNAoP7e+ywUidn6ScaFS5iqncZAHPz+/a0A/tp657ulFHFx/2JDP4Q==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-3.3.0.tgz", + "integrity": "sha512-Bc3bh5bAcKNvs3HOpSi6EfGA2IIp7EzWcg2tS4vP7stnXu/J1opihHDM7jI9JCIckyIDTgZLSWn7J3HY0j2JfA==", "dev": true, "requires": { "get-stdin": "^6.0.0" @@ -3384,9 +4376,12 @@ } }, "eslint-config-react-app": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-2.1.0.tgz", - "integrity": "sha512-8QZrKWuHVC57Fmu+SsKAVxnI9LycZl7NFQ4H9L+oeISuCXhYdXqsOOIVSjQFW6JF5MXZLFE+21Syhd7mF1IRZQ==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-3.0.5.tgz", + "integrity": "sha512-GjPuy0pbaCkl4+9wm8p0xpl/x/AGFy3wKuju3WNVefDNDDu8T6Ap1OFMDDJbYnOAI+4jfyAE3VT06lAYcJVpdw==", + "requires": { + "confusing-browser-globals": "^1.0.5" + } }, "eslint-import-resolver-node": { "version": "0.3.2", @@ -3395,12 +4390,27 @@ "requires": { "debug": "^2.6.9", "resolve": "^1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "eslint-loader": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-1.9.0.tgz", - "integrity": "sha512-40aN976qSNPyb9ejTqjEthZITpls1SVKtwguahmH1dzGCwQU/vySE+xX33VZmD8csU0ahVNCtFlsPgKqRBiqgg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-2.1.1.tgz", + "integrity": "sha512-1GrJFfSevQdYpoDzx8mEE2TDWsb/zmFuY09l6hURg1AeFIKQOvZ+vH0UPjzmd1CZIbfTV5HUkMeBmFiDBkgIsQ==", "requires": { "loader-fs-cache": "^1.0.0", "loader-utils": "^1.0.2", @@ -3418,6 +4428,14 @@ "pkg-dir": "^1.0.0" }, "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, "find-up": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", @@ -3427,6 +4445,11 @@ "pinkie-promise": "^2.0.0" } }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, "path-exists": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", @@ -3446,30 +4469,38 @@ } }, "eslint-plugin-flowtype": { - "version": "2.39.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.39.1.tgz", - "integrity": "sha512-RiQv+7Z9QDJuzt+NO8sYgkLGT+h+WeCrxP7y8lI7wpU41x3x/2o3PGtHk9ck8QnA9/mlbNcy/hG0eKvmd7npaA==", + "version": "2.50.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.1.tgz", + "integrity": "sha512-9kRxF9hfM/O6WGZcZPszOVPd2W0TLHBtceulLTsGfwMPtiCCLnCW0ssRiOOiXyqrCA20pm1iXdXm7gQeN306zQ==", "requires": { - "lodash": "^4.15.0" + "lodash": "^4.17.10" } }, "eslint-plugin-import": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz", - "integrity": "sha512-Rf7dfKJxZ16QuTgVv1OYNxkZcsu/hULFnC+e+w0Gzi6jMC3guQoWQgxYxc54IDRinlb6/0v5z/PxxIKmVctN+g==", + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz", + "integrity": "sha512-FpuRtniD/AY6sXByma2Wr0TXvXJ4nA/2/04VPlfpmUDPOpOY264x+ILiwnrk/k4RINgDAyFZByxqPUbSQ5YE7g==", "requires": { - "builtin-modules": "^1.1.1", "contains-path": "^0.1.0", "debug": "^2.6.8", "doctrine": "1.5.0", "eslint-import-resolver-node": "^0.3.1", - "eslint-module-utils": "^2.1.1", + "eslint-module-utils": "^2.2.0", "has": "^1.0.1", - "lodash.cond": "^4.3.0", + "lodash": "^4.17.4", "minimatch": "^3.0.3", - "read-pkg-up": "^2.0.0" + "read-pkg-up": "^2.0.0", + "resolve": "^1.6.0" }, "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, "doctrine": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", @@ -3490,6 +4521,19 @@ "strip-bom": "^3.0.0" } }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "^1.2.0" + } + }, "path-type": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", @@ -3525,23 +4569,24 @@ } }, "eslint-plugin-jsx-a11y": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz", - "integrity": "sha512-5I9SpoP7gT4wBFOtXT8/tXNPYohHBVfyVfO17vkbC7r9kEIxYJF12D3pKqhk8+xnk12rfxKClS3WCFpVckFTPQ==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.2.tgz", + "integrity": "sha512-7gSSmwb3A+fQwtw0arguwMdOdzmKUgnUcbSNlo+GjKLAQFuC2EZxWqG9XHRI8VscBJD5a8raz3RuxQNFW+XJbw==", "requires": { - "aria-query": "^0.7.0", + "aria-query": "^3.0.0", "array-includes": "^3.0.3", - "ast-types-flow": "0.0.7", - "axobject-query": "^0.1.0", - "damerau-levenshtein": "^1.0.0", - "emoji-regex": "^6.1.0", - "jsx-ast-utils": "^1.4.0" + "ast-types-flow": "^0.0.7", + "axobject-query": "^2.0.1", + "damerau-levenshtein": "^1.0.4", + "emoji-regex": "^6.5.1", + "has": "^1.0.3", + "jsx-ast-utils": "^2.0.1" } }, "eslint-plugin-prettier": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.2.tgz", - "integrity": "sha512-tGek5clmW5swrAx1mdPYM8oThrBE83ePh7LeseZHBWfHVGrHPhKn7Y5zgRMbU/9D5Td9K4CEmUPjGxA7iw98Og==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-2.7.0.tgz", + "integrity": "sha512-CStQYJgALoQBw3FsBzH0VOVDRnJ/ZimUlpLm226U8qgqYJfPOY/CPK6wyRInMxh73HSKg5wyRwdS4BVYYHwokA==", "dev": true, "requires": { "fast-diff": "^1.1.1", @@ -3557,48 +4602,50 @@ } }, "eslint-plugin-react": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.4.0.tgz", - "integrity": "sha512-tvjU9u3VqmW2vVuYnE8Qptq+6ji4JltjOjJ9u7VAOxVYkUkyBZWRvNYKbDv5fN+L6wiA+4we9+qQahZ0m63XEA==", + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.11.1.tgz", + "integrity": "sha512-cVVyMadRyW7qsIUh3FHp3u6QHNhOgVrLQYdQEB1bPWBsgbNCHdFAeNMquBMCcZJu59eNthX053L70l7gRt4SCw==", "requires": { - "doctrine": "^2.0.0", - "has": "^1.0.1", - "jsx-ast-utils": "^2.0.0", - "prop-types": "^15.5.10" - }, - "dependencies": { - "jsx-ast-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz", - "integrity": "sha1-6AGxs5mF4g//yHtA43SAgOLcrH8=", - "requires": { - "array-includes": "^3.0.3" - } - } + "array-includes": "^3.0.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.0.1", + "prop-types": "^15.6.2" } }, "eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==", + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz", + "integrity": "sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=", "requires": { "esrecurse": "^4.1.0", "estraverse": "^4.1.1" } }, + "eslint-utils": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz", + "integrity": "sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==" + }, + "eslint-visitor-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", + "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==" + }, "espree": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", - "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-4.1.0.tgz", + "integrity": "sha512-I5BycZW6FCVIub93TeVY1s7vjhP9CY6cXCznIRfiig7nRviKZYdRnj/sHEWC6A7WE9RDWOFq9+7OsWSYz8qv2w==", "requires": { - "acorn": "^5.5.0", - "acorn-jsx": "^3.0.0" + "acorn": "^6.0.2", + "acorn-jsx": "^5.0.0", + "eslint-visitor-keys": "^1.0.0" } }, "esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" }, "esquery": { "version": "1.0.1", @@ -3631,15 +4678,6 @@ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" }, - "event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", - "requires": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, "eventemitter3": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz", @@ -3687,84 +4725,39 @@ "p-finally": "^1.0.0", "signal-exit": "^3.0.0", "strip-eof": "^1.0.0" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", "requires": { - "is-extendable": "^0.1.0" + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } } } }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "requires": { + "is-posix-bracket": "^0.1.0" + } + }, "expand-range": { "version": "1.8.2", "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", "requires": { "fill-range": "^2.1.0" - }, - "dependencies": { - "fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", - "requires": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - } - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } } }, "expand-tilde": { @@ -3775,14 +4768,27 @@ "homedir-polyfill": "^1.0.1" } }, + "expect": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-23.6.0.tgz", + "integrity": "sha512-dgSoOHgmtn/aDGRVFWclQyPDKl2CQRq0hmIEoUAuQs/2rn2NcvCWcSCovm6BLeuB/7EZuLGu2QfnR+qRt5OM4w==", + "requires": { + "ansi-styles": "^3.2.0", + "jest-diff": "^23.6.0", + "jest-get-type": "^22.1.0", + "jest-matcher-utils": "^23.6.0", + "jest-message-util": "^23.4.0", + "jest-regex-util": "^23.3.0" + } + }, "express": { - "version": "4.16.3", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.3.tgz", - "integrity": "sha1-avilAjUNsyRuzEvs9rWjTSL37VM=", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", + "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", "requires": { "accepts": "~1.3.5", "array-flatten": "1.1.1", - "body-parser": "1.18.2", + "body-parser": "1.18.3", "content-disposition": "0.5.2", "content-type": "~1.0.4", "cookie": "0.3.1", @@ -3799,10 +4805,10 @@ "on-finished": "~2.3.0", "parseurl": "~1.3.2", "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.3", - "qs": "6.5.1", + "proxy-addr": "~2.0.4", + "qs": "6.5.2", "range-parser": "~1.2.0", - "safe-buffer": "5.1.1", + "safe-buffer": "5.1.2", "send": "0.16.2", "serve-static": "1.13.2", "setprototypeof": "1.1.0", @@ -3817,27 +4823,30 @@ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" } } }, "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, "extend-shallow": { "version": "3.0.2", @@ -3859,44 +4868,261 @@ } }, "external-editor": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", - "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz", + "integrity": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==", "requires": { - "chardet": "^0.4.0", - "iconv-lite": "^0.4.17", + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", "tmp": "^0.0.33" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } } }, "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "is-extglob": "^1.0.0" + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" + }, + "fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "fast-glob": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.4.tgz", + "integrity": "sha512-FjK2nCGI/McyzgNtTESqaWP3trPvHyRyoyY70hxjc3oKPNmDe8taohLZpoVKoUjW85tbU5txaYUZCNtVzygl1g==", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" }, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { - "is-descriptor": "^1.0.0" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { - "is-extendable": "^0.1.0" + "ms": "2.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "http://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "http://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "^2.1.0" + } + } } }, "is-accessor-descriptor": { @@ -3924,36 +5150,70 @@ "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-glob": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", + "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, - "extract-text-webpack-plugin": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz", - "integrity": "sha512-bt/LZ4m5Rqt/Crl2HiKuAl/oqg0psx1tsTLkvWbJen1CtD+fftkZhMaQ9HOtY2gWsl2Wq+sABmMVi9z3DhKWQQ==", - "requires": { - "async": "^2.4.1", - "loader-utils": "^1.1.0", - "schema-utils": "^0.3.0", - "webpack-sources": "^1.0.1" - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" - }, - "fast-diff": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", - "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==", - "dev": true - }, "fast-json-stable-stringify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", @@ -3965,9 +5225,9 @@ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" }, "fastparse": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz", - "integrity": "sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg=" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", + "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==" }, "faye-websocket": { "version": "0.11.1", @@ -3999,6 +5259,16 @@ "ua-parser-js": "^0.7.18" } }, + "fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + }, + "figgy-pudding": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", + "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==" + }, "figures": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", @@ -4017,12 +5287,12 @@ } }, "file-loader": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.5.tgz", - "integrity": "sha512-RzGHDatcVNpGISTvCpfUfOGpYuSR7HSsSg87ki+wF6rw1Hm0RALPTiAdsxAq1UwLf0RRhbe22/eHK6nhXspiOQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-2.0.0.tgz", + "integrity": "sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==", "requires": { "loader-utils": "^1.0.2", - "schema-utils": "^0.3.0" + "schema-utils": "^1.0.0" } }, "filename-regex": { @@ -4040,27 +5310,28 @@ } }, "filesize": { - "version": "3.5.11", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.5.11.tgz", - "integrity": "sha512-ZH7loueKBoDb7yG9esn1U+fgq7BzlzW6NRi5/rMdxIZ05dj7GFD/Xc5rq2CDt5Yq86CyfSYVyx4242QQNZbx1g==" + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", + "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==" }, "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" }, "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", "requires": { - "is-extendable": "^0.1.0" + "isarray": "1.0.0" } } } @@ -4077,6 +5348,21 @@ "parseurl": "~1.3.2", "statuses": "~1.4.0", "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "find-cache-dir": { @@ -4098,13 +5384,13 @@ } }, "flat-cache": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", - "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz", + "integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==", "requires": { "circular-json": "^0.3.1", - "del": "^2.0.2", "graceful-fs": "^4.1.2", + "rimraf": "~2.6.2", "write": "^0.2.1" } }, @@ -4113,12 +5399,21 @@ "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz", "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=" }, + "flush-write-stream": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz", + "integrity": "sha512-calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.4" + } + }, "follow-redirects": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.1.tgz", - "integrity": "sha512-v9GI1hpaqq1ZZR6pBD1+kI7O24PhDvNGNodjS3MdcEqyrahCp8zbtpv+2B/krUnSmUH80lbAS7MrdeK5IylgKg==", + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", "requires": { - "debug": "^3.1.0" + "debug": "=3.1.0" }, "dependencies": { "debug": { @@ -4128,6 +5423,11 @@ "requires": { "ms": "2.0.0" } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -4144,23 +5444,291 @@ "for-in": "^1.0.1" } }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" - }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" }, + "fork-ts-checker-webpack-plugin-alt": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin-alt/-/fork-ts-checker-webpack-plugin-alt-0.4.14.tgz", + "integrity": "sha512-s0wjOBuPdylMRBzZ4yO8LSJuzem3g0MYZFxsjRXrFDQyL5KJBVSq30+GoHM/t/r2CRU4tI6zi04sq6OXK0UYnw==", + "requires": { + "babel-code-frame": "^6.22.0", + "chalk": "^2.4.1", + "chokidar": "^2.0.4", + "lodash": "^4.17.11", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "resolve": "^1.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "http://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "http://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, "form-data": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", - "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "requires": { "asynckit": "^0.4.0", - "combined-stream": "1.0.6", + "combined-stream": "^1.0.6", "mime-types": "^2.1.12" } }, @@ -4182,16 +5750,36 @@ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, "fs-extra": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", - "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.0.tgz", + "integrity": "sha512-EglNDLRpmaTWiD/qraZn6HREAEAHJcJOmxNEYwq6xeMKnVMAy3GUcFB+wXt2C6k4CNvB/mP1y/U3dzvKKj5OtQ==", "requires": { "graceful-fs": "^4.1.2", - "jsonfile": "^3.0.0", + "jsonfile": "^4.0.0", "universalify": "^0.1.0" } }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -4674,10 +6262,10 @@ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" + "get-own-enumerable-property-symbols": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.0.tgz", + "integrity": "sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg==" }, "get-stream": { "version": "3.0.0", @@ -4698,9 +6286,9 @@ } }, "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -4727,13 +6315,10 @@ "is-glob": "^2.0.0" } }, - "global-dirs": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", - "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", - "requires": { - "ini": "^1.3.4" - } + "glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=" }, "global-modules": { "version": "1.0.0", @@ -4758,66 +6343,61 @@ } }, "globals": { - "version": "9.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" + "version": "11.9.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.9.0.tgz", + "integrity": "sha512-5cJVtyXWH8PiJPVLZzzoIizXx944O4OmRro5MWKx5fT4MgcN7OfaMutPeaTdJCCURwbWdhhcCWcKIffPnmTzBg==" }, "globby": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", + "version": "8.0.1", + "resolved": "http://registry.npmjs.org/globby/-/globby-8.0.1.tgz", + "integrity": "sha512-oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw==", "requires": { "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "got": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", - "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", - "requires": { - "create-error-class": "^3.0.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-redirect": "^1.0.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "lowercase-keys": "^1.0.0", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "unzip-response": "^2.0.1", - "url-parse-lax": "^1.0.0" + "dir-glob": "^2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "dependencies": { + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } } }, "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + "version": "4.1.15", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", + "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" }, "graphql": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-0.13.2.tgz", - "integrity": "sha512-QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog==", + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.0.2.tgz", + "integrity": "sha512-gUC4YYsaiSJT1h40krG3J+USGlwhzNTXSb4IOZljn9ag5Tj+RkoXrWp+Kh7WyE3t1NCfab5kzCuxBIvOMERMXw==", "requires": { - "iterall": "^1.2.1" + "iterall": "^1.2.2" } }, "graphql-anywhere": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/graphql-anywhere/-/graphql-anywhere-4.1.14.tgz", - "integrity": "sha512-Wy4h9FWwxgrDRP16wXApP/VmNKXXTvY8jZLDtgxwDuC8Z6LSVkeCDjQSCyNKdgktky104UCbIQ3x+et9bQupDA==", + "version": "4.1.24", + "resolved": "https://registry.npmjs.org/graphql-anywhere/-/graphql-anywhere-4.1.24.tgz", + "integrity": "sha512-g81K7FqXSF3q1iqFWlwiwD+g0SDkPUUa9+Wa+7BOrAe5+7R4BdNWL4dw9BRsJxt0Xx6nOaI2E+VM7QMAucQFvA==", "requires": { - "apollo-utilities": "^1.0.16" + "apollo-utilities": "^1.0.27" } }, "graphql-tag": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.9.2.tgz", - "integrity": "sha512-qnNmof9pAqj/LUzs3lStP0Gw1qhdVCUS7Ab7+SUB6KD5aX1uqxWQRwMnOGTkhKuLvLNIs1TvNz+iS9kUGl1MhA==" + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.10.0.tgz", + "integrity": "sha512-9FD6cw976TLLf9WYIUPCaaTpniawIjHWZSwIRZSjrfufJamcXbVVYfN2TWvJYbw0Xf2JjYbl1/f2+wDnBVw3/w==" }, "growly": { "version": "1.3.0", @@ -4825,72 +6405,89 @@ "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=" }, "gzip-size": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz", - "integrity": "sha1-VGGI6b3DN/Zzdy+BZgRks4nc5SA=", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.0.0.tgz", + "integrity": "sha512-5iI7omclyqrnWw4XbXAmGhPsABkSIDQonv2K0h61lybgofWa6iZyvrI3r2zsJH4P8Nb64fFVzlvfhs0g7BBxAA==", + "requires": { + "duplexer": "^0.1.1", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + } + }, + "h2x-core": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/h2x-core/-/h2x-core-1.1.1.tgz", + "integrity": "sha512-LdXe4Irs731knLtHgLyFrnJCumfiqXXQwKN1IMUhi37li29PLfLbMDvfK7Rk4wmgHLKP+sIITT1mcJV4QsC3nw==", + "requires": { + "h2x-generate": "^1.1.0", + "h2x-parse": "^1.1.1", + "h2x-traverse": "^1.1.0" + } + }, + "h2x-generate": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/h2x-generate/-/h2x-generate-1.1.0.tgz", + "integrity": "sha512-L7Hym0yb20QIjvqeULUPOeh/cyvScdOAyJ6oRlh5dF0+w92hf3OiTk1q15KBijde7jGEe+0R4aOmtW8gkPNIzg==", "requires": { - "duplexer": "^0.1.1" + "h2x-traverse": "^1.1.0" } }, + "h2x-parse": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/h2x-parse/-/h2x-parse-1.1.1.tgz", + "integrity": "sha512-WRSmPF+tIWuUXVEZaYRhcZx/JGEJx8LjZpDDtrvMr5m/GTR0NerydCik5dRzcKXPWCtfXxuJRLR4v2P4HB2B1A==", + "requires": { + "h2x-types": "^1.1.0", + "jsdom": ">=11.0.0" + } + }, + "h2x-plugin-jsx": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/h2x-plugin-jsx/-/h2x-plugin-jsx-1.2.0.tgz", + "integrity": "sha512-a7Vb3BHhJJq0dPDNdqguEyQirENkVsFtvM2YkiaT5h/fmGhmM1nDy3BLeJeSKi2tL2g9v4ykm2Z+GG9QrhDgPA==", + "requires": { + "h2x-types": "^1.1.0" + } + }, + "h2x-traverse": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/h2x-traverse/-/h2x-traverse-1.1.0.tgz", + "integrity": "sha512-1ND8ZbISLSUgpLHYJRvhvElITvs0g44L7RxjeXViz5XP6rooa+FtXTFLByl2Yg01zj2txubifHIuU4pgvj8l+A==", + "requires": { + "h2x-types": "^1.1.0" + } + }, + "h2x-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/h2x-types/-/h2x-types-1.1.0.tgz", + "integrity": "sha512-QdH5qfLcdF209UsCdM0ZNZ9Dwm2PHvMfeLZtivBrjX3Y/df4US2pwsUC4HBfWhye/mx/t6puODeC7Oacb/Ol8g==" + }, "handle-thing": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-1.2.5.tgz", "integrity": "sha1-/Xqtcmvxpf0W38KbL3pmAdJxOcQ=" }, "handlebars": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz", - "integrity": "sha1-Ywo13+ApS8KB7a5v/F0yn8eYLcw=", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.12.tgz", + "integrity": "sha512-RhmTekP+FZL+XNhwS1Wf+bTTZpdLougwt5pcgA1tuz6Jcx0fpH/7z0qd71RKnZHBCxIRBHfBOnio4gViPemNzA==", "requires": { - "async": "^1.4.0", + "async": "^2.5.0", "optimist": "^0.6.1", - "source-map": "^0.4.4", - "uglify-js": "^2.6" + "source-map": "^0.6.1", + "uglify-js": "^3.1.4" }, "dependencies": { - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" - }, "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "requires": { - "amdefine": ">=0.0.4" - } - }, - "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", - "optional": true, - "requires": { - "source-map": "~0.5.1", - "uglify-to-browserify": "~1.0.0", - "yargs": "~3.10.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "optional": true - } - } - }, - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", - "optional": true, - "requires": { - "camelcase": "^1.0.2", - "cliui": "^2.1.0", - "decamelize": "^1.0.0", - "window-size": "0.1.0" - } + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, @@ -4900,14 +6497,19 @@ "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" }, "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", "requires": { - "ajv": "^5.1.0", + "ajv": "^6.5.5", "har-schema": "^2.0.0" } }, + "harmony-reflect": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.1.tgz", + "integrity": "sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==" + }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -4929,6 +6531,11 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, + "has-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" + }, "has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", @@ -4948,6 +6555,24 @@ "kind-of": "^4.0.0" }, "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, "kind-of": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", @@ -4968,18 +6593,23 @@ } }, "hash.js": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz", - "integrity": "sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", "requires": { "inherits": "^2.0.3", "minimalistic-assert": "^1.0.1" } }, "he": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", - "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" }, "history": { "version": "4.7.2", @@ -5013,6 +6643,11 @@ "minimalistic-crypto-utils": "^1.0.1" } }, + "hoek": { + "version": "4.2.1", + "resolved": "http://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz", + "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==" + }, "hoist-non-react-statics": { "version": "2.5.5", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", @@ -5035,6 +6670,11 @@ "parse-passwd": "^1.0.0" } }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" + }, "hosted-git-info": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", @@ -5051,10 +6691,20 @@ "wbuf": "^1.1.0" } }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + }, "html-comment-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.1.tgz", - "integrity": "sha1-ZouTd26q5V696POtRkswekljYl4=" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", + "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==" }, "html-encoding-sniffer": { "version": "1.0.2", @@ -5070,43 +6720,38 @@ "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=" }, "html-minifier": { - "version": "3.5.19", - "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.19.tgz", - "integrity": "sha512-Qr2JC9nsjK8oCrEmuB430ZIA8YWbF3D5LSjywD75FTuXmeqacwHgIM8wp3vHYzzPbklSjp53RdmDuzR4ub2HzA==", + "version": "3.5.21", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", + "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", "requires": { "camel-case": "3.0.x", - "clean-css": "4.1.x", - "commander": "2.16.x", - "he": "1.1.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", "param-case": "2.1.x", "relateurl": "0.2.x", "uglify-js": "3.4.x" + }, + "dependencies": { + "commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==" + } } }, "html-webpack-plugin": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-2.29.0.tgz", - "integrity": "sha1-6Yf0IYU9O2k4yMTIFxhC5f0XryM=", + "version": "4.0.0-alpha.2", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.0.0-alpha.2.tgz", + "integrity": "sha512-tyvhjVpuGqD7QYHi1l1drMQTg5i+qRxpQEGbdnYFREgOKy7aFDf/ocQ/V1fuEDlQx7jV2zMap3Hj2nE9i5eGXw==", "requires": { - "bluebird": "^3.4.7", + "@types/tapable": "1.0.2", "html-minifier": "^3.2.3", - "loader-utils": "^0.2.16", - "lodash": "^4.17.3", + "loader-utils": "^1.1.0", + "lodash": "^4.17.10", "pretty-error": "^2.0.2", - "toposort": "^1.0.0" - }, - "dependencies": { - "loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0", - "object-assign": "^4.0.1" - } - } + "tapable": "^1.0.0", + "util.promisify": "1.0.0" } }, "htmlparser2": { @@ -5168,9 +6813,9 @@ } }, "http-parser-js": { - "version": "0.4.13", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.13.tgz", - "integrity": "sha1-O9bW/ebjFyyTNMOzO2wZPYD+ETc=" + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.0.tgz", + "integrity": "sha512-cZdEF7r4gfRIq7ezX9J0T+kQmJNOub71dWbgAXVHDct80TKP4MCETtZQ31xyv38UwgzkWPYF/Xc0ge55dW9Z9w==" }, "http-proxy": { "version": "1.17.0", @@ -5183,117 +6828,284 @@ } }, "http-proxy-middleware": { - "version": "0.17.4", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz", - "integrity": "sha1-ZC6ISIUdZvCdTxJJEoRtuutBuDM=", + "version": "0.18.0", + "resolved": "http://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz", + "integrity": "sha512-Fs25KVMPAIIcgjMZkVHJoKg9VcXcC1C8yb9JUgeDvVXY0S/zgVIhMb+qVswDIgtJe2DfckMSY2d6TuTEutlk6Q==", "requires": { "http-proxy": "^1.16.2", - "is-glob": "^3.1.0", - "lodash": "^4.17.2", - "micromatch": "^2.3.11" + "is-glob": "^4.0.0", + "lodash": "^4.17.5", + "micromatch": "^3.1.9" }, "dependencies": { "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "requires": { - "arr-flatten": "^1.0.1" - } + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" }, "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" }, "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" } }, "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "requires": { - "is-posix-bracket": "^0.1.0" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "http://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "http://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } } }, "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { - "is-extglob": "^1.0.0" + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "dependencies": { - "is-extglob": { + "define-property": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } } } }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", + "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", "requires": { - "is-extglob": "^2.1.0" + "is-extglob": "^2.1.1" } }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "requires": { - "is-buffer": "^1.1.5" - } - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" + "kind-of": "^3.0.2" }, "dependencies": { - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-extglob": "^1.0.0" + "is-buffer": "^1.1.5" } } } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -5338,25 +7150,68 @@ "postcss": "^6.0.1" } }, + "identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "requires": { + "harmony-reflect": "^1.4.6" + } + }, "ieee754": { "version": "1.1.12", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==" }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + }, "ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + }, + "immer": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/immer/-/immer-1.7.2.tgz", + "integrity": "sha512-4Urocwu9+XLDJw4Tc6ZCg7APVjjLInCFvO4TwGsAYV5zT6YYSor14dsZR0+0tHlDIN92cFUOq+i7fC00G5vTxA==" }, - "import-lazy": { + "immutable-tuple": { + "version": "0.4.9", + "resolved": "https://registry.npmjs.org/immutable-tuple/-/immutable-tuple-0.4.9.tgz", + "integrity": "sha512-LWbJPZnidF8eczu7XmcnLBsumuyRBkpwIRPCZxlojouhBo5jEBO4toj6n7hMy6IxHU/c+MqDSWkvaTpPlMQcyA==" + }, + "import-cwd": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "requires": { + "import-from": "^2.1.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "requires": { + "resolve-from": "^3.0.0" + } }, "import-local": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-0.1.1.tgz", - "integrity": "sha1-sReVcqrNwRxqkQCftDDbyrX2aKg=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz", + "integrity": "sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==", "requires": { "pkg-dir": "^2.0.0", "resolve-cwd": "^2.0.0" @@ -5368,26 +7223,11 @@ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" }, "indefinite-observable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-1.0.1.tgz", - "integrity": "sha1-CZFUI8yNb36xy3iCrRNGM8mm7cM=", - "requires": { - "symbol-observable": "1.0.4" - }, - "dependencies": { - "symbol-observable": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.4.tgz", - "integrity": "sha1-Kb9hXUqnEhvdiYsi1LP5vE4qoD0=" - } - } - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-1.0.2.tgz", + "integrity": "sha512-Mps0898zEduHyPhb7UCgNmfzlqNZknVmaFz5qzr0mm04YQ5FGLhAyK/dJ+NaRxGyR6juQXIxh5Ev0xx+qq0nYA==", "requires": { - "repeating": "^2.0.0" + "symbol-observable": "1.2.0" } }, "indexes-of": { @@ -5420,64 +7260,49 @@ "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" }, "inquirer": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", - "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.2.1.tgz", + "integrity": "sha512-088kl3DRT2dLU5riVMKKr1DlImd6X7smDhpXUCkJDCKvTEJeRiXh0G132HG9u5a+6Ylw9plFRY7RuTnwohYSpg==", "requires": { "ansi-escapes": "^3.0.0", "chalk": "^2.0.0", "cli-cursor": "^2.1.0", "cli-width": "^2.0.0", - "external-editor": "^2.0.4", + "external-editor": "^3.0.0", "figures": "^2.0.0", - "lodash": "^4.3.0", + "lodash": "^4.17.10", "mute-stream": "0.0.7", "run-async": "^2.2.0", - "rx-lite": "^4.0.8", - "rx-lite-aggregates": "^4.0.8", + "rxjs": "^6.1.0", "string-width": "^2.1.0", - "strip-ansi": "^4.0.0", + "strip-ansi": "^5.0.0", "through": "^2.3.6" }, "dependencies": { "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.0.0.tgz", + "integrity": "sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w==" }, "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.0.0.tgz", + "integrity": "sha512-Uu7gQyZI7J7gn5qLn1Np3G9vcYGTVqB+lFTytnDJv83dd8T22aGH451P3jueT2/QemInJDfxHB5Tde5OzgG1Ow==", "requires": { - "ansi-regex": "^3.0.0" + "ansi-regex": "^4.0.0" } } } }, "internal-ip": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-1.2.0.tgz", - "integrity": "sha1-rp+/k7mEh4eF1QqN4bNWlWBYz1w=", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-3.0.1.tgz", + "integrity": "sha512-NXXgESC2nNVtU+pqmC9e6R8B1GpKxzsAQhffvh5AL79qKnodd+L7tnEQmTiUAVngqLalPbSqRA7XGIEL5nCd0Q==", "requires": { - "meow": "^3.3.0" + "default-gateway": "^2.6.0", + "ipaddr.js": "^1.5.2" } }, - "interpret": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", - "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=" - }, "invariant": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", @@ -5496,10 +7321,15 @@ "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + }, "ipaddr.js": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.6.0.tgz", - "integrity": "sha1-4/o1e3c9phnybpXwSdBVxyeW+Gs=" + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz", + "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=" }, "is-absolute-url": { "version": "2.1.0", @@ -5512,16 +7342,6 @@ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "requires": { "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } } }, "is-arrayish": { @@ -5556,11 +7376,24 @@ "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==" }, "is-ci": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", + "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "requires": { + "ci-info": "^1.5.0" + } + }, + "is-color-stop": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.1.0.tgz", - "integrity": "sha512-c7TnwxLePuqIlxHgr7xtxzycJPegNHFuIrBkwbf8hc58//+Op1CqFkyS+xnIMkwn9UsJIwc174BIjkyBmSpjKg==", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", "requires": { - "ci-info": "^1.0.0" + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" } }, "is-data-descriptor": { @@ -5569,16 +7402,6 @@ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "requires": { "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } } }, "is-date-object": { @@ -5649,6 +7472,11 @@ "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=" }, + "is-generator-fn": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz", + "integrity": "sha1-lp1J4bszKfa7fwkIm+JleLLd1Go=" + }, "is-glob": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", @@ -5662,36 +7490,12 @@ "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" }, - "is-installed-globally": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", - "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", - "requires": { - "global-dirs": "^0.1.0", - "is-path-inside": "^1.0.0" - } - }, - "is-npm": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", - "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=" - }, "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", "requires": { "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } } }, "is-obj": { @@ -5720,11 +7524,6 @@ "path-is-inside": "^1.0.1" } }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" - }, "is-plain-object": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", @@ -5748,11 +7547,6 @@ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" }, - "is-redirect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", - "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" - }, "is-regex": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", @@ -5761,20 +7555,20 @@ "has": "^1.0.1" } }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + }, "is-resolvable": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" }, - "is-retry-allowed": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", - "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=" - }, "is-root": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-1.0.0.tgz", - "integrity": "sha1-B7bCM7w5TNnQK6FclmvWZg1jQtU=" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.0.0.tgz", + "integrity": "sha512-F/pJIk8QD6OX5DNhRB7hWamLsUilmkDGho48KbgZ6xg/lmAZXHxzXQ91jzB3yRSw5kdQGGGc4yz8HYhTYIMWPg==" }, "is-stream": { "version": "1.1.0", @@ -5782,17 +7576,20 @@ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" }, "is-svg": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz", - "integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", + "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", "requires": { "html-comment-regex": "^1.1.0" } }, "is-symbol": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", - "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", + "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", + "requires": { + "has-symbols": "^1.0.0" + } }, "is-typedarray": { "version": "1.0.0", @@ -5819,6 +7616,14 @@ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, + "isemail": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/isemail/-/isemail-3.2.0.tgz", + "integrity": "sha512-zKqkK+O+dGqevc93KNsbZ/TqTUFd46MwWjYOoMrjIMZ51eU7DtQG3Wmd9SQQT7i7RVnuTPEiYEWHU3MSbxC1Tg==", + "requires": { + "punycode": "2.x.x" + } + }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -5844,84 +7649,56 @@ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" }, "istanbul-api": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.3.1.tgz", - "integrity": "sha512-duj6AlLcsWNwUpfyfHt0nWIeRiZpuShnP40YTxOGQgtaN8fd6JYSxsvxUphTDy8V5MfDXo4s/xVCIIvVCO808g==", + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.3.7.tgz", + "integrity": "sha512-4/ApBnMVeEPG3EkSzcw25wDe4N66wxwn+KKn6b47vyek8Xb3NBAcg4xfuQbS7BqcZuTX4wxfD5lVagdggR3gyA==", "requires": { "async": "^2.1.4", - "compare-versions": "^3.1.0", "fileset": "^2.0.2", - "istanbul-lib-coverage": "^1.2.0", - "istanbul-lib-hook": "^1.2.0", - "istanbul-lib-instrument": "^1.10.1", - "istanbul-lib-report": "^1.1.4", - "istanbul-lib-source-maps": "^1.2.4", - "istanbul-reports": "^1.3.0", + "istanbul-lib-coverage": "^1.2.1", + "istanbul-lib-hook": "^1.2.2", + "istanbul-lib-instrument": "^1.10.2", + "istanbul-lib-report": "^1.1.5", + "istanbul-lib-source-maps": "^1.2.6", + "istanbul-reports": "^1.5.1", "js-yaml": "^3.7.0", "mkdirp": "^0.5.1", "once": "^1.4.0" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "istanbul-lib-source-maps": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz", - "integrity": "sha512-8O2T/3VhrQHn0XcJbP1/GN7kXMiRAlPi+fj3uEHrjBD8Oz7Py0prSC25C09NuAZS6bgW1NNKAvCSHZXB0irSGA==", - "requires": { - "debug": "^3.1.0", - "istanbul-lib-coverage": "^1.2.0", - "mkdirp": "^0.5.1", - "rimraf": "^2.6.1", - "source-map": "^0.5.3" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } } }, "istanbul-lib-coverage": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz", - "integrity": "sha512-GvgM/uXRwm+gLlvkWHTjDAvwynZkL9ns15calTrmhGgowlwJBbWMYzWbKqE2DT6JDP1AFXKa+Zi0EkqNCUqY0A==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz", + "integrity": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==" }, "istanbul-lib-hook": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz", - "integrity": "sha512-eLAMkPG9FU0v5L02lIkcj/2/Zlz9OuluaXikdr5iStk8FDbSwAixTK9TkYxbF0eNnzAJTwM2fkV2A1tpsIp4Jg==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz", + "integrity": "sha512-/Jmq7Y1VeHnZEQ3TL10VHyb564mn6VrQXHchON9Jf/AEcmQ3ZIiyD1BVzNOKTZf/G3gE+kiGK6SmpF9y3qGPLw==", "requires": { - "append-transform": "^1.0.0" + "append-transform": "^0.4.0" } }, "istanbul-lib-instrument": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz", - "integrity": "sha512-1dYuzkOCbuR5GRJqySuZdsmsNKPL3PTuyPevQfoCXJePT9C8y1ga75neU+Tuy9+yS3G/dgx8wgOmp2KLpgdoeQ==", + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz", + "integrity": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==", "requires": { "babel-generator": "^6.18.0", "babel-template": "^6.16.0", "babel-traverse": "^6.18.0", "babel-types": "^6.18.0", "babylon": "^6.18.0", - "istanbul-lib-coverage": "^1.2.0", + "istanbul-lib-coverage": "^1.2.1", "semver": "^5.3.0" } }, "istanbul-lib-report": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz", - "integrity": "sha512-Azqvq5tT0U09nrncK3q82e/Zjkxa4tkFZv7E6VcqP0QCPn6oNljDPfrZEC/umNXds2t7b8sRJfs6Kmpzt8m2kA==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz", + "integrity": "sha512-UsYfRMoi6QO/doUshYNqcKJqVmFe9w51GZz8BS3WB0lYxAllQYklka2wP9+dGZeHYaWIdcXUx8JGdbqaoXRXzw==", "requires": { - "istanbul-lib-coverage": "^1.2.0", + "istanbul-lib-coverage": "^1.2.1", "mkdirp": "^0.5.1", "path-parse": "^1.0.5", "supports-color": "^3.1.2" @@ -5943,36 +7720,21 @@ } }, "istanbul-lib-source-maps": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.3.tgz", - "integrity": "sha512-fDa0hwU/5sDXwAklXgAoCJCOsFsBplVQ6WBldz5UwaqOzmDhUK4nfuR7/G//G2lERlblUNJB8P6e8cXq3a7MlA==", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz", + "integrity": "sha512-TtbsY5GIHgbMsMiRw35YBHGpZ1DVFEO19vxxeiDMYaeOFOCzfnYVxvl6pOUIZR4dtPhAGpSMup8OyF8ubsaqEg==", "requires": { "debug": "^3.1.0", - "istanbul-lib-coverage": "^1.1.2", + "istanbul-lib-coverage": "^1.2.1", "mkdirp": "^0.5.1", "rimraf": "^2.6.1", "source-map": "^0.5.3" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } } }, "istanbul-reports": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.3.0.tgz", - "integrity": "sha512-y2Z2IMqE1gefWUaVjrBm0mSKvUkaBy9Vqz8iwr/r40Y9hBbIteH5wqHG/9DLTfJ9xUnUT2j7A3+VVJ6EaYBllA==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.5.1.tgz", + "integrity": "sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw==", "requires": { "handlebars": "^4.0.3" } @@ -5983,499 +7745,457 @@ "integrity": "sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==" }, "jest": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-20.0.4.tgz", - "integrity": "sha1-PdJgwpidba1nix6cxNkZRPbWAqw=", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-23.6.0.tgz", + "integrity": "sha512-lWzcd+HSiqeuxyhG+EnZds6iO3Y3ZEnMrfZq/OTGvF/C+Z4fPMCdhWTGSAiO2Oym9rbEXfwddHhh6jqrTF3+Lw==", "requires": { - "jest-cli": "^20.0.4" + "import-local": "^1.0.0", + "jest-cli": "^23.6.0" }, "dependencies": { - "ansi-escapes": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", - "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=" - }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "requires": { - "arr-flatten": "^1.0.1" - } - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" - } - }, - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "requires": { - "is-extglob": "^1.0.0" - } + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" }, "jest-cli": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-20.0.4.tgz", - "integrity": "sha1-5TKxnYiuW8bEF+iwWTpv6VSx3JM=", - "requires": { - "ansi-escapes": "^1.4.0", - "callsites": "^2.0.0", - "chalk": "^1.1.3", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-23.6.0.tgz", + "integrity": "sha512-hgeD1zRUp1E1zsiyOXjEn4LzRLWdJBV//ukAHGlx6s5mfCNJTbhbHjgxnDUXA8fsKWN/HqFFF6X5XcCwC/IvYQ==", + "requires": { + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", "graceful-fs": "^4.1.11", + "import-local": "^1.0.0", "is-ci": "^1.0.10", - "istanbul-api": "^1.1.1", - "istanbul-lib-coverage": "^1.0.1", - "istanbul-lib-instrument": "^1.4.2", - "istanbul-lib-source-maps": "^1.1.0", - "jest-changed-files": "^20.0.3", - "jest-config": "^20.0.4", - "jest-docblock": "^20.0.3", - "jest-environment-jsdom": "^20.0.3", - "jest-haste-map": "^20.0.4", - "jest-jasmine2": "^20.0.4", - "jest-message-util": "^20.0.3", - "jest-regex-util": "^20.0.3", - "jest-resolve-dependencies": "^20.0.3", - "jest-runtime": "^20.0.4", - "jest-snapshot": "^20.0.3", - "jest-util": "^20.0.3", + "istanbul-api": "^1.3.1", + "istanbul-lib-coverage": "^1.2.0", + "istanbul-lib-instrument": "^1.10.1", + "istanbul-lib-source-maps": "^1.2.4", + "jest-changed-files": "^23.4.2", + "jest-config": "^23.6.0", + "jest-environment-jsdom": "^23.4.0", + "jest-get-type": "^22.1.0", + "jest-haste-map": "^23.6.0", + "jest-message-util": "^23.4.0", + "jest-regex-util": "^23.3.0", + "jest-resolve-dependencies": "^23.6.0", + "jest-runner": "^23.6.0", + "jest-runtime": "^23.6.0", + "jest-snapshot": "^23.6.0", + "jest-util": "^23.4.0", + "jest-validate": "^23.6.0", + "jest-watcher": "^23.4.0", + "jest-worker": "^23.2.0", "micromatch": "^2.3.11", - "node-notifier": "^5.0.2", - "pify": "^2.3.0", + "node-notifier": "^5.2.1", + "prompts": "^0.1.9", + "realpath-native": "^1.0.0", + "rimraf": "^2.5.4", "slash": "^1.0.0", - "string-length": "^1.0.1", - "throat": "^3.0.0", + "string-length": "^2.0.0", + "strip-ansi": "^4.0.0", "which": "^1.2.12", - "worker-farm": "^1.3.1", - "yargs": "^7.0.2" + "yargs": "^11.0.0" } }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" + "ansi-regex": "^3.0.0" } } } }, "jest-changed-files": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-20.0.3.tgz", - "integrity": "sha1-k5TVzGXEOEBhSb7xv01Sto4D4/g=" + "version": "23.4.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-23.4.2.tgz", + "integrity": "sha512-EyNhTAUWEfwnK0Is/09LxoqNDOn7mU7S3EHskG52djOFS/z+IT0jT3h3Ql61+dklcG7bJJitIWEMB4Sp1piHmA==", + "requires": { + "throat": "^4.0.0" + } }, "jest-config": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-20.0.4.tgz", - "integrity": "sha1-43kwqyIXyRNgXv8T5712PsSPruo=", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-23.6.0.tgz", + "integrity": "sha512-i8V7z9BeDXab1+VNo78WM0AtWpBRXJLnkT+lyT+Slx/cbP5sZJ0+NDuLcmBE5hXAoK0aUp7vI+MOxR+R4d8SRQ==", "requires": { - "chalk": "^1.1.3", + "babel-core": "^6.0.0", + "babel-jest": "^23.6.0", + "chalk": "^2.0.1", "glob": "^7.1.1", - "jest-environment-jsdom": "^20.0.3", - "jest-environment-node": "^20.0.3", - "jest-jasmine2": "^20.0.4", - "jest-matcher-utils": "^20.0.3", - "jest-regex-util": "^20.0.3", - "jest-resolve": "^20.0.4", - "jest-validate": "^20.0.3", - "pretty-format": "^20.0.3" + "jest-environment-jsdom": "^23.4.0", + "jest-environment-node": "^23.4.0", + "jest-get-type": "^22.1.0", + "jest-jasmine2": "^23.6.0", + "jest-regex-util": "^23.3.0", + "jest-resolve": "^23.6.0", + "jest-util": "^23.4.0", + "jest-validate": "^23.6.0", + "micromatch": "^2.3.11", + "pretty-format": "^23.6.0" + }, + "dependencies": { + "babel-core": { + "version": "6.26.3", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz", + "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-generator": "^6.26.0", + "babel-helpers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "convert-source-map": "^1.5.1", + "debug": "^2.6.9", + "json5": "^0.5.1", + "lodash": "^4.17.4", + "minimatch": "^3.0.4", + "path-is-absolute": "^1.0.1", + "private": "^0.1.8", + "slash": "^1.0.0", + "source-map": "^0.5.7" + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "jest-diff": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-20.0.3.tgz", - "integrity": "sha1-gfKI/Z5nXw+yPHXxwrGURf5YZhc=", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-23.6.0.tgz", + "integrity": "sha512-Gz9l5Ov+X3aL5L37IT+8hoCUsof1CVYBb2QEkOupK64XyRR3h+uRpYIm97K7sY8diFxowR8pIGEdyfMKTixo3g==", "requires": { - "chalk": "^1.1.3", + "chalk": "^2.0.1", "diff": "^3.2.0", - "jest-matcher-utils": "^20.0.3", - "pretty-format": "^20.0.3" + "jest-get-type": "^22.1.0", + "pretty-format": "^23.6.0" } }, "jest-docblock": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-20.0.3.tgz", - "integrity": "sha1-F76phDQswz2DxQ++FUXqDvqkRxI=" - }, - "jest-environment-jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz", - "integrity": "sha1-BIqKwS7iJfcZBBdxODS7mZeH3pk=", + "version": "23.2.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-23.2.0.tgz", + "integrity": "sha1-8IXh8YVI2Z/dabICB+b9VdkTg6c=", "requires": { - "jest-mock": "^20.0.3", - "jest-util": "^20.0.3", - "jsdom": "^9.12.0" + "detect-newline": "^2.1.0" } }, - "jest-environment-node": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-20.0.3.tgz", - "integrity": "sha1-1Ii8RhKvLCRumG6K52caCZFj1AM=", + "jest-each": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-23.6.0.tgz", + "integrity": "sha512-x7V6M/WGJo6/kLoissORuvLIeAoyo2YqLOoCDkohgJ4XOXSqOtyvr8FbInlAWS77ojBsZrafbozWoKVRdtxFCg==", "requires": { - "jest-mock": "^20.0.3", - "jest-util": "^20.0.3" + "chalk": "^2.0.1", + "pretty-format": "^23.6.0" } }, - "jest-haste-map": { - "version": "20.0.5", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-20.0.5.tgz", - "integrity": "sha512-0IKAQjUvuZjMCNi/0VNQQF74/H9KB67hsHJqGiwTWQC6XO5Azs7kLWm+6Q/dwuhvDUvABDOBMFK2/FwZ3sZ07Q==", + "jest-environment-jsdom": { + "version": "23.4.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz", + "integrity": "sha1-BWp5UrP+pROsYqFAosNox52eYCM=", "requires": { - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.1.11", - "jest-docblock": "^20.0.3", - "micromatch": "^2.3.11", - "sane": "~1.6.0", - "worker-farm": "^1.3.1" + "jest-mock": "^23.2.0", + "jest-util": "^23.4.0", + "jsdom": "^11.5.1" }, "dependencies": { - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "requires": { - "arr-flatten": "^1.0.1" - } - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" - } - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "requires": { - "is-extglob": "^1.0.0" - } + "acorn": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", + "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==" + }, + "jsdom": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", + "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "requires": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + } + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", "requires": { - "is-buffer": "^1.1.5" + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" } }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "ws": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", + "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" + "async-limiter": "~1.0.0" } } } }, - "jest-jasmine2": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz", - "integrity": "sha1-/MWxQReA2RHQQpAu8YWehS5g1eE=", + "jest-environment-node": { + "version": "23.4.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-23.4.0.tgz", + "integrity": "sha1-V+gO0IQd6jAxZ8zozXlSHeuv3hA=", "requires": { - "chalk": "^1.1.3", + "jest-mock": "^23.2.0", + "jest-util": "^23.4.0" + } + }, + "jest-get-type": { + "version": "22.4.3", + "resolved": "http://registry.npmjs.org/jest-get-type/-/jest-get-type-22.4.3.tgz", + "integrity": "sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w==" + }, + "jest-haste-map": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-23.6.0.tgz", + "integrity": "sha512-uyNhMyl6dr6HaXGHp8VF7cK6KpC6G9z9LiMNsst+rJIZ8l7wY0tk8qwjPmEghczojZ2/ZhtEdIabZ0OQRJSGGg==", + "requires": { + "fb-watchman": "^2.0.0", "graceful-fs": "^4.1.11", - "jest-diff": "^20.0.3", - "jest-matcher-utils": "^20.0.3", - "jest-matchers": "^20.0.3", - "jest-message-util": "^20.0.3", - "jest-snapshot": "^20.0.3", - "once": "^1.4.0", - "p-map": "^1.1.1" + "invariant": "^2.2.4", + "jest-docblock": "^23.2.0", + "jest-serializer": "^23.0.1", + "jest-worker": "^23.2.0", + "micromatch": "^2.3.11", + "sane": "^2.0.0" } }, - "jest-matcher-utils": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz", - "integrity": "sha1-s6a443yld4A7CDKpixZPRLeBVhI=", + "jest-jasmine2": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-23.6.0.tgz", + "integrity": "sha512-pe2Ytgs1nyCs8IvsEJRiRTPC0eVYd8L/dXJGU08GFuBwZ4sYH/lmFDdOL3ZmvJR8QKqV9MFuwlsAi/EWkFUbsQ==", "requires": { - "chalk": "^1.1.3", - "pretty-format": "^20.0.3" + "babel-traverse": "^6.0.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^23.6.0", + "is-generator-fn": "^1.0.0", + "jest-diff": "^23.6.0", + "jest-each": "^23.6.0", + "jest-matcher-utils": "^23.6.0", + "jest-message-util": "^23.4.0", + "jest-snapshot": "^23.6.0", + "jest-util": "^23.4.0", + "pretty-format": "^23.6.0" } }, - "jest-matchers": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-matchers/-/jest-matchers-20.0.3.tgz", - "integrity": "sha1-ymnbHDLbWm9wf6XgQBq7VXAN/WA=", + "jest-leak-detector": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-23.6.0.tgz", + "integrity": "sha512-f/8zA04rsl1Nzj10HIyEsXvYlMpMPcy0QkQilVZDFOaPbv2ur71X5u2+C4ZQJGyV/xvVXtCCZ3wQ99IgQxftCg==", "requires": { - "jest-diff": "^20.0.3", - "jest-matcher-utils": "^20.0.3", - "jest-message-util": "^20.0.3", - "jest-regex-util": "^20.0.3" + "pretty-format": "^23.6.0" + } + }, + "jest-matcher-utils": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-23.6.0.tgz", + "integrity": "sha512-rosyCHQfBcol4NsckTn01cdelzWLU9Cq7aaigDf8VwwpIRvWE/9zLgX2bON+FkEW69/0UuYslUe22SOdEf2nog==", + "requires": { + "chalk": "^2.0.1", + "jest-get-type": "^22.1.0", + "pretty-format": "^23.6.0" } }, "jest-message-util": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-20.0.3.tgz", - "integrity": "sha1-auwoRDBvyw5udNV5bBAG2W/dgxw=", + "version": "23.4.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-23.4.0.tgz", + "integrity": "sha1-F2EMUJQjSVCNAaPR4L2iwHkIap8=", "requires": { - "chalk": "^1.1.3", + "@babel/code-frame": "^7.0.0-beta.35", + "chalk": "^2.0.1", "micromatch": "^2.3.11", - "slash": "^1.0.0" - }, - "dependencies": { - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "requires": { - "arr-flatten": "^1.0.1" - } - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" - } - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "requires": { - "is-extglob": "^1.0.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" - } - } + "slash": "^1.0.0", + "stack-utils": "^1.0.1" } }, "jest-mock": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-20.0.3.tgz", - "integrity": "sha1-i8Bw6QQUqhVcEajWTIaaDVxx2lk=" + "version": "23.2.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-23.2.0.tgz", + "integrity": "sha1-rRxg8p6HGdR8JuETgJi20YsmETQ=" + }, + "jest-pnp-resolver": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.0.1.tgz", + "integrity": "sha512-kzhvJQp+9k0a/hpvIIzOJgOwfOqmnohdrAMZW2EscH3kxR2VWD7EcPa10cio8EK9V7PcD75bhG1pFnO70zGwSQ==" }, "jest-regex-util": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-20.0.3.tgz", - "integrity": "sha1-hburXRM+RGJbGfr4xqpRItCF12I=" + "version": "23.3.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-23.3.0.tgz", + "integrity": "sha1-X4ZylUfCeFxAAs6qj4Sf6MpHG8U=" }, "jest-resolve": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-20.0.4.tgz", - "integrity": "sha1-lEiz6La6/BVHlETGSZBFt//ll6U=", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-23.6.0.tgz", + "integrity": "sha512-XyoRxNtO7YGpQDmtQCmZjum1MljDqUCob7XlZ6jy9gsMugHdN2hY4+Acz9Qvjz2mSsOnPSH7skBmDYCHXVZqkA==", "requires": { - "browser-resolve": "^1.11.2", - "is-builtin-module": "^1.0.0", - "resolve": "^1.3.2" + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "realpath-native": "^1.0.0" } }, "jest-resolve-dependencies": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz", - "integrity": "sha1-bhSntxevDyyzZnxUneQK8Bexcjo=", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-23.6.0.tgz", + "integrity": "sha512-EkQWkFWjGKwRtRyIwRwI6rtPAEyPWlUC2MpzHissYnzJeHcyCn1Hc8j7Nn1xUVrS5C6W5+ZL37XTem4D4pLZdA==", "requires": { - "jest-regex-util": "^20.0.3" + "jest-regex-util": "^23.3.0", + "jest-snapshot": "^23.6.0" } }, - "jest-runtime": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-20.0.4.tgz", - "integrity": "sha1-osgCIZxCA/dU3xQE5JAYYWnRJNg=", + "jest-runner": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-23.6.0.tgz", + "integrity": "sha512-kw0+uj710dzSJKU6ygri851CObtCD9cN8aNkg8jWJf4ewFyEa6kwmiH/r/M1Ec5IL/6VFa0wnAk6w+gzUtjJzA==", "requires": { - "babel-core": "^6.0.0", - "babel-jest": "^20.0.3", - "babel-plugin-istanbul": "^4.0.0", - "chalk": "^1.1.3", - "convert-source-map": "^1.4.0", + "exit": "^0.1.2", "graceful-fs": "^4.1.11", - "jest-config": "^20.0.4", - "jest-haste-map": "^20.0.4", - "jest-regex-util": "^20.0.3", - "jest-resolve": "^20.0.4", - "jest-util": "^20.0.3", - "json-stable-stringify": "^1.0.1", - "micromatch": "^2.3.11", - "strip-bom": "3.0.0", - "yargs": "^7.0.2" + "jest-config": "^23.6.0", + "jest-docblock": "^23.2.0", + "jest-haste-map": "^23.6.0", + "jest-jasmine2": "^23.6.0", + "jest-leak-detector": "^23.6.0", + "jest-message-util": "^23.4.0", + "jest-runtime": "^23.6.0", + "jest-util": "^23.4.0", + "jest-worker": "^23.2.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" }, "dependencies": { - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "requires": { - "arr-flatten": "^1.0.1" - } - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "source-map-support": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.9.tgz", + "integrity": "sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA==", "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "requires": { - "is-extglob": "^1.0.0" + } + } + }, + "jest-runtime": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-23.6.0.tgz", + "integrity": "sha512-ycnLTNPT2Gv+TRhnAYAQ0B3SryEXhhRj1kA6hBPSeZaNQkJ7GbZsxOLUkwg6YmvWGdX3BB3PYKFLDQCAE1zNOw==", + "requires": { + "babel-core": "^6.0.0", + "babel-plugin-istanbul": "^4.1.6", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "exit": "^0.1.2", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.11", + "jest-config": "^23.6.0", + "jest-haste-map": "^23.6.0", + "jest-message-util": "^23.4.0", + "jest-regex-util": "^23.3.0", + "jest-resolve": "^23.6.0", + "jest-snapshot": "^23.6.0", + "jest-util": "^23.4.0", + "jest-validate": "^23.6.0", + "micromatch": "^2.3.11", + "realpath-native": "^1.0.0", + "slash": "^1.0.0", + "strip-bom": "3.0.0", + "write-file-atomic": "^2.1.0", + "yargs": "^11.0.0" + }, + "dependencies": { + "babel-core": { + "version": "6.26.3", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz", + "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-generator": "^6.26.0", + "babel-helpers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "convert-source-map": "^1.5.1", + "debug": "^2.6.9", + "json5": "^0.5.1", + "lodash": "^4.17.4", + "minimatch": "^3.0.4", + "path-is-absolute": "^1.0.1", + "private": "^0.1.8", + "slash": "^1.0.0", + "source-map": "^0.5.7" } }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { - "is-buffer": "^1.1.5" + "ms": "2.0.0" } }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" - } + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" }, "strip-bom": { "version": "3.0.0", @@ -6484,48 +8204,93 @@ } } }, + "jest-serializer": { + "version": "23.0.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-23.0.1.tgz", + "integrity": "sha1-o3dq6zEekP6D+rnlM+hRAr0WQWU=" + }, "jest-snapshot": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-20.0.3.tgz", - "integrity": "sha1-W4R+GtsaTZCFKn+fElCG4YfHZWY=", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-23.6.0.tgz", + "integrity": "sha512-tM7/Bprftun6Cvj2Awh/ikS7zV3pVwjRYU2qNYS51VZHgaAMBs5l4o/69AiDHhQrj5+LA2Lq4VIvK7zYk/bswg==", "requires": { - "chalk": "^1.1.3", - "jest-diff": "^20.0.3", - "jest-matcher-utils": "^20.0.3", - "jest-util": "^20.0.3", + "babel-types": "^6.0.0", + "chalk": "^2.0.1", + "jest-diff": "^23.6.0", + "jest-matcher-utils": "^23.6.0", + "jest-message-util": "^23.4.0", + "jest-resolve": "^23.6.0", + "mkdirp": "^0.5.1", "natural-compare": "^1.4.0", - "pretty-format": "^20.0.3" + "pretty-format": "^23.6.0", + "semver": "^5.5.0" } }, "jest-util": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-20.0.3.tgz", - "integrity": "sha1-DAf32A2C9OWmfG+LnD/n9lz9Mq0=", + "version": "23.4.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-23.4.0.tgz", + "integrity": "sha1-TQY8uSe68KI4Mf9hvsLLv0l5NWE=", "requires": { - "chalk": "^1.1.3", + "callsites": "^2.0.0", + "chalk": "^2.0.1", "graceful-fs": "^4.1.11", - "jest-message-util": "^20.0.3", - "jest-mock": "^20.0.3", - "jest-validate": "^20.0.3", - "leven": "^2.1.0", - "mkdirp": "^0.5.1" + "is-ci": "^1.0.10", + "jest-message-util": "^23.4.0", + "mkdirp": "^0.5.1", + "slash": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, "jest-validate": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-20.0.3.tgz", - "integrity": "sha1-0M/R3k9XnymEhJJcKA+PHZTsPKs=", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-23.6.0.tgz", + "integrity": "sha512-OFKapYxe72yz7agrDAWi8v2WL8GIfVqcbKRCLbRG9PAxtzF9b1SEDdTpytNDN12z2fJynoBwpMpvj2R39plI2A==", "requires": { - "chalk": "^1.1.3", - "jest-matcher-utils": "^20.0.3", + "chalk": "^2.0.1", + "jest-get-type": "^22.1.0", "leven": "^2.1.0", - "pretty-format": "^20.0.3" + "pretty-format": "^23.6.0" + } + }, + "jest-watcher": { + "version": "23.4.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-23.4.0.tgz", + "integrity": "sha1-0uKM50+NrWxq/JIrksq+9u0FyRw=", + "requires": { + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "string-length": "^2.0.0" + } + }, + "jest-worker": { + "version": "23.2.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-23.2.0.tgz", + "integrity": "sha1-+vcGqNo2+uYOsmlXJX+ntdjqArk=", + "requires": { + "merge-stream": "^1.0.1" } }, - "js-base64": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.6.tgz", - "integrity": "sha512-O9SR2NVICx6rCqh1qsU91QZ5IoNa+2T1ROJ0OQlfvATKGmnjsAvg3r0E5ufPZ4a95jdKTPXhFWiE/sOZ7a5Rtg==" + "joi": { + "version": "11.4.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-11.4.0.tgz", + "integrity": "sha512-O7Uw+w/zEWgbL6OcHbyACKSj0PkQeUgmehdoXVSxt92QFCq4+1390Rwh5moI2K/OgC7D8RHRZqHZxT2husMJHA==", + "requires": { + "hoek": "4.x.x", + "isemail": "3.x.x", + "topo": "2.x.x" + } + }, + "js-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.4.tgz", + "integrity": "sha512-PxfGzSs0ztShKrUYPIn5r0MtyAhYcCwmndozzpz8YObbPnD1jFxzlBGbRnX2mIu6Z13xN6+PTu05TQFnZFlzow==" }, "js-tokens": { "version": "4.0.0", @@ -6533,62 +8298,61 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "js-yaml": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz", - "integrity": "sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", + "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", "requires": { "argparse": "^1.0.7", - "esprima": "^2.6.0" + "esprima": "^4.0.0" } }, "jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" }, "jsdom": { - "version": "9.12.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-9.12.0.tgz", - "integrity": "sha1-6MVG//ywbADUgzyoRBD+1/igl9Q=", + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-13.1.0.tgz", + "integrity": "sha512-C2Kp0qNuopw0smXFaHeayvharqF3kkcNqlcIlSX71+3XrsOFwkEPLt/9f5JksMmaul2JZYIQuY+WTpqHpQQcLg==", "requires": { - "abab": "^1.0.3", - "acorn": "^4.0.4", - "acorn-globals": "^3.1.0", + "abab": "^2.0.0", + "acorn": "^6.0.4", + "acorn-globals": "^4.3.0", "array-equal": "^1.0.0", - "content-type-parser": "^1.0.1", - "cssom": ">= 0.3.2 < 0.4.0", - "cssstyle": ">= 0.2.37 < 0.3.0", - "escodegen": "^1.6.1", - "html-encoding-sniffer": "^1.0.1", - "nwmatcher": ">= 1.3.9 < 2.0.0", - "parse5": "^1.5.1", - "request": "^2.79.0", - "sax": "^1.2.1", - "symbol-tree": "^3.2.1", - "tough-cookie": "^2.3.2", - "webidl-conversions": "^4.0.0", - "whatwg-encoding": "^1.0.1", - "whatwg-url": "^4.3.0", - "xml-name-validator": "^2.0.1" - }, - "dependencies": { - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" - } + "cssom": "^0.3.4", + "cssstyle": "^1.1.1", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.0", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.0.9", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.5", + "saxes": "^3.1.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.5.0", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^6.1.2", + "xml-name-validator": "^3.0.0" } }, "jsesc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", - "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" }, - "json-loader": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", - "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==" + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" }, "json-schema": { "version": "0.2.3", @@ -6596,9 +8360,9 @@ "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" }, "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, "json-stable-stringify": { "version": "1.0.1", @@ -6608,6 +8372,11 @@ "jsonify": "~0.0.0" } }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, "json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", @@ -6624,9 +8393,9 @@ "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=" }, "jsonfile": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", - "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" } @@ -6793,9 +8562,12 @@ } }, "jsx-ast-utils": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz", - "integrity": "sha1-OGchPo3Xm/Ho8jAMDPwe+xgsDfE=" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz", + "integrity": "sha1-6AGxs5mF4g//yHtA43SAgOLcrH8=", + "requires": { + "array-includes": "^3.0.3" + } }, "keycode": { "version": "2.2.0", @@ -6803,29 +8575,30 @@ "integrity": "sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ=" }, "killable": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.0.tgz", - "integrity": "sha1-2ouEvUfeU5WHj5XWTQLyRJ/gXms=" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" }, "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - }, - "klaw": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", - "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "graceful-fs": "^4.1.9" + "is-buffer": "^1.1.5" } }, - "latest-version": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", - "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", + "kleur": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-2.0.2.tgz", + "integrity": "sha512-77XF9iTllATmG9lSlIv0qdQ2BQ/h9t0bJllHlbvsQ0zUWfU7Yi0S8L5JXzPZgkefIiajLmBJJ4BsMJmqcf7oxQ==" + }, + "last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", "requires": { - "package-json": "^4.0.0" + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" } }, "lazy-cache": { @@ -6841,6 +8614,11 @@ "invert-kv": "^1.0.0" } }, + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==" + }, "leven": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", @@ -6865,6 +8643,16 @@ "pify": "^2.0.0", "pinkie-promise": "^2.0.0", "strip-bom": "^2.0.0" + }, + "dependencies": { + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "^1.2.0" + } + } } }, "loader-fs-cache": { @@ -6914,9 +8702,9 @@ } }, "loader-runner": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz", - "integrity": "sha1-9IKuqC1UPgeSFwDVpG7yb9rGuKI=" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.1.tgz", + "integrity": "sha512-By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw==" }, "loader-utils": { "version": "1.1.0", @@ -6938,9 +8726,9 @@ } }, "lodash": { - "version": "4.17.10", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" + "version": "4.17.11", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", + "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" }, "lodash._reinterpolate": { "version": "3.0.0", @@ -6952,26 +8740,36 @@ "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" }, - "lodash.cond": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/lodash.cond/-/lodash.cond-4.5.2.tgz", - "integrity": "sha1-9HGh2khr5g9quVXRcRVSPdHSVdU=" - }, "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" }, - "lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" + "lodash.flowright": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/lodash.flowright/-/lodash.flowright-3.5.0.tgz", + "integrity": "sha1-K1//OZcW1+fcVyT+k0n2cGUYTWc=" + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + }, + "lodash.tail": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.tail/-/lodash.tail-4.1.1.tgz", + "integrity": "sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=" + }, "lodash.template": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz", @@ -6999,11 +8797,6 @@ "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.1.tgz", "integrity": "sha1-4PyVEztu8nbNyIh82vJKpvFW+Po=" }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" - }, "loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -7012,29 +8805,15 @@ "js-tokens": "^3.0.0 || ^4.0.0" } }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", - "requires": { - "currently-unhandled": "^0.4.1", - "signal-exit": "^3.0.0" - } - }, "lower-case": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" - }, "lru-cache": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", - "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "requires": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" @@ -7063,16 +8842,24 @@ "tmpl": "1.0.x" } }, + "mamacro": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", + "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==" + }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "requires": { + "p-defer": "^1.0.0" + } + }, "map-cache": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" - }, "map-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", @@ -7081,25 +8868,26 @@ "object-visit": "^1.0.0" } }, - "math-expression-evaluator": { - "version": "1.2.17", - "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz", - "integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw=" - }, "math-random": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz", "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=" }, "md5.js": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz", - "integrity": "sha1-6b296UogpawYsENA/Fdk1bCdkB0=", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", "requires": { "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, + "mdn-data": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz", + "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==" + }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -7122,63 +8910,62 @@ "readable-stream": "^2.0.1" } }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "merge": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz", + "integrity": "sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==" + }, + "merge-deep": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.2.tgz", + "integrity": "sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA==", "requires": { - "camelcase-keys": "^2.0.0", - "decamelize": "^1.1.2", - "loud-rejection": "^1.0.0", - "map-obj": "^1.0.1", - "minimist": "^1.1.3", - "normalize-package-data": "^2.3.4", - "object-assign": "^4.0.1", - "read-pkg-up": "^1.0.1", - "redent": "^1.0.0", - "trim-newlines": "^1.0.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } + "arr-union": "^3.1.0", + "clone-deep": "^0.2.4", + "kind-of": "^3.0.2" } }, - "merge": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz", - "integrity": "sha1-dTHjnUlJwoGma4xabgJl6LBYlNo=" - }, "merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" }, + "merge-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", + "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", + "requires": { + "readable-stream": "^2.0.1" + } + }, + "merge2": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.2.3.tgz", + "integrity": "sha512-gdUU1Fwj5ep4kplwcmftruWofEFt6lfpkkr3h860CXbAB9c3hGb55EOL2ali0Td5oebvW0E1+3Sr+Ur7XfKpRA==" + }, "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" }, "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "requires": { + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" } }, "miller-rabin": { @@ -7191,21 +8978,21 @@ } }, "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.0.tgz", + "integrity": "sha512-ikBcWwyqXQSHKtciCcctu9YfPbFYZ4+gbHEmE0Q8jzcTYQg5dHCr3g2wwAZjPoJfQVXZq6KXAjpXOTf5/cjT7w==" }, "mime-db": { - "version": "1.33.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", - "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + "version": "1.37.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz", + "integrity": "sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg==" }, "mime-types": { - "version": "2.1.18", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", - "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "version": "2.1.21", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz", + "integrity": "sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==", "requires": { - "mime-db": "~1.33.0" + "mime-db": "~1.37.0" } }, "mimic-fn": { @@ -7213,6 +9000,16 @@ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" }, + "mini-css-extract-plugin": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.3.tgz", + "integrity": "sha512-Mxs0nxzF1kxPv4TRi2NimewgXlJqh0rGE30vviCU2WHrpbta6wklnUV9dr9FUtoAHmB3p3LeXEC+ZjgHvB0Dzg==", + "requires": { + "loader-utils": "^1.1.0", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + } + }, "minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", @@ -7236,6 +9033,23 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, "mixin-deep": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", @@ -7255,6 +9069,22 @@ } } }, + "mixin-object": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", + "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=", + "requires": { + "for-in": "^0.1.3", + "is-extendable": "^0.1.1" + }, + "dependencies": { + "for-in": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", + "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=" + } + } + }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", @@ -7264,14 +9094,27 @@ } }, "moment": { - "version": "2.22.2", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz", - "integrity": "sha1-PCV/mDn8DpP/UxSWMiOeuQeD/2Y=" + "version": "2.23.0", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.23.0.tgz", + "integrity": "sha512-3IE39bHVqFbWWaPOMHZF98Q9c3LDKGTmypMiTM2QygGXXElkFWIH7GxfmlwmY2vwa+wmNsoYZmG2iusf1ZjJoA==" + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } }, "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" }, "multicast-dns": { "version": "6.2.3", @@ -7293,9 +9136,9 @@ "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=" }, "nan": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", - "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz", + "integrity": "sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==", "optional": true }, "nanomatch": { @@ -7314,6 +9157,23 @@ "regex-not": "^1.0.0", "snapdragon": "^0.8.1", "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + } } }, "natural-compare": { @@ -7327,14 +9187,14 @@ "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" }, "neo-async": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.5.1.tgz", - "integrity": "sha512-3KL3fvuRkZ7s4IFOMfztb7zJp3QaVWnBeGoJlgB38XnCRPj/0tLzzLG5IB8NYOHbJ8g8UGrgZv44GLDk6CxTxA==" + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz", + "integrity": "sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==" }, - "next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" }, "no-case": { "version": "2.3.2", @@ -7401,16 +9261,24 @@ } }, "node-notifier": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz", - "integrity": "sha512-MIBs+AAd6dJ2SklbbE8RUDRlIVhU8MaNLh1A9SUZDUHPiZkWLFde6UNwG41yQHZEToHgJMXqyVZ9UcS/ReOVTg==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.3.0.tgz", + "integrity": "sha512-AhENzCSGZnZJgBARsUjnQ7DnZbzyP+HxlVXuD0xqAnvL8q+OqtSX7lGg9e8nHzwXkMMXNdVeqq4E2M3EUAqX6Q==", "requires": { "growly": "^1.3.0", - "semver": "^5.4.1", + "semver": "^5.5.0", "shellwords": "^0.1.1", "which": "^1.3.0" } }, + "node-releases": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.2.tgz", + "integrity": "sha512-j1gEV/zX821yxdWp/1vBMN0pSUjuH9oGUdLCb4PfUko6ZW7KdRs3Z+QGGwDUhYtSpQvdVVyLd2V0YvLsmdg5jQ==", + "requires": { + "semver": "^5.3.0" + } + }, "normalize-package-data": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", @@ -7441,15 +9309,9 @@ "integrity": "sha512-F9YMRls0zCF6BFIE2YnXDRpHPpfd91nOIaNdDgrx5YMoPLo8Wqj+6jNXHQsYBavJeXP4ww8HCt0xQAKc5qk2Fg==" }, "normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", - "requires": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" - } + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" }, "npm-run-path": { "version": "2.0.2", @@ -7460,9 +9322,9 @@ } }, "nth-check": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz", - "integrity": "sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", "requires": { "boolbase": "~1.0.0" } @@ -7477,15 +9339,15 @@ "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" }, - "nwmatcher": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.4.tgz", - "integrity": "sha512-3iuY4N5dhgMpCUrOVnuAdGrgxVqV2cJpM+XNccjR2DKOB1RUP0aA+wGXEiNziG/UKboFyGBIoKOaNlJxx8bciQ==" + "nwsapi": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.0.9.tgz", + "integrity": "sha512-nlWFSCTYQcHk/6A9FFnfhKc14c3aFhfdNBXgo8Qgi9QTBu/qg3Ww+Uiz9wMzXd1T8GFxPc2QIHB6Qtf2XFryFQ==" }, "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" }, "object-assign": { "version": "4.1.1", @@ -7509,21 +9371,13 @@ "requires": { "is-descriptor": "^0.1.0" } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } } } }, "object-hash": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.3.0.tgz", - "integrity": "sha512-05KzQ70lSeGSrZJQXE5wNDiTkBJDlUT/myi6RX9dVIvz7a7Qh4oH93BQdiPMn27nldYvVQCKMUaM83AfizZlsQ==" + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz", + "integrity": "sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==" }, "object-keys": { "version": "1.0.12", @@ -7538,6 +9392,26 @@ "isobject": "^3.0.0" } }, + "object.assign": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", + "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", + "requires": { + "define-properties": "^1.1.2", + "function-bind": "^1.1.1", + "has-symbols": "^1.0.0", + "object-keys": "^1.0.11" + } + }, + "object.getownpropertydescriptors": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", + "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.5.1" + } + }, "object.omit": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", @@ -7555,6 +9429,17 @@ "isobject": "^3.0.1" } }, + "object.values": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz", + "integrity": "sha1-5STaCbT2b/Bd9FdUbscqyZ8TBpo=", + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.6.1", + "function-bind": "^1.1.0", + "has": "^1.0.1" + } + }, "obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", @@ -7590,13 +9475,21 @@ } }, "opn": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.2.0.tgz", - "integrity": "sha512-Jd/GpzPyHF4P2/aNOVmS3lfMSWV9J7cOhCG1s08XCEAsPkB7lp6ddiU0J7XzyQRDUh8BqJ7PchfINjR8jyofRQ==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.4.0.tgz", + "integrity": "sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw==", "requires": { "is-wsl": "^1.1.0" } }, + "optimism": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.6.8.tgz", + "integrity": "sha512-bN5n1KCxSqwBDnmgDnzMtQTHdL+uea2HYFx1smvtE+w2AMl0Uy31g0aXnP/Nt85OINnMJPRpJyfRQLTCqn5Weg==", + "requires": { + "immutable-tuple": "^0.4.9" + } + }, "optimist": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", @@ -7613,6 +9506,15 @@ } } }, + "optimize-css-assets-webpack-plugin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.1.tgz", + "integrity": "sha512-Rqm6sSjWtx9FchdP0uzTQDc7GXDKnwVEGoSxjezPkzMewx7gEWE9IMUYKmigTRC4U3RaNSwYVnUDLuIdtTpm0A==", + "requires": { + "cssnano": "^4.1.0", + "last-call-webpack-plugin": "^3.0.0" + } + }, "optionator": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", @@ -7627,11 +9529,11 @@ } }, "original": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.1.tgz", - "integrity": "sha512-IEvtB5vM5ULvwnqMxWBLxkS13JIEXbakizMSo3yoPNPCIWzg8TG3Usn/UhXoZFM/m+FuEA20KdzPSFq/0rS+UA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", "requires": { - "url-parse": "~1.4.0" + "url-parse": "^1.4.3" } }, "os-browserify": { @@ -7645,11 +9547,13 @@ "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" }, "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", + "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", "requires": { - "lcid": "^1.0.0" + "execa": "^0.7.0", + "lcid": "^1.0.0", + "mem": "^1.1.0" } }, "os-tmpdir": { @@ -7657,11 +9561,21 @@ "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" }, + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" + }, "p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" }, + "p-is-promise": { + "version": "1.1.0", + "resolved": "http://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=" + }, "p-limit": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", @@ -7688,22 +9602,21 @@ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" }, - "package-json": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", - "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", + "pako": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.7.tgz", + "integrity": "sha512-3HNK5tW4x8o5mO8RuHZp3Ydw9icZXx0RANAOMzlMzx7LVXhMJ4mo3MOBpzyd7r/+RUu8BmndP47LXT+vzjtWcQ==" + }, + "parallel-transform": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", + "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", "requires": { - "got": "^6.7.1", - "registry-auth-token": "^3.0.1", - "registry-url": "^3.0.3", - "semver": "^5.1.0" + "cyclist": "~0.2.2", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" } }, - "pako": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz", - "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==" - }, "param-case": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", @@ -7736,11 +9649,12 @@ } }, "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", "requires": { - "error-ex": "^1.2.0" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" } }, "parse-passwd": { @@ -7749,9 +9663,9 @@ "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" }, "parse5": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz", - "integrity": "sha1-m387DeMr543CQBsXVzzK8Pb1nZQ=" + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", + "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==" }, "parseurl": { "version": "1.3.2", @@ -7794,9 +9708,9 @@ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" }, "path-parse": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", - "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=" + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" }, "path-to-regexp": { "version": "1.7.0", @@ -7824,9 +9738,9 @@ } }, "pbkdf2": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz", - "integrity": "sha512-y4CXP3thSxqf7c0qmOF+9UeOTrifiVTIM+u7NWlq+PRsHbr7r7dpCmvzrZxa96JJUNi0Y5w9VqG5ZNeCVMoDcA==", + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", + "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", "requires": { "create-hash": "^1.1.2", "create-hmac": "^1.1.4", @@ -7866,20 +9780,38 @@ "find-up": "^2.1.0" } }, + "pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", + "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=", + "requires": { + "find-up": "^2.1.0" + } + }, "pluralize": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==" }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==" + }, + "pnp-webpack-plugin": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.1.0.tgz", + "integrity": "sha512-CPCdcFxx7fEcDMWTDjXe2Wypt4JuMt4q5Q2UrpTcyBBkLiCIyPEh/mCGmUWIcNkKGyXwQ9Y2wVhlKm6ketiBNQ==" + }, "popper.js": { - "version": "1.14.4", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.14.4.tgz", - "integrity": "sha1-juwdj/AqWjoVLdQ0FKFce3n9abY=" + "version": "1.14.6", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.14.6.tgz", + "integrity": "sha512-AGwHGQBKumlk/MDfrSOf0JHhJCImdDMcGNoqKmKkU+68GFazv3CQ6q9r7Ja1sKDZmYWTckY/uLyEznheTDycnA==" }, "portfinder": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz", - "integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=", + "version": "1.0.20", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.20.tgz", + "integrity": "sha512-Yxe4mTyDzTd59PZJY4ojZR8F+E5e97iq2ZOHPz3HDgSvYC5siNad2tLooQ5y5QHyQhc3xVqvyk/eNA3wuoa7Sw==", "requires": { "async": "^1.5.2", "debug": "^2.2.0", @@ -7890,6 +9822,19 @@ "version": "1.5.2", "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -7908,729 +9853,954 @@ "supports-color": "^5.4.0" }, "dependencies": { - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-attribute-case-insensitive": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.0.tgz", + "integrity": "sha512-K/zqdg0/UgUgC8qR0lDuxYzmowPpnvrrNC5YuoqzhHMubR9AuhsPlpVu3jjkLHgDAzR+ohD/m7//iGnN9WxbzQ==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "postcss-calc": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz", - "integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.1.tgz", + "integrity": "sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ==", "requires": { - "postcss": "^5.0.2", - "postcss-message-helpers": "^2.0.0", - "reduce-css-calc": "^1.2.6" + "css-unit-converter": "^1.1.1", + "postcss": "^7.0.5", + "postcss-selector-parser": "^5.0.0-rc.4", + "postcss-value-parser": "^3.3.1" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-colormin": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz", - "integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=", + "postcss-color-hex-alpha": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.2.tgz", + "integrity": "sha512-8bIOzQMGdZVifoBQUJdw+yIY00omBd2EwkJXepQo9cjp1UOHHHoeRDeSzTP6vakEpaRc6GAIOfvcQR7jBYaG5Q==", "requires": { - "colormin": "^1.0.5", - "postcss": "^5.0.13", - "postcss-value-parser": "^3.2.3" + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-colormin": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.2.tgz", + "integrity": "sha512-1QJc2coIehnVFsz0otges8kQLsryi4lo19WD+U5xCWvXd0uw/Z+KKYnbiNDCnO9GP+PvErPHCG0jNvWTngk9Rw==", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "postcss-convert-values": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz", - "integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", "requires": { - "postcss": "^5.0.11", - "postcss-value-parser": "^3.1.2" + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-custom-media": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.7.tgz", + "integrity": "sha512-bWPCdZKdH60wKOTG4HKEgxWnZVjAIVNOJDvi3lkuTa90xo/K0YHa2ZnlKLC5e2qF8qCcMQXt0yzQITBp8d0OFA==", + "requires": { + "postcss": "^7.0.5" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-discard-comments": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz", - "integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=", + "postcss-custom-properties": { + "version": "8.0.9", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.9.tgz", + "integrity": "sha512-/Lbn5GP2JkKhgUO2elMs4NnbUJcvHX4AaF5nuJDaNkd2chYW1KA5qtOGGgdkBEWcXtKSQfHXzT7C6grEVyb13w==", "requires": { - "postcss": "^5.0.14" + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-discard-duplicates": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz", - "integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=", + "postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", "requires": { - "postcss": "^5.0.4" + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-discard-comments": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.1.tgz", + "integrity": "sha512-Ay+rZu1Sz6g8IdzRjUgG2NafSNpp2MSMOQUb+9kkzzzP+kh07fP0yNbhtFejURnyVXSX3FYy2nVNW1QTnNjgBQ==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-discard-empty": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz", - "integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=", + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", "requires": { - "postcss": "^5.0.14" + "postcss": "^7.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "postcss-discard-overridden": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz", - "integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", "requires": { - "postcss": "^5.0.16" + "postcss": "^7.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-discard-unused": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz", - "integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=", + "postcss-flexbugs-fixes": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz", + "integrity": "sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA==", "requires": { - "postcss": "^5.0.14", - "uniqs": "^2.0.0" + "postcss": "^7.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-filter-plugins": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz", - "integrity": "sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==", + "postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", "requires": { - "postcss": "^5.0.4" + "postcss": "^7.0.2" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-font-variant": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.0.tgz", + "integrity": "sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg==", + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-flexbugs-fixes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz", - "integrity": "sha512-0AuD9HG1Ey3/3nqPWu9yqf7rL0KCPu5VgjDsjf5mzEcuo9H/z8nco/fljKgjsOUrZypa95MI0kS4xBZeBzz2lw==", + "postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", "requires": { - "postcss": "^6.0.1" + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, - "postcss-load-config": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.2.0.tgz", - "integrity": "sha1-U56a/J3chiASHr+djDZz4M5Q0oo=", + "postcss-initial": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.0.tgz", + "integrity": "sha512-WzrqZ5nG9R9fUtrA+we92R4jhVvEB32IIRTzfIG/PLL8UV4CvbF1ugTEHEFX6vWxl41Xt5RTCJPEZkuWzrOM+Q==", "requires": { - "cosmiconfig": "^2.1.0", - "object-assign": "^4.1.0", - "postcss-load-options": "^1.2.0", - "postcss-load-plugins": "^2.3.0" + "lodash.template": "^4.2.4", + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, - "postcss-load-options": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-load-options/-/postcss-load-options-1.2.0.tgz", - "integrity": "sha1-sJixVZ3awt8EvAuzdfmaXP4rbYw=", + "postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", "requires": { - "cosmiconfig": "^2.1.0", - "object-assign": "^4.1.0" + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, - "postcss-load-plugins": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz", - "integrity": "sha1-dFdoEWWZrKLwCfrUJrABdQSdjZI=", + "postcss-load-config": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.0.0.tgz", + "integrity": "sha512-V5JBLzw406BB8UIfsAWSK2KSwIJ5yoEIVFb4gVkXci0QdKgA24jLmHZ/ghe/GgX0lJ0/D1uUK1ejhzEY94MChQ==", "requires": { - "cosmiconfig": "^2.1.1", - "object-assign": "^4.1.0" + "cosmiconfig": "^4.0.0", + "import-cwd": "^2.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-4.0.0.tgz", + "integrity": "sha512-6e5vDdrXZD+t5v0L8CrurPeybg4Fmf+FCSYxXKYVAqLUtyCSbuyqE059d0kDthTNRzKVjL7QMgNpEUlsoYH3iQ==", + "requires": { + "is-directory": "^0.3.1", + "js-yaml": "^3.9.0", + "parse-json": "^4.0.0", + "require-from-string": "^2.0.1" + } + } } }, "postcss-loader": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-2.0.8.tgz", - "integrity": "sha512-KtXBiQ/r/WYW8LxTSJK7h8wLqvCMSub/BqmRnud/Mu8RzwflW9cmXxwsMwbn15TNv287Hcufdb3ZSs7xHKnG8Q==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", "requires": { "loader-utils": "^1.1.0", - "postcss": "^6.0.0", - "postcss-load-config": "^1.2.0", - "schema-utils": "^0.3.0" + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, - "postcss-merge-idents": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz", - "integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=", + "postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", "requires": { - "has": "^1.0.1", - "postcss": "^5.0.10", - "postcss-value-parser": "^3.1.1" + "postcss": "^7.0.2" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "postcss-merge-longhand": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz", - "integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=", + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.10.tgz", + "integrity": "sha512-hME10s6CSjm9nlVIcO1ukR7Jr5RisTaaC1y83jWCivpuBtPohA3pZE7cGTIVSYjXvLnXozHTiVOkG4dnnl756g==", "requires": { - "postcss": "^5.0.4" + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "postcss-merge-rules": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz", - "integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=", - "requires": { - "browserslist": "^1.5.2", - "caniuse-api": "^1.5.2", - "postcss": "^5.0.4", - "postcss-selector-parser": "^2.2.2", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.2.tgz", + "integrity": "sha512-UiuXwCCJtQy9tAIxsnurfF0mrNHKc4NnNx6NxqmzNNjXpQwLSukUxELHTRF0Rg1pAmcoKLih8PwvZbiordchag==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", "vendors": "^1.0.0" }, "dependencies": { - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "postcss-selector-parser": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz", + "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "dot-prop": "^4.1.1", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-message-helpers": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz", - "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=" - }, "postcss-minify-font-values": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz", - "integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", "requires": { - "object-assign": "^4.0.1", - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.2" + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "postcss-minify-gradients": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz", - "integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.1.tgz", + "integrity": "sha512-pySEW3E6Ly5mHm18rekbWiAjVi/Wj8KKt2vwSfVFAWdW6wOIekgqxKxLU7vJfb107o3FDNPkaYFCxGAJBFyogA==", "requires": { - "postcss": "^5.0.12", - "postcss-value-parser": "^3.3.0" + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "postcss-minify-params": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz", - "integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=", - "requires": { - "alphanum-sort": "^1.0.1", - "postcss": "^5.0.2", - "postcss-value-parser": "^3.0.2", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.1.tgz", + "integrity": "sha512-h4W0FEMEzBLxpxIVelRtMheskOKKp52ND6rJv+nBS33G1twu2tCyurYj/YtgU76+UDCvWeNs0hs8HFAWE2OUFg==", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", "uniqs": "^2.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "postcss-minify-selectors": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz", - "integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.1.tgz", + "integrity": "sha512-8+plQkomve3G+CodLCgbhAKrb5lekAnLYuL1d7Nz+/7RANpBEVdgBkPNwljfSKvZ9xkkZTZITd04KP+zeJTJqg==", "requires": { - "alphanum-sort": "^1.0.2", - "has": "^1.0.1", - "postcss": "^5.0.14", - "postcss-selector-parser": "^2.0.0" + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "postcss-selector-parser": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz", + "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=", "requires": { - "has-flag": "^1.0.0" + "dot-prop": "^4.1.1", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "postcss-modules-extract-imports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz", - "integrity": "sha1-thTJcgvmgW6u41+zpfqh26agXds=", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz", + "integrity": "sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==", "requires": { "postcss": "^6.0.1" } @@ -8662,396 +10832,709 @@ "postcss": "^6.0.1" } }, - "postcss-normalize-charset": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz", - "integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=", + "postcss-nesting": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.0.tgz", + "integrity": "sha512-WSsbVd5Ampi3Y0nk/SKr5+K34n52PqMqEfswu6RtU4r7wA8vSD+gM8/D9qq4aJkHImwn1+9iEFTbjoWsQeqtaQ==", "requires": { - "postcss": "^5.0.5" + "postcss": "^7.0.2" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-normalize-url": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz", - "integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=", + "postcss-normalize-display-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.1.tgz", + "integrity": "sha512-R5mC4vaDdvsrku96yXP7zak+O3Mm9Y8IslUobk7IMP+u/g+lXvcN4jngmHY5zeJnrQvE13dfAg5ViU05ZFDwdg==", "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^1.4.0", - "postcss": "^5.0.14", - "postcss-value-parser": "^3.2.3" + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.1.tgz", + "integrity": "sha512-GNoOaLRBM0gvH+ZRb2vKCIujzz4aclli64MBwDuYGU2EY53LwiP7MxOZGE46UGtotrSnmarPPZ69l2S/uxdaWA==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-ordered-values": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz", - "integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=", + "postcss-normalize-repeat-style": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.1.tgz", + "integrity": "sha512-fFHPGIjBUyUiswY2rd9rsFcC0t3oRta4wxE1h3lpwfQZwFeFjXFSiDtdJ7APCmHQOnUZnqYBADNRPKPwFAONgA==", "requires": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.1" + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-string": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.1.tgz", + "integrity": "sha512-IJoexFTkAvAq5UZVxWXAGE0yLoNN/012v7TQh5nDo6imZJl2Fwgbhy3J2qnIoaDBrtUP0H7JrXlX1jjn2YcvCQ==", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-reduce-idents": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz", - "integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=", + "postcss-normalize-timing-functions": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.1.tgz", + "integrity": "sha512-1nOtk7ze36+63ONWD8RCaRDYsnzorrj+Q6fxkQV+mlY5+471Qx9kspqv0O/qQNMeApg8KNrRf496zHwJ3tBZ7w==", "requires": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.2" + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-reduce-initial": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz", - "integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=", + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", "requires": { - "postcss": "^5.0.4" + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.1.tgz", + "integrity": "sha512-U8MBODMB2L+nStzOk6VvWWjZgi5kQNShCyjRhMT3s+W9Jw93yIjOnrEkKYD3Ul7ChWbEcjDWmXq0qOL9MIAnAw==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-ordered-values": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.1.tgz", + "integrity": "sha512-PeJiLgJWPzkVF8JuKSBcylaU+hDJ/TX3zqAMIjlghgn1JBi6QwQaDZoDIlqWRcCAI8SxKrt3FCPSRmOgKRB97Q==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-reduce-transforms": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz", - "integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=", + "postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", "requires": { - "has": "^1.0.1", - "postcss": "^5.0.8", - "postcss-value-parser": "^3.0.1" + "postcss": "^7.0.2" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-preset-env": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.0.6.tgz", + "integrity": "sha512-W1Wtqngl7BMe4s9o76odTaVs4HXVLhOHD+L5Ez+7x15yiA+98W/WVO6IPlC1q9BIkgAckRtUFmEDr0sNufXZIQ==", + "requires": { + "autoprefixer": "^9.1.5", + "browserslist": "^4.1.1", + "caniuse-lite": "^1.0.30000887", + "cssdb": "^3.2.1", + "postcss": "^7.0.2", + "postcss-attribute-case-insensitive": "^4.0.0", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-hex-alpha": "^5.0.2", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.4", + "postcss-custom-properties": "^8.0.5", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-selector-parser": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz", - "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", + "postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", "requires": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, - "postcss-svgo": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz", - "integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=", + "postcss-reduce-initial": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.2.tgz", + "integrity": "sha512-epUiC39NonKUKG+P3eAOKKZtm5OtAtQJL7Ye0CBN1f+UQTHzqotudp+hki7zxXm7tT0ZAKDMBj1uihpPjP25ug==", "requires": { - "is-svg": "^2.0.0", - "postcss": "^5.0.14", - "postcss-value-parser": "^3.2.3", - "svgo": "^0.7.0" + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-reduce-transforms": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.1.tgz", + "integrity": "sha512-sZVr3QlGs0pjh6JAIe6DzWvBaqYw05V1t3d9Tp+VnFRT5j+rsqoWsysh/iSD7YNsULjq9IAylCznIwVd5oU/zA==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-unique-selectors": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz", - "integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=", + "postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", "requires": { - "alphanum-sort": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" + "postcss": "^7.0.2" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-safe-parser": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-4.0.1.tgz", + "integrity": "sha512-xZsFA3uX8MO3yAda03QrG3/Eg1LN3EPfjjf07vke/46HERLZyHrTsQ9E1r1w1W//fWEhtYNndo2hQplN2cVpCQ==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-selector-not": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz", + "integrity": "sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ==", + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "postcss-value-parser": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", - "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=" + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + } + } }, - "postcss-zindex": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz", - "integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=", + "postcss-svgo": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.1.tgz", + "integrity": "sha512-YD5uIk5NDRySy0hcI+ZJHwqemv2WiqqzDgtvgMzO8EGSkK5aONyX8HMVFRFJSdO8wUWTuisUFn/d7yRRbBr5Qw==", "requires": { - "has": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" + "is-svg": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" }, "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", "requires": { - "has-flag": "^1.0.0" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "postcss-values-parser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.0.tgz", + "integrity": "sha512-cyRdkgbRRefu91ByAlJow4y9w/hnBmmWgLpWmlFQ2bpIy2eKrqowt3VeYcaHQ08otVXmC9V2JtYW1Z/RpvYR8A==", + "requires": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, "prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" - }, "preserve": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", @@ -9060,8 +11543,7 @@ "prettier": { "version": "1.14.2", "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.14.2.tgz", - "integrity": "sha512-McHPg0n1pIke+A/4VcaS2en+pTNjy4xF+Uuq86u/5dyDO59/TtFZtQ708QIRkEZ3qwKz3GVkVa6mpxK/CpB8Rg==", - "dev": true + "integrity": "sha512-McHPg0n1pIke+A/4VcaS2en+pTNjy4xF+Uuq86u/5dyDO59/TtFZtQ708QIRkEZ3qwKz3GVkVa6mpxK/CpB8Rg==" }, "pretty-bytes": { "version": "4.0.2", @@ -9078,12 +11560,19 @@ } }, "pretty-format": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-20.0.3.tgz", - "integrity": "sha1-Ag41ClYKH+GpjcO+tsz/s4beixQ=", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-23.6.0.tgz", + "integrity": "sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==", "requires": { - "ansi-regex": "^2.1.1", - "ansi-styles": "^3.0.0" + "ansi-regex": "^3.0.0", + "ansi-styles": "^3.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + } } }, "private": { @@ -9102,9 +11591,9 @@ "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" }, "progress": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz", - "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=" + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" }, "promise": { "version": "7.3.1", @@ -9114,6 +11603,20 @@ "asap": "~2.0.3" } }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + }, + "prompts": { + "version": "0.1.14", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-0.1.14.tgz", + "integrity": "sha512-rxkyiE9YH6zAz/rZpywySLKkpaj0NMVyNw1qhsubdbjjSgcayjTShDreZGlFMcGSu5sab3bAKPfFk78PB90+8w==", + "requires": { + "kleur": "^2.0.1", + "sisteransi": "^0.1.1" + } + }, "prop-types": { "version": "15.6.2", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz", @@ -9124,12 +11627,12 @@ } }, "proxy-addr": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.3.tgz", - "integrity": "sha512-jQTChiCJteusULxjBp8+jftSQE5Obdl3k4cnmLA6WXtK6XFuWRnvVL7aCiBqaLPM8c4ph0S4tKna8XvmIwEnXQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz", + "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==", "requires": { "forwarded": "~0.1.2", - "ipaddr.js": "1.6.0" + "ipaddr.js": "1.8.0" } }, "prr": { @@ -9143,20 +11646,51 @@ "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" }, "psl": { - "version": "1.1.28", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.28.tgz", - "integrity": "sha512-+AqO1Ae+N/4r7Rvchrdm432afjT9hqJRyBN3DQv9At0tPz4hIFSGKbq64fN9dVoCow4oggIIax5/iONx0r9hZw==" + "version": "1.1.31", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz", + "integrity": "sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw==" }, "public-encrypt": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz", - "integrity": "sha512-4kJ5Esocg8X3h8YgJsKAuoesBgB7mqH3eowiDzMUPKiRDDE7E/BqqZD1hnTByIaAFiwAw246YEltSq7tdrOH0Q==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", "requires": { "bn.js": "^4.1.0", "browserify-rsa": "^4.0.0", "create-hash": "^1.1.0", "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1" + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } } }, "punycode": { @@ -9174,15 +11708,6 @@ "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" }, - "query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", - "requires": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - } - }, "querystring": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", @@ -9194,9 +11719,9 @@ "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" }, "querystringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.0.0.tgz", - "integrity": "sha512-eTPo5t/4bgaMNZxyjWx6N2a6AuE0mq51KWvpc7nU/MAqixcI6v6KrGUKES0HaomdnolQBBXU/++X6/QQ9KL4tw==" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.1.0.tgz", + "integrity": "sha512-sluvZZ1YiTLD5jsqZcDmFyV2EwToyXZBfpoVOmktMmW+VEnhgakFHnasVph65fOjGPTWN0Nw3+XQaSeMayr0kg==" }, "raf": { "version": "3.4.0", @@ -9207,9 +11732,9 @@ } }, "randomatic": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.0.0.tgz", - "integrity": "sha512-VdxFOIEY3mNO5PtSRkkle/hPJDHvQhK21oa73K4yAc9qmp6N429gAyF1gZMOTMeS0/AYzaV/2Trcef+NaIonSA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", + "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", "requires": { "is-number": "^4.0.0", "kind-of": "^6.0.0", @@ -9220,6 +11745,11 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -9246,136 +11776,257 @@ "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" }, "raw-body": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", - "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", + "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", "requires": { "bytes": "3.0.0", - "http-errors": "1.6.2", - "iconv-lite": "0.4.19", + "http-errors": "1.6.3", + "iconv-lite": "0.4.23", "unpipe": "1.0.0" + } + }, + "react": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.7.0.tgz", + "integrity": "sha512-StCz3QY8lxTb5cl2HJxjwLFOXPIFQp+p+hxQfc8WE0QiLfCtIlKj8/+5tjjKm8uSTlAW+fCPaavGFS06V9Ar3A==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.12.0" + } + }, + "react-apollo": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/react-apollo/-/react-apollo-2.3.3.tgz", + "integrity": "sha512-y4CwwmJjp0De/An7vrvEWOJ27lxmS/SXT8z22I8aOEBC2wzdcavDPjKzeLYJKs+hv1MGS3h84PSwFtlU4Em/bA==", + "requires": { + "fbjs": "^1.0.0", + "hoist-non-react-statics": "^3.0.0", + "invariant": "^2.2.2", + "lodash.flowright": "^3.5.0", + "lodash.isequal": "^4.5.0", + "prop-types": "^15.6.0" }, "dependencies": { - "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" + "core-js": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.1.tgz", + "integrity": "sha512-L72mmmEayPJBejKIWe2pYtGis5r0tQ5NaJekdhyXgeMQTpJoBsH0NL4ElY2LfSoV15xeQWKQ+XTTOZdyero5Xg==" }, - "http-errors": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", - "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", + "fbjs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-1.0.0.tgz", + "integrity": "sha512-MUgcMEJaFhCaF1QtWGnmq9ZDRAzECTCRAF7O6UZIlAlkTs1SasiX9aP0Iw7wfD2mJ7wDTNfg2w7u5fSCwJk1OA==", "requires": { - "depd": "1.1.1", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": ">= 1.3.1 < 2" + "core-js": "^2.4.1", + "fbjs-css-vars": "^1.0.0", + "isomorphic-fetch": "^2.1.1", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" } }, - "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" - }, - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" + "hoist-non-react-statics": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.2.1.tgz", + "integrity": "sha512-TFsu3TV3YLY+zFTZDrN8L2DTFanObwmBLpWvJs1qfUuEQ5bTAdFcwfx2T/bsCXfM9QHSLvjfP+nihEl0yvozxw==", + "requires": { + "react-is": "^16.3.2" + } } } }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "react-app-polyfill": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-0.1.3.tgz", + "integrity": "sha512-Fl5Pic4F15G05qX7RmUqPZr1MtyFKJKSlRwMhel4kvDLrk/KcQ9QbpvyMTzv/0NN5957XFQ7r1BNHWi7qN59Pw==", "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "core-js": "2.5.7", + "object-assign": "4.1.1", + "promise": "8.0.2", + "raf": "3.4.0", + "whatwg-fetch": "3.0.0" }, "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==" + }, + "promise": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.0.2.tgz", + "integrity": "sha512-EIyzM39FpVOMbqgzEHhxdrEhtOSDOtjMZQ0M6iVfCE+kWNgCkAyOdnuCWqfmflylftfadU6FkiMgHZA2kUzwRw==", + "requires": { + "asap": "~2.0.6" + } } } }, - "react": { - "version": "16.4.1", - "resolved": "https://registry.npmjs.org/react/-/react-16.4.1.tgz", - "integrity": "sha512-3GEs0giKp6E0Oh/Y9ZC60CmYgUPnp7voH9fbjWsvXtYFb4EWtgQub0ADSq0sJR0BbHc4FThLLtzlcFaFXIorwg==", - "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.0" - } - }, - "react-apollo": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/react-apollo/-/react-apollo-2.1.9.tgz", - "integrity": "sha512-o6otpfh/neSzNjaq2x1GL9+aFz13pxQ0si4h2XpE7ON1lXD24YwpdFF277s8h1KFSVRvZmpzLmrg9OyOU9mo+w==", - "requires": { - "fbjs": "^0.8.16", - "hoist-non-react-statics": "^2.5.0", - "invariant": "^2.2.2", - "lodash": "^4.17.10", - "prop-types": "^15.6.0" - } - }, "react-dev-utils": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-5.0.1.tgz", - "integrity": "sha512-+y92rG6pmXt3cpcg/NGmG4w/W309tWNSmyyPL8hCMxuCSg2UP/hUg3npACj2UZc8UKVSXexyLrCnxowizGoAsw==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-6.1.1.tgz", + "integrity": "sha512-ThbJ86coVd6wV/QiTo8klDTvdAJ1WsFCGQN07+UkN+QN9CtCSsl/+YuDJToKGeG8X4j9HMGXNKbk2QhPAZr43w==", "requires": { + "@babel/code-frame": "7.0.0", "address": "1.0.3", - "babel-code-frame": "6.26.0", - "chalk": "1.1.3", - "cross-spawn": "5.1.0", + "browserslist": "4.1.1", + "chalk": "2.4.1", + "cross-spawn": "6.0.5", "detect-port-alt": "1.1.6", "escape-string-regexp": "1.0.5", - "filesize": "3.5.11", + "filesize": "3.6.1", + "find-up": "3.0.0", "global-modules": "1.0.0", - "gzip-size": "3.0.0", - "inquirer": "3.3.0", - "is-root": "1.0.0", - "opn": "5.2.0", - "react-error-overlay": "^4.0.0", - "recursive-readdir": "2.2.1", + "globby": "8.0.1", + "gzip-size": "5.0.0", + "immer": "1.7.2", + "inquirer": "6.2.0", + "is-root": "2.0.0", + "loader-utils": "1.1.0", + "opn": "5.4.0", + "pkg-up": "2.0.0", + "react-error-overlay": "^5.1.0", + "recursive-readdir": "2.2.2", "shell-quote": "1.6.1", - "sockjs-client": "1.1.4", - "strip-ansi": "3.0.1", + "sockjs-client": "1.1.5", + "strip-ansi": "4.0.0", "text-table": "0.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + }, + "browserslist": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.1.1.tgz", + "integrity": "sha512-VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q==", + "requires": { + "caniuse-lite": "^1.0.30000884", + "electron-to-chromium": "^1.3.62", + "node-releases": "^1.0.0-alpha.11" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "inquirer": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.2.0.tgz", + "integrity": "sha512-QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg==", + "requires": { + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.0", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.0", + "figures": "^2.0.0", + "lodash": "^4.17.10", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rxjs": "^6.1.0", + "string-width": "^2.1.0", + "strip-ansi": "^4.0.0", + "through": "^2.3.6" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz", + "integrity": "sha512-fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", + "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==" + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "requires": { + "ansi-regex": "^3.0.0" + } + } } }, "react-dom": { - "version": "16.4.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.4.1.tgz", - "integrity": "sha512-1Gin+wghF/7gl4Cqcvr1DxFX2Osz7ugxSwl6gBqCMpdrxHjIFUS7GYxrFftZ9Ln44FHw0JxCFD9YtZsrbR5/4A==", + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.7.0.tgz", + "integrity": "sha512-D0Ufv1ExCAmF38P2Uh1lwpminZFRXEINJe53zRAbm4KPwSyd6DY/uDoS0Blj9jvPpn1+wivKpZYc8aAAN/nAkg==", "requires": { - "fbjs": "^0.8.16", "loose-envify": "^1.1.0", "object-assign": "^4.1.1", - "prop-types": "^15.6.0" + "prop-types": "^15.6.2", + "scheduler": "^0.12.0" } }, "react-error-overlay": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-4.0.0.tgz", - "integrity": "sha512-FlsPxavEyMuR6TjVbSSywovXSEyOg6ZDj5+Z8nbsRl9EkOzAhEIcS+GLoQDC5fz/t9suhUXWmUrOBrgeUvrMxw==" + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-5.1.0.tgz", + "integrity": "sha512-akMy/BQT5m1J3iJIHkSb4qycq2wzllWsmmolaaFVnb+LPV9cIJ/nTud40ZsiiT0H3P+/wXIdbjx2fzF61OaeOQ==" }, "react-event-listener": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/react-event-listener/-/react-event-listener-0.6.2.tgz", - "integrity": "sha512-/7s5VF+eR/LRDnGcYyiBJcNXjjCFoCo8UlX+Bn6417WMneV2f82zG1/HfCoEH6PBHqEPk3CPkMmuTDz80pzRXw==", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/react-event-listener/-/react-event-listener-0.6.4.tgz", + "integrity": "sha512-t7VSjIuUFmN+GeyKb+wm025YLeojVB85kJL6sSs0wEBJddfmKBEQz+CNBZ2zBLKVWkPy/fZXM6U5yvojjYBVYQ==", "requires": { - "@babel/runtime": "7.0.0-beta.42", + "@babel/runtime": "7.0.0", "prop-types": "^15.6.0", "warning": "^4.0.1" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0.tgz", + "integrity": "sha512-7hGhzlcmg01CvH1EHdSPVXYX1aJ8KCEyz6I9xYIi/asDtzBPMyMhVibhM/K6g/5qnKBwjZtp10bNZIEFTRW1MA==", + "requires": { + "regenerator-runtime": "^0.12.0" + } + }, + "regenerator-runtime": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz", + "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" + } } }, + "react-is": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.7.0.tgz", + "integrity": "sha512-Z0VRQdF4NPDoI0tsXVMLkJLiwEBa+RP66g0xDHxgxysxSoCUccSten4RTF/UFvZF1dZvZ9Zu1sx+MDXwcOR34g==" + }, "react-jss": { "version": "8.6.1", "resolved": "https://registry.npmjs.org/react-jss/-/react-jss-8.6.1.tgz", @@ -9421,73 +12072,67 @@ } }, "react-scripts": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-1.1.4.tgz", - "integrity": "sha512-UVZIujEIT9BGbx+NGvyfS92eOrNIIpqqFi1FP7a0O9l94A/XV7bhPk70SfDKaXZouCX81tFdXo0948DjhCEgGw==", - "requires": { - "autoprefixer": "7.1.6", - "babel-core": "6.26.0", - "babel-eslint": "7.2.3", - "babel-jest": "20.0.3", - "babel-loader": "7.1.2", - "babel-preset-react-app": "^3.1.1", - "babel-runtime": "6.26.0", - "case-sensitive-paths-webpack-plugin": "2.1.1", - "chalk": "1.1.3", - "css-loader": "0.28.7", - "dotenv": "4.0.0", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-2.1.1.tgz", + "integrity": "sha512-f6KCUy7opItgeana1Ghwj+lYQp5BTHSaivG/dbfiIqSm5QdOIUV5eiFSBsbaAE6GEKqGYmZDK6Yw5WmbrhxaFg==", + "requires": { + "@babel/core": "7.1.0", + "@svgr/webpack": "2.4.1", + "babel-core": "7.0.0-bridge.0", + "babel-eslint": "9.0.0", + "babel-jest": "23.6.0", + "babel-loader": "8.0.4", + "babel-plugin-named-asset-import": "^0.2.3", + "babel-preset-react-app": "^6.1.0", + "bfj": "6.1.1", + "case-sensitive-paths-webpack-plugin": "2.1.2", + "chalk": "2.4.1", + "css-loader": "1.0.0", + "dotenv": "6.0.0", "dotenv-expand": "4.2.0", - "eslint": "4.10.0", - "eslint-config-react-app": "^2.1.0", - "eslint-loader": "1.9.0", - "eslint-plugin-flowtype": "2.39.1", - "eslint-plugin-import": "2.8.0", - "eslint-plugin-jsx-a11y": "5.1.1", - "eslint-plugin-react": "7.4.0", - "extract-text-webpack-plugin": "3.0.2", - "file-loader": "1.1.5", - "fs-extra": "3.0.1", - "fsevents": "^1.1.3", - "html-webpack-plugin": "2.29.0", - "jest": "20.0.4", - "object-assign": "4.1.1", - "postcss-flexbugs-fixes": "3.2.0", - "postcss-loader": "2.0.8", - "promise": "8.0.1", - "raf": "3.4.0", - "react-dev-utils": "^5.0.1", - "resolve": "1.6.0", - "style-loader": "0.19.0", - "sw-precache-webpack-plugin": "0.11.4", - "url-loader": "0.6.2", - "webpack": "3.8.1", - "webpack-dev-server": "2.9.4", - "webpack-manifest-plugin": "1.3.2", - "whatwg-fetch": "2.0.3" - }, - "dependencies": { - "promise": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.0.1.tgz", - "integrity": "sha1-5F1osAoXZHttpxG/he1u1HII9FA=", - "requires": { - "asap": "~2.0.3" - } - }, - "whatwg-fetch": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", - "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" - } + "eslint": "5.6.0", + "eslint-config-react-app": "^3.0.5", + "eslint-loader": "2.1.1", + "eslint-plugin-flowtype": "2.50.1", + "eslint-plugin-import": "2.14.0", + "eslint-plugin-jsx-a11y": "6.1.2", + "eslint-plugin-react": "7.11.1", + "file-loader": "2.0.0", + "fork-ts-checker-webpack-plugin-alt": "0.4.14", + "fs-extra": "7.0.0", + "fsevents": "1.2.4", + "html-webpack-plugin": "4.0.0-alpha.2", + "identity-obj-proxy": "3.0.0", + "jest": "23.6.0", + "jest-pnp-resolver": "1.0.1", + "jest-resolve": "23.6.0", + "mini-css-extract-plugin": "0.4.3", + "optimize-css-assets-webpack-plugin": "5.0.1", + "pnp-webpack-plugin": "1.1.0", + "postcss-flexbugs-fixes": "4.1.0", + "postcss-loader": "3.0.0", + "postcss-preset-env": "6.0.6", + "postcss-safe-parser": "4.0.1", + "react-app-polyfill": "^0.1.3", + "react-dev-utils": "^6.1.1", + "resolve": "1.8.1", + "sass-loader": "7.1.0", + "style-loader": "0.23.0", + "terser-webpack-plugin": "1.1.0", + "url-loader": "1.1.1", + "webpack": "4.19.1", + "webpack-dev-server": "3.1.9", + "webpack-manifest-plugin": "2.0.4", + "workbox-webpack-plugin": "3.6.3" } }, "react-transition-group": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.4.0.tgz", - "integrity": "sha512-Xv5d55NkJUxUzLCImGSanK8Cl/30sgpOEMGc5m86t8+kZwrPxPCPcFqyx83kkr+5Lz5gs6djuvE5By+gce+VjA==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.5.2.tgz", + "integrity": "sha512-vwHP++S+f6KL7rg8V1mfs62+MBKtbMeZDR8KiNmD7v98Gs3UPGsDZDahPJH2PVprFW5YHJfh6cbNim3zPndaSQ==", "requires": { "dom-helpers": "^3.3.1", - "loose-envify": "^1.3.1", + "loose-envify": "^1.4.0", "prop-types": "^15.6.2", "react-lifecycles-compat": "^3.0.4" } @@ -9545,14 +12190,279 @@ } }, "readdirp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", - "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", "requires": { - "graceful-fs": "^4.1.2", - "minimatch": "^3.0.2", - "readable-stream": "^2.0.2", - "set-immediate-shim": "^1.0.1" + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "http://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "http://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "realpath-native": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.0.2.tgz", + "integrity": "sha512-+S3zTvVt9yTntFrBpm7TQmQ3tzpCrnA1a/y+3cUHAc9ZR6aIjG0WNLR+Rj79QpJktY+VeW/TQtFlQ1bzsehI8g==", + "requires": { + "util.promisify": "^1.0.0" } }, "recompose": { @@ -9584,62 +12494,11 @@ } }, "recursive-readdir": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.1.tgz", - "integrity": "sha1-kO8jHQd4xc4JPJpI105cVCLROpk=", - "requires": { - "minimatch": "3.0.3" - }, - "dependencies": { - "minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha1-Kk5AkLlrLbBqnX3wEFWmKnfJt3Q=", - "requires": { - "brace-expansion": "^1.0.0" - } - } - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "requires": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" - } - }, - "reduce-css-calc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", - "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", "requires": { - "balanced-match": "^0.4.2", - "math-expression-evaluator": "^1.2.14", - "reduce-function-call": "^1.0.1" - }, - "dependencies": { - "balanced-match": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" - } - } - }, - "reduce-function-call": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz", - "integrity": "sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk=", - "requires": { - "balanced-match": "^0.4.2" - }, - "dependencies": { - "balanced-match": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" - } + "minimatch": "3.0.4" } }, "regenerate": { @@ -9647,18 +12506,24 @@ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==" }, + "regenerate-unicode-properties": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz", + "integrity": "sha512-s5NGghCE4itSlUS+0WUj88G6cfMVMmH8boTPNvABf8od+2dhT9WDlWu8n01raQAJZMOK8Ch6jSexaRO7swd6aw==", + "requires": { + "regenerate": "^1.4.0" + } + }, "regenerator-runtime": { "version": "0.11.1", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" }, "regenerator-transform": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz", - "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==", + "version": "0.13.3", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.13.3.tgz", + "integrity": "sha512-5ipTrZFSq5vU2YoGoww4uaRVAK4wyYC4TSICibbfEPOruUu8FFP7ErV0BjmbIOEpn3O/k9na9UEdYR/3m7N6uA==", "requires": { - "babel-runtime": "^6.18.0", - "babel-types": "^6.19.0", "private": "^0.1.6" } }, @@ -9679,42 +12544,33 @@ "safe-regex": "^1.1.0" } }, - "regexpu-core": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", - "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", - "requires": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" - } - }, - "registry-auth-token": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz", - "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==", - "requires": { - "rc": "^1.1.6", - "safe-buffer": "^5.0.1" - } + "regexpp": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", + "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==" }, - "registry-url": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", - "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", + "regexpu-core": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.4.0.tgz", + "integrity": "sha512-eDDWElbwwI3K0Lo6CqbQbA6FwgtCz4kYTarrri1okfkRLZAqstU+B3voZBCjg8Fl6iq0gXrJG6MvRgLthfvgOA==", "requires": { - "rc": "^1.0.1" + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^7.0.0", + "regjsgen": "^0.5.0", + "regjsparser": "^0.6.0", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.0.2" } }, "regjsgen": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", - "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=" + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", + "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==" }, "regjsparser": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", - "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", + "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", "requires": { "jsesc": "~0.5.0" }, @@ -9737,28 +12593,43 @@ "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" }, "renderkid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.1.tgz", - "integrity": "sha1-iYyr/Ivt5Le5ETWj/9Mj5YwNsxk=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.2.tgz", + "integrity": "sha512-FsygIxevi1jSiPY9h7vZmBFUbAOcbYm9UwyiLNdVsLRs/5We9Ob5NMPbGYUTWiLq5L+ezlVdE0A8bbME5CWTpg==", "requires": { "css-select": "^1.1.0", - "dom-converter": "~0.1", + "dom-converter": "~0.2", "htmlparser2": "~3.3.0", "strip-ansi": "^3.0.0", - "utila": "~0.3" + "utila": "^0.4.0" }, "dependencies": { - "utila": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.3.3.tgz", - "integrity": "sha1-1+jn1+MJEHCSsF+NloiCTWM6QiY=" + "css-select": { + "version": "1.2.0", + "resolved": "http://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "requires": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } } } }, "repeat-element": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", - "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=" + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" }, "repeat-string": { "version": "1.6.1", @@ -9774,30 +12645,30 @@ } }, "request": { - "version": "2.87.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.87.0.tgz", - "integrity": "sha512-fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==", + "version": "2.88.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", + "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", "requires": { "aws-sign2": "~0.7.0", - "aws4": "^1.6.0", + "aws4": "^1.8.0", "caseless": "~0.12.0", - "combined-stream": "~1.0.5", - "extend": "~3.0.1", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", "forever-agent": "~0.6.1", - "form-data": "~2.3.1", - "har-validator": "~5.0.3", + "form-data": "~2.3.2", + "har-validator": "~5.1.0", "http-signature": "~1.2.0", "is-typedarray": "~1.0.0", "isstream": "~0.1.2", "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.17", - "oauth-sign": "~0.8.2", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", "performance-now": "^2.1.0", - "qs": "~6.5.1", - "safe-buffer": "^5.1.1", - "tough-cookie": "~2.3.3", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.4.3", "tunnel-agent": "^0.6.0", - "uuid": "^3.1.0" + "uuid": "^3.3.2" }, "dependencies": { "punycode": { @@ -9806,24 +12677,43 @@ "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" }, "tough-cookie": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", - "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", "requires": { + "psl": "^1.1.24", "punycode": "^1.4.1" } } } }, + "request-promise-core": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz", + "integrity": "sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY=", + "requires": { + "lodash": "^4.13.1" + } + }, + "request-promise-native": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz", + "integrity": "sha1-UoF3D2jgyXGeUWP9P6tIIhX0/aU=", + "requires": { + "request-promise-core": "1.1.1", + "stealthy-require": "^1.1.0", + "tough-cookie": ">=2.3.3" + } + }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" }, "require-from-string": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", - "integrity": "sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" }, "require-main-filename": { "version": "1.0.1", @@ -9837,6 +12727,26 @@ "requires": { "caller-path": "^0.1.0", "resolve-from": "^1.0.0" + }, + "dependencies": { + "caller-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "requires": { + "callsites": "^0.2.0" + } + }, + "callsites": { + "version": "0.2.0", + "resolved": "http://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=" + }, + "resolve-from": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", + "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=" + } } }, "requires-port": { @@ -9845,9 +12755,9 @@ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" }, "resolve": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.6.0.tgz", - "integrity": "sha512-mw7JQNu5ExIkcw4LPih0owX/TZXjD/ZUF/ZQ/pDnkw3ZKhDcZZw5klmBlj6gVMwjQ3Pz5Jgu7F3d0jcDVuEWdw==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", + "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==", "requires": { "path-parse": "^1.0.5" } @@ -9858,13 +12768,6 @@ "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", "requires": { "resolve-from": "^3.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" - } } }, "resolve-dir": { @@ -9877,9 +12780,9 @@ } }, "resolve-from": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", - "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" }, "resolve-pathname": { "version": "2.2.0", @@ -9905,13 +12808,15 @@ "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "requires": { - "align-text": "^0.1.1" - } + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "http://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" }, "rimraf": { "version": "2.6.2", @@ -9930,6 +12835,11 @@ "inherits": "^2.0.1" } }, + "rsvp": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz", + "integrity": "sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==" + }, "run-async": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", @@ -9938,17 +12848,20 @@ "is-promise": "^2.1.0" } }, - "rx-lite": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", - "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=" + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "requires": { + "aproba": "^1.1.1" + } }, - "rx-lite-aggregates": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", - "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", + "rxjs": { + "version": "6.3.3", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.3.3.tgz", + "integrity": "sha512-JTWmoY9tWCs7zvIk/CvRjhjGaOd+OVBM987mxFo+OW66cGpdKjZcpmc74ES1sB//7Kl/PAe8+wEakuhG4pcgOw==", "requires": { - "rx-lite": "*" + "tslib": "^1.9.0" } }, "safe-buffer": { @@ -9970,39 +12883,342 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sane": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/sane/-/sane-1.6.0.tgz", - "integrity": "sha1-lhDEUjB6E10pwf3+JUcDQYDEZ3U=", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/sane/-/sane-2.5.2.tgz", + "integrity": "sha1-tNwYYcIbQn6SlQej51HiosuKs/o=", "requires": { - "anymatch": "^1.3.0", + "anymatch": "^2.0.0", + "capture-exit": "^1.2.0", "exec-sh": "^0.2.0", - "fb-watchman": "^1.8.0", - "minimatch": "^3.0.2", + "fb-watchman": "^2.0.0", + "fsevents": "^1.2.3", + "micromatch": "^3.1.4", "minimist": "^1.1.1", "walker": "~1.0.5", - "watch": "~0.10.0" + "watch": "~0.18.0" }, "dependencies": { - "bser": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "http://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "http://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bser/-/bser-1.0.2.tgz", - "integrity": "sha1-OBEWlwsqbe6lZG3RXdcnhES1YWk=", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { - "node-int64": "^0.4.0" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, - "fb-watchman": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-1.9.2.tgz", - "integrity": "sha1-okz0eCf4LTj7Waaa1wt247auc4M=", + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "requires": { - "bser": "1.0.2" + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" } }, "minimist": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "sass-loader": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-7.1.0.tgz", + "integrity": "sha512-+G+BKGglmZM2GUSfT9TLuEp6tzehHPjAMoRRItOojWIqIGPloVCMhNIQuG639eJ+y033PaGTSjLaTHts8Kw79w==", + "requires": { + "clone-deep": "^2.0.1", + "loader-utils": "^1.0.1", + "lodash.tail": "^4.1.1", + "neo-async": "^2.5.0", + "pify": "^3.0.0", + "semver": "^5.5.0" + }, + "dependencies": { + "clone-deep": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-2.0.2.tgz", + "integrity": "sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==", + "requires": { + "for-own": "^1.0.0", + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.0", + "shallow-clone": "^1.0.0" + } + }, + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "requires": { + "for-in": "^1.0.1" + } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + }, + "shallow-clone": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-1.0.0.tgz", + "integrity": "sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==", + "requires": { + "is-extendable": "^0.1.1", + "kind-of": "^5.0.0", + "mixin-object": "^2.0.1" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } } } }, @@ -10011,12 +13227,31 @@ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" }, + "saxes": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.4.tgz", + "integrity": "sha512-GVZmLJnkS4Vl8Pe9o4nc5ALZ615VOVxCmea8Cs0l+8GZw3RQ5XGOSUomIUfuZuk4Todo44v4y+HY1EATkDDiZg==", + "requires": { + "xmlchars": "^1.3.1" + } + }, + "scheduler": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.12.0.tgz", + "integrity": "sha512-t7MBR28Akcp4Jm+QoR63XgAi9YgCUmgvDHqf5otgAj4QvdoBE4ImCX0ffehefePPG+aitiYHp0g/mW6s4Tp+dw==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, "schema-utils": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", - "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", "requires": { - "ajv": "^5.0.0" + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" } }, "select-hose": { @@ -10025,25 +13260,17 @@ "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" }, "selfsigned": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.3.tgz", - "integrity": "sha512-vmZenZ+8Al3NLHkWnhBQ0x6BkML1eCP2xEi3JE+f3D9wW9fipD9NNJHYtE9XJM4TsPaHGZJIamrSI6MTg1dU2Q==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.4.tgz", + "integrity": "sha512-9AukTiDmHXGXWtWjembZ5NDmVvP2695EtpgbCsxCa68w3c88B+alqbmZ4O3hZ4VWGXeGWzEVdvqgAJD8DQPCDw==", "requires": { "node-forge": "0.7.5" } }, "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" - }, - "semver-diff": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", - "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", - "requires": { - "semver": "^5.0.3" - } + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", + "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==" }, "send": { "version": "0.16.2", @@ -10065,13 +13292,31 @@ "statuses": "~1.4.0" }, "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, "mime": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, + "serialize-javascript": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz", + "integrity": "sha512-Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ==" + }, "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", @@ -10084,6 +13329,21 @@ "http-errors": "~1.6.2", "mime-types": "~2.1.17", "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "serve-static": { @@ -10097,21 +13357,11 @@ "send": "0.16.2" } }, - "serviceworker-cache-polyfill": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serviceworker-cache-polyfill/-/serviceworker-cache-polyfill-4.0.0.tgz", - "integrity": "sha1-3hnuc77yGrPAdAo3sz22JGS6ves=" - }, "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" }, - "set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=" - }, "set-value": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", @@ -10152,6 +13402,32 @@ "safe-buffer": "^5.0.1" } }, + "shallow-clone": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz", + "integrity": "sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=", + "requires": { + "is-extendable": "^0.1.1", + "kind-of": "^2.0.1", + "lazy-cache": "^0.2.3", + "mixin-object": "^2.0.1" + }, + "dependencies": { + "kind-of": { + "version": "2.0.1", + "resolved": "http://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", + "integrity": "sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=", + "requires": { + "is-buffer": "^1.0.2" + } + }, + "lazy-cache": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", + "integrity": "sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=" + } + } + }, "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", @@ -10186,6 +13462,26 @@ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + } + }, + "sisteransi": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-0.1.1.tgz", + "integrity": "sha512-PmGOd02bM9YO5ifxpw36nrNMBTptEtfRl4qUYl9SndkolplkrZZOW7PGHjrZL53QvMVj9nQ+TKqUnRsw4tJa4g==" + }, "slash": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", @@ -10214,6 +13510,14 @@ "use": "^3.1.0" }, "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", @@ -10230,10 +13534,10 @@ "is-extendable": "^0.1.0" } }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -10280,6 +13584,11 @@ "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -10289,25 +13598,15 @@ "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "requires": { "kind-of": "^3.2.0" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } } }, "sockjs": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.18.tgz", - "integrity": "sha1-2bKJMWyn33dZXvKZ4HXw+TfrQgc=", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.19.tgz", + "integrity": "sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==", "requires": { "faye-websocket": "^0.10.0", - "uuid": "^2.0.2" + "uuid": "^3.0.1" }, "dependencies": { "faye-websocket": { @@ -10317,18 +13616,13 @@ "requires": { "websocket-driver": ">=0.5.1" } - }, - "uuid": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=" } } }, "sockjs-client": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.1.4.tgz", - "integrity": "sha1-W6vjhrd15M8U51IJEUUmVAFsixI=", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.1.5.tgz", + "integrity": "sha1-G7fA9yIsQPQq3xT0RCy9Eml3GoM=", "requires": { "debug": "^2.6.6", "eventsource": "0.1.6", @@ -10336,25 +13630,32 @@ "inherits": "^2.0.1", "json3": "^3.3.2", "url-parse": "^1.1.8" - } - }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", - "requires": { - "is-plain-obj": "^1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "source-list-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz", - "integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" }, "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" }, "source-map-resolve": { "version": "0.5.2", @@ -10374,13 +13675,6 @@ "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", "requires": { "source-map": "^0.5.6" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } } }, "source-map-url": { @@ -10389,18 +13683,18 @@ "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" }, "spdx-correct": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz", - "integrity": "sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", + "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", "requires": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, "spdx-exceptions": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz", - "integrity": "sha512-4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg==" + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", + "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==" }, "spdx-expression-parse": { "version": "3.0.0", @@ -10412,9 +13706,9 @@ } }, "spdx-license-ids": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz", - "integrity": "sha512-2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA==" + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz", + "integrity": "sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g==" }, "spdy": { "version": "3.4.7", @@ -10427,12 +13721,27 @@ "safe-buffer": "^5.0.1", "select-hose": "^2.0.0", "spdy-transport": "^2.0.18" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "spdy-transport": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-2.1.0.tgz", - "integrity": "sha512-bpUeGpZcmZ692rrTiqf9/2EUakI6/kXX1Rpe0ib/DyOzbiexVfXkw6GnvI9hVGvIwVaUhkaBojjCZwLNRGQg1g==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-2.1.1.tgz", + "integrity": "sha512-q7D8c148escoB3Z7ySCASadkegMmUZW8Wb/Q1u0/XBgDKMO880rLQDj8Twiew/tYi7ghemKUi/whSYOwE17f5Q==", "requires": { "debug": "^2.6.8", "detect-node": "^2.0.3", @@ -10441,6 +13750,21 @@ "readable-stream": "^2.2.9", "safe-buffer": "^5.0.1", "wbuf": "^1.7.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, "split-string": { @@ -10457,9 +13781,9 @@ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" }, "sshpk": { - "version": "1.14.2", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz", - "integrity": "sha1-xvxhZIo9nE52T9P8306hBeSSupg=", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.0.tgz", + "integrity": "sha512-Zhev35/y7hRMcID/upReIvRse+I9SVhyVre/KTJSJQWMz3C3+G+HpO7m1wK/yckEtujKZ7dS4hkVxAnmHaIGVQ==", "requires": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", @@ -10472,6 +13796,24 @@ "tweetnacl": "~0.14.0" } }, + "ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "stack-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz", + "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==" + }, "static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", @@ -10496,6 +13838,11 @@ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + }, "stream-browserify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", @@ -10505,6 +13852,15 @@ "readable-stream": "^2.0.2" } }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, "stream-http": { "version": "2.8.3", "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", @@ -10517,17 +13873,33 @@ "xtend": "^4.0.0" } }, - "strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + "stream-shift": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", + "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" }, "string-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz", - "integrity": "sha1-VpcPscOFWOnnC3KL894mmsRa36w=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", "requires": { - "strip-ansi": "^3.0.0" + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "requires": { + "ansi-regex": "^3.0.0" + } + } } }, "string-width": { @@ -10562,6 +13934,16 @@ "safe-buffer": "~5.1.0" } }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + } + }, "strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", @@ -10578,89 +13960,109 @@ "is-utf8": "^0.2.0" } }, + "strip-comments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", + "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", + "requires": { + "babel-extract-comments": "^1.0.0", + "babel-plugin-transform-object-rest-spread": "^6.26.0" + } + }, "strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "requires": { - "get-stdin": "^4.0.1" - } - }, "strip-json-comments": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" }, "style-loader": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.19.0.tgz", - "integrity": "sha512-9mx9sC9nX1dgP96MZOODpGC6l1RzQBITI2D5WJhu+wnbrSYVKLGuy14XJSLVQih/0GFrPpjelt+s//VcZQ2Evw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.23.0.tgz", + "integrity": "sha512-uCcN7XWHkqwGVt7skpInW6IGO1tG6ReyFQ1Cseh0VcN6VdcFQi62aG/2F3Y9ueA8x4IVlfaSUxpmQXQD9QrEuQ==", "requires": { - "loader-utils": "^1.0.2", - "schema-utils": "^0.3.0" + "loader-utils": "^1.1.0", + "schema-utils": "^0.4.5" + }, + "dependencies": { + "schema-utils": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", + "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", + "requires": { + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "stylehacks": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.1.tgz", + "integrity": "sha512-TK5zEPeD9NyC1uPIdjikzsgWxdQQN/ry1X3d1iOz1UkYDCmcr928gWD1KHgyC27F50UnE0xCTrBOO1l6KR8M4w==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz", + "integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.5.0" + } + }, + "postcss-selector-parser": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz", + "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=", + "requires": { + "dot-prop": "^4.1.1", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, "supports-color": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", - "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "requires": { "has-flag": "^3.0.0" } }, "svgo": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz", - "integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.1.1.tgz", + "integrity": "sha512-GBkJbnTuFpM4jFbiERHDWhZc/S/kpHToqmZag3aEBjPYK44JAN2QBjvrGIxLOoCyMZjuFQIfTO2eJd8uwLY/9g==", "requires": { - "coa": "~1.0.1", + "coa": "~2.0.1", "colors": "~1.1.2", - "csso": "~2.3.1", - "js-yaml": "~3.7.0", + "css-select": "^2.0.0", + "css-select-base-adapter": "~0.1.0", + "css-tree": "1.0.0-alpha.28", + "css-url-regex": "^1.1.0", + "csso": "^3.5.0", + "js-yaml": "^3.12.0", "mkdirp": "~0.5.1", - "sax": "~1.2.1", - "whet.extend": "~0.9.9" - } - }, - "sw-precache": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/sw-precache/-/sw-precache-5.2.1.tgz", - "integrity": "sha512-8FAy+BP/FXE+ILfiVTt+GQJ6UEf4CVHD9OfhzH0JX+3zoy2uFk7Vn9EfXASOtVmmIVbL3jE/W8Z66VgPSZcMhw==", - "requires": { - "dom-urls": "^1.1.0", - "es6-promise": "^4.0.5", - "glob": "^7.1.1", - "lodash.defaults": "^4.2.0", - "lodash.template": "^4.4.0", - "meow": "^3.7.0", - "mkdirp": "^0.5.1", - "pretty-bytes": "^4.0.2", - "sw-toolbox": "^3.4.0", - "update-notifier": "^2.3.0" - } - }, - "sw-precache-webpack-plugin": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/sw-precache-webpack-plugin/-/sw-precache-webpack-plugin-0.11.4.tgz", - "integrity": "sha1-ppUBflTu1XVVFJOlGdwdqNotxeA=", - "requires": { - "del": "^2.2.2", - "sw-precache": "^5.1.1", - "uglify-js": "^3.0.13" - } - }, - "sw-toolbox": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/sw-toolbox/-/sw-toolbox-3.6.0.tgz", - "integrity": "sha1-Jt8dHHA0hljk3qKIQxkUm3sxg7U=", - "requires": { - "path-to-regexp": "^1.0.1", - "serviceworker-cache-polyfill": "^4.0.0" + "object.values": "^1.0.4", + "sax": "~1.2.4", + "stable": "~0.1.6", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" } }, "symbol-observable": { @@ -10684,61 +14086,129 @@ "lodash": "^4.17.4", "slice-ansi": "1.0.0", "string-width": "^2.1.1" + } + }, + "tapable": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.1.tgz", + "integrity": "sha512-9I2ydhj8Z9veORCw5PRm4u9uebCn0mcCa6scWoNcbZ6dAtoo2618u9UUzxgmsCOreJpqDDuv61LvwofW7hLcBA==" + }, + "terser": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-3.13.1.tgz", + "integrity": "sha512-ogyZye4DFqOtMzT92Y3Nxxw8OvXmL39HOALro4fc+EUYFFF9G/kk0znkvwMz6PPYgBtdKAodh3FPR70eugdaQA==", + "requires": { + "commander": "~2.17.1", + "source-map": "~0.6.1", + "source-map-support": "~0.5.6" }, "dependencies": { - "ajv": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz", - "integrity": "sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==", + "commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-support": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.9.tgz", + "integrity": "sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA==", "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.1" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + } + } + }, + "terser-webpack-plugin": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.1.0.tgz", + "integrity": "sha512-61lV0DSxMAZ8AyZG7/A4a3UPlrbOBo8NIQ4tJzLPAdGOQ+yoNC7l5ijEow27lBAL2humer01KLS6bGIMYQxKoA==", + "requires": { + "cacache": "^11.0.2", + "find-cache-dir": "^2.0.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^1.4.0", + "source-map": "^0.6.1", + "terser": "^3.8.1", + "webpack-sources": "^1.1.0", + "worker-farm": "^1.5.2" + }, + "dependencies": { + "find-cache-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.0.0.tgz", + "integrity": "sha512-LDUY6V1Xs5eFskUVYtIwatojt6+9xC9Chnlk/jYOOvn3FAFfSaWddxahDGyNHh0b2dMXa6YW2m0tk8TdVaXHlA==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^1.0.0", + "pkg-dir": "^3.0.0" } }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "locate-path": "^3.0.0" } }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz", + "integrity": "sha512-fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", + "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==" + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "requires": { + "find-up": "^3.0.0" + } }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, - "tapable": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz", - "integrity": "sha1-mTcqXJmb8t8WCvwNdL7U9HlIzSI=" - }, - "term-size": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", - "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", - "requires": { - "execa": "^0.7.0" - } - }, "test-exclude": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-4.2.1.tgz", - "integrity": "sha512-qpqlP/8Zl+sosLxBcVKl9vYy26T9NPalxSzzCP/OY6K7j938ui2oKgo+kRZYfxAeIpLqpbVnsHq1tyV70E4lWQ==", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-4.2.3.tgz", + "integrity": "sha512-SYbXgY64PT+4GAL2ocI3HwPa4Q4TBKm0cwAVeKOt/Aoc0gSpNRjJX8w0pA1LMKZ3LBmd8pYBqApFNQLII9kavA==", "requires": { "arrify": "^1.0.1", - "micromatch": "^3.1.8", + "micromatch": "^2.3.11", "object-assign": "^4.1.0", "read-pkg-up": "^1.0.1", "require-main-filename": "^1.0.1" @@ -10761,29 +14231,28 @@ } }, "throat": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/throat/-/throat-3.2.0.tgz", - "integrity": "sha512-/EY8VpvlqJ+sFtLPeOgc8Pl7kQVOWv0woD87KTXVHPIAE842FGT+rokxIhe8xIUP1cfgrkt0as0vDLjDiMtr8w==" + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=" }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" }, - "thunky": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.0.2.tgz", - "integrity": "sha1-qGLgGOP7HqLsP85dVWBc9X8kc3E=" - }, - "time-stamp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-2.0.0.tgz", - "integrity": "sha1-lcakRTDhW6jW9KPsuMOj+sRto1c=" + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } }, - "timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" + "thunky": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.0.3.tgz", + "integrity": "sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==" }, "timers-browserify": { "version": "2.0.10", @@ -10793,6 +14262,11 @@ "setimmediate": "^1.0.4" } }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + }, "tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -10812,9 +14286,9 @@ "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" }, "to-fast-properties": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" }, "to-object-path": { "version": "0.3.0", @@ -10822,16 +14296,6 @@ "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", "requires": { "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } } }, "to-regex": { @@ -10852,44 +14316,58 @@ "requires": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + } + } } }, - "toposort": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz", - "integrity": "sha1-LmhELZ9k7HILjMieZEOsbKqVACk=" + "topo": { + "version": "2.0.2", + "resolved": "http://registry.npmjs.org/topo/-/topo-2.0.2.tgz", + "integrity": "sha1-zVYVdSU5BXwNwEkaYhw7xvvh0YI=", + "requires": { + "hoek": "4.x.x" + } }, "tough-cookie": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", - "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "requires": { - "psl": "^1.1.24", - "punycode": "^1.4.1" - }, - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - } + "psl": "^1.1.28", + "punycode": "^2.1.1" } }, "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "requires": { + "punycode": "^2.1.0" + } }, "trim-right": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "tslib": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", + "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==" + }, "tty-browserify": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", @@ -10906,8 +14384,7 @@ "tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" }, "type-check": { "version": "0.3.2", @@ -10932,63 +14409,159 @@ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" }, "ua-parser-js": { - "version": "0.7.18", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.18.tgz", - "integrity": "sha512-LtzwHlVHwFGTptfNSgezHp7WUlwiqb0gA9AALRbKaERfxwJoiX0A73QbTToxteIAuIaFshhgIZfqK8s7clqgnA==" + "version": "0.7.19", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.19.tgz", + "integrity": "sha512-T3PVJ6uz8i0HzPxOF9SWzWAlfN/DavlpQqepn22xgve/5QecC+XMCAtmUNnY7C9StehaV6exjUCI801lOI7QlQ==" }, "uglify-js": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.4.tgz", - "integrity": "sha512-RiB1kNcC9RMyqwRrjXC+EjgLoXULoDnCaOnEDzUCHkBN0bHwmtF5rzDMiDWU29gu0kXCRRWwtcTAVFWRECmU2Q==", + "version": "3.4.9", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.9.tgz", + "integrity": "sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q==", "requires": { - "commander": "~2.16.0", + "commander": "~2.17.1", "source-map": "~0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, - "uglify-to-browserify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", - "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", - "optional": true - }, "uglifyjs-webpack-plugin": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz", - "integrity": "sha1-uVH0q7a9YX5m9j64kUmOORdj4wk=", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz", + "integrity": "sha512-ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==", "requires": { - "source-map": "^0.5.6", - "uglify-js": "^2.8.29", - "webpack-sources": "^1.0.1" + "cacache": "^10.0.4", + "find-cache-dir": "^1.0.0", + "schema-utils": "^0.4.5", + "serialize-javascript": "^1.4.0", + "source-map": "^0.6.1", + "uglify-es": "^3.3.4", + "webpack-sources": "^1.1.0", + "worker-farm": "^1.5.2" }, "dependencies": { + "cacache": { + "version": "10.0.4", + "resolved": "http://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz", + "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==", + "requires": { + "bluebird": "^3.5.1", + "chownr": "^1.0.1", + "glob": "^7.1.2", + "graceful-fs": "^4.1.11", + "lru-cache": "^4.1.1", + "mississippi": "^2.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.2", + "ssri": "^5.2.4", + "unique-filename": "^1.1.0", + "y18n": "^4.0.0" + } + }, + "commander": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", + "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==" + }, + "mississippi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz", + "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^2.0.1", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "schema-utils": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", + "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", + "requires": { + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0" + } + }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, - "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "ssri": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz", + "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==", "requires": { - "source-map": "~0.5.1", - "uglify-to-browserify": "~1.0.0", - "yargs": "~3.10.0" + "safe-buffer": "^5.1.1" } }, - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "uglify-es": { + "version": "3.3.9", + "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", + "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", "requires": { - "camelcase": "^1.0.2", - "cliui": "^2.1.0", - "decamelize": "^1.0.0", - "window-size": "0.1.0" + "commander": "~2.13.0", + "source-map": "~0.6.1" } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" } } }, + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz", + "integrity": "sha512-Rx7yODZC1L/T8XKo/2kNzVAQaRE88AaMvI1EF/Xnj3GW2wzN6fop9DDWuFAKUVFH7vozkz26DzP0qyWLKLIVPQ==" + }, + "unicode-property-aliases-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz", + "integrity": "sha512-2WSLa6OdYd2ng8oqiGIWnJqyFArvhn+5vgx5GTxMbUYjCYKUcuKS62YLFF0R/BDGlB1yzXjQOLtPAfHsgirEpg==" + }, "union-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", @@ -11031,12 +14604,20 @@ "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" }, - "unique-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", - "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz", + "integrity": "sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==", "requires": { - "crypto-random-string": "^1.0.0" + "imurmurhash": "^0.1.4" } }, "universalify": { @@ -11049,6 +14630,11 @@ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, "unset-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", @@ -11085,45 +14671,11 @@ } } }, - "unzip-response": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", - "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=" - }, "upath": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz", "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==" }, - "update-notifier": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", - "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", - "requires": { - "boxen": "^1.2.1", - "chalk": "^2.0.1", - "configstore": "^3.0.0", - "import-lazy": "^2.1.0", - "is-ci": "^1.0.10", - "is-installed-globally": "^0.1.0", - "is-npm": "^1.0.0", - "latest-version": "^3.0.0", - "semver-diff": "^2.0.0", - "xdg-basedir": "^3.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } - } - }, "upper-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", @@ -11137,11 +14689,6 @@ "punycode": "^2.1.0" } }, - "urijs": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.1.tgz", - "integrity": "sha512-xVrGVi94ueCJNrBSTjWqjvtgvl3cyOTThp2zaMaFNGp3F542TR6sM3f2o8RqZl+AwteClSVmoCyt0ka4RjQOQg==" - }, "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", @@ -11164,32 +14711,24 @@ } }, "url-loader": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-0.6.2.tgz", - "integrity": "sha512-h3qf9TNn53BpuXTTcpC+UehiRrl0Cv45Yr/xWayApjw6G8Bg2dGke7rIwDQ39piciWCWrC+WiqLjOh3SUp9n0Q==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-1.1.1.tgz", + "integrity": "sha512-vugEeXjyYFBCUOpX+ZuaunbK3QXMKaQ3zUnRfIpRBlGkY7QizCnzyyn2ASfcxsvyU3ef+CJppVywnl3Kgf13Gg==", "requires": { - "loader-utils": "^1.0.2", - "mime": "^1.4.1", - "schema-utils": "^0.3.0" + "loader-utils": "^1.1.0", + "mime": "^2.0.3", + "schema-utils": "^1.0.0" } }, "url-parse": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.3.tgz", - "integrity": "sha512-rh+KuAW36YKo0vClhQzLLveoj8FwPJNu65xLb7Mrt+eZht0IPT0IXgSv8gcMegZ6NvjJUALf6Mf25POlMwD1Fw==", + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.4.tgz", + "integrity": "sha512-/92DTTorg4JjktLNLe6GPS2/RvAd/RGr6LuktmWSMLEOa6rjnlrFXNgSbSmkNvCoL2T028A0a1JaJLzRMlFoHg==", "requires": { "querystringify": "^2.0.0", "requires-port": "^1.0.0" } }, - "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "requires": { - "prepend-http": "^1.0.1" - } - }, "use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", @@ -11208,6 +14747,15 @@ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, "utila": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", @@ -11224,9 +14772,9 @@ "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" }, "validate-npm-package-license": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz", - "integrity": "sha512-63ZOUnL4SIXj4L0NixR3L1lcjO38crAbgrTpl28t8jjrfuiOBL5Iygm+60qPs/KsZGzPNg6Smnc/oY16QTjF0g==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "requires": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -11265,6 +14813,24 @@ "indexof": "0.0.1" } }, + "w3c-hr-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz", + "integrity": "sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=", + "requires": { + "browser-process-hrtime": "^0.1.2" + } + }, + "w3c-xmlserializer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.0.1.tgz", + "integrity": "sha512-XZGI1OH/OLQr/NaJhhPmzhngwcAnZDLytsvXnRmlYeRkmbb0I7sqFFA22erq4WQR0sUu17ZSQOAV9mFwCqKRNg==", + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + } + }, "walker": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", @@ -11282,9 +14848,20 @@ } }, "watch": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/watch/-/watch-0.10.0.tgz", - "integrity": "sha1-d3mLLaD5kQ1ZXxrOWwwiWFIfIdw=" + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz", + "integrity": "sha1-KAlUdsbffJDJYxOJkMClQj60uYY=", + "requires": { + "exec-sh": "^0.2.0", + "minimist": "^1.2.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + } + } }, "watchpack": { "version": "1.6.0", @@ -11310,401 +14887,540 @@ "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" }, "webpack": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-3.8.1.tgz", - "integrity": "sha512-5ZXLWWsMqHKFr5y0N3Eo5IIisxeEeRAajNq4mELb/WELOR7srdbQk2N5XiyNy2A/AgvlR3AmeBCZJW8lHrolbw==", - "requires": { - "acorn": "^5.0.0", - "acorn-dynamic-import": "^2.0.0", - "ajv": "^5.1.5", - "ajv-keywords": "^2.0.0", - "async": "^2.1.2", - "enhanced-resolve": "^3.4.0", - "escope": "^3.6.0", - "interpret": "^1.0.0", - "json-loader": "^0.5.4", - "json5": "^0.5.1", + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.19.1.tgz", + "integrity": "sha512-j7Q/5QqZRqIFXJvC0E59ipLV5Hf6lAnS3ezC3I4HMUybwEDikQBVad5d+IpPtmaQPQArvgUZLXIN6lWijHBn4g==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-module-context": "1.7.6", + "@webassemblyjs/wasm-edit": "1.7.6", + "@webassemblyjs/wasm-parser": "1.7.6", + "acorn": "^5.6.2", + "acorn-dynamic-import": "^3.0.0", + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0", + "chrome-trace-event": "^1.0.0", + "enhanced-resolve": "^4.1.0", + "eslint-scope": "^4.0.0", + "json-parse-better-errors": "^1.0.2", "loader-runner": "^2.3.0", "loader-utils": "^1.1.0", "memory-fs": "~0.4.1", + "micromatch": "^3.1.8", "mkdirp": "~0.5.0", + "neo-async": "^2.5.0", "node-libs-browser": "^2.0.0", - "source-map": "^0.5.3", - "supports-color": "^4.2.1", - "tapable": "^0.2.7", - "uglifyjs-webpack-plugin": "^0.4.6", - "watchpack": "^1.4.0", - "webpack-sources": "^1.0.1", - "yargs": "^8.0.2" + "schema-utils": "^0.4.4", + "tapable": "^1.1.0", + "uglifyjs-webpack-plugin": "^1.2.4", + "watchpack": "^1.5.0", + "webpack-sources": "^1.2.0" }, "dependencies": { - "ajv-keywords": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz", - "integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=" + "acorn": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", + "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==" }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" }, "dependencies": { - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "is-extendable": "^0.1.0" } } } }, - "has-flag": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", - "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "eslint-scope": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz", + "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==", "requires": { - "number-is-nan": "^1.0.0" + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" } }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "strip-bom": "^3.0.0" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "http://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "http://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } } }, - "os-locale": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", - "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { - "execa": "^0.7.0", - "lcid": "^1.0.0", - "mem": "^1.1.0" + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "requires": { - "pify": "^2.0.0" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" + "kind-of": "^6.0.0" } }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "requires": { - "find-up": "^2.0.0", - "read-pkg": "^2.0.0" + "kind-of": "^6.0.0" } }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } }, - "strip-bom": { + "is-number": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - }, - "supports-color": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", - "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "requires": { - "has-flag": "^2.0.0" + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } } }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" }, - "yargs": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz", - "integrity": "sha1-YpmpBVsc78lp/355wdkY3Osiw2A=", - "requires": { - "camelcase": "^4.1.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^2.0.0", - "read-pkg-up": "^2.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^7.0.0" + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" } }, - "yargs-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz", - "integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=", + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "schema-utils": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", + "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", "requires": { - "camelcase": "^4.1.0" + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0" } } } }, "webpack-dev-middleware": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz", - "integrity": "sha512-FCrqPy1yy/sN6U/SaEZcHKRXGlqU0DUaEBL45jkUYoB8foVb6wCnbIJ1HKIx+qUFTW+3JpVcCJCxZ8VATL4e+A==", + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.4.0.tgz", + "integrity": "sha512-Q9Iyc0X9dP9bAsYskAVJ/hmIZZQwf/3Sy4xCAZgL5cUkjZmUZLt4l5HpbST/Pdgjn3u6pE7u5OdGd1apgzRujA==", "requires": { "memory-fs": "~0.4.1", - "mime": "^1.5.0", - "path-is-absolute": "^1.0.0", + "mime": "^2.3.1", "range-parser": "^1.0.3", - "time-stamp": "^2.0.0" + "webpack-log": "^2.0.0" } }, "webpack-dev-server": { - "version": "2.9.4", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-2.9.4.tgz", - "integrity": "sha512-thrqC0EQEoSjXeYgP6pUXcUCZ+LNrKsDPn+mItLnn5VyyNZOJKd06hUP5vqkYwL8nWWXsii0loSF9NHNccT6ow==", + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.1.9.tgz", + "integrity": "sha512-fqPkuNalLuc/hRC2QMkVYJkgNmRvxZQo7ykA2e1XRg/tMJm3qY7ZaD6d89/Fqjxtj9bOrn5wZzLD2n84lJdvWg==", "requires": { "ansi-html": "0.0.7", - "array-includes": "^3.0.3", "bonjour": "^3.5.0", - "chokidar": "^1.6.0", + "chokidar": "^2.0.0", "compression": "^1.5.2", "connect-history-api-fallback": "^1.3.0", "debug": "^3.1.0", "del": "^3.0.0", - "express": "^4.13.3", + "express": "^4.16.2", "html-entities": "^1.2.0", - "http-proxy-middleware": "~0.17.4", - "import-local": "^0.1.1", - "internal-ip": "1.2.0", + "http-proxy-middleware": "~0.18.0", + "import-local": "^2.0.0", + "internal-ip": "^3.0.1", "ip": "^1.1.5", "killable": "^1.0.0", "loglevel": "^1.4.1", "opn": "^5.1.0", "portfinder": "^1.0.9", + "schema-utils": "^1.0.0", "selfsigned": "^1.9.1", "serve-index": "^1.7.2", - "sockjs": "0.3.18", - "sockjs-client": "1.1.4", + "sockjs": "0.3.19", + "sockjs-client": "1.1.5", "spdy": "^3.4.1", - "strip-ansi": "^3.0.1", - "supports-color": "^4.2.1", - "webpack-dev-middleware": "^1.11.0", - "yargs": "^6.6.0" + "strip-ansi": "^3.0.0", + "supports-color": "^5.1.0", + "webpack-dev-middleware": "3.4.0", + "webpack-log": "^2.0.0", + "yargs": "12.0.2" }, "dependencies": { "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "requires": { - "anymatch": "^1.3.0", - "async-each": "^1.0.0", - "fsevents": "^1.0.0", - "glob-parent": "^2.0.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^2.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0" - } - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" + }, + "decamelize": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz", + "integrity": "sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==", "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" + "xregexp": "4.0.0" } }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" + "execa": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", + "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" } }, - "del": { + "find-up": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", - "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "requires": { - "globby": "^6.1.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "p-map": "^1.1.1", - "pify": "^3.0.0", - "rimraf": "^2.2.8" + "locate-path": "^3.0.0" } }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" } }, - "has-flag": { + "invert-kv": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", - "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", + "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==" }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "lcid": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", + "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", "requires": { - "number-is-nan": "^1.0.0" + "invert-kv": "^2.0.0" } }, - "pify": { + "locate-path": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "mem": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.0.0.tgz", + "integrity": "sha512-WQxG/5xYc3tMbYLXoXPm81ET2WDULiU5FxbuIoNbJqLOOI8zehXFdZuiUEgfdrU2mVB1pxBZUGlYORSrpuJreA==", "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^1.0.0", + "p-is-promise": "^1.1.0" } }, - "supports-color": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", - "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "os-locale": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.0.1.tgz", + "integrity": "sha512-7g5e7dmXPtzcP4bgsZ8ixDVqA7oWYuEz4lOSujeWyliPai4gfVDiFIcwBg3aGCPnmSGfzOKTK3ccPn0CKv3DBw==", "requires": { - "has-flag": "^2.0.0" + "execa": "^0.10.0", + "lcid": "^2.0.0", + "mem": "^4.0.0" + } + }, + "p-limit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz", + "integrity": "sha512-fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", + "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==" + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "requires": { + "find-up": "^3.0.0" } }, "yargs": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", - "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.2.tgz", + "integrity": "sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ==", "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", + "cliui": "^4.0.0", + "decamelize": "^2.0.0", + "find-up": "^3.0.0", "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", + "os-locale": "^3.0.0", "require-directory": "^2.1.1", "require-main-filename": "^1.0.1", "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^4.2.0" + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1 || ^4.0.0", + "yargs-parser": "^10.1.0" } }, "yargs-parser": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", - "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", + "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", "requires": { - "camelcase": "^3.0.0" + "camelcase": "^4.1.0" } } } }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + } + }, "webpack-manifest-plugin": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.2.tgz", - "integrity": "sha512-MX60Bv2G83Zks9pi3oLOmRgnPAnwrlMn+lftMrWBm199VQjk46/xgzBi9lPfpZldw2+EI2S+OevuLIaDuxCWRw==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.4.tgz", + "integrity": "sha512-nejhOHexXDBKQOj/5v5IZSfCeTO3x1Dt1RZEcGfBSul891X/eLIcIVH31gwxPDdsi2Z8LKKFGpM4w9+oTBOSCg==", "requires": { - "fs-extra": "^0.30.0", - "lodash": ">=3.5 <5" - }, - "dependencies": { - "fs-extra": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz", - "integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" - } - }, - "jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", - "requires": { - "graceful-fs": "^4.1.6" - } - } + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "tapable": "^1.0.0" } }, "webpack-sources": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.1.0.tgz", - "integrity": "sha512-aqYp18kPphgoO5c/+NaUvEeACtZjMESmDChuD3NBciVpah3XpMEU9VAAtIaB1BsfJWWTSdv8Vv1m3T0aRk2dUw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz", + "integrity": "sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==", "requires": { "source-list-map": "^2.0.0", "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, "websocket-driver": { @@ -11722,46 +15438,43 @@ "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==" }, "whatwg-encoding": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz", - "integrity": "sha512-jLBwwKUhi8WtBfsMQlL4bUUcT8sMkAtQinscJAe/M4KHCkHuUJAF6vuB0tueNIw4c8ziO6AkRmgY+jL3a0iiPw==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "requires": { - "iconv-lite": "0.4.19" + "iconv-lite": "0.4.24" }, "dependencies": { "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } } } }, "whatwg-fetch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz", + "integrity": "sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" }, "whatwg-url": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-4.8.0.tgz", - "integrity": "sha1-0pgaqRSMHgCkHFphMRZqtGg7vMA=", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.0.0.tgz", + "integrity": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==", "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - }, - "dependencies": { - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" - } + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" } }, - "whet.extend": { - "version": "0.9.9", - "resolved": "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz", - "integrity": "sha1-+HfVv2SMl+WqVC+twW1qJZucEaE=" - }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", @@ -11771,28 +15484,167 @@ } }, "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" - }, - "widest-line": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.0.tgz", - "integrity": "sha1-AUKk6KJD+IgsAjOqDgKBqnYVInM=", - "requires": { - "string-width": "^2.1.1" - } - }, - "window-size": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", - "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=" + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" }, "wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" }, + "workbox-background-sync": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-3.6.3.tgz", + "integrity": "sha512-ypLo0B6dces4gSpaslmDg5wuoUWrHHVJfFWwl1udvSylLdXvnrfhFfriCS42SNEe5lsZtcNZF27W/SMzBlva7Q==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-broadcast-cache-update": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-broadcast-cache-update/-/workbox-broadcast-cache-update-3.6.3.tgz", + "integrity": "sha512-pJl4lbClQcvp0SyTiEw0zLSsVYE1RDlCPtpKnpMjxFtu8lCFTAEuVyzxp9w7GF4/b3P4h5nyQ+q7V9mIR7YzGg==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-build": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-3.6.3.tgz", + "integrity": "sha512-w0clZ/pVjL8VXy6GfthefxpEXs0T8uiRuopZSFVQ8ovfbH6c6kUpEh6DcYwm/Y6dyWPiCucdyAZotgjz+nRz8g==", + "requires": { + "babel-runtime": "^6.26.0", + "common-tags": "^1.4.0", + "fs-extra": "^4.0.2", + "glob": "^7.1.2", + "joi": "^11.1.1", + "lodash.template": "^4.4.0", + "pretty-bytes": "^4.0.2", + "stringify-object": "^3.2.2", + "strip-comments": "^1.0.2", + "workbox-background-sync": "^3.6.3", + "workbox-broadcast-cache-update": "^3.6.3", + "workbox-cache-expiration": "^3.6.3", + "workbox-cacheable-response": "^3.6.3", + "workbox-core": "^3.6.3", + "workbox-google-analytics": "^3.6.3", + "workbox-navigation-preload": "^3.6.3", + "workbox-precaching": "^3.6.3", + "workbox-range-requests": "^3.6.3", + "workbox-routing": "^3.6.3", + "workbox-strategies": "^3.6.3", + "workbox-streams": "^3.6.3", + "workbox-sw": "^3.6.3" + }, + "dependencies": { + "fs-extra": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", + "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + } + } + }, + "workbox-cache-expiration": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-cache-expiration/-/workbox-cache-expiration-3.6.3.tgz", + "integrity": "sha512-+ECNph/6doYx89oopO/UolYdDmQtGUgo8KCgluwBF/RieyA1ZOFKfrSiNjztxOrGJoyBB7raTIOlEEwZ1LaHoA==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-cacheable-response": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-3.6.3.tgz", + "integrity": "sha512-QpmbGA9SLcA7fklBLm06C4zFg577Dt8u3QgLM0eMnnbaVv3rhm4vbmDpBkyTqvgK/Ly8MBDQzlXDtUCswQwqqg==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-core": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-3.6.3.tgz", + "integrity": "sha512-cx9cx0nscPkIWs8Pt98HGrS9/aORuUcSkWjG25GqNWdvD/pSe7/5Oh3BKs0fC+rUshCiyLbxW54q0hA+GqZeSQ==" + }, + "workbox-google-analytics": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-3.6.3.tgz", + "integrity": "sha512-RQBUo/6SXtIaQTRFj4RQZ9e1gAl7D8oS5S+Hi173Kk70/BgJjzPwXpC5A249Jv5YfkCOLMQCeF9A27BiD0b0ig==", + "requires": { + "workbox-background-sync": "^3.6.3", + "workbox-core": "^3.6.3", + "workbox-routing": "^3.6.3", + "workbox-strategies": "^3.6.3" + } + }, + "workbox-navigation-preload": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-3.6.3.tgz", + "integrity": "sha512-dd26xTX16DUu0i+MhqZK/jQXgfIitu0yATM4jhRXEmpMqQ4MxEeNvl2CgjDMOHBnCVMax+CFZQWwxMx/X/PqCw==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-precaching": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-3.6.3.tgz", + "integrity": "sha512-aBqT66BuMFviPTW6IpccZZHzpA8xzvZU2OM1AdhmSlYDXOJyb1+Z6blVD7z2Q8VNtV1UVwQIdImIX+hH3C3PIw==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-range-requests": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-3.6.3.tgz", + "integrity": "sha512-R+yLWQy7D9aRF9yJ3QzwYnGFnGDhMUij4jVBUVtkl67oaVoP1ymZ81AfCmfZro2kpPRI+vmNMfxxW531cqdx8A==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-routing": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-3.6.3.tgz", + "integrity": "sha512-bX20i95OKXXQovXhFOViOK63HYmXvsIwZXKWbSpVeKToxMrp0G/6LZXnhg82ijj/S5yhKNRf9LeGDzaqxzAwMQ==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-strategies": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-3.6.3.tgz", + "integrity": "sha512-Pg5eulqeKet2y8j73Yw6xTgLdElktcWExGkzDVCGqfV9JCvnGuEpz5eVsCIK70+k4oJcBCin9qEg3g3CwEIH3g==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-streams": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-3.6.3.tgz", + "integrity": "sha512-rqDuS4duj+3aZUYI1LsrD2t9hHOjwPqnUIfrXSOxSVjVn83W2MisDF2Bj+dFUZv4GalL9xqErcFW++9gH+Z27w==", + "requires": { + "workbox-core": "^3.6.3" + } + }, + "workbox-sw": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-3.6.3.tgz", + "integrity": "sha512-IQOUi+RLhvYCiv80RP23KBW/NTtIvzvjex28B8NW1jOm+iV4VIu3VXKXTA6er5/wjjuhmtB28qEAUqADLAyOSg==" + }, + "workbox-webpack-plugin": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-3.6.3.tgz", + "integrity": "sha512-RwmKjc7HFHUFHoOlKoZUq9349u0QN3F8W5tZZU0vc1qsBZDINWXRiIBCAKvo/Njgay5sWz7z4I2adnyTo97qIQ==", + "requires": { + "babel-runtime": "^6.26.0", + "json-stable-stringify": "^1.0.1", + "workbox-build": "^3.6.3" + } + }, "worker-farm": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz", @@ -11853,15 +15705,28 @@ "signal-exit": "^3.0.2" } }, - "xdg-basedir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", - "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=" + "ws": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.1.2.tgz", + "integrity": "sha512-rfUqzvz0WxmSXtJpPMX2EeASXabOrSMk1ruMOV3JBTBjo4ac2lDjGGsbQSyxj8Odhw5fBib8ZKEjDNvgouNKYw==", + "requires": { + "async-limiter": "~1.0.0" + } }, "xml-name-validator": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz", - "integrity": "sha1-TYuPHszTQZqjYgYb7O9RXh5VljU=" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "xmlchars": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-1.3.1.tgz", + "integrity": "sha512-tGkGJkN8XqCod7OT+EvGYK5Z4SfDQGD30zAa58OcnAa0RRWgzUEK72tkXhsX1FZd+rgnhRxFtmO+ihkp8LHSkw==" + }, + "xregexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz", + "integrity": "sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==" }, "xtend": { "version": "4.0.1", @@ -11879,84 +15744,48 @@ "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" }, "yargs": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", - "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", + "version": "11.1.0", + "resolved": "http://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz", + "integrity": "sha512-NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A==", "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", + "cliui": "^4.0.0", "decamelize": "^1.1.1", + "find-up": "^2.1.0", "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", + "os-locale": "^2.0.0", "require-directory": "^2.1.1", "require-main-filename": "^1.0.1", "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", "y18n": "^3.2.1", - "yargs-parser": "^5.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - } + "yargs-parser": "^9.0.2" } }, "yargs-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", - "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz", + "integrity": "sha1-nM9qQ0YP5O1Aqbto9I1DuKaMwHc=", "requires": { - "camelcase": "^3.0.0" + "camelcase": "^4.1.0" }, "dependencies": { "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" } } }, "zen-observable": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.8.tgz", - "integrity": "sha512-HnhhyNnwTFzS48nihkCZIJGsWGFcYUz+XPDlPK5W84Ifji8SksC6m7sQWOf8zdCGhzQ4tDYuMYGu5B0N1dXTtg==" + "version": "0.8.11", + "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.11.tgz", + "integrity": "sha512-N3xXQVr4L61rZvGMpWe8XoCGX8vhU35dPyQ4fm5CY/KDlG0F75un14hjbckPXTDuKUY6V0dqR2giT6xN8Y4GEQ==" }, "zen-observable-ts": { - "version": "0.8.9", - "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.9.tgz", - "integrity": "sha512-KJz2O8FxbAdAU5CSc8qZ1K2WYEJb1HxS6XDRF+hOJ1rOYcg6eTMmS9xYHCXzqZZzKw6BbXWyF4UpwSsBQnHJeA==", + "version": "0.8.13", + "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.13.tgz", + "integrity": "sha512-WDb8SM0tHCb6c0l1k60qXWlm1ok3zN9U4VkLdnBKQwIYwUoB9psH7LIFgR+JVCCMmBxUgOjskIid8/N02k/2Bg==", "requires": { "zen-observable": "^0.8.0" } diff --git a/webui/package.json b/webui/package.json index 58f90dee..69b8c3ba 100644 --- a/webui/package.json +++ b/webui/package.json @@ -3,21 +3,21 @@ "version": "0.1.0", "private": true, "dependencies": { - "@material-ui/core": "^1.4.2", - "@material-ui/icons": "^2.0.2", - "apollo-boost": "^0.1.10", - "graphql": "^0.13.2", - "moment": "^2.22.2", - "react": "^16.4.1", - "react-apollo": "^2.1.9", - "react-dom": "^16.4.1", + "@material-ui/core": "^1.5.1", + "@material-ui/icons": "^2.0.3", + "apollo-boost": "^0.1.23", + "graphql": "^14.0.2", + "moment": "^2.23.0", + "react": "^16.7.0", + "react-apollo": "^2.3.3", + "react-dom": "^16.7.0", "react-router": "^4.3.1", "react-router-dom": "^4.3.1", - "react-scripts": "1.1.4" + "react-scripts": "2.1.1" }, "devDependencies": { - "eslint-config-prettier": "^3.0.1", - "eslint-plugin-prettier": "^2.6.2", + "eslint-config-prettier": "^3.3.0", + "eslint-plugin-prettier": "^2.7.0", "prettier": "1.14.2" }, "scripts": { @@ -27,5 +27,11 @@ "eject": "react-scripts eject", "lint": "eslint src/" }, - "proxy": "http://localhost:3001" + "proxy": "http://localhost:3001", + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] } diff --git a/webui/packed_assets.go b/webui/packed_assets.go index e96d916a..474118b3 100644 --- a/webui/packed_assets.go +++ b/webui/packed_assets.go @@ -21,57 +21,78 @@ var WebUIAssets = func() http.FileSystem { fs := vfsgen۰FS{ "/": &vfsgen۰DirInfo{ name: "/", - modTime: time.Date(2018, 10, 7, 17, 2, 28, 854964094, time.UTC), + modTime: time.Date(2018, 12, 23, 12, 50, 1, 999259338, time.UTC), }, "/asset-manifest.json": &vfsgen۰CompressedFileInfo{ name: "asset-manifest.json", - modTime: time.Date(2018, 10, 7, 17, 2, 28, 730961917, time.UTC), - uncompressedSize: 96, + modTime: time.Date(2018, 12, 23, 12, 50, 1, 999259338, time.UTC), + uncompressedSize: 577, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\x4d\xcc\xcc\xd3\xcb\x2a\x56\xb2\x52\x50\x2a\x2e\x49\x2c\xc9\x4c\xd6\xcf\x2a\xd6\x07\x0b\x9a\x98\x58\x58\x58\x26\x19\x98\x81\x64\x75\x90\x94\xea\xe5\x26\x16\xe0\x57\x0e\x56\xc1\x55\x0b\x08\x00\x00\xff\xff\x96\x07\x0a\x3b\x60\x00\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x90\xdd\x4e\xc4\x20\x10\x46\xef\xf7\x29\x9a\x5e\xbb\xb4\x80\x4b\xbb\xbe\xcd\x30\x3b\xa4\xec\x0a\x6e\x80\xaa\x89\xd1\x67\x37\x62\xec\x8f\xd2\x68\xbc\x64\xe6\x9c\x6f\x86\x79\xd9\x55\x55\xed\xc0\x7a\x76\x8e\xf5\x5d\x55\x37\x31\x41\xb2\xd8\x9c\x63\x93\xab\xb7\x1d\x92\xd6\xba\x63\x38\x8c\xfe\xf2\x01\xdd\x2c\x0c\xe6\xe0\xfa\x27\x2b\x83\xd9\x9c\x49\xce\xf8\x09\x95\x00\x83\x73\xf8\x3a\xab\x44\xfc\x1e\x52\x58\x6a\x8b\xca\x61\x61\xf4\xc9\x3a\x7a\x2b\x5f\x61\xd5\x15\xe2\x88\x52\xb5\x66\x5a\xe4\x9b\x5b\x18\xbd\xe5\xcf\xf3\xad\x3f\xd1\x33\x1b\x92\xbb\xcf\xea\xe2\x99\xdb\xd7\x40\x08\x38\xd0\xde\x81\xb7\x86\x62\x62\x1a\x80\xc4\x41\x82\x16\x68\xe0\x70\x54\x1c\x15\xb4\x52\x77\xbd\x92\x5c\xf4\x7d\xfb\xf5\x89\xff\x99\x9f\x07\xa6\xf0\x68\x91\xf6\x4f\x0f\xe1\x42\x61\xba\xca\x8f\xea\xee\xf5\x3d\x00\x00\xff\xff\x0a\x52\x6d\xbb\x41\x02\x00\x00"), }, "/favicon.ico": &vfsgen۰CompressedFileInfo{ name: "favicon.ico", - modTime: time.Date(2018, 10, 7, 17, 2, 9, 530624930, time.UTC), + modTime: time.Date(2018, 12, 23, 12, 49, 42, 414940535, time.UTC), uncompressedSize: 32988, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7c\x7b\x98\x1c\x55\xb5\xef\xaa\x55\x83\x12\x14\x32\x99\xe9\xda\xbb\x6a\xef\x5d\x3d\x0d\x0c\xcf\xf0\xba\xf2\xf0\x2a\x20\xe1\x2a\x8a\x5c\x5e\x72\x45\x79\x7d\x28\x3e\x41\xae\x08\x81\xe3\xf1\xa8\x78\x38\x2a\x07\xcf\x41\xd1\xe3\x0b\x51\x51\x23\x22\x18\xe5\x71\x90\x97\x02\x06\x79\x0b\x21\xdd\xf5\xea\xe7\x4c\x26\xc9\x84\x04\x08\x81\x00\x09\x8f\x40\x52\xe7\xdb\xb5\xab\xa6\x6b\x66\xba\x67\xba\x27\x33\x19\xfe\xe8\xf5\x7d\xfd\xcd\x74\x75\xd5\x5e\xfb\xb7\xf6\xda\x6b\xaf\xb5\xf6\xda\x05\xa0\x41\x17\x2c\x58\x20\xff\xe6\x60\xef\x05\x00\x1f\x04\x80\x5c\x2e\xfe\xde\x0d\x70\xc1\x02\x00\xd3\x8c\xbf\xcf\x01\xf8\xe9\xc9\x00\xdd\xdd\xf1\xf7\x2e\x80\xbf\x9d\x0e\xb0\x37\x00\x2c\x00\x80\xcb\x40\x5d\x7f\x2b\x51\x06\x1e\xda\x99\xc1\x9a\x9d\xd4\xb7\x10\x77\x83\xc1\xb9\xfd\x70\xe7\xdb\x67\xbb\x5f\x33\x41\x7d\xb0\x62\x57\xae\xd7\x4e\x15\x58\xfd\x0e\xd7\xfc\xdb\x38\x06\x79\x86\x83\x6b\x6d\x2c\x5d\x2e\x7f\xdf\x15\x96\x53\x8e\xde\x20\xc7\x60\x90\xeb\xc1\x43\x16\xfa\x8b\x6c\x2c\x5d\x6c\x43\xf5\x7d\x3d\x50\xdb\x65\xb6\xfb\x3f\x15\x12\x30\xdc\x2f\x70\xe0\xcb\x5c\x2f\x3e\xcc\x30\x78\xc5\xc6\xa1\xd0\xc6\x95\xa1\x8d\xcb\x43\x81\xd5\x30\x8b\x4f\x87\x02\x4b\x3f\x82\x48\x3e\x45\x8b\xa1\xf3\x9a\x8d\x83\xa1\xc0\x5a\x68\xe3\x8a\xe8\x5e\x79\x1f\xc3\x60\x35\xc3\xea\xef\x6c\x7d\xe0\x64\x01\xc3\x73\x66\x1b\xd7\x64\xc4\xba\x56\x1e\xce\x71\xe0\x46\x86\xc1\xab\x36\xae\x0a\x6d\x1c\x08\x39\x7a\x21\xc7\xc2\xa8\x8f\x92\x45\xf9\xfb\xf2\x99\x1c\x0c\x99\x02\xdd\x17\x05\x06\x63\xee\x73\xa4\x8c\x62\x79\x0c\x49\x79\x54\x05\x0e\x7d\x99\x41\x25\x33\xdb\x38\xc7\x92\x80\xf2\x01\x42\xab\xfd\x49\x8e\x99\xec\x6f\x23\xcc\xed\xe3\x1f\xfd\x11\x58\x09\x6d\x1c\x0e\x19\x56\x57\xdb\x38\xb8\xf0\x60\x58\xba\xc3\x6c\xe3\x06\x58\xba\x83\xc0\xda\x65\x0c\x4b\xaf\x49\x4c\x1c\xdd\x09\x31\x6c\x0b\x7e\xf5\xc9\x47\x3a\x91\xc5\x61\xf9\xfc\x93\xd2\x46\xcc\x16\x72\x0b\xaa\xfb\x08\xbd\xfc\x48\x16\x57\x87\x02\xfd\xa8\x6f\xad\x60\xdf\x36\xfc\xe9\x36\xa4\xbd\xa8\x6c\xb1\xb1\x7a\xe9\xf6\xc6\xce\x75\xef\x78\x81\xb5\xe7\xe4\xbc\x6c\xa7\xcf\xd3\x89\x5f\xe9\x82\x1f\xda\x52\xfe\x5a\xe5\x26\x03\x82\x77\x6e\x1f\xec\xc5\xb3\xa5\xdc\xe5\x7c\x6c\x67\xcc\xa7\x1f\x7f\xfd\x23\x75\xd0\xd6\x2a\x0f\x71\x28\xf5\xce\x3c\x76\xa9\x77\xc5\x26\xd8\xf3\x29\x9b\xbd\xbc\xe9\xbc\x68\x07\x7f\x62\x53\xa5\xbe\x2b\xfb\xd2\x98\x6f\xb4\xde\x68\xd5\xc7\xb3\xe0\xce\x9b\x09\xec\x0c\xfc\x13\x04\x56\xb6\x4e\x84\x5d\xae\x77\x02\xfd\x55\x16\x7a\x8b\x2c\xcd\xfd\x23\x47\x6f\x53\x23\x3d\x69\x75\xfd\x8b\x30\x6b\x4e\x9e\xa3\x7f\x0d\xd3\xdc\xbb\xe4\x3d\x13\xf3\x5f\x15\x72\xbd\x7c\x7f\x3f\xd4\xa6\xd5\x97\xcc\x42\x6d\x5f\x81\x95\x97\x26\xd2\x79\x89\x9d\x69\xe5\xbb\xd3\x3a\x28\xd7\x45\x8e\xe5\x21\x81\xe5\xb6\xf1\x2b\xfb\x56\xbe\x52\xfa\xc7\x23\xfd\xd0\x6b\x27\x30\x2c\xbd\xd2\x7c\x7d\xcd\x47\x73\x81\x63\xf1\x37\xd3\x85\x3d\x07\x43\x3b\x0a\x2c\x3a\x52\x9f\x9b\xcf\x77\x4f\xea\xfd\x46\x13\xf2\xe3\x02\x0d\xae\x7b\x1f\x53\xba\xdb\x3a\x7e\x29\x67\x86\xae\xdf\xa8\x3f\x02\xbd\x1f\x28\x1f\xa3\x99\x3d\x70\x22\x3f\x81\x63\xf0\xf9\xe9\xc0\x6f\xa1\x7b\x95\x92\x69\x73\x5b\xa7\xf4\xa2\x50\x6a\xf4\x3c\x85\xf2\xae\x1c\x9d\x2d\xe9\x31\x9b\x0c\xbf\xc4\x27\xe7\x50\xa3\xf6\xb8\xee\x7c\x74\xb2\x75\x47\xce\x11\x81\xe5\x4d\x02\x06\xf7\xd8\x16\xec\x02\xaa\xef\x16\x58\xde\x3a\x99\x3f\x27\xfb\xce\xd0\x7f\x3e\x07\x43\xdd\xe3\xfa\x0b\xc1\xff\x91\x7e\xbd\x1c\x97\xd6\xc7\xbf\x16\x72\xdd\x79\xa4\x21\x7e\xf4\xbf\xae\x7c\xad\x89\xd7\x46\x79\x0f\xd3\xfc\xbb\xb7\x05\x3f\xd7\x9d\x87\x94\xac\x27\x5f\xe7\xd4\xfc\x28\xfe\x14\xe0\xb2\x91\xf9\x2a\xe3\x5a\xae\x97\x1e\x51\xf8\xdb\x99\xff\x4e\x64\xf7\x85\x5e\xfc\x74\xba\x3f\xd2\x0e\x71\x2c\x3d\xa3\x6c\xe0\x64\xeb\xa2\xa3\xd6\x0d\xbd\x7c\xd2\xd4\xb0\x17\xff\xaf\xc2\xee\xb4\xc0\x2b\xe1\x27\xe7\x49\xf0\x3d\xf9\xfc\x7c\x08\xde\xc6\xf5\xe0\x41\x35\x56\xed\xdb\x7f\xe5\xdb\x0c\x85\x42\x0f\xce\x84\x68\x1e\x39\xbb\x0a\xf4\x9e\x53\xb2\x6c\xcd\xef\x90\x36\xd9\xc2\x42\x21\x6d\x43\x5b\x25\xa6\x7b\x7f\x57\x63\xda\x0a\xf6\x84\xdf\x50\x28\xd7\xa9\xe8\x79\x58\xb3\x13\xc7\xe0\x69\xe9\x0f\x8c\xbf\xaf\x95\xf5\x2f\x1f\xc9\x93\x61\xf0\x0d\xd5\x5e\xf1\x5d\xca\xce\xb4\x3a\x1e\xa9\x3e\xe9\xa5\x13\xda\x1a\x7b\x08\x0e\x52\xfd\x6e\x2d\x9e\x49\xcf\x01\xa1\x15\x6e\x01\x95\x03\x98\xc3\xd1\x5b\x31\x75\xfc\xea\x3e\x86\xfe\x3f\xab\x3e\xf9\x07\x2a\x3b\xd4\x6e\x9f\x86\x42\xae\xf9\xb7\xb5\x83\x5f\x60\xf0\x6f\x91\x2f\xd1\x06\x9f\xb7\x2a\x7e\xd5\xae\xbb\xd1\x80\xc0\x6c\x79\xfc\x75\xef\x41\x95\xbb\x68\xd6\xae\xdb\x50\x0f\x67\x0f\xbf\x33\xe1\xbc\x88\xfa\xa5\x97\x4e\x69\x05\x7b\x16\x56\xce\xb3\xb0\xb0\xbe\xd1\x7c\x94\xd7\x54\x2e\x46\xae\xaf\x03\x91\x8d\x4e\xdb\xa2\xed\x8b\x3f\x1f\xfd\xaf\xfa\x53\x8a\xe3\x84\xc1\x26\xf8\x57\xc9\xbe\x5f\xd1\xd2\xd8\x43\xa5\x81\x9c\x55\x5c\xc3\x30\x78\x81\x63\x69\xa1\x00\xff\x30\xae\x07\xa7\x72\xbd\xf4\xb8\x88\xf4\x24\xbf\xdd\xf1\x8b\xc8\xe7\x0c\xb6\x70\x0c\xbe\xcb\xc0\x3f\xdc\x86\xd2\x07\x85\x16\xfc\x49\x34\xd0\xdb\x48\x46\x5a\xf1\xa6\x56\xf0\x33\xa8\x1e\x33\xd6\x5f\x91\x7c\xa3\x1c\x0f\x54\x8e\x4c\xdf\x4b\xe1\xe9\x77\x70\xcd\xf3\x62\xff\x6f\xbb\xe2\x57\xf1\x41\x70\xc1\xb8\xf1\xc3\xd2\x0d\x63\xd7\xad\x68\x2e\xeb\xde\x83\xad\x8d\x7f\xe9\x78\x35\xf7\xd3\xfe\xda\x60\x28\x34\xff\x2f\x0d\xef\xc7\xe2\x79\x89\x3f\xb6\xbd\xf0\xcb\x36\x2d\xf4\x56\x43\x83\x1c\xa0\x0d\xfe\xa1\x2a\xde\x72\x53\x36\xb0\x16\x32\x5c\xf6\x64\x6b\xf8\xa5\xdf\x33\x16\xbf\xf4\x83\xfc\x1b\x1a\xdd\x2f\xf4\xd2\xe7\x54\xbc\x91\xdf\x8e\xf8\xcb\x12\xff\x30\x40\xf0\xb6\x06\xe3\xb7\xa7\xc2\xee\x8d\xc6\xaf\x3b\x4f\xb4\x82\x5f\x40\xed\xa8\xb1\x7e\x46\x3c\xf7\x57\x37\xca\x31\x49\xff\xd2\x8e\x73\x22\x4a\x4f\x66\x1a\xbf\x13\xc7\xf9\xc5\x87\x29\x38\xef\x18\xd7\x1f\xf4\x17\x8e\x8d\x8f\x54\x6c\xee\xff\xad\x35\xfc\xc5\x3d\x38\x3a\x6f\x8e\x8e\x79\xf2\x31\xb6\xf2\x1d\x32\x9e\x53\x77\x5e\x33\xa2\x7b\x5c\x2f\x7d\x42\xda\x1d\x19\x27\x32\xcd\xbd\x79\xe6\xf0\xbb\x91\x4f\x68\xe9\xc5\x7f\x70\x58\x9d\xca\x75\x85\xda\x02\x08\xbb\x6c\xbd\x78\x1a\xc7\xd2\x46\x95\x77\x1a\xe3\x03\x61\xf0\xdb\x56\xf0\xcb\x78\x9f\xa3\xb3\x72\x7c\xbf\xf3\xf1\xfa\xe2\xbc\x24\x74\x6f\xa9\xc0\x81\x32\xd3\xbd\x8f\xa7\x65\xd0\x87\xeb\x42\xa6\x39\x77\xcd\x04\x7e\x01\xde\x01\x51\xae\x59\xaf\x2e\x95\x6b\xb4\xbc\xd6\x0f\xb5\xb7\x0b\xad\x7c\x8b\xc0\x52\xc0\xd1\x2f\x45\x31\x53\xd4\xce\xd8\x78\x63\x95\x6c\xe7\xcb\xad\xe0\x8f\x78\x69\xfe\xad\xcd\x62\x6c\x29\x5b\xc5\x27\xca\x3f\xbf\xc9\xf4\x42\x5d\x06\x58\xbc\x50\x68\xfe\x9d\x30\x03\xfe\xbf\x0d\xc1\x91\x4c\xaf\x3d\x91\xe4\x97\x24\x76\xae\x15\xef\x8c\xf2\xbf\x51\x7f\x9a\xc5\x06\x2a\x96\xcc\x42\xe5\x88\x96\xf1\xeb\xa5\xcf\x4e\xee\xff\xe6\x63\xbf\xa3\xbc\x95\xeb\xde\xc7\x46\x9e\x8d\x73\x0e\xf3\x21\x94\xf1\xdf\x43\x2a\x57\xb3\x2d\xf1\x5f\x39\x8a\xff\xfa\x60\xa9\xc5\x60\x69\x26\x8d\x3d\x1b\xd9\xdd\x89\xfa\x58\x08\xe3\xdc\xdb\xaa\x76\xf6\x0f\x49\xb4\x27\xeb\xbe\x34\x79\x4e\x3a\x91\x41\x69\x2b\xd3\xfd\xd3\xc7\xb6\x93\x83\xa1\x6e\x31\xe5\xf8\xbf\xb2\x95\xe9\xc1\xa7\xc6\x8d\x0d\x0c\xf7\x30\x2d\xb8\xcb\x6e\x01\xbb\xe2\x25\xef\xf3\xbf\xdf\x2a\xf6\x84\x18\xfa\xbf\x48\xd6\xb5\xc9\x65\x50\x0b\x2d\x74\xd6\xf7\x37\xd8\xaf\xe6\x10\xbc\xdf\x9e\xc6\xfc\x8f\xc0\xf2\x05\x59\x7c\xa6\x25\xec\xca\x86\x17\xdf\xcc\x42\xb0\x6f\xbb\xf8\x05\x0c\xf4\x33\x2c\xbd\x3e\xd6\x96\x36\xd3\x31\x13\x0b\x35\x69\x87\xc7\xb6\x93\x85\x60\xbe\x6a\xc3\x6d\x19\xbf\xd4\x7b\x4b\x73\xff\xd8\xb0\x5f\xba\x7b\xc6\xc4\xf9\xcf\xb4\xfd\x90\xe3\xe7\xb4\x64\xf7\x1b\x11\x47\xef\xf2\x2c\x3e\x35\xa9\x0e\x88\x38\xff\x6b\x41\xb1\x6f\x6c\x1b\x0c\x6a\x51\xde\x22\x9d\xb7\x9f\x18\x7f\x3e\xcc\xe2\x1a\xb9\x5e\xdf\xdc\xa4\x4f\x93\xe4\x7f\xeb\x63\xc2\xb0\xb8\x81\xc1\x80\x3d\x55\xfc\x91\x9d\x41\xef\xc9\x56\x72\x80\xca\xc7\x28\xdd\x25\x20\xe8\x19\xd7\x67\xbd\x78\xb6\xda\x1b\x29\x8e\xe4\x26\x1b\xe3\x57\x7b\x18\x42\x2f\x3d\x46\x61\x80\x8c\x6d\xc7\xd6\x6b\x27\x4e\x9c\xff\xaf\xdb\x0f\xe5\x23\xf9\x9f\x98\x2a\xf6\x91\xbe\x43\x61\x4f\x81\xd5\x16\xf2\x6e\xf9\xb8\xde\xc1\x5d\xc9\xd1\xfd\xb5\x8d\xcb\x17\xdb\xba\x7f\x5a\x5a\x06\x22\x96\x81\xda\xcf\x1a\x8b\xdf\x8f\xb1\x57\x1e\x4d\xf2\xc8\x39\x58\xb2\x23\xc3\xca\x2f\x2c\xf4\x17\xa9\xfd\x9f\xe2\x04\xfb\x3f\xf5\x8f\xd2\x59\xff\x27\xdb\x8a\x3d\xa1\x2c\x94\x0f\x17\x58\x7d\xb9\x15\x19\xd4\xf7\xff\x86\xa3\xfd\x69\xd6\x40\x06\x52\xbf\x6d\x2c\x5d\x95\xc6\x2f\xaf\x09\xad\xf2\x68\xb2\x7f\x17\x61\xd7\x4a\x77\x65\x71\x6d\x0b\xfb\x7f\xf5\x71\x57\xd8\x8b\x7f\x98\x2e\xec\x09\x31\x28\x1f\xce\xb0\xb2\xb6\x35\xdb\x93\x5e\x1b\x2b\x5b\x47\xe9\x01\x14\xcf\xee\xc3\xf5\xa1\x8d\xc1\xd5\x10\xd7\x3f\xc9\xb9\x2a\x34\xe9\xd7\xa5\xb1\x07\x77\xb7\xba\xc6\xd5\x73\x33\x91\x2f\x74\x6d\x23\x3b\x3c\x1d\x64\x83\xb7\xbb\xd0\xaa\x4b\x54\xcd\x43\xa9\xc5\xb5\xb1\xa4\x6a\x57\xd2\x32\xc0\xe2\x45\x02\x2b\x3f\x86\x24\xde\xd0\x2a\xf7\x26\x75\x3d\xed\x63\x77\x54\x8e\x17\x6b\xaf\xd9\x58\xb9\x78\x26\x70\x8f\xa6\x10\x6d\x1c\xb8\x44\x60\x65\x9d\xd2\xf1\xf2\x24\x39\xe9\xba\x9f\x98\x8e\x17\x72\x71\x3e\x72\x2f\x28\xef\x9c\xc4\x95\xd2\xde\x4a\x9d\x6f\x0d\xbb\x17\xaa\xba\xb2\xa1\x90\x6b\xd5\x7b\x6c\x28\x1f\x32\xf3\xd8\xeb\x64\x43\x99\xa9\xda\x9f\x4a\x4d\xda\xbd\xa4\xde\x4b\xd9\xa7\xb1\x39\xca\x11\x3d\xd8\x92\x96\x41\x9a\xa2\x7d\xd6\xa6\x3e\xad\x94\xaf\x1f\xd7\x40\x0d\xc5\x71\x51\xf0\x9a\x8c\x47\x19\xd4\xda\xca\xed\x4f\x37\xc9\x7e\x33\x18\xfc\x80\xc0\xda\x15\x42\x2b\xdd\xc7\xd0\x7d\x4a\x8d\xcd\x60\xbc\xce\x25\x75\x7f\xf5\xda\xbe\xb1\xeb\x52\x0e\xf2\xdd\x5c\x2f\xdd\xdf\x87\xcf\x8d\xe4\x31\x93\x7b\xe5\x5f\x15\xdb\x78\x1b\x05\xba\x01\xc7\xe2\x8d\x36\x56\xce\xe7\x30\xb8\xe7\xec\xa1\x6e\x4e\x06\x84\xef\xb4\x61\x60\x3f\x5b\x0f\x4e\xe2\x58\x59\xc8\xd0\xfb\xa1\xd0\xfc\x9b\x84\x56\x7c\x80\xa3\xe3\x09\x2c\x0d\x73\x1c\x58\x93\xed\x1a\x7c\x3f\xc4\x3a\x6f\x63\xf9\x57\x1c\x07\x9e\xb7\xb0\x50\xe5\xba\xff\xb8\x9c\x03\x16\x7a\x8b\x38\x96\xbf\x65\xeb\xde\xa7\x6c\x58\xfe\x3e\x01\xc3\x7c\xb6\xb1\x35\x22\xc6\xd8\x4e\x94\xd2\xcf\x19\x86\x71\x44\x36\x0b\x2d\xd4\x9e\x84\x5d\x59\x08\xe7\x09\x78\x31\xf6\x93\x42\xcc\xc1\x46\x33\x07\xe1\x8e\x2d\xb0\x43\x42\xe6\xee\x4e\x29\x3d\xc3\x34\xcd\xa3\xb6\xb9\xf3\xd3\x43\x48\x08\xa9\x98\xa6\x19\x1a\x86\xf1\xac\x61\x18\x8f\x12\x42\x16\x51\x4a\xbf\x4a\x29\xfd\xb8\x94\x8b\x61\xec\xb2\xc7\xce\x1c\x7a\x73\x39\x98\x18\xe3\x65\x80\x99\x0c\xec\xdc\xdb\x3b\x87\x13\x42\x0e\x34\x0c\xe3\x58\x42\xc8\xb9\x84\x90\xef\x52\x4a\x6f\x27\x84\xd4\x08\x21\xaf\x5b\x96\x15\x12\x42\xce\xdc\x6e\x08\x27\x21\xd3\x34\x2f\x93\xf8\x29\xa5\xd1\x47\xfe\x9f\x7c\xe4\x77\x42\xc8\x1b\x94\xd2\xe7\x09\x21\x2b\x29\xa5\x25\x42\x48\x3e\x93\xc9\x3c\x46\x08\x79\xd8\x30\x8c\x47\x28\xa5\x4b\x0d\xc3\xf0\x62\x7c\x6b\x33\x99\xcc\x26\x42\xc8\xa8\xb6\x92\xb6\xe3\xf6\x5e\xe4\x9c\xcf\x68\xad\x57\x3b\xc4\x18\xdb\x9b\x52\xfa\xa6\xec\x73\xb3\x4f\xba\xff\x93\x7d\x26\x6a\x47\xca\x22\x93\xc9\x5c\x37\xdb\x98\xc7\x52\x26\x93\xb9\x45\xf6\x6d\xa2\xbe\x4f\xc7\x47\xca\xc7\xb2\xac\xed\xba\xd6\xb7\x42\xa6\x69\xce\xa7\x94\xbe\x31\x93\xd8\xe3\x79\x70\xfd\x6c\x63\x6d\x46\x94\xd2\xaf\xcf\x94\x0e\xc4\x73\x63\x2d\x21\x84\xce\x36\xce\x89\x88\x10\xf2\xdb\xc9\xe6\xf0\x54\xb0\xc7\x6b\xcb\x91\xb3\x8d\x6f\x32\xa2\x94\x9e\x4e\x29\xdd\x3a\xdd\xf8\x09\x21\x4f\x46\x47\x99\xde\xc2\x64\x9a\xe6\xa9\x84\x90\xd7\x64\x7f\xe5\x1a\xd6\x8a\x3d\x9f\x6c\xbe\x13\x42\x5e\x4e\xcd\xfd\x7b\xa5\xbf\x35\xdb\x38\x1b\x91\xc4\x4e\x29\xdd\x12\xf7\xf9\xa9\x79\xf3\xe6\xed\x27\xaf\x19\x86\xb1\x2a\xe5\x07\xb4\x63\xe7\xa4\xce\xdf\x48\x08\xd9\xdd\x30\x8c\x6f\x27\x7e\x00\x21\xe4\xbe\xb7\x9a\x0c\x0c\xc3\x18\xc1\x4e\x29\x5d\x43\x29\xdd\x2f\xf9\x6d\xee\xdc\xb9\xf3\x28\xa5\x5f\x91\x7e\x4f\x33\x7f\x26\x7d\xdd\x30\x0c\xa9\x37\x37\x9b\xa6\x79\x74\x9a\x07\x21\xe4\x3f\xd3\x32\xa0\x94\x8e\xdb\xfb\x9c\x0d\x32\x4d\xf3\xa3\x29\xec\x6b\x29\xa5\xfb\x37\xb9\x75\x07\xe9\xb3\xcb\x35\x82\x52\xba\x38\xf6\x93\x0b\x72\x5e\x67\x32\x99\x7b\x32\x99\xcc\xd5\xa6\x69\x9e\x43\x29\xdd\xad\x19\x2f\xe9\x07\xa7\xe4\x77\xcf\x2c\xc9\xa0\x4b\x62\x36\x4d\xf3\x0b\x84\x90\x85\x84\x90\x37\x5b\xc0\x3e\x6d\x94\x96\x81\x61\x18\x7f\x35\x0c\xe3\x93\xa6\x69\x9e\x6f\x9a\x66\xdb\x7b\x1c\xed\x52\x26\x93\xd9\x59\xea\x5e\x03\xff\x7e\x65\x5a\xe7\x67\x9a\xe2\x78\x68\x6b\x7a\xde\x10\x42\x5e\x95\x71\xe1\x4c\xf2\x95\xf3\x38\x8e\xbd\x46\xad\x4d\xa6\x69\x7e\x78\x26\xf9\x36\x22\xc3\x30\x96\xa4\x6d\x6a\x6c\x47\x9e\x17\x42\x8c\xdb\x7f\x98\x2e\xca\x64\x32\xb7\x8e\xf5\xef\xe2\x3e\x7c\x64\xa6\x78\x36\x23\x42\xc8\x3f\xc6\xae\x29\xf2\x7b\x6f\x6f\xef\xa1\x33\xc5\xd3\x34\xcd\x6f\x36\x1a\x7f\xc3\x30\xfe\xd7\x4c\xf1\x6c\x46\x94\xd2\x3f\xa4\xc7\x22\xf6\x39\x36\xce\xa4\x7f\xcc\x18\xcb\x10\x42\x96\xa5\xe7\x3f\x21\xe4\x7b\x33\xc5\x6f\x22\xb2\x2c\x6b\x1f\x42\xc8\x70\xda\x0e\x19\x86\x71\xfe\x4c\xf3\x95\x36\x50\xda\x7e\x4a\xe9\xe5\x94\xd2\xe3\x67\x9a\xdf\x24\x7d\xb1\x4c\xd3\xbc\x58\xf6\xc5\x30\x8c\x29\x9d\x05\xdd\x3b\xca\xbf\xaa\x77\x05\x4c\xe7\x7b\x02\x04\x0c\xf7\xdb\xfa\xc0\xc9\x36\xae\xba\x98\x43\x4d\x30\xf0\xde\x9b\xc5\x35\x5f\x12\x5d\xe5\x63\x6d\x58\xc5\xa6\x8d\xd1\x28\x9e\x41\x0f\xc7\xda\x45\x51\x7d\x14\xfa\x6f\xd8\x38\x14\xf6\xe1\xf3\x21\x87\xda\x7b\x38\xba\x97\xf6\xe1\xc6\x78\x1f\x2d\x78\x59\x68\xe5\xbf\x08\xbd\x7a\x06\xc0\x62\x7d\x3a\x78\xdb\x58\xf9\x02\xc3\xca\x53\x6a\x4f\xa4\x16\xd6\x6b\xd5\x06\x42\x1b\x2a\x87\x72\xf4\x2e\x4e\xea\x24\xd5\x5e\xe7\xf2\xe4\x9c\x7b\x5e\xe8\xc5\xe3\xa6\xca\x37\x0b\x0f\xce\xe3\x5a\xf5\xbf\xb3\x23\x7b\x31\x63\xf7\x86\xc6\xf3\x1f\xbb\x6f\xad\xea\xf7\x4a\x57\xb6\xcb\x9b\x82\x43\x04\x96\x0a\xc9\xf9\xa8\xa4\x66\x47\xed\x97\x7b\xf5\xf6\x47\xf1\xcf\xc7\x7b\xc0\x43\xf1\x99\x19\x27\xda\x2f\xc9\xe2\x53\xf2\xfa\xef\x5b\xe5\x1d\xd5\xa9\xe9\xfe\xe3\xaa\x4e\x29\x1f\xd7\x7d\x05\xcf\x0a\xbd\xf8\x69\x8e\xce\x85\x1c\x83\x8d\x3c\xea\xcf\x68\xfe\xf1\xfe\xcc\x90\xd0\xbd\xb3\x38\xfa\x97\x5a\x58\xdc\x9c\xec\xd7\x64\x71\x8d\xfc\x7b\x4d\x2b\xfc\x19\x3a\x3f\x4f\xd7\x46\xa8\x1a\xeb\x7a\x8d\x19\x47\xef\x6a\xb5\x7f\x31\x9a\x7f\xb4\x77\x93\xda\x03\x62\x9a\x7b\x7b\xbd\x5e\xd7\x89\xce\x76\x73\xdd\x99\x70\xdf\x5e\x40\xe9\xa8\xfa\x7e\x70\x32\x8e\xcb\xe3\x5a\x8f\x10\x55\x7d\x94\x77\x8f\x1a\xdb\xb1\xfc\x97\x87\x0c\xdd\xef\x80\xda\x7b\xd8\x85\xa1\xe7\x26\xf5\xcb\xf5\xba\x09\xef\x05\x13\x6a\x46\x33\xfe\x5c\x77\x1e\x6c\x54\x1f\x17\x61\x83\xe0\x08\xa1\x07\x67\xc5\xb5\x27\x0d\xc6\xdf\x55\xf5\x6a\xe0\xf7\xab\xb3\x5c\x63\xcf\xd6\x25\x75\x6f\xaa\x8f\xe3\x78\x83\x7f\xe0\xe8\xb3\x29\xf5\xb3\x08\xd1\xb9\x39\x70\x8e\xe5\x18\x9c\xab\xf4\xa2\x11\x7f\x27\x9a\x9f\x14\x4a\xfb\x33\xf4\xaf\xa8\xcf\x09\x37\x55\x5b\x5e\x0e\x2d\x2c\xac\x61\xb0\x74\x5c\x9c\xa9\xda\x49\x74\xae\x12\x9f\x7d\x2c\x8f\xcc\x69\x06\xde\x31\x42\xf7\x3f\x9b\xf0\x6a\xcc\xbf\x12\x9a\x10\xcc\xe7\xe8\x7d\x5b\xed\x6f\x95\xe2\xfd\xbd\xa4\xbe\x21\x3e\x03\x09\xa5\xf7\x8e\x1b\x7b\x74\x7e\xa9\xf4\xb8\x12\x72\xcd\x79\x48\x40\xf9\x00\x1b\x82\x13\x19\x06\x1b\xa2\xf7\x23\xb4\xc9\x3f\x8b\xcf\x44\x67\x2d\x6d\xf0\x0e\x91\x7a\xc5\x30\x58\x9d\xd4\x68\x70\x3d\xf8\xe4\x78\xbd\xf7\xaf\x4f\xf6\xe6\x98\xee\x9f\x50\xd7\x63\xe7\xbe\x3e\x7c\x21\x64\x50\xfc\x40\xeb\xfc\xdd\x6f\xe5\xf0\x35\x79\xed\x6b\x75\xf9\x3a\xdf\x57\x7b\xa9\x2b\x65\xbf\xc6\xad\xe7\xe9\x79\xc5\xd1\xbf\x21\xa9\x05\x65\x7a\x70\x4e\x1f\x6e\x08\x85\xee\x1e\x27\xf4\xe2\x67\x5a\xe0\xbf\x2f\xc7\xfc\x0f\x6c\x5c\xb5\x45\xea\x14\xc0\x65\x68\x42\x29\xc7\x30\x70\xe5\x78\x46\xe3\xa2\x7b\x67\x35\xe0\x7f\x5e\x7d\xfc\xe5\xb8\x07\xeb\x84\x16\xfc\x6d\x3e\x2c\x7e\x9b\xe4\xc1\x75\xef\x78\x8e\xfe\x85\xb1\x2d\x69\x68\x7f\xe5\x5f\x13\x7c\x79\xed\x6b\x02\x9e\x58\xc0\xc0\xdd\x5b\xd5\xb0\x7a\x1b\x95\x2e\xa8\x77\x7f\x30\x08\xc6\xf9\x95\x36\x78\xbb\x73\x74\x47\xce\x93\xaa\xba\x87\xe1\x50\xe8\xc1\xd2\x1c\xe4\xbb\x0f\x86\x70\x07\x0e\xee\x7b\x18\x56\xd6\xab\xdf\xc6\xda\x3f\x39\xbf\x03\xd7\x86\x32\x3b\x18\x96\xee\x20\xf5\x87\x61\xf9\x05\x75\x8e\xc4\x8f\xdb\xac\x26\xf5\x6c\x5d\x8d\xe6\x20\xd3\xdc\x9b\x47\xd7\x06\xe6\xc3\x2c\xae\x93\xf3\xe7\xa2\xba\x9c\x0a\xd7\xc9\x79\x3c\x9a\xff\x0a\x55\xdb\xa5\xbb\xe7\x8c\xdc\xa7\x39\xb7\x8d\xae\x31\xcb\xc7\x35\x2c\xce\x85\x8d\x78\x47\x73\x00\xfc\x7e\x86\xc1\x2b\x6a\xbd\xcb\x8f\xc8\x99\x6b\xfe\x6d\xfd\x10\x46\x67\xbf\x6d\xdd\x3f\x5d\xe9\xd1\x8a\xd0\x86\xc1\x43\x38\xba\x0b\x65\x1f\x05\x56\x36\x72\x28\x45\x7b\xc7\x7d\xb0\xc2\xe2\xe8\x0f\xd6\x6b\x74\xf3\xd1\xfd\x0c\x5d\x77\xb2\x33\xe4\xea\x1c\xee\x60\x98\x3e\x13\x1e\xd7\x9c\x0d\x08\xad\x74\x7b\x0e\x96\xec\x28\x74\xe7\x33\x7d\xb8\x3e\xe4\x50\x7a\x0f\x43\xf7\x1b\x36\x0e\x6f\xe1\xb0\xec\x40\x13\x0a\xf3\x85\x5e\x7e\x84\xa3\xf7\x6c\xbd\x8e\x24\x9f\x9c\x2d\x5a\xc7\xa0\xbc\xd7\x44\xbc\xd3\x7d\x90\x63\xa7\xd6\x7e\x7f\xa4\x0f\xd1\x5a\xaa\x97\x96\x4a\x9d\x16\xe8\x7d\x89\x77\x95\x8f\x66\xe8\x9f\x6f\xc2\xb2\xa3\x38\x14\xf6\x54\xe3\xbd\x32\x65\x6b\x4a\xd1\x33\x0c\x2b\xbe\x0d\x4e\x5b\x71\x7c\x16\xdc\xdd\x6c\xac\xfd\x4a\x60\xf0\x62\x7d\xcf\x7e\x30\xec\xc3\xe7\x42\x8e\xc5\xe2\x6e\xb0\x74\x6e\x72\x4e\x83\x81\xf3\x2e\x8e\xa5\xcd\xaa\xfe\x69\x79\x5c\x33\x11\xf9\x1e\xc3\x1c\xab\xdf\x34\x60\xc9\x94\xdf\x61\xb1\x3b\x84\x44\x40\xb8\xc0\x86\x57\x2e\xe6\xf0\xd4\xaf\x85\x56\x7d\x40\x68\x2b\x57\x09\xad\xf6\x67\x39\x27\xfa\x60\xc3\xae\x5c\x1b\xf4\x84\xb6\xa2\xcc\xb5\xda\x5f\x39\x3c\xf3\x13\x0e\x9b\x3f\x6f\x43\x78\x68\x06\xca\x3b\x4f\x95\x6f\x42\x86\x09\x1f\x36\x39\x7c\xd3\x10\x70\x6c\x4f\x16\xf6\xcd\xd8\xc0\x4c\xf3\x48\xc3\xdc\xf1\x96\x9c\x80\xc5\x73\x04\xdc\xdd\x23\xe6\x2c\xe6\xa6\xd9\x6f\xf4\x70\x10\x44\xc0\x01\x44\xc0\xff\x33\x2c\xfc\x01\xa5\xd0\x34\xe7\xd5\x2a\x51\x4a\xdf\x2d\x63\x53\x15\x0b\x91\x30\x63\xf4\xbe\x4a\xc8\xbc\xb5\x84\x74\xd7\x08\x31\xaa\x84\xf4\x54\x33\x74\xde\x60\xc6\xc8\xac\x23\x24\xb3\x39\xde\x47\x93\x31\xe3\x2b\x32\xa6\xd9\x56\xfe\x71\x1f\x6e\x1f\x1b\x93\x4e\xb4\xbf\x19\xdf\x7b\xc9\x74\xf0\x86\x38\x1e\xa2\x94\x0e\xb6\x92\x6b\x8e\xfb\x72\x07\x00\xb4\x7d\x36\x78\x02\xfe\x3b\x13\x42\xaa\xa9\x7c\x68\x33\xbe\x49\xbc\xda\xf0\x4c\xd1\x54\x48\xc6\xe6\xa6\x69\x0e\x11\x42\x1e\xa2\x94\xee\x9f\xc9\x64\xae\x26\x84\xbc\x30\x36\xe7\x4c\x08\x59\x49\x08\x59\x98\xc9\x64\xde\x45\x08\xd9\x40\x08\x69\xe9\x5c\xdc\x04\x98\x2d\xcb\xb2\xde\x27\x71\x1b\x86\xf1\x78\x2e\x97\x1b\xa9\x71\x30\x0c\xc3\x94\x31\x32\x21\x44\xc6\xcb\x9f\x35\x4d\xf3\xe8\x74\xce\x36\x93\xc9\xec\x65\x18\xc6\x46\xc3\x30\x6e\x34\x4d\xf3\xb0\x76\xf3\xfa\x96\x65\xed\x63\x18\xc6\xba\x58\x8f\x82\xfe\xfe\xfe\xb6\xdf\xfb\x21\xfb\x40\x08\x79\x23\xce\xa7\x3e\xda\x4e\x1f\x08\x21\x27\xcb\x39\xc4\x18\x93\xfc\x7f\xde\x2e\xef\x54\x3b\x55\xd9\x4e\x9c\xc3\x69\x39\x36\x16\x42\xcc\xa1\x94\xfe\xc8\x30\x8c\x3f\xf7\xf6\xf6\xee\x3d\x55\xfe\x72\x8c\x4c\xd3\xbc\x5b\x8e\x53\xb3\x7b\x64\xe3\x26\x00\x1c\xb4\x8d\x79\x02\x06\x83\x59\xa1\xd7\xce\xb4\x71\xf5\x55\xa2\xab\x74\x14\xd3\xfd\xd3\xb2\x38\xfc\x1d\xa1\x0f\x7c\x64\xa2\x98\x63\x32\x12\xe0\x1d\x20\xb0\xfa\x7b\x81\xc5\x4d\x72\x0d\x92\xb1\xbe\x40\xf7\xff\x5b\xe8\xfe\xac\x0f\x5f\x4e\xce\xc9\x3e\x27\xb0\xf2\x23\x0e\x8f\x89\x76\xda\x96\xbe\x0b\xc3\xf2\xeb\xaa\xee\xb3\x3c\xe2\xc3\x09\xdd\xff\x0c\x47\xf7\x7b\x49\x4d\xac\x7a\xb7\x9d\x8c\x63\x2b\xeb\xb8\xee\x7f\xb4\xb5\xb6\x9d\xef\xd6\xeb\x49\xa3\x18\x70\x63\xe2\x7f\xd7\xdb\x4f\xce\x1c\x17\x5e\x54\xf1\x46\x25\x8e\xf7\x0a\x13\xbe\xe3\x44\x60\xe1\x8b\xca\x97\x92\xcf\xf8\x5b\x85\xee\x7d\xa4\x0f\x8a\x96\x85\x85\x42\x16\x9f\x1d\x69\x5f\xae\xd5\xd2\xa7\x93\xf2\x17\xe8\x7e\xa5\x5e\xa7\x3d\x18\xb2\x2e\xef\x98\xc6\xf2\xce\xef\x21\x63\xe7\xa4\xde\x51\xa0\xbf\x85\x43\x70\x10\x28\x9f\xee\x7e\xe9\xf7\xd4\xdb\x7f\x41\xe2\x8a\xea\x7d\x85\xee\x9e\x99\xc4\xbb\xea\xdc\x88\x3b\xdc\xe8\x5c\xa1\x85\xce\xa2\xb4\x8f\x19\xc7\xb7\x37\xda\x5d\xfe\x87\x92\x1a\xc8\xba\x7c\x94\x5f\xaf\xfc\x0b\xc7\xab\xe7\x41\x92\xf7\xe1\x78\xa3\xea\x62\xa5\x9f\xcc\xb0\xb0\x21\xc1\x98\xe4\x22\x98\x96\xbf\x59\xe8\xde\x29\x8d\xdb\x77\x43\x06\xfe\xe1\x1c\x9d\xa2\x1d\xd5\x32\x0e\x45\xfd\x57\x67\xc0\x9d\x65\xa3\x65\xe3\x1f\xa6\xce\x3c\x04\x5b\x05\x3a\x57\xca\x38\x46\x60\xed\x0d\xa6\x15\x6e\xb1\xf5\xe0\xa4\x91\xdc\xcf\x98\xfe\x2b\xbf\x3d\x3f\xc0\xd1\x5f\x27\x7d\xe4\x08\x6f\x14\xe7\xe7\x5f\x1a\xfd\x5e\xa1\xd2\x02\x15\x7f\xbb\x9b\xea\x7a\xb4\xac\x22\xb4\x65\x0f\xd8\x7a\x70\x62\xf3\xf6\x9d\xff\x2d\xf5\x4b\xca\x16\x94\x3f\xb6\x97\xbc\xd7\xc2\xc2\x66\x0e\xb5\x91\x39\x61\x81\xb7\x8f\x8a\x47\x65\x1c\x54\x5a\x2c\x7d\x69\x19\x57\xca\xe7\x84\x1e\x9c\x99\x8d\xfd\xea\xb4\xfe\x4b\x59\x5a\x50\xf8\x90\xd0\xfc\x5b\x05\xb8\xfb\x73\x2c\x9f\xc7\xf5\xe0\xfe\x78\xdc\x9e\x19\x7d\x56\x33\xec\x92\xf1\x85\xaa\xf5\x5c\x9e\xe4\x5d\x2e\x8d\xf2\x11\x5d\xc1\x11\x02\x2b\x2f\xab\xb3\x7e\xaa\x7d\xf9\xbb\x85\xee\xea\xe8\x2c\x02\x04\x3d\x16\xfa\x8b\x64\xdc\xaa\x9e\x1f\x92\x71\xf0\x9f\xc7\xeb\xbe\x77\x81\x6a\x37\x3f\x52\x3b\x9b\x9c\xcd\x60\xda\xb2\xbb\x73\xb8\x49\xc6\x77\x9f\x96\xf3\x2f\x87\x9b\xa5\x8e\xfc\x7b\x84\xbd\xcb\x39\x32\x8b\x6b\x47\x72\x02\xd1\xdc\xee\x0a\xde\x3f\x7e\x06\x2c\xe9\x12\xfa\xb2\x07\xd4\xfc\x2a\xc4\xb1\x60\xf1\xf7\xd1\xf8\x42\xf9\x10\x81\xc3\xaf\x0b\x74\xbe\xc4\xb1\xf0\x2b\x1b\x87\x56\x49\x3f\x59\xe8\xe5\xb3\xb8\xee\xdd\x9f\x9c\xd5\xcb\xe2\xd3\x21\x43\xa7\xe9\xba\x91\x05\x77\x9e\xd0\x8a\xf7\x2a\x9b\x52\x8b\xc6\x34\x8a\x9f\xd0\xbb\x44\xc6\x8d\x5c\x2f\x7d\x52\x60\xf0\x45\x13\x1e\xdb\x57\x60\x70\xad\x94\x89\x1a\xfb\xc1\x38\x1f\x55\xbc\xb6\x95\x77\x9f\x70\x2c\x9f\xcb\xb4\x95\x7f\x67\x5a\x6d\xbd\x9c\xfb\xca\x76\x16\x7f\x9c\x83\xa1\x1d\x73\x30\xd4\xcd\xb5\xe0\xaf\xb9\xe8\x5a\x25\xb4\xb4\xc1\x35\x42\x5b\x71\x67\xab\xef\x53\x48\xc8\x34\x61\x5f\x36\xf7\xa2\x0f\x88\xae\x47\x8e\x15\xf0\xf4\x19\x36\x6c\xb8\x44\x40\x38\x27\x07\x61\xce\x86\x8d\x17\x67\x61\xf5\xa9\xac\xeb\xde\x63\xac\x9e\x33\x3f\x28\x7d\xe7\x76\xda\x86\x68\x0d\xed\x59\x48\x68\xf7\xeb\x84\xbe\xbd\x60\x50\xed\x0e\x62\xc1\x22\xc3\xe8\xb9\x91\xd0\xb9\xd7\x67\x2c\xb8\x8e\x50\xed\x2f\x86\xb1\x53\x91\x9a\xf3\x42\x4a\x7b\x1b\x8c\xe7\xc4\xd4\xdd\xdd\xdd\x9d\xae\x65\x68\xb4\x97\x1f\xfb\x10\x4b\xa6\x5a\xa7\x42\x29\xfd\x54\xe2\x07\x34\xaa\x89\x88\xdb\x9f\xd2\x5e\x93\x65\x59\x07\x13\x42\x2a\x94\xd2\x0b\x08\x21\x77\x25\xfb\xa7\xb1\x1f\xfa\x2a\xa5\xf4\x5a\x4a\xe9\xd7\x09\x21\x05\xd3\x34\x5b\x5e\x87\x2d\xcb\xea\x33\x4d\xf3\x0b\x99\x4c\x66\xb9\x61\x18\xa7\xa6\xae\xef\x43\x29\x3d\xd1\x34\xcd\xe3\x4c\xd3\x1c\x71\x18\x08\x21\xff\x4a\x08\xc9\x9b\xa6\x79\x8e\x94\xe9\x64\xed\x67\x32\x99\x7b\x84\x10\x52\x06\x57\xb5\xda\x27\xe9\x03\xc7\xcf\xfc\xc7\x64\xf7\x4a\xbf\x94\x10\xf2\x80\x61\x18\x07\xb5\xd1\xfe\x29\xa6\x69\x3e\x48\x29\x1d\xa7\x47\xd2\x4f\xea\x8e\xf7\x54\xda\xf3\x93\x2e\x43\xa1\x57\x4f\xb1\x71\xf8\x5a\x8e\xfe\x85\x2a\x5f\xb0\xf2\x6a\xd1\x55\x3e\x76\xb2\x27\x05\x3c\x71\x98\xc0\x52\xa1\x0f\x9f\x0f\x73\xf8\xb2\xb4\x5b\xbf\xe1\x5a\xfe\xce\x1c\xbe\xa4\xe2\x70\xbd\x7c\x3f\x87\x7f\x34\xac\x97\xb7\xc0\x39\xd2\xc6\xea\x2b\x1c\xfd\x2d\x96\xe6\xdc\xc1\xb1\xb6\x99\xa1\xfb\x73\xa6\x39\xb7\x0a\x2c\xbf\x24\xdb\x51\xe7\x1a\xca\xcf\x30\x70\x47\xf9\x98\xd2\x3e\x31\x74\xd6\x4a\x3b\xc6\xf5\x7c\xf4\x7e\x09\x0b\xf3\xc3\x1c\xdd\xeb\xb8\x56\xb8\x97\x6b\xf9\x87\x21\xb2\x2f\xf9\x41\x65\xeb\x96\xb9\xf3\x53\xef\x2c\xe0\xe8\x7c\x4d\xd9\xac\x28\x2f\xb6\x89\xa3\xfb\xf9\xf8\xbd\x33\xd7\x08\xcd\xb9\x35\x5a\x97\xb0\x70\x2e\x8f\xfd\xa1\xc8\x9e\xeb\xce\xd9\xc9\xf3\x4c\x77\x9e\x10\x58\x5c\x27\xd0\xf9\xa5\xf2\x9b\x9c\x7f\x8a\x7d\x8b\x6b\x84\x56\xb8\x85\x63\x7e\x0b\x47\xe7\x5f\x2c\x74\x5f\x91\x76\x96\x61\xe5\x55\xae\x39\x37\xd5\xf9\x17\x86\x2c\xcd\x7d\x0c\x94\xcf\xf2\x27\x86\xee\x15\xd1\xd9\x4b\xf4\x7e\x26\xfd\x21\x65\xd7\x9d\x2b\x05\xba\x91\x8d\x66\xe8\x3e\x65\x69\x85\x25\x23\xfc\xb1\xf0\x3b\xb9\x56\x30\xac\xd4\xb8\xee\x9e\xca\xbb\xfc\xa3\x55\x7e\x3d\xff\x0b\xae\x39\xb7\x31\x74\x5e\xb7\xc0\x3d\x98\xa3\x77\x2e\xc3\xd2\xea\x48\x4e\xe8\x5d\x5e\x1f\xb7\xc2\x61\xd2\xae\xf7\xe1\x3a\xb9\x86\x45\xe7\x5d\xa5\x1c\x85\xe6\xde\x6a\xe9\xce\x63\x1c\xdd\x5f\xc7\x72\x5a\x21\xfd\x35\x86\xee\x6b\x7d\xe0\xec\x9a\x1e\x03\x8e\xcb\xce\x13\x58\xd9\xaa\xde\xa9\x5c\x5e\xc5\xd0\xb9\x84\xa1\x7f\x3e\x47\xef\x3c\x8e\xce\x57\x05\x56\x9f\x8b\x7f\xdb\x24\xf4\x42\xc3\x7d\x7a\x1b\xf2\x87\xda\x58\xfb\x89\x80\xf5\x0f\x08\x58\x7f\xdf\x7c\x08\x7b\x04\x84\x7b\x64\x61\xc3\x23\x02\x9e\xb9\xcf\xc6\xd2\x55\x0c\x96\x4e\x18\x5f\x64\x2c\xb8\xd0\xb4\x76\x59\x44\x7b\xf7\xfe\x21\xed\xdd\xef\xdb\xb4\xf7\xc0\x2b\xa8\xb1\xd7\x7f\x99\xe6\x2e\x37\x64\x18\x9c\x36\xd1\xb3\xa0\xf6\xd6\x0f\xb5\x2c\x1a\x5a\x96\x11\x9a\xa6\xfa\x58\x16\x89\x72\x19\xd2\xc6\x4c\xf6\xbc\x61\x18\xc7\x19\x86\x71\x33\xa5\xd4\x4d\xc5\xd8\x8f\x52\x4a\x17\x53\x4a\xdf\xdd\xec\xb9\xb8\x3e\xeb\x7a\x42\xc8\xf5\xb1\xdd\xee\x8a\x6d\xe5\x81\xf2\xf7\x9e\x9e\x9e\x5d\x08\x21\x77\x12\x42\x7e\xd6\x28\xbe\xec\xe9\xe9\x11\x94\xd2\x9a\x8c\xa7\x9b\xf1\xa0\x94\x9e\x44\x29\x2d\x19\x86\xb1\x5d\xde\xd1\xda\xa1\x0e\x75\xa8\x43\x1d\xea\x50\x87\x3a\xd4\xa1\x0e\x75\xa8\x43\x1d\xea\x50\x87\x3a\xd4\xa1\x0e\x75\xa8\x43\x1d\xea\x50\x87\x3a\xd4\xa1\x0e\x75\xa8\x43\x1d\xea\x50\x87\x3a\xd4\xa1\x0e\xcd\x0c\xfd\x4f\x00\x00\x00\xff\xff\xbe\x63\xec\xab\xdc\x80\x00\x00"), }, "/index.html": &vfsgen۰CompressedFileInfo{ name: "index.html", - modTime: time.Date(2018, 10, 7, 17, 2, 28, 730961917, time.UTC), - uncompressedSize: 492, + modTime: time.Date(2018, 12, 23, 12, 50, 1, 999259338, time.UTC), + uncompressedSize: 1995, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xc1\x6e\x1c\x21\x0c\x86\x5f\x85\xd2\x6b\x66\x48\xa5\xa8\xda\x4a\xc0\x03\xf4\xda\x53\x8f\x1e\xf0\x2c\xde\x30\xf6\x08\x3c\xb3\xdd\xb7\xaf\x66\x37\x89\x12\x0e\x48\xfe\xb0\x3f\x59\x3f\xfe\x5b\x96\xa4\xb7\x15\x4d\xd1\xa5\x46\x7f\xdc\xa6\x02\x9f\x83\x45\xb6\xd1\x17\x84\x1c\xfd\x82\x0a\x26\x15\x68\x1d\x35\xd8\x4d\xe7\xe1\x64\xdf\x28\xc3\x82\xc1\xee\x84\xd7\x55\x9a\x5a\x93\x84\x15\x59\x83\xbd\x52\xd6\x12\x32\xee\x94\x70\xb8\x17\x4f\xc4\xa4\x04\x75\xe8\x09\x2a\x86\x1f\x4f\xbd\x34\xe2\xd7\x41\x65\x98\x49\x03\xcb\x57\xa7\x16\x5c\x70\x48\x52\xa5\x7d\xd2\x7e\x7f\xbe\x1f\x1b\x7d\x25\x7e\x35\x0d\x6b\xb0\x0b\x30\xcd\xd8\xd5\x9a\xd2\x70\x0e\xd6\xbd\x83\xf1\xd2\x85\xbf\xb4\xf6\x22\x4d\xd3\xa6\x86\x92\xf0\x47\xff\x0c\xfb\x51\x8f\x94\x8e\x1d\x94\xb4\x62\x3c\x93\x0e\xd3\x76\x36\x57\x9c\x36\xf2\xee\x01\xbd\x7b\x04\x32\x49\xbe\x45\xcf\xd2\x53\xa3\x55\xe3\x5f\xd9\x0c\x23\x66\xa3\x62\x90\x61\xaa\x68\x7e\xc3\x0e\x7f\xee\xaf\x07\x6c\x1b\x1b\x2d\xd4\x0d\xac\xeb\xe8\xdd\xc7\xa0\xcf\xb4\x1b\xca\xc1\x36\x11\xb5\xd1\xbb\x4c\x7b\xf4\xfd\x6d\xee\xb6\x1e\x31\xe0\x3f\x75\x17\xd8\xe1\x41\xad\xe9\x2d\x05\xeb\xba\x82\x52\x72\x97\xee\x16\x20\x1e\x5f\x5e\x4e\xa7\x5f\xd3\xf3\xcf\xf1\xd2\x0f\xcd\xbb\xde\x3d\x16\x75\xf7\xcf\xfd\x1f\x00\x00\xff\xff\x4e\xa4\xf6\x74\xec\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x6d\x8b\xe3\x38\x12\xfe\x2b\x8e\x0e\x8c\x45\x2b\x4a\xd2\x0c\x37\x43\x62\xe5\xbe\x0f\x1c\x73\x30\xf7\x65\x31\x66\x50\xe4\x52\x5b\xdd\x8e\x64\xca\xe5\x64\x9b\xb4\xff\xfb\x22\x3b\x4e\xba\x77\x67\xd8\x0d\xc1\x96\x4a\xf5\x54\x3d\xf5\xa2\x72\xbe\xa8\x82\xa1\xd7\x16\x92\x9a\x8e\xcd\x3e\x8f\xcf\xa4\xd1\xfe\x49\x31\xf0\x6c\x9f\xd7\xa0\xab\x7d\x7e\x04\xd2\x89\xa9\x35\x76\x40\x8a\xf5\x64\x97\x5f\xd8\x55\xea\xf5\x11\x14\x3b\x39\x38\xb7\x01\x89\x25\x26\x78\x02\x4f\x8a\x9d\x5d\x45\xb5\xaa\xe0\xe4\x0c\x2c\xc7\x8d\x70\xde\x91\xd3\xcd\xb2\x33\xba\x01\xb5\x11\x5d\x8d\xce\xbf\x2c\x29\x2c\xad\x23\xe5\xc3\x47\x9b\x54\xc3\x11\x96\x26\x34\x01\xdf\x99\xfd\xd7\x7a\xfc\xb1\x7d\xde\x38\xff\x92\x20\x34\x8a\x1d\xb5\x77\x16\x3a\x62\x49\x8d\x60\x15\x5b\xcd\x02\xf9\xdc\x05\xff\x41\xb5\xab\x03\x92\xe9\x29\x71\x26\xf8\x9b\xbe\xd5\xa7\xb8\x97\xce\x44\x0e\xe4\xa8\x81\xfd\x93\xa3\xe5\xa1\x7f\x4a\xce\x70\xe8\x5d\xbe\x9a\x84\xf9\x6a\x4a\xc8\x21\x54\xaf\xfb\xdc\x87\xce\xa0\x6b\x69\xff\x5b\xe8\x13\x0f\x50\x25\x14\x12\xf0\xfa\xd0\x40\xf2\x55\x9f\xf4\xf7\xf1\x34\x0a\xb1\xf7\x09\xd5\xae\x4b\x74\xdb\xca\x7c\x75\x03\xe6\x95\x3b\x25\xae\x52\x0c\x43\x20\xb6\xcf\x57\x95\x3b\xed\xf3\xeb\xe1\xc2\xf6\xde\x90\x0b\x3e\x6b\xf8\x65\x5e\x27\x90\x01\xbf\xd8\x80\xd9\x49\x63\x82\x82\x84\x57\x50\xac\x4b\x11\x14\x14\x9b\x52\xf4\x0a\x8a\xc7\x52\x58\xb5\x16\x4e\x15\xe5\xce\xe6\x5e\x36\xe0\x9f\xa8\xde\xd9\x87\x07\x4e\xca\x17\xb6\x14\x6d\x41\x65\x9a\x3a\xd9\xf6\x5d\x9d\xc5\x4d\xb1\x2e\xf9\x28\x55\xeb\x5d\x34\x8e\x89\xf3\x49\xe0\xdf\x0e\xcf\x60\x48\xb6\x18\x28\xc4\x2e\x91\xb5\xee\xbe\x9d\xfd\xff\x30\xb4\x80\xf4\x2a\x8d\x6e\x9a\x2c\x08\xe4\x69\x9a\x35\x05\x96\x2a\x14\x58\xf2\xd1\x42\x97\xa6\x5d\x06\x7c\xe7\x66\xf7\xdc\xc9\xae\x76\x96\x32\x9e\xf1\x1d\x02\xf5\xe8\x13\x33\x32\x90\xba\x6d\x9b\xd7\xcc\x88\xfe\xed\xad\x28\xb9\xd0\x19\x1f\x6e\xf1\xea\xec\x1e\x2e\x08\x54\xeb\x1d\xe6\x66\xb6\x89\x0f\x0f\xf7\x53\x52\xa6\xc0\x52\x78\xb5\x58\x8b\xa0\x36\xbb\x90\xd3\xac\x17\xa2\x5e\xd4\xe9\x15\x15\xa1\xdc\xad\x17\x4a\xb5\x45\x5f\xa6\x69\xe6\xd5\x62\xc3\x07\x9f\xa6\x99\x91\x5d\xdb\x38\x03\x19\x2e\x97\x62\xc3\x05\x28\x9b\x59\xd9\x29\x8a\xc9\xe1\xc3\x95\x32\x0c\x93\xaf\xcb\x20\x5a\x75\x79\xdc\xae\x07\x61\xc6\x44\xcf\x84\x6d\x2c\x90\xb3\x19\x15\x50\xf2\x2b\x28\xae\x25\xfc\x1e\xaf\x48\xb7\x1b\x0b\xa7\xa2\x48\x5d\xdc\x16\x44\xb3\x5d\x6c\xc4\xf5\x70\x7b\x19\x86\x39\x39\x4d\x04\x8d\x19\xc6\x19\x2b\x50\xdc\xd7\x96\x0b\x94\x4d\x8c\xf6\x26\x1b\xac\x3c\xaa\x46\x58\x69\x14\x09\x2b\x2b\x75\x6b\x21\x10\x28\x88\x5f\xac\x0c\x71\xc9\xdf\xde\xae\xa5\xad\xc0\x3a\x0f\x73\x41\x47\xb5\x0b\xf8\xfe\x08\x18\xdb\x78\xbb\x58\x8b\x27\xa0\x2d\x0d\x7c\x10\x56\xe2\x3b\x7b\xfc\xc2\x7a\x3f\xa1\x2b\xb6\x50\xb1\x3b\x82\x4d\xbe\xbf\x1e\x0f\xa1\x49\xd3\xe9\x2d\x29\x7c\x27\x74\xfe\xe9\xff\xfa\x29\x4d\x7f\xe5\xf1\xaf\xba\xe2\x72\xd2\x4d\x0f\x5b\xf6\xdf\x50\xf5\x0d\xb0\x81\x8b\x5f\x81\xd9\x8f\x1f\xd0\x5d\xd5\x66\xd8\x62\x3d\xd1\xa5\x3b\x5d\x14\x53\x51\x36\x29\xa4\x69\x86\xca\x66\xc8\xb9\xf8\x92\xc2\x5c\x21\xdc\x39\x9b\x7d\x8a\xa7\x2c\x8c\xae\x98\x9a\x63\xc2\x34\x8d\x7f\x79\xf7\x74\x07\x4d\xbd\x70\x25\x67\x10\x34\x41\xe6\xfb\xa6\xe1\xd1\x9c\x95\x98\xd1\xaf\xa8\x93\x60\x15\x58\xdd\x37\xc4\xfe\x9c\xf1\x29\x0a\x1c\xb8\x78\x1c\x09\x75\x63\x5e\xee\x49\x46\x3e\xb7\xbc\x8f\xd7\x14\xb9\x95\x55\x46\xc2\x8b\xf7\xd5\x99\x29\x16\x50\x0e\xf2\xe0\x7c\x35\xf2\x12\x9e\xdf\x2e\x1f\xc5\x1c\xf9\x0f\x25\x9d\x5a\x13\xd2\x14\xde\x45\xfb\x9f\x9b\xc6\xcd\x2a\xc8\x2b\xf7\x61\xfb\x93\xc3\x5b\x07\x47\x5e\x28\x98\x66\x02\xb9\xc0\xe8\x2e\x7c\xe8\xc8\x1b\xe4\x1f\xcd\x99\x08\x88\x36\x5a\xc5\x56\xec\x7a\x8b\xce\xce\x57\xe1\x2c\xcf\x70\x68\xb5\x79\xf9\xda\x05\xdf\xfe\x4c\x16\xe7\x8a\xf0\x0a\xa7\x71\x33\x66\x03\xf9\x6e\xda\xaa\x38\x55\x50\x76\xe3\xd5\x9f\x66\x57\xb4\x1d\xd4\x7a\x17\x72\x7c\x3f\x41\x20\xc3\x22\x94\x7c\x74\xdd\x29\xbf\x8b\x73\x2a\x2b\x4a\x9e\xaf\xe6\x71\x3e\xbd\x93\x0e\x8d\x62\xab\x8e\x34\x39\xb3\x7a\xee\x56\x1b\xb9\xa9\xcc\xbf\x1f\xb5\x35\xd2\xd4\xbd\x7f\x91\xcf\x5d\x1c\xf6\x7f\x83\x3a\x6a\xe7\xe5\xa7\xcf\x06\x0e\x87\xc3\xe7\x9f\x02\x57\xd3\x77\x68\x35\x7e\xbb\xff\x08\x00\x00\xff\xff\x32\x68\x29\x52\xcb\x07\x00\x00"), }, "/manifest.json": &vfsgen۰CompressedFileInfo{ name: "manifest.json", - modTime: time.Date(2018, 10, 7, 17, 2, 9, 538625071, time.UTC), + modTime: time.Date(2018, 12, 23, 12, 49, 42, 414940535, time.UTC), uncompressedSize: 305, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8e\xc1\x6e\xc3\x20\x0c\x86\xef\x3c\x85\xc5\xae\x6b\xba\xa6\x51\x0e\x7d\x95\x69\x8a\x08\x71\x13\x6b\x04\x2a\x70\x36\xba\x2a\xef\x3e\x19\x0e\x9b\xea\x03\x07\xbe\xcf\xbf\xff\x87\x02\xd0\x69\x09\x91\x07\x6f\x56\xd4\x17\xd0\x33\xf1\x61\xdc\x66\xfd\x2a\xe8\xe9\x13\xbe\x71\xdc\xa8\x22\xb2\xc1\x27\x7d\x81\x77\x05\x00\xf0\x28\xaf\x84\x45\x2b\x0b\x57\xf3\x25\x42\x43\x36\x14\xbd\x32\xfa\x41\x59\xd1\x7d\x97\xfb\x0e\xce\x6d\x3e\xb7\xd0\x76\xb9\xed\xe0\xd4\xe7\x53\xff\x67\xf2\xfd\x56\xee\xd2\x6a\x66\x3c\xe6\x83\x64\xe9\x02\x77\x05\xf0\x51\x0a\x24\x36\x91\x87\x2d\x3a\x11\x9b\x23\xf9\x09\x73\xb3\xf0\xea\x6a\xbf\x89\xd2\xcd\x99\xbb\xc0\xc4\xc6\x4f\xc6\x05\x8f\x15\xf1\x82\x2b\x0e\x36\xb8\x10\x05\xbf\xbc\x95\xa9\x6c\x34\xf6\x73\x8e\x61\xf3\xd3\x3f\xe1\x5a\x46\xab\x5d\xfd\x06\x00\x00\xff\xff\x44\x82\xd0\x2e\x31\x01\x00\x00"), }, + "/precache-manifest.baae253ab2cfa5961c6a03b786312880.js": &vfsgen۰CompressedFileInfo{ + name: "precache-manifest.baae253ab2cfa5961c6a03b786312880.js", + modTime: time.Date(2018, 12, 23, 12, 50, 1, 999259338, time.UTC), + uncompressedSize: 402, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcd\xd1\x4a\xec\x30\x10\xc6\xf1\xfb\x3e\xc5\xd0\xeb\x25\xdd\xb4\x4d\xd2\x9c\x83\x8f\xe0\x13\x88\x2c\x99\xe9\x0c\xcd\xda\x46\x69\x52\x11\x44\x9f\x5d\x5c\xe9\x8d\xb8\xe8\xfd\xf7\xfd\xfe\x99\x67\x51\xa7\xd3\xd3\xca\x14\x68\xe2\xdb\x90\xa2\x70\x2e\x70\x03\x77\x15\xc0\x6b\x05\x00\x50\xaf\xfc\x1c\x73\x7c\x4c\xf5\x3f\xa8\xdb\xd6\x53\x67\x8f\xc2\x88\x7d\x67\x74\x18\xfc\x28\xf5\xe1\x6b\xb7\xad\xf3\xe7\xa4\xc9\x25\x94\x48\xcd\x39\x37\xeb\x96\x4a\x5c\xf8\x7d\x09\x31\xa9\xfd\xaa\xce\xb9\xae\x00\xde\x0e\x3f\x17\x7a\x47\x8c\x88\x8e\xb5\xf5\xde\x49\x10\x34\xc3\xf5\xc2\x45\xde\x2f\x8a\xa6\x2d\x3d\xfc\xe2\xeb\x91\x6c\x1b\x84\xc8\x0d\xc6\x0a\x6a\x37\xea\xf6\xba\xaf\xd5\xbe\xff\x13\x8e\x5d\x8f\x48\x64\xe4\x88\xd2\x1a\x63\x3d\x21\x79\xf2\x4e\x4b\x20\xdb\xe9\xf1\x7b\x28\xa6\x91\x5f\xd4\x54\x96\xf9\xa2\x56\xf7\xff\x3f\x02\x00\x00\xff\xff\xd7\x13\xb1\xac\x92\x01\x00\x00"), + }, "/service-worker.js": &vfsgen۰CompressedFileInfo{ name: "service-worker.js", - modTime: time.Date(2018, 10, 7, 17, 2, 28, 854964094, time.UTC), - uncompressedSize: 3095, + modTime: time.Date(2018, 12, 23, 12, 50, 1, 999259338, time.UTC), + uncompressedSize: 1041, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x6b\x6f\xdb\x38\x16\xfd\x2b\x0a\x81\xba\xe4\x9a\xa1\xe3\x38\x49\x93\x18\x42\xb0\xc8\x16\x8b\x62\xda\x69\xd1\x26\xe8\x07\xc7\x0d\x68\xe9\xca\x62\x43\x91\x1a\xf2\xda\x6e\x90\xfa\xbf\x0f\x28\xf9\x25\x3f\xda\x99\x6f\x14\x25\xdd\xc7\x39\xe7\x1e\x92\x4c\x3c\x44\x1e\x9d\x4a\x90\xf4\xa7\xd2\x45\xa5\x83\x44\x26\x39\xdc\x5a\x93\xa9\x71\x3c\x18\x90\x8e\x32\x29\xfc\x10\x39\x16\x9a\x70\x72\x39\x3a\x1d\x75\x47\xf2\xf4\x34\x3b\x85\xf4\xec\x3c\xed\x9d\xcb\xde\x9b\xd3\x5e\x37\xe9\x75\xdf\x74\x2f\xb2\x0b\x32\xe4\x03\xd2\xf1\x28\x51\x25\x9d\xef\xbe\x53\x48\x65\xc4\xd9\xd9\xe5\xe5\xd5\xe8\xe4\x42\x7c\xf7\x84\x93\x5e\x76\x05\x67\x57\x67\x49\x72\xde\x3b\x4d\x7a\x97\x69\x72\x72\x75\xde\xcd\xe0\xec\xfc\x32\xb9\x4a\x2e\x2f\x4e\xc8\x70\xc8\xab\x1a\xfe\x94\x05\xc4\xc4\xcf\x8e\x97\x45\x1d\x4f\x7b\xc7\x9b\x8f\x33\x18\x95\x32\x79\x3a\x2e\xf5\x64\xac\xcc\x31\x69\x53\x0f\x3a\x13\x0e\xc6\xca\xa3\x93\xa8\xac\xb9\xd9\xd9\x11\x3e\xb1\x25\x5c\x13\xc2\xb8\x1a\x1b\xeb\xe0\xde\xe9\x4f\xd2\xc9\x02\x10\x9c\xff\x20\x31\xc9\x95\x19\xc7\x83\xce\xb7\x09\x16\x8f\x9d\x21\x97\x69\xfa\x3f\xe5\x20\x41\xeb\x9e\xdf\x05\x2c\xe2\x6c\x62\x92\x10\x8a\x02\x47\xf6\x12\x60\x33\xb1\x81\x59\x74\xff\xf9\x3d\x05\xd6\x77\x80\x13\x67\x48\x87\xc4\x71\x6c\x44\x29\x31\x37\xb2\x00\xe1\xb5\x4a\x80\x1e\x77\x59\xab\x45\xd7\xdb\xed\x18\x19\x37\x02\xed\x17\x74\xca\x8c\x29\x9b\xf3\x44\x83\x34\x9f\xc1\x97\xd6\x78\x58\x27\x43\xf6\x52\x47\x8e\x50\x38\x48\xab\x92\x20\xbd\xa1\x64\x64\xd3\x67\xa2\x4c\x84\x37\x9f\x9c\x2d\x94\x07\xe1\xc0\x5b\x3d\x05\x8a\x22\xbc\x63\xd7\x28\x46\xda\x8e\x28\x63\x02\x73\x30\x74\x5d\xff\x2a\x64\x28\x7f\x99\x92\x02\x7f\xc9\x41\xa6\xe0\xfc\x35\x8a\xc5\x8a\x07\x4e\x27\x61\xa3\x5e\x2c\x9e\xef\xe0\x07\xae\xf6\xc2\xc3\x9c\xcd\xd9\xf5\x4e\x1d\xa1\x2b\x07\x12\xe1\x36\x10\xf7\x07\x3c\x37\x30\xe4\x86\xbb\x1a\x47\xb9\x8b\x63\xe4\x5a\x2d\xb9\x46\xb1\x08\x04\x51\xc7\x7e\xfe\xa4\x52\x78\x90\x2e\xc9\xdb\xf1\x6a\x79\x43\x5a\x24\x50\xdb\x06\x93\xd8\x14\xee\x3f\xbf\xbb\xb5\x45\x69\x0d\x18\xa4\xc8\xda\x24\x26\xfb\xde\x18\xc6\xb8\x6c\x50\xa0\xfc\x27\x89\xf9\xd7\x5c\x21\x68\xe5\x11\xd2\x2d\xce\x55\x46\x4f\xe2\x38\x06\xa1\xc1\x8c\x31\x67\x75\xa9\x47\x27\xfd\xa6\x18\x90\xad\x0a\x5f\x76\x03\xc2\xdb\x02\xf6\x52\xb0\xe8\x0d\xd8\x9c\xcd\x79\x18\xca\xf2\x5d\x25\xd0\xb4\xa1\xd0\xcd\x4a\x4c\x8d\x1a\xee\x41\x0d\x45\x2e\x7d\x1e\x13\xc2\x71\x81\x4d\xbc\x5c\x2c\x94\xd8\x65\xc2\x97\x5a\x21\x25\x2d\xc2\x44\x21\xcb\x7d\x45\xc1\xf2\x9b\x98\xb0\x39\x13\x99\xd2\x08\x8e\xee\xd1\xa4\x11\x30\x05\xf7\xbc\x27\xc6\x11\x08\x04\x8f\x14\x07\x27\xc3\xd0\xda\x2f\x72\x7d\xb7\xca\x2c\x53\xd5\xeb\x16\x61\x1c\x1b\xd4\x84\xb6\x2a\x34\x6a\x7b\x78\xdc\x30\x04\xc2\x27\x4e\xfb\x3b\xbb\x14\x99\xaf\x70\xf9\x20\x4b\xda\xb4\xb5\x9d\x02\x6a\x10\x61\x70\x32\xe4\x26\x86\x41\x77\xc8\xdd\x9a\x43\x5e\x59\x88\xb6\x49\x65\x1f\x8c\xcb\xb8\x29\x65\xea\x9a\x35\x71\xc3\x3b\x0f\xe2\x61\xf6\x72\x39\x7f\x10\x9d\x25\x21\x03\xb7\xd1\x05\x97\xc3\x39\x63\xfd\x65\x09\x91\x07\xfc\x98\x55\xf1\x02\xd7\xbe\x81\xc9\x13\x3c\x7b\x7a\x78\x70\xe1\x30\x9a\x13\xa7\x2b\xb8\x7f\x35\xf3\x5f\x00\x6b\xc1\x55\x4d\xca\x34\x7d\x3b\x05\x83\xef\x83\xe6\x0d\x38\x4a\x94\xf1\x28\xb5\x26\x7c\xf3\x7f\x10\x33\xa9\xf0\xde\xa0\xd2\xb4\x82\xd5\x0b\x5b\x82\xa1\x2b\xd7\xde\xce\xe9\x56\x39\xb7\x3b\x75\xdb\x9f\x9a\xd5\xa7\x4b\x13\x91\x5a\xd3\xff\x3a\x27\x9f\x45\xe6\x6c\x41\xb7\x28\x16\x53\xa9\x27\xe0\x83\xb7\x35\x80\xa8\x87\xf4\xc8\x84\x31\xa0\xc8\x6a\x8e\x21\xae\x7d\xee\xaf\x49\x25\x48\xfe\x92\x38\x48\xc1\xa0\x92\xda\x5f\x13\x2f\x0b\x38\xb6\x4e\x8d\x95\x21\xf3\xd5\x20\x65\x50\x0f\xe5\x2e\x8c\x21\x3e\x08\xfb\xc4\x30\x77\x76\x56\xc1\xf9\xd6\x39\xeb\x28\x59\x64\x88\x32\xeb\x22\xd2\xc6\x36\x89\xea\x60\x90\x46\x32\x72\x0b\x9b\x8d\x66\x0a\xf3\xa8\x76\xce\x88\xb4\x61\x61\xa2\xab\xc4\x8d\x63\x60\x6f\x01\x4b\x83\x14\xe5\x24\x74\x53\xf1\xc8\xe6\x73\xc6\xf6\xd0\xbe\xc1\x80\xce\x84\x7f\x52\xe5\x57\xa9\xb0\x9e\xa9\xf0\x03\x3f\x20\x00\x99\xa0\x9a\x4a\x84\xa6\x02\xd6\x36\x17\x04\x74\x90\x92\xfe\xbf\x56\xca\xe6\x21\xf7\x1b\xe5\x6f\xea\x63\x77\x0a\xd6\xe4\x57\x83\xc0\xd8\x2a\x6c\x0a\x1a\x10\x2a\xd5\xff\x1e\xa8\x44\x2b\x30\xe8\x45\xa2\xa5\x2a\x7e\x03\x55\xa5\x94\x0d\x9c\x6a\x09\x92\xff\xbf\xbd\x0b\x37\x81\x70\x68\x57\xaa\x10\x05\x60\x6e\xd3\x85\x22\xb9\x89\x0f\x5a\x3d\x5d\xff\x33\x71\xfa\x57\xd7\x15\xc6\x5d\x4c\x36\x2e\x6a\x7d\x0a\xf1\x36\x2b\x01\x0b\xc3\xc2\xc1\x69\xe2\x9d\x3b\x0d\x0d\x47\x30\x3f\xf8\x53\xbf\x3e\x9c\x1b\x97\xc1\xfe\x11\xb4\x5a\xc4\xc8\xa9\x1a\x07\x7d\x34\x5b\xb4\x29\xb4\x5a\x3b\xa7\x28\x1d\x90\x6f\xf4\xe6\xe8\xe1\xa1\xf3\xf8\xc8\xc4\x7f\xc8\x90\x37\x3a\xac\x6e\x46\x2b\xe3\x95\x5b\xc6\xbb\xe9\x9f\x07\x0b\xe5\xd0\x6a\x85\x98\x61\x6a\xd2\xaf\x0a\xf3\x7f\x26\xbb\xa6\x9f\x86\x81\xdf\x8e\x3f\x86\xea\x9e\xb0\xd7\x05\x60\x29\x2e\xe8\xd7\x56\xb0\xb0\x81\xbb\x1c\xa2\x2a\x65\xba\x1e\x7a\xcc\x25\x46\x33\xe9\x23\xf8\x51\x56\x17\xb8\x48\xf9\xa8\x50\xde\x2b\x33\x16\xa4\x16\x64\x52\x55\xb0\xa7\xb8\xc4\x1a\x6f\x75\x18\x2a\x67\xe8\xeb\x5b\x3b\xd1\xa9\x79\x78\x8d\x91\x07\x37\x85\x75\x8e\xca\x76\x5e\x79\x12\x05\xc3\xac\x2b\xb8\x8e\x5e\x7d\x7c\xdd\x44\x9b\x03\xe3\xb5\xb9\xad\xb6\x2b\x7d\xcf\x59\xff\xef\x00\x00\x00\xff\xff\x44\x37\xab\x5e\x17\x0c\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xdf\x6e\x32\x37\x10\xc5\xef\xf7\x29\xa6\xa8\x52\x08\x05\x3b\x01\x85\xe6\x8f\x7a\x51\xb5\x52\x7b\xd1\x56\x09\xa4\x42\x15\x90\xc8\x6b\xcf\xee\xba\x78\x3d\x5b\x8f\x37\x24\x4a\xfa\xee\x95\x61\x49\xa3\x7c\x1f\x57\x48\xf8\xcc\x6f\x66\xce\x9c\x95\x83\x41\x06\x03\x58\xa0\xd3\x54\x23\x44\x82\x17\x6a\x03\x2c\x28\x6c\x72\x7a\x1e\x35\xb4\xc5\x80\x06\x18\xc3\x93\xd5\x08\x5b\x0a\x1b\x0c\xdf\x64\xb0\xab\xfa\x8b\xda\x13\xe7\xc0\x23\x9a\x54\x19\xb0\xb4\x1c\x31\x40\xac\x2c\x43\x61\x1d\x82\xf5\x7b\xde\x16\x73\x50\x4d\x03\xca\x9b\xf4\x07\x70\x45\xad\x33\x89\x61\x2c\xab\xdc\x21\xfc\x7a\x7f\x7f\x0b\x5a\xe9\xca\xfa\x12\x0a\xfa\x08\x89\x44\x22\x49\xe7\x88\x50\xc5\xd8\xf0\xb5\x94\x25\x91\x28\x9d\xf4\xd5\x5d\xf5\x4b\xd3\x8d\x73\x5f\x21\x04\xe4\x08\x54\x40\xac\x10\x34\x19\x04\xcb\xa0\xda\x48\xa3\x12\x3d\x06\x15\xd1\x08\xb8\x75\xa8\x18\xc1\x90\x3f\x89\xd0\x36\x46\x45\xfc\xbf\xdb\x7e\xa6\x80\x3a\xba\x97\x1b\xb0\x9e\x23\x2a\x33\x84\x5a\x6d\x10\x74\xa5\x7c\x89\xfc\xd9\x25\xc8\x5b\xeb\x0c\x68\xf2\x85\x2d\xdb\xa0\xa2\x25\x9f\x30\x69\xd9\x80\xa3\xd0\x76\x26\xec\x65\x4d\x20\x8d\xcc\xc7\x36\x1a\xab\xd9\xcf\x5c\x65\x30\x90\x59\x66\xeb\x86\x42\x9c\xeb\x60\x9b\xc8\xfd\xde\x41\xc9\x91\x82\x2a\x51\x94\x44\xa5\x43\xd5\x58\x16\x9a\x6a\xb9\xed\x6e\xa6\x8d\x97\x01\x77\x3b\xb2\x9c\x88\xa9\x98\xbc\x3f\xf1\x56\xfc\xcd\xbd\xd3\x9b\xcf\xe8\x0c\xa0\x27\x9b\x80\xc9\x7f\x1c\xd5\xca\xdb\x02\x39\x8a\x5c\x29\x1c\x5f\x4c\x54\x3e\xd6\x85\xba\xb8\x9a\x9e\xeb\xa9\x3a\x9b\xe4\xdf\x5f\x4e\x27\xe7\xe3\xcb\xcb\xb3\x04\xcb\x12\xad\xe3\x0b\xed\x2c\xfa\xc8\x3f\x39\x65\xeb\x7e\x7a\xe8\xe2\x95\x2e\xd3\x69\xe6\x0b\x71\x68\xf4\xa3\x37\x33\x6a\x23\xf6\x4f\xa1\xc6\x58\x91\x01\x2c\x0a\xab\x13\xc2\xbd\xec\xb2\x80\xdc\x99\xc8\x0d\x79\x93\x8c\x4f\xb4\x80\xff\xb4\xc8\x91\x77\x31\xf9\x73\xf6\x1b\xa7\x98\xa5\x83\xbf\x0f\x7e\xc4\xdb\xf9\xd5\xdd\x4c\xe5\x3b\x6f\x19\x5d\x21\x1e\x1f\x0f\xa3\xfc\xde\x55\xc2\x0f\xb0\x5c\x0b\x4d\x5e\xab\xd8\x3f\xa6\x79\x7b\x83\xe5\xfa\xf4\xe6\x7d\xeb\x4e\x60\x7d\x29\xb8\x6d\x9a\x80\xcc\x0b\x15\xbc\xf5\x25\xf7\xbf\x2e\xfb\xc2\x81\x23\xad\x86\xf0\xfa\xef\x47\x7f\x03\xb5\x31\xd5\x1f\xbe\xb4\x3f\xd4\x93\x2d\x77\x79\xdb\x63\x7a\xd2\x7a\x83\xcf\xa2\x8a\xb5\xeb\x0d\xe1\x35\x03\xc8\x00\x72\xa7\xf4\xc6\x59\x8e\xd7\xb0\x94\x0f\x2b\xf9\x28\x87\x72\x25\x97\x0f\x2b\xb9\xfe\x6e\x25\xf6\xbf\xdf\xca\xf5\x30\x4b\xbd\xfe\x0b\x00\x00\xff\xff\x24\x90\x5d\xab\x11\x04\x00\x00"), }, "/static": &vfsgen۰DirInfo{ name: "static", - modTime: time.Date(2018, 10, 7, 17, 2, 28, 730961917, time.UTC), + modTime: time.Date(2018, 12, 23, 12, 50, 1, 999259338, time.UTC), }, "/static/js": &vfsgen۰DirInfo{ name: "js", - modTime: time.Date(2018, 10, 7, 17, 2, 28, 750962269, time.UTC), + modTime: time.Date(2018, 12, 23, 12, 50, 2, 15259598, time.UTC), + }, + "/static/js/1.1dc62afc.chunk.js": &vfsgen۰CompressedFileInfo{ + name: "1.1dc62afc.chunk.js", + modTime: time.Date(2018, 12, 23, 12, 50, 2, 15259598, time.UTC), + uncompressedSize: 619659, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x97\xdb\xb6\xb5\x28\xfe\x55\x28\x9e\x5e\x19\xe8\xc0\x8c\x34\xe3\x27\x65\x74\x9a\xda\x4e\xe3\x36\xb6\x53\x8f\xd3\xde\x73\x15\x2d\xff\x30\x24\x34\x62\x4c\x01\x2a\x08\xce\x78\x22\xf1\xbb\xff\x16\x5e\x24\xf8\x90\x46\x4e\xdc\x9e\xd5\x7b\xf3\x87\x3d\x14\xde\xd8\xd8\xd8\x2f\x6c\x6c\x80\x9b\x8c\xa5\xfc\x26\xba\xa1\x97\x1b\x92\x7c\xfc\x4b\xc1\xd9\x06\x0f\xa4\xed\x76\xf3\x05\x8c\x36\x65\xb1\x02\xf3\xf9\x74\x81\xe6\xcb\x92\x25\x32\xe3\x0c\x50\x24\x11\x83\xdb\xb0\x2c\x68\x50\x48\x91\x25\x32\x9c\xd1\x88\x7e\xda\x70\x21\x0b\xcc\xc0\xf4\xc1\x63\x58\xa1\x6e\xf1\x56\x89\x87\xa7\x10\x74\xca\xf8\x25\x9a\x74\xb8\x15\x54\x96\x82\x05\x74\x3c\xa6\xd1\x87\x0f\xb4\x78\xcd\xd3\x32\xa7\xe7\x34\xde\xa6\x74\x49\xca\x5c\xc6\xb4\xaa\xba\x4d\xb9\x5f\x01\x03\x4d\x0b\xcd\x00\xf0\xdb\xcb\x9f\x68\x22\x23\x52\x14\xd9\x15\xdb\xed\xfc\xfe\x96\x5c\x80\x6b\x22\x02\x89\xa7\x33\xf9\x8c\x88\xab\x72\x4d\x99\x2c\xa2\x9c\xb2\x2b\xb9\x9a\xc9\x93\x13\xb8\x55\xf9\x0c\xd7\x79\x73\xb9\x98\xb9\x6a\x22\xc8\x58\xc0\xa0\xed\x60\x23\xb8\xe4\xf2\x76\x43\xa3\x15\x29\xde\xde\xb0\xef\x05\xdf\x50\x21\x6f\xa3\x84\xe4\x39\x60\x48\xc0\xf1\x18\xd0\xb9\x58\x60\x36\x17\x0b\x58\xb9\xa1\x56\x88\x45\x64\xb3\xc9\x6f\x81\x5c\x65\x05\xaa\x7b\x82\x95\x37\x8b\x3e\x8c\xf5\x00\x34\x7c\x1f\xc2\xd9\x10\x38\x15\x6c\xb2\x25\x60\x65\x9e\x63\x4c\xa1\xe9\x6e\x5b\xcd\xf4\x84\x10\x47\x19\x16\xba\xd0\x2c\x5b\x02\x3b\x85\x2b\x2a\xbd\x81\x5f\xdc\xae\x2f\x79\x5e\x98\xae\x08\x3e\x54\x06\x50\xa8\xa1\xc2\xf1\x64\xc6\x9f\x11\x07\x40\x7e\x72\x02\x19\x26\x73\xbe\x40\x32\xca\x58\x4a\x3f\xbd\x5d\x02\x06\xff\x80\x27\xbb\x5d\x0f\x6a\x1b\xdb\xe4\xab\xe2\x25\x2b\xd7\x54\x90\xcb\x9c\x1a\xd8\x51\xc4\x14\xec\xb2\x39\x5b\x60\x3a\x67\x0d\xec\xb2\xaa\x0f\x97\x16\xaa\xd6\x40\x3a\x3b\x83\x88\x63\x16\x31\x20\x60\x44\x50\x86\x19\x78\xfc\x00\x22\x82\x19\x38\x9d\x42\x54\x36\x70\x33\xd3\xa5\x4d\x82\x6e\xd5\x74\x08\xa8\x83\x42\x41\xe5\xf7\x6e\xe4\x6f\x97\xbb\xdd\xf6\xc3\x07\x3d\x93\x0f\x1f\xe2\xf9\xa2\xca\x58\x21\x09\x4b\x28\x5f\x06\x5f\x0b\x41\x6e\xc7\xe3\x2e\xf6\xd7\xc5\xb1\xac\x7c\x9c\xd4\x08\x6d\xd1\x8b\x29\xf4\x92\x50\x76\xf0\x09\x30\x83\x48\x6c\x81\xa5\x06\x06\xd4\x43\xac\x66\x16\x28\xed\x81\xd7\xbb\x43\x00\xb8\x55\x08\x16\x25\x9c\x15\x52\x94\x89\xe4\x02\xcb\x8a\xea\x62\xc8\x5b\x08\x6c\x30\x06\xb3\x73\x3b\xd7\x44\x50\x22\x29\x60\x30\x06\xc2\x2f\xd6\x7c\x23\x46\x6f\x02\x01\xab\x0a\x40\x54\xf8\xa0\xb4\x60\x2b\x8e\xda\x84\x88\xe1\x29\x12\xb8\xb7\x0d\xd9\x33\x31\x63\x27\x27\xd0\x15\xe4\x1a\x2e\xde\x96\x64\x8b\xe3\xf6\xa0\x44\xdc\x80\x8e\x2b\xd0\xf1\x05\x9c\xd5\x7b\x10\xee\xd9\x82\x1a\x83\xf2\x16\x91\xaa\x21\x2a\x81\xb7\x11\x2d\xaa\xea\xfa\x12\xee\x76\xea\xc3\x35\x2f\xa2\x3c\x63\x1f\x31\x43\xc2\x21\x6e\x09\x24\xa2\x10\xc9\x0a\xbc\x14\x82\x0b\x38\xab\x1b\x4d\x7c\x3a\x18\x09\xfa\xcf\x92\x16\xd2\x42\xe2\x19\x9e\x56\x75\xc1\xa5\x57\x50\x81\x9f\x83\x66\xe1\xe1\x56\x46\x54\x35\x0c\x28\xac\x60\x53\x27\x35\x08\x66\x48\x5a\x01\xb6\x15\xa2\x35\x0c\x2c\x04\x53\xba\xcc\x18\xad\x71\x4d\xa2\xb0\xa0\xf2\x39\x67\x92\x7e\x92\x21\xda\xd2\x7a\x6b\xc6\xa3\x29\xba\x26\x79\x49\x63\x1f\x38\xb6\x59\x86\x42\x97\x1a\x62\x8c\xd5\x8a\xf0\x65\x40\xcf\x35\x16\x51\x58\x55\x10\xed\xed\xef\xea\xe8\xfe\xea\xf9\x9b\x3e\x0f\x37\x2b\xf9\x5f\xe9\xed\xd1\x2d\x0e\x70\x25\xd3\x32\x20\x11\x81\x80\x46\xff\x2c\xa9\xb8\x85\x27\xe1\x2e\x3c\xf9\xcb\xc5\xdb\x37\x91\xa2\x38\xec\x2a\x5b\xde\x02\x1a\x5d\x13\x91\xa9\x0e\x0a\x93\x4f\x23\x35\x0a\xa2\x9a\x7b\x43\xd6\xb4\x02\x52\x8f\x54\x56\x6a\x1d\x36\x1d\x8a\x6d\x3b\x93\xe7\x12\x50\x18\xf3\x88\x2f\x15\xf3\x5c\x0d\xb0\xc9\x61\x08\x2b\x54\xb8\x52\x55\x69\x85\x6e\xfb\x5b\x31\x30\xf9\x83\x7d\xda\xce\x60\x85\xae\x87\xb8\xf2\x04\x63\x4c\x2d\x26\x9e\xdf\x02\x18\xd3\x68\x4d\x36\x60\x05\x23\x41\xd3\x32\xa1\xc3\x8d\x52\x45\x6f\x12\x22\xd5\xa4\x61\x85\xd6\xb8\xc7\xc7\x78\x96\xea\xb6\xd9\x78\x0c\x18\x36\xe3\xdb\x40\x68\x69\xf7\x0a\x48\x88\x32\xbc\x02\xac\xc6\xd4\x04\x28\x56\x9a\x80\x0c\x9e\x77\x66\xe3\x75\x0b\x24\x3c\x17\x6e\xff\x00\xb5\x23\xcd\xf4\xe2\x6c\x20\xb1\x82\x71\xb7\xa5\x86\xe8\xf7\xda\x42\x6c\xb0\x35\x2f\x59\xcd\xf4\xb2\xb3\xb0\x66\xd3\xad\x14\xa7\xcc\x96\x20\x01\x0c\x42\x37\x1f\xce\x0a\x9e\xd3\xe8\x86\x08\x06\xd4\x38\x72\x10\xfe\x37\x2f\x03\x22\x68\xa0\x88\x4a\xc6\xae\x02\x03\xc4\x80\xb3\x80\x04\x92\x8a\x75\xc6\x88\x54\xe9\x8a\xb0\xa0\xe0\x66\x95\x25\xab\xe0\x26\xcb\xf3\x60\x45\xae\x69\xc0\x78\x40\x97\x4b\x9a\xc8\x10\x31\x08\x11\xf3\x60\xe9\x03\xb1\x0b\x3e\x8f\xa0\xd4\xd3\xa2\x68\x20\xbb\x01\x06\xf5\xe6\xbc\x1f\x9a\x3e\x42\x1c\xdf\x34\x92\x83\x8d\x57\xe8\xca\xc7\xeb\x9a\xb8\x51\xd5\x0a\x1d\x8f\x35\x0d\x76\xad\x60\xda\x08\x5a\x1e\x77\x28\x36\x79\x26\x5b\x2c\x1e\x89\x7a\x08\x35\x46\x8a\xf1\x18\x08\x8d\x91\x54\x61\x24\x72\xec\x53\xa1\xf3\xda\x56\x82\x15\xf2\x1b\x36\xb9\x43\xdb\xe7\xd2\xf0\x06\xda\xa9\xe0\xc6\xd9\x86\x95\x5c\x09\x7e\xa3\xf7\xaa\xe6\x0f\x20\xb4\xc5\x82\xac\x08\x18\x97\x41\xb6\xde\xe4\x54\xb1\x28\x9a\x86\xba\x41\xba\xde\xc8\x5b\x7c\x8b\x68\xb4\x14\x7c\x8d\xaf\x91\x9b\xe3\x5a\x65\x7e\xa2\x49\x29\x29\xbe\x41\xb4\x02\x1e\xaf\xb9\xe9\xec\x54\x07\xf9\x14\x48\x35\x11\x45\x82\x5b\x4b\x64\x44\xe5\x6d\x4d\xde\x62\x8f\xd4\xed\x76\x8a\x9b\x7c\x92\x94\x15\x19\x67\x2a\xab\xf9\xa1\xf3\x5a\x34\x30\xee\xd0\x44\xa4\xc9\x69\x6c\xc9\x6a\x2d\xca\xc8\x76\xa9\xdd\x0e\x74\x52\x70\x68\xe8\x6e\x38\xaa\x49\xa0\x34\x6d\x58\xe1\x05\x64\xd1\x4f\x10\xd8\x34\x18\x87\xa1\x66\xba\xc3\x3a\xc0\x3c\xd4\xa5\x42\x14\xb6\xfa\x08\x51\x58\xcf\x32\x44\x61\x33\xad\x10\x85\x16\x4a\xe1\x02\x31\x3c\x41\xc2\x89\x39\x1f\xe9\xad\x16\x89\xd9\x33\x51\x0b\x31\x4e\x97\xe0\x58\xcc\xd9\x42\xd1\x80\x46\x24\xe6\xf0\xd9\x04\xf6\xd6\x3c\xcb\x73\x7a\x45\xf2\xc0\x89\x23\x71\x10\x9e\x70\x4f\x6f\x00\x12\x42\xd8\x6c\x0c\x16\xa5\x8a\xcf\x91\x10\xf5\xa9\xfe\x55\x05\x91\xcd\x4f\x86\xf2\x6f\x9a\xfc\x74\x28\x7f\xd9\xe4\x5f\x0e\xe5\xf3\x6a\x40\x0b\x1c\x90\xc4\xbd\x9a\x95\xa7\xb4\x88\x63\xd4\x43\xab\xcf\x8c\x00\x0d\x3c\xf9\x5a\x42\x0f\x70\xef\x6f\x37\xd4\x02\xef\x39\x61\x6a\xa3\x28\xfa\x19\x90\x20\xc9\x49\x51\x04\xa4\x08\x48\xcd\xd9\x43\x78\x48\x93\x6c\x0b\xe2\x78\x32\x63\xcf\x64\x6f\x29\x85\x16\xc0\x67\x22\x6a\x64\x0a\xec\xff\xd8\xed\x46\x53\x24\xd4\x56\x5a\x66\x57\xa5\xc9\x1f\x4d\x14\x3a\xe5\x25\x0d\x33\x16\x68\x02\x13\xdd\x88\x4c\xda\xbc\x7d\xf2\x0b\x45\x42\x21\x15\x52\x32\xf6\x30\x6c\x3c\xfa\x25\xc7\x63\x06\x3c\x1a\x83\x24\x44\x42\xa7\x21\x01\x11\x3d\x56\x67\x7a\xf2\x44\xab\x4c\xe0\x14\xce\xf6\x0a\x55\x8d\x92\x1e\xa2\xad\x91\xa5\x46\x13\x25\xdb\x44\x56\x61\xc7\x32\x2a\x56\x94\xca\xe2\x35\x61\xe4\x8a\x0a\x6c\x88\xab\xee\x24\xc3\x1c\x30\x70\x06\x95\x1a\xa6\xbe\x1e\x43\xa5\x88\xa9\xaf\x27\x50\xe9\x11\xea\x6b\x3a\x81\x10\xe5\xe6\x73\x0a\x21\x4a\xcc\xe7\x29\x84\x68\xa9\x3f\x1f\x40\x88\x52\xfd\xa5\x4a\x6e\x4c\x36\x84\x68\x85\x81\xfa\x7c\x04\x21\x52\x7f\x1f\x3e\x80\x10\xa2\x5b\x9b\xe8\x52\x1f\x9c\xda\x8f\xe9\xc3\x47\x2a\xff\x1a\x33\xf0\x74\x02\xd1\x1a\x0b\x35\x8a\xa7\x10\xa2\x4b\xdd\xe2\x53\x55\xe3\xca\x7c\xaa\x61\xde\x98\x01\xab\x2e\xdf\x9a\x4f\xd5\xe7\x4b\x3b\x64\x35\xa6\x0b\xf3\xfd\x54\xb5\xf1\x5e\x7f\x9f\x4e\x54\xf1\xef\x31\x98\xa0\x6b\xab\x53\x41\x00\x26\xe8\xd2\xc1\x0a\x02\x08\xd1\x6b\x95\xff\xd2\x4b\x42\x1f\xf1\xfd\x29\x9d\x4e\xd1\x4f\x9a\x13\xbd\x26\x9b\x59\x17\xa6\x3f\x69\x70\x7e\x42\x1f\xb0\x55\xef\xdf\xe0\x3e\xd9\xee\xaa\x55\x7f\x98\x8e\xc7\x66\x31\x46\xd8\xd3\xa5\xa6\x8b\x73\xff\x47\xbc\xed\xeb\x95\xb5\xce\x23\xa3\x9b\x4c\xae\xde\xaf\xe8\x9a\x22\x8e\xeb\xc6\xc4\x78\x2c\xd0\x35\x96\xd1\x32\xcf\x36\xe8\x12\xd7\xfc\xf4\xfa\x5c\xa9\x96\xf1\x35\x7a\x89\x65\xc4\x14\xd9\x7f\xa3\x66\xbb\x6c\x66\x2b\xd1\x3c\xac\xdb\x0c\x51\xa8\x5a\x08\x51\xa8\xca\x86\x0b\x88\x5e\xa8\xe2\x17\x4d\x71\x0a\xd1\x73\xfc\x22\x92\x2b\xba\xce\xd8\xd5\x4b\xa6\x76\x51\xba\xdb\xf1\xdd\xce\xf1\x85\x46\x34\x7e\x39\xfb\x78\x82\xa7\xe8\x45\xc4\x37\x6a\x16\x85\x21\xbe\xf8\xa3\x06\xd8\xbb\x7d\x1a\x1e\xad\x35\xbc\x19\x98\x20\xe2\x8d\xd4\x28\x7a\x08\x08\x35\xa6\xa2\x93\x01\x26\x28\xf7\x92\xa0\xa7\x1c\xaa\x16\x21\x8c\xd2\xac\x50\xa3\xbd\x90\xb7\x39\x2d\xfe\x4c\x99\x65\x38\x58\x53\x8c\x9f\x8a\x42\x6b\xe1\x48\x98\x95\x7e\x6b\x86\xdc\x4a\x6b\x56\x5f\xa5\xe8\x66\x9e\x2b\xa4\xe2\xe2\x82\x5c\xd3\xd4\x95\x55\xb0\xa1\xee\x47\xc9\x8a\xf2\xb2\x48\x44\x76\x49\x5f\xd5\x25\x0a\x49\x24\xc5\xdb\xca\xf5\x3b\x5f\xab\xbf\x8b\xdd\xee\xfb\x99\xe1\x57\x2c\x5a\x97\x99\x5e\x91\xef\x05\xbf\xce\x52\x2a\xec\x78\x1c\x66\xf0\xf1\x18\xf0\xf6\xa8\x34\x61\x6b\x8f\xb3\x53\x02\x22\xb1\x17\x08\x7c\x5f\x0e\x1c\x9e\xeb\x8b\x2e\xa0\xc0\x04\x65\x0d\xfc\xb7\x57\xa6\x01\xfa\x5c\xb1\x01\x2d\x7f\xbc\xae\x90\x9a\xa8\x5f\x69\x01\x6b\x70\x3d\x3f\x7f\xeb\x6a\x47\x19\xcb\x64\x46\x72\xa0\xa4\xfb\x4f\xbb\x1d\xf8\xa4\x1a\xbf\xf1\xf7\x6c\xfc\x01\x89\x88\x48\x49\x92\x15\xb0\x2d\xa8\xa6\x12\x92\xac\x4c\x8f\xb4\xc0\x96\x38\x6a\x90\xe7\xa4\x90\x8a\x88\x36\xbf\xfe\x72\x71\x11\x6f\xab\xaa\xb6\x0f\x80\x09\x4a\xfc\x4d\x41\xa1\xc2\xa8\xb2\xb5\x4f\xb6\x1f\xe9\x6d\x1c\x26\x7c\xbd\xe1\x8c\x32\xf9\x22\x4b\x5f\xf3\x92\xc9\xb0\xaf\xd2\x1a\x7b\x96\x36\x48\x3c\x77\xe2\x71\x1b\x13\x9a\xd9\xd6\xa9\xc0\x09\xbb\x6d\x29\xb0\x56\x64\xa8\x99\xe8\xcc\xfe\xc5\x12\x51\x07\x03\xea\x60\x40\xa3\x82\xca\x0b\x85\x5e\x4a\x3f\xf7\x46\x44\xa3\x94\xea\xa2\x4c\xc9\xf3\x50\x71\xe2\xfe\x74\x7e\xd8\xa4\x44\xd2\x81\xf9\xe8\x91\xf5\xb1\xa0\xdf\xc8\x3f\xb2\x3c\xff\x81\xad\xf7\x80\x45\x37\x63\xc7\xa1\xbf\xed\xa8\xd5\xaa\x28\x71\xb2\x07\xa6\xf1\xb8\x81\x93\x97\xd1\x86\x54\xbf\x5a\x33\xbb\x2b\x2a\x2d\x3e\xec\x5d\xa5\xd1\x54\x49\x86\x23\x33\xb6\x3d\x7b\xc0\x12\x74\x03\x06\x7f\x4b\x45\x57\x54\x82\x3d\xd0\x81\x4d\xa6\x99\xa7\xe3\x22\x51\x62\x86\xe4\xa6\xec\xa3\x6d\x64\x91\xd3\x61\xcd\x50\x1e\xee\xb4\x83\xb4\x1c\xe3\xa4\x54\x5d\x6d\x23\xf8\xa6\xb8\xb3\x1f\xb5\x25\xf6\x76\xa4\x32\x71\xbf\x31\xd3\x19\xa2\x83\xf5\x34\x88\xd5\x6e\xbd\xf2\x48\xc1\x25\x29\x5c\x81\x78\xef\x9c\x10\xa3\x37\xad\x42\xed\x4e\x9f\x3b\x04\x8b\x19\x62\xfc\x4f\xa4\xa0\xf1\xa1\x05\xab\x6a\xd5\xb1\x37\xba\x1a\x35\xcc\xd6\xe9\xa1\x05\x35\x22\xef\xf1\xe8\xd0\x5b\x77\xc4\xf6\x22\x0a\x9c\xb1\xdd\xce\x9a\x5c\x5e\x93\x0d\x1a\x28\x57\x50\x63\xd8\x70\xd6\x18\xa6\x6b\x1a\x13\x86\xd8\xed\x80\xc0\x5b\x41\x97\x45\x3c\x41\xba\x9e\xa6\x68\x15\x62\xba\x9e\x92\x36\x21\xd2\x7a\x74\xa4\x0a\x39\xf5\xa7\x36\x28\x53\xf4\x52\x89\x7e\x2f\x51\x69\x86\xf8\x53\x51\xd8\x2c\x3d\xc7\x0b\xd5\x22\xe0\xa8\x43\xcb\xd7\x54\x92\x98\xa0\xc4\x91\xf2\xef\x05\x5d\x66\x9f\x62\x82\x94\xac\x10\x87\x97\x9c\xe7\x94\xf8\x36\xb1\xcb\xf3\xcb\x38\x14\x32\x0f\xb5\xfd\x2a\xcd\x04\xd5\xb0\x45\x79\xc6\x3e\xc6\xa3\x69\xe5\xcd\xdb\x72\x02\x24\x9d\x90\x80\xb6\x4a\xf4\x88\x5f\x56\xe8\x0d\x84\x33\xcb\x64\x70\x89\x4a\x47\xeb\x0c\x60\x0a\xec\xd3\x00\xc7\x57\x8a\x77\xf4\x2a\x2b\xa4\xb8\x5d\xcc\x8a\xf1\xb8\x88\x48\x9a\x82\x12\x56\x06\x1a\x27\x78\x5a\xd5\xab\x6f\xa8\xd0\xbf\x79\xf5\x51\x67\x39\xf5\xb0\xee\xe3\x69\x6b\xc9\x58\x94\xd2\x9c\xaa\xc5\xb2\x38\xac\x16\x49\xd0\x35\xbf\xf6\x17\xc9\x02\x06\x5a\x81\xe1\x0e\x60\xf0\xf1\x98\xdb\x36\xea\x9a\x55\x03\x0c\x41\x59\x4a\xc5\x41\x3e\x66\xf6\x23\x92\x18\xd0\x86\x12\x44\x19\x63\x54\xbc\xa3\x4b\x35\xb3\xb6\x58\x49\xd1\x3c\x4c\x1c\xe5\x0d\x5d\x39\x25\x51\x12\x55\xf2\xbd\x87\x5e\x9a\x38\xc6\x0d\x9d\x44\x16\x01\xa0\x2f\xec\x10\xc7\xf4\x3c\xb6\x91\xd6\xbc\xc1\xe0\xf0\x4b\x63\xa0\x01\xac\x8b\xc0\x15\x22\x68\x9b\xf8\xd4\xa5\xe1\x0b\x00\x22\x41\x97\xb1\xac\xb4\x65\xa9\x5a\x68\x6b\x45\xd3\x72\x4d\x78\xea\xd1\xbc\xd3\xa0\x50\x7a\x6f\xa1\x44\xb8\x77\x0e\xec\x26\xa5\xbb\x75\x86\xc5\xb8\x78\x53\x77\xc0\xb5\xa2\x57\xa1\x5b\x97\x82\x7c\x51\xc8\x6f\x3b\xde\x56\x5a\x28\x59\x35\xed\xbf\x43\x0c\xa2\x77\x55\x35\x6b\xb4\xbf\x37\xfb\xcf\x2d\x1f\x3d\x34\xea\xe5\xd9\xa3\xfd\xc7\x97\x66\x92\x23\xb9\xdb\x85\x66\x64\xa1\x52\x2f\x80\x84\xe3\x71\x63\xfd\xf6\x4c\x3f\xe7\x1c\x50\x18\xcb\x43\x8a\xbd\x3c\x74\x46\xdc\x3e\xd5\x3b\x6f\x4e\x3c\xbd\xd4\x78\xe8\xc0\xba\x39\xcf\xab\x0f\x36\xdb\xb5\x00\x85\x15\x52\xbd\x1f\x7b\xa8\x3b\x3d\x78\xa8\x3b\x38\xfb\xf1\xd8\x89\x2e\xc3\x26\x91\x8b\x72\x43\x45\x40\x3f\x6d\x04\x2d\x0a\x05\x8d\x75\x59\xc8\x80\x66\x72\x45\x45\x70\x49\x03\x55\x3b\xe0\xa2\x65\x23\x99\x79\x76\x04\xdc\x3e\x0f\x94\xe3\xb1\x77\xe0\x86\xb6\xde\xb9\x62\x6c\xc5\x5d\x8a\x9c\x6d\x23\x1e\x4d\x90\x6f\x07\x89\x47\x13\x7d\x06\x32\x1e\x9b\x43\xe8\x01\xa3\x84\xd1\xba\x46\x1e\x01\xe8\x99\x29\x18\xde\x56\x9d\x93\xbe\xc6\xba\xc9\x41\x63\xc1\xa1\x78\xbe\x40\x12\x4f\x0e\x9e\xf2\x8b\xf6\x29\xbf\xa2\x89\x26\x23\x73\x20\x16\x2a\xd1\x53\x2d\xb3\xdd\x2e\x64\xe5\xfa\x92\x0a\xfd\x0b\x52\xe3\x43\x21\xe0\x8c\xe6\x05\x0d\xb2\x25\xd0\xc7\xbf\x51\x56\xe8\xbf\xfa\xdc\xc2\x59\x04\xdd\xb1\x3a\xb7\x27\x8f\x46\x1b\x83\x33\x32\x1e\xdb\x66\x08\xac\x5c\x33\x0e\xfd\x75\x2f\x6e\x52\x65\x90\xb1\x40\x40\x66\x94\x4b\x81\x4a\xd5\xfa\xbc\x5c\xd4\x0d\x94\xb0\x6a\x8c\xdf\x3f\xf1\x8c\x81\x30\x08\x61\x15\x96\xcc\x58\x72\x52\x0f\x7b\xb4\xcf\x85\xc5\xb7\x73\xc0\xeb\x1d\xcc\x51\x83\x86\x1c\xc6\xb5\x2e\x0f\xc4\xc0\xe1\x12\xaf\xdc\x31\x2a\x9a\x2f\x20\xdc\xed\x80\x67\xe3\x83\xd5\x71\x6e\x20\xc8\x3f\x7b\x91\x6a\x8e\xf4\x7c\x9f\x55\x4c\x3a\xab\x13\x43\xfe\xb9\x5e\x0f\xd7\x7c\x3c\xac\x60\x4c\xe7\x72\x81\xd9\xf1\xa6\xb0\x5f\x62\x02\xdb\x5b\xc1\x6c\x9f\x3f\x77\x55\xd2\xce\xd1\xe4\x04\x5d\x51\x39\x70\x30\x59\xaf\xcc\xc1\xc3\x4e\xd3\xc7\x6b\x4b\xef\x8f\x6c\x3a\x3b\xaa\xe9\x9f\x8a\xe2\x7b\x41\x0b\xda\x3d\x9d\xdd\xd7\x2a\x39\xaa\xd5\xd7\x1d\xd6\x74\x64\xe3\xe5\x67\x40\xc3\x88\x4e\x47\x36\x5c\x1c\xd5\xf0\x4d\x26\x57\x9f\xd5\x6c\x7e\x74\xb3\x9f\xb3\x70\x89\xd7\xaa\x15\xc1\x44\x6d\x88\xcc\xf4\xb7\x36\x55\x12\xfd\xa9\x6d\x99\xa5\xfe\x3c\x9d\x3c\xd6\x96\x56\xf3\xfd\x54\x9b\x5a\x75\x11\x6d\x69\x55\x5f\x0f\x26\xf0\x2e\xcb\xfe\xbe\x3d\x8c\x04\xe2\x28\x43\x04\x95\x46\x8c\xb5\x96\xc8\x42\xd1\xd0\x9a\x8c\x48\x58\x60\xef\xc8\xe3\x75\xc6\xb2\x65\x46\xd3\x80\x7e\x4a\xe8\xc6\x90\xf1\x24\x29\x85\xa0\xe9\x2c\x50\x9d\xca\x15\x0d\x18\x67\xf7\xd7\xae\x60\x4a\xaf\x03\xca\xae\x33\xc1\x99\xa2\xdc\xc1\x92\x0b\x5d\x68\xa9\x98\x99\xf6\x81\x08\xd6\xb4\x28\xc8\x15\x0d\x08\x4b\x03\x92\xa6\x99\x6a\x96\xe4\xc1\x8a\xe6\x9b\x65\x99\x07\x37\x44\xb0\x8c\x5d\x15\x51\x68\xc8\xf6\xd6\xb8\x7c\xcc\xbd\x09\x2c\x50\x82\x27\x33\xe0\x0f\x55\x46\x82\x6e\x72\x92\x50\xf0\xd5\xff\x2a\xbe\xba\x1a\x38\x13\xc9\xe7\xc9\xc9\xc9\xa2\x82\x10\x6a\x5b\x27\x0e\x5f\x31\x7d\x8e\xc4\x64\xf0\xf7\x8c\xe7\x5a\x7c\x0f\x2b\xc3\xa9\x8b\x68\x29\xc8\x9a\x16\xef\xf9\xf7\x7c\x83\xa7\xa8\xe8\xba\xb9\xf9\xc2\xc1\xd9\xf4\x14\x46\x1b\x22\x0a\xea\x33\xbb\xb6\xdb\x88\x1d\xda\xfc\xc7\x02\x2d\x4e\xbe\xba\x42\x8a\xf0\x47\x52\x64\x6b\x00\x2b\xc3\xd2\x94\x1c\xea\xec\xc5\x25\x1e\x4d\xac\x22\x33\x9a\x36\x8d\xe6\x8d\xf5\x98\x5b\x2d\x21\x9b\xcb\x85\x3b\xb7\x56\xdf\x96\x0d\x2b\x26\xbe\xa5\x9f\x36\x54\x64\x6a\x15\x48\xfe\x8d\x20\x57\xea\xeb\xef\xf5\x59\x61\x51\xe9\x06\x46\x6c\xb7\x0b\x5f\xf0\x44\xf3\x59\xc5\x7f\x58\xf4\x31\x63\x69\xff\xf4\xeb\x0d\x97\x01\x09\xae\x49\x9e\xa5\xc1\x9f\x05\xd9\xac\xfe\xf6\x5d\x90\xda\x7a\x6a\xa9\xdc\x71\x32\xf6\x0e\x80\x3d\x30\xf5\x1c\x82\x24\xbf\xd0\x7c\xdb\x9a\x62\xf5\x60\xc2\xb9\xe1\xab\xc6\x4b\x6b\xa1\xd8\xab\x80\xf5\xd9\xe3\x9a\x6c\xf6\xb8\x16\x20\x06\xab\x76\x03\xa6\xbb\x85\x96\x4f\xfb\x73\xf9\x81\x29\xd8\x24\x92\xa6\x41\xc6\x36\xa5\x1e\x3f\x53\xe2\x53\xce\x93\xf1\xd8\x68\x58\x81\xfe\x85\x6c\x1a\xf0\x13\xa3\x42\x12\x21\xdf\xf3\x8f\x94\xa1\x56\x3a\x65\xa9\x4e\xb5\xbb\xde\x20\x6b\xeb\x10\x52\x5a\xbf\x3c\xc5\x46\x4b\x58\x76\x5d\xc9\xb4\x3f\x54\x86\xe5\xbc\x9c\xf3\xc5\x02\x0d\x4d\x07\x90\xbb\x60\x99\x41\x25\x8f\x77\x40\x39\xc2\x98\xec\x76\xc0\xb6\x8c\x29\xc8\xd0\x68\x02\x61\xbd\x6e\xb2\x02\x0c\xef\x73\x03\xdb\x56\x48\x28\x89\x2d\xc3\x93\x59\xf6\x8c\x1a\x12\x99\x19\xb3\xbd\x95\xda\x32\x27\xb5\x15\xb8\x95\x3f\xcf\xb4\xe4\x16\x3a\x04\x7c\x51\x67\xa9\xd5\x2d\x0c\xb2\xd9\x2d\x5e\xe8\x8d\x69\x2c\x31\xfa\x64\x09\x48\x5c\x28\xc0\xc2\xa8\xe0\xa5\x48\x68\x74\xc9\xd3\x5b\x6d\x13\xd5\xd3\x05\xd2\xac\x04\x92\x0a\xf2\x10\xce\x48\x17\x9e\x39\x1c\x8f\x47\x64\x9e\x2f\xe6\xc9\xe2\x1c\x94\xe3\x71\xcb\xb7\x23\xfc\x87\x21\x35\x71\xb0\xb4\xa3\x0b\x14\xa9\x0f\xd4\x28\x82\xf0\x24\x3f\x09\x03\x92\x0b\x4a\xd2\xdb\x80\x7e\xca\x0a\x59\x44\x3f\xb2\x2b\x85\xfa\xff\xcc\xef\x4b\x72\x15\x50\xb6\xe4\x22\xa1\x45\x40\xf2\xbc\x69\x42\xd5\x2e\x02\x92\x08\x5e\x14\xc1\x2d\x2f\x45\xa0\x64\xb0\x2c\x21\xe6\x08\x83\x2b\xd1\xbe\x64\xd9\x3f\x4b\x3a\x0b\x54\xe3\xc1\x9a\x0b\x1a\x90\x4b\x5e\xca\x1f\x99\xd2\x3f\xb5\x3b\xdd\x8a\xaa\xdd\x55\xc4\xc1\x4a\xca\x4d\xfc\xd5\x57\x29\xbd\x8e\xc8\x86\xe7\x39\x4f\x89\x24\x51\xc2\xd7\x5f\x25\x5c\xd0\xaf\x5c\xb7\x45\xb4\x92\xeb\xfc\xbf\x4c\xc3\xf7\xf5\x18\x42\x88\xec\xd4\xf1\x68\x02\xe3\x01\xe0\xec\x76\x40\x95\xd0\xb4\xa7\x29\x89\xd8\x3c\x59\xec\x76\x80\x99\xdf\x48\x18\xe9\xb5\x80\x56\xfe\xad\x7f\x37\xc2\xac\xb7\xe0\x58\x20\x5a\x01\x06\xd1\x68\x0a\x51\x66\x04\x3b\x56\x79\xfe\x74\xbe\x16\x60\xc4\x71\xcf\x0f\x24\xcf\x12\xeb\xb9\xd7\x38\xfd\x21\x89\xe9\x7c\xb2\x40\x0c\xf7\x4f\x91\xe4\xb9\x8c\xa5\xca\x14\x78\x3a\x13\xcf\x9c\x3f\xd4\x4c\x9c\x9c\x40\x3a\x17\x4a\xf6\x9e\x8b\x85\xc6\xb2\xf1\xb8\xa1\x73\x18\xe3\x3a\xfd\x9c\x9d\x98\x1f\x7a\x67\x37\x78\x16\xdb\x74\xc4\x4e\xb0\x9c\x8b\x85\xdb\x29\x39\x60\xb0\xaa\x59\x3c\x4e\x50\x12\x69\xf9\xeb\x39\x49\x56\xb4\xe5\x6d\x59\x13\xf5\x0a\x25\xce\x60\xe4\xf6\x81\x45\xbd\x56\xf9\x12\x8f\xa6\xaa\x28\xd5\x07\x67\x2f\x0f\x91\x6f\xbf\x5a\x81\x47\x13\xaf\x87\xcf\xa9\x37\xad\x3c\x75\x22\xb9\x43\xb0\xf0\x5c\x57\x5b\xae\x71\x8a\xac\x60\xbb\x76\xfa\xd4\xd7\xd2\xa7\xa5\xa0\xf4\x67\x0a\x86\xc4\xaa\x8c\x16\x8a\x43\x09\x72\xe3\x54\xd3\x76\x1d\xed\x91\x77\xd8\x85\x42\xdc\xe9\xe2\x30\x20\x08\xc1\xed\x5d\x2a\x06\x8b\x04\x90\xb0\x71\x54\x9e\x1a\x47\x65\x30\x3d\x7d\x0a\x5b\x6e\xca\xd3\xe9\xa9\x12\xdb\x18\x78\xf0\x58\x89\x6c\x0c\x3c\x7e\xa8\xc4\x35\x06\x1e\x9f\x29\x61\x8d\x81\x07\x4f\x20\x5a\xea\x82\x53\x88\x52\xfd\x31\xf1\x9c\x7d\x36\xd6\x9c\x68\xe1\x03\x92\xe8\x12\x02\xe8\xcc\x15\x20\x89\x28\x04\x8a\x90\x8f\xc0\x90\x63\xa1\xf1\xf3\x1e\x8f\xfb\x3b\xc2\xe4\x80\x30\x84\xb5\x43\x9b\xcf\x91\x3b\xee\x93\x0d\xc0\xd1\xa0\x3f\xb9\xd2\x84\x14\xd7\x8a\x96\x5c\xbc\x24\xc9\x0a\xf8\xa7\xce\xd6\x31\x59\xce\xd9\xa2\x65\x11\x72\x7b\x73\xce\x16\x7b\x0c\x43\xba\x86\xed\x30\x2b\xbe\x11\xfc\x67\xca\x80\xf6\x9e\xde\xed\x28\xb0\x6e\xd4\x48\x56\x80\x7a\x3e\xc1\x6a\x4d\x56\xda\x79\xdc\x87\xe3\xad\x27\x69\x69\xcf\x4f\x2d\x89\x81\xae\x13\x68\x83\x4d\x57\x54\xbe\x30\x46\xe7\x6b\xfa\x8a\x2d\xf9\x37\x82\xaf\xbf\xc9\x68\x3e\xe8\x68\x23\xa2\xcb\xc6\xd5\xa6\x58\xf1\x32\x4f\x5f\xb1\x24\x2f\x53\x3a\x5c\x9a\x36\xa5\x97\x39\x91\x92\xb2\x0b\x9a\x1b\x03\x77\x31\x5c\x83\x34\x35\xfc\x91\x69\xc0\x0f\xd7\x48\x9a\x1a\x2b\x52\xd4\x35\xf6\x94\x4e\x5b\xed\x3b\x82\xf0\xb7\x92\x8a\xdb\x9a\x1c\x0e\x79\x10\x75\x06\xf6\xba\x94\x9a\x81\x79\xfc\x7b\xa0\x56\x16\xf9\x9e\x4d\x2b\x9a\x7c\x3c\xd4\x47\xd6\xe9\xe3\xad\x73\xf3\xba\xab\x93\xd5\x5d\xd5\xde\x8a\x17\xd9\xe0\x0a\x65\x51\x36\x5c\xd7\xa8\xfc\x43\x15\x7e\x1a\x04\x60\xd3\xd7\x20\xdc\x33\x1f\x13\xae\xa8\x85\xf7\x1d\xd3\xfa\x78\x47\x4f\xc3\xb5\xda\x0b\xfc\x9a\x64\x77\x82\xcf\xf3\x1e\x33\xaa\xb8\xeb\xea\x35\xd9\x0c\xd7\xb8\x6c\x23\xa9\x61\x7d\x7f\x57\x84\x7b\xcf\xec\x3d\x1c\xad\x9d\xf5\x5e\xb1\x1a\xda\xc3\x95\xf2\xa6\x92\x39\x8e\x68\x70\x5b\x6d\xd2\x43\xa8\x44\x7c\x78\x93\x34\x7d\x7f\xbb\xa1\x4a\x08\x7a\xcf\x0f\xd7\x22\xdd\x2e\x9f\x73\xc6\xcc\x7e\xad\x3b\xbf\xbb\xef\x74\x78\x0f\x1f\x31\xea\xcb\x6e\xff\x5f\x3b\xb1\xe7\xee\xba\x49\xb7\xae\x5b\xc6\x8b\x8d\x92\x2b\xef\x6e\xc0\xc3\x83\xac\xb8\x48\x48\x4e\x84\x5e\xd3\xa1\xd2\xa5\xbf\xe9\xb2\xe2\x8d\xb6\xb2\x1e\x28\x7d\xe5\x23\x40\x5e\xd2\xf7\xdc\x90\xfb\x77\x74\xa3\xa4\x25\x26\xf7\xe2\x41\x19\xad\x3d\x92\x2b\xb9\xa0\x7f\xa5\x9a\x0f\x1d\x24\xd4\x65\x67\x9f\x5e\x78\x15\x87\xcb\x7b\xa0\xaf\x65\x4d\x33\xc6\x3b\x3a\x6a\xe1\x4c\x51\xe6\xf2\xb8\xf1\x65\x3e\xfc\x0e\x94\x4b\xfc\x72\xaf\x58\x9e\xb1\x7a\x61\x87\x2b\xd0\x56\x85\xf4\xc0\xa2\x78\x78\x2a\xf9\xc1\x92\x1f\xfd\x36\xff\x52\x70\x76\xa0\xec\xb2\xb3\xd4\x0a\x0e\x6f\xf8\x30\x87\x2c\xfd\x4d\x6e\x6e\x1f\x0d\x15\x2b\x7c\x20\x27\x39\x67\xf4\x05\xa5\x83\xb4\x29\xef\xf0\x90\x97\xec\x7a\xa8\x58\xe2\x17\xcb\x8a\xbd\xa5\x5a\xc0\xff\x5e\xf0\xb4\x4c\xf6\xe1\x69\xe2\x83\x33\x2b\x5e\xd0\x6b\x9a\xf3\xcd\xbe\x65\x4a\x7c\x7c\xcb\x8a\xf7\xb4\xd8\x53\xcc\x5b\x4d\x29\x6e\xbf\xb1\x25\xde\x8a\xef\xf8\x95\xb6\x5e\x0c\xba\x03\xb7\x08\xb4\x31\xce\xbc\xd3\xa8\xf9\x2d\x29\x0e\xd4\x6a\xc3\xe4\x9f\x25\xc9\x87\xca\xa5\x7e\xb9\x35\xb9\xbd\xd4\x8b\xf1\x8d\x16\x1c\x87\xca\x6f\x9a\xd2\x4a\xcd\x7e\xcb\x12\xfa\x8a\xdd\x01\x9e\x95\xdf\x87\x12\xdb\x36\xf6\x26\xe3\x50\xe1\xdb\x3b\x45\xff\x43\x8a\x03\xaf\x1a\xf1\xfe\xa1\x2f\x49\xf2\xfe\xe5\x22\xa1\x84\x72\x8a\xb6\x39\x25\xd7\x34\xce\xaa\xda\x58\xa7\x9d\xd6\x06\x4f\x1e\x8d\x1f\x09\x72\x1a\xd7\x40\xa1\xf0\x77\xe1\x09\xd5\xa6\x8e\x0a\x39\x02\x3d\xd4\x56\x09\x5a\x8a\x35\x0a\x7f\x64\x3f\xb2\x10\x9e\x84\x3f\xb2\xb0\x42\x03\x52\x4f\xdc\xf7\x32\xf5\xfc\xfa\x11\xc3\xa6\x57\x24\x70\x0e\x42\x10\xa2\xd2\xbb\x1b\xf5\xc2\xef\x08\x05\x21\x44\x21\x0c\x95\xea\xa3\x47\x51\x73\x34\x6d\xb8\x44\x99\x52\xf7\x9c\x5c\x7b\x41\x65\x6d\xfc\xd3\xbe\x9e\x62\xb7\xb3\x9e\xfb\x4a\xe2\x3f\x2f\xc1\x5c\xa2\x12\xcc\x19\x12\x0b\x88\x38\xca\x16\xba\x91\x38\x6b\x80\x74\xc7\x14\xdc\x18\xf5\x0c\xf4\xe1\xa6\x30\x46\xa6\x5a\x0a\x41\x1c\xfb\xa3\xac\x8d\x5a\x27\x61\x1c\x84\x27\xec\x24\x07\x61\x80\x83\x10\x09\xa8\x3f\xd5\xd4\xb9\x1e\x05\xac\xd0\x85\x37\x91\xa1\x65\x28\x80\x37\xd9\x02\x56\x48\xd3\xee\xc1\x81\x92\x3c\x23\x85\x0f\x67\x1a\xd5\xac\xa5\x33\xc4\xbd\x30\x2c\xc1\x5c\x69\x6f\x48\x22\x35\x76\x68\x06\xaf\x17\x4b\xf8\x0b\xe3\x26\xe0\xc0\x59\x21\x27\x39\x0c\xa3\xa5\x1a\x90\x81\x46\x8d\xa2\x6d\x71\x61\x08\x51\xa3\x28\x72\xa8\x5a\xc3\xad\x87\x0d\xb0\x42\x6d\x2e\x35\x08\x1a\xb5\x6c\xcf\x39\x33\xd6\x7e\x0d\x22\xaf\x19\xb1\x1f\x16\x7a\x0c\x28\x07\x21\x67\x41\x88\xa4\x9a\x38\x33\x13\x17\x6e\xe2\x7d\x41\x79\x70\x04\x7a\x49\x58\x6f\x28\x02\x0f\x6f\x82\xe3\x96\x2b\xac\xcd\x7e\x61\x73\xb1\xce\x7d\x0d\x2e\x9c\x1a\xf3\x89\x9e\x8d\x2b\x66\xe6\xe3\x55\x6a\xd0\xd3\x00\xf8\x24\x53\x20\x36\x98\x7e\x90\xe8\x7c\x93\x73\x72\x44\x31\x63\x2c\xee\x96\x43\x9e\x2f\xa9\x2e\x58\x6b\xde\xd1\x65\xce\x93\x8f\xe7\xc3\x45\xeb\xb3\x8d\x30\x0c\xbf\xba\x42\xf7\x7e\xfc\x31\x0c\xc3\x7b\x4e\x6d\x0f\x03\x45\x04\xe8\x7c\xb2\x18\x8f\xc3\x1f\xa5\xfb\xb1\xdb\xdd\x9f\xaa\xcf\xfa\xc6\x8d\xa2\x69\xf0\xfc\x5e\x18\x86\x3f\xb2\x7b\x35\x24\xcf\x59\x9c\x00\x06\xd1\xbd\x1f\x99\x6e\x34\x56\x05\xea\x6c\xe6\xf5\xfd\xbb\xaf\xd0\x3d\x55\x15\x22\x5d\x04\x56\x0a\xaa\x29\x2d\x12\x91\x6d\x6a\xd3\x09\x8c\x3b\x56\x01\x06\x2b\xf4\x27\xe3\xa0\x76\x17\xd4\xce\x43\x29\x4a\x1a\xc6\xe1\x92\xe4\x05\x0d\x2b\xf4\xa6\xcc\xf3\xbf\x0f\xdf\x56\x0d\x59\x99\xe7\x61\x85\x5e\xb2\x72\x7d\xf7\x6a\x7c\x97\x15\x7b\xd7\x2c\x9c\x87\x27\x86\x4a\x2b\x55\xcb\xa0\xd1\x49\xb8\x50\xe4\x5f\x33\xa8\xbd\xf5\xb6\xa6\xde\x52\x91\xaa\xba\x5e\x55\xd7\xeb\x93\xb0\x43\x84\xa2\x56\x68\x86\x7a\xfa\xa3\x4f\x21\x2c\x53\x69\x88\x5e\x83\xf8\x15\x52\x3c\x53\x2b\x66\xfb\x3b\x36\xd0\xd8\x53\x46\x01\xc3\xec\x5e\x03\x82\x37\x9c\xa9\x45\xd8\xdf\xa2\x29\x3a\x0a\x2b\x74\x91\xac\xe8\x9a\xdc\x41\x20\xbc\xdd\xce\x7c\xc6\xa9\xfd\xab\x7c\x92\x54\xe8\xd6\xd4\x54\xa5\xd9\xa5\x05\x60\xd0\x51\xa3\xb7\x7e\xb5\x3d\x3d\xd6\x23\xac\xfb\x70\x10\x57\x43\x56\xc3\x55\xba\x58\xa7\x01\x32\x74\x31\xd4\x0c\x47\x95\x0e\x91\x25\x71\x03\x24\xda\x8e\xcd\xd9\xf8\x0e\x36\xdc\x23\x97\x19\x93\x54\x2c\x49\x62\xe9\xb4\xd7\xb4\x22\x91\x06\xc3\x7c\xe8\xa8\x29\x28\xf6\x95\x83\xb0\xbe\x16\x59\x68\xd6\xa1\x08\xdd\x58\x11\x34\x43\x13\x0d\xe4\x78\x33\x3a\x8d\x95\xc7\x0f\xac\xc1\x32\xe1\xe4\x82\x7d\x62\x00\x60\x11\xbd\xa6\xe2\x76\x00\x84\xf7\xa7\xb8\x47\x88\x2a\x78\xee\x90\x99\x79\x28\x1c\xab\xc4\x1f\x59\x88\x12\xa0\x33\x54\x51\xa8\xfe\x40\x45\xa4\xf5\x0a\x8a\x9e\x7c\x01\xd1\x2b\xb6\x29\xcd\x4e\x3d\x7e\x6e\x9f\x23\xe5\x28\x01\xcb\x0a\x3a\x0a\xe8\x46\xce\xa9\x47\x50\x43\xf7\x95\x5b\xc7\xcf\x5b\xfe\x0e\x9b\xee\xaf\x77\x8d\x1f\x6a\xd1\x6b\xee\x5c\x00\xd1\x74\xfd\x03\xeb\xef\x87\xcf\xeb\x56\x76\xf7\x60\xc9\xb4\x5a\xe6\xf5\x28\xc6\x63\x7d\xdb\xc9\x5d\x89\x57\x80\x38\x31\x88\xb6\x53\xf2\x66\x18\xd6\xe3\x51\x84\xf9\x57\x0d\xc7\xd0\x63\x7f\x3c\x94\x95\xeb\xfd\x00\xa8\x39\xc1\x11\xfb\xf9\x88\x6d\xac\x31\xea\x97\xec\xe5\x23\x16\x73\x53\xca\xfd\xf3\xa8\x39\xc1\x2f\xdd\xa5\x39\x37\xe7\xa0\xae\xd3\xb0\x1e\x51\xf0\xc7\xf0\xe4\xdf\xb4\x51\x03\x25\x7d\x79\xa8\x51\x41\xcb\x20\x5e\xba\xbb\xc4\xbf\x8e\x3f\xe8\x2b\xc9\x69\x70\x90\x4d\x34\x24\x7e\xb8\xd3\xa1\xe6\x8e\x24\xf3\x1e\x95\x3f\x3c\xa1\x5f\x4c\xe2\xed\x88\x7e\x29\xa5\x6f\x93\xa2\x23\xc7\x78\x27\xea\xda\x41\xdd\x49\x8e\x1a\x6a\xf4\xcb\x7a\xee\x91\x22\xdb\xf1\xaf\xa0\x48\x35\x41\xfa\x65\x23\x1a\xa0\x46\x66\x48\x87\x88\x52\x97\x88\x7c\xf1\x65\x38\x40\x48\xaa\xc6\xe8\x42\x3c\x64\x1f\x70\xee\x51\xbc\x2d\xf2\xe4\x78\x44\x81\x54\xad\xe8\xcd\xdf\x78\x15\x94\xed\xc8\x09\xe7\x6a\x60\xb9\xa4\x62\x88\xc4\xd2\x0a\x1a\xe7\x5b\xb9\xdb\x85\x7a\x15\x9a\x76\x8a\x76\xd4\xb3\xc9\xc8\x0b\xb1\x12\x6e\x7f\x64\xe1\x89\xa2\x28\xd4\x52\x94\x93\xf0\x47\x56\x85\xad\x06\xf2\xae\xbf\xec\x39\xd5\x54\xad\xdf\x55\xd2\xee\x2a\x0c\xb4\xfc\x57\x6b\x34\x3f\xb2\xaf\xae\x54\x37\x41\xd0\xbb\x18\x7f\xc7\xc1\xfc\xbf\xcf\x5b\xb7\x6d\x39\x3b\x3e\x78\x9b\x71\x8b\xf7\x9d\xbb\xcf\xfd\x1f\xf1\xb6\x42\xbc\xe5\x35\xc5\xe0\x6c\xe8\x10\xfc\x50\x04\xb4\xf1\x18\x70\xcc\x9d\xaa\x78\x30\x56\x1a\x83\x07\xb0\x65\xb0\xe6\x0b\x8b\x90\x5c\x00\x86\x28\xf4\x42\x0c\x54\x10\x42\xc4\xfb\xa7\xe5\x0a\x39\xcd\xe2\xcc\xe5\x02\x56\x5e\xd4\x88\x3b\x4c\x95\x77\x2c\xfd\xc8\x3b\xdb\x37\x37\x11\x86\x9c\xc9\x3f\x7c\x78\xf7\xf2\xeb\xe7\xef\x3f\xbc\x78\xf9\xf7\xf7\x6f\xdf\x7e\x77\xf1\xe1\xcf\xdf\xbd\xfd\xd3\xd7\xdf\x7d\xf8\xf6\xed\xdb\xbf\x7e\xf8\xe0\x9f\xd1\xe3\x23\xeb\x44\xe6\x70\xf7\xf9\x4b\x28\xc5\xed\xf6\xc8\xb2\x80\xc2\x2a\x21\x32\x59\x29\x70\x38\x4f\x2c\x13\x17\x4b\x9a\x60\x65\xed\x50\x86\x4f\x8e\x0b\x62\xf1\x4b\x43\x22\x24\x64\x93\x49\x92\x67\x3f\xd3\x96\xe3\xdb\xa4\xb1\x7b\x24\x2b\x22\xbe\x96\x60\x02\x23\xc9\x7f\xd8\x6c\xa8\x78\x4e\x0a\x0a\xe0\x89\x73\x76\x99\xc2\x0a\x99\x6b\x38\x24\x63\x05\xce\x90\x8c\x96\x19\x4b\x5f\xe9\x9b\xec\xc4\xfe\x1a\x8c\x3b\x44\x4c\xa8\x3f\x67\x37\xfd\xc3\xfd\xe9\x39\x9d\xb3\x85\xf5\xe7\xd7\xad\xea\x93\xd9\xe7\x2b\xa2\xd6\xd2\x1d\x03\xb4\x02\xed\xd4\x5e\x54\xdd\xbd\x86\xa4\x76\x8c\x35\x77\x1c\x28\x44\x26\x5e\x06\xd5\x81\x32\xe4\x9c\x2d\x5a\xa1\xda\x9a\xd8\x2e\x87\xc2\x46\x19\x57\x0f\x79\xde\xb2\x76\x34\xf1\x38\x7a\x23\x10\xde\x08\x18\x44\x26\x0e\x21\xd3\x01\x08\xc5\x9c\xfb\x23\xe0\x8b\x19\xf5\x83\xbd\x09\xb5\x34\xad\xdf\x55\xeb\xae\x72\x65\x83\xc0\x19\x9f\xea\x47\x0f\x21\x9c\x09\x13\x58\xa2\xa1\x83\x59\x6b\xec\x6d\xff\xcb\xae\x7c\xe9\xc5\x95\x1a\x0a\xec\xa7\xe3\xfa\x19\x1f\x17\x3f\x72\x1b\xe9\x46\x24\x01\x13\xc4\xfd\x08\x03\x48\xe0\x49\xdb\x21\x0d\x4f\x3b\x57\x85\x4c\x8c\xad\xd1\x04\x63\x3c\x1a\x49\x1d\x8a\x12\x09\x44\x6b\xb7\x1d\x73\xbb\xa5\xb9\x69\xc2\xc6\xe3\xcc\x94\x92\xed\x32\xda\x96\x36\x77\xae\x40\xc8\x5d\x81\x41\xf5\xe5\xcb\x85\x17\xec\x11\xd6\xb3\x75\x69\xd2\x51\xa3\xfb\xd3\xbb\x38\xcd\xaf\x08\x3c\xe2\x05\x1a\x11\x7b\x83\x8c\xf2\x1b\x46\x85\x3b\x13\xd9\xed\x9c\x7f\xb1\x7f\x85\x4d\xfc\x4f\xdc\x11\xb1\x9d\xff\x82\x3b\x21\x1e\xae\x3e\x7c\x3a\xe4\xbb\x3f\x6a\x25\x08\xc4\x07\xe6\x93\xfd\x16\x0e\xf3\x4b\x85\xc3\x24\x03\xe1\x30\xc9\x7f\x6c\x38\xcc\x76\xa0\xd4\x96\x2c\x60\x80\xb9\xca\xf2\x54\x50\x23\x72\x99\x0b\xc3\x24\x4d\x69\x8a\x47\xd3\xa1\x30\x6c\x2b\x52\x0c\x73\x98\xc3\xb7\xf5\xb4\x40\xd8\xba\xab\x67\x68\xa2\x1f\x73\x93\x0e\xe8\xf5\x46\x5a\x64\xf5\x28\xc7\xe3\xe6\xdb\xdd\x84\x36\xd5\x47\x60\x24\x77\xbb\x11\x60\x58\x42\x58\x41\x55\x50\xcf\xa3\x1d\xbb\x8d\xa4\xe9\xd0\xf0\xa5\x1a\xbe\xe1\x81\xfd\xc5\x1b\x64\x89\x36\x9c\x8e\x1a\xbe\x1c\x94\xe5\xec\x2d\x8b\x7a\xb4\xbb\x1d\x10\x1e\xb0\xcd\x05\x7e\x13\xe1\xd6\x5e\xed\xe7\xe7\x02\xf3\x98\xd9\x1b\xfc\x36\x8a\x1d\xac\x20\x12\x6e\x45\x26\x95\x0e\x07\xd7\x0e\xd8\xda\x5f\x52\x7d\xb2\xfa\xbd\xe0\xeb\xac\xa0\x45\x3b\x56\x80\xce\xfa\xb3\x20\xd7\xf4\x96\x88\x54\xe7\x95\x43\xcb\x4c\xd2\xf4\x6f\x5e\x2b\x83\x02\x0a\xb5\x77\xba\x05\x66\xa6\x5d\x3d\x99\xda\x97\xab\x96\x1a\xfa\xfd\x2a\x2c\x02\x02\x75\x8e\x5a\x38\x84\xe7\x12\xc0\x18\xf4\x27\x61\xa3\x13\xa8\xe1\xda\xa4\x76\xe8\x54\x40\xa3\x25\x95\xc9\xea\x05\x91\x04\xa8\xe5\x37\x31\x41\x3a\x81\xfb\x56\xa4\xa8\xa1\xd2\x27\xc9\x43\xbd\x66\x3f\xd3\x3f\x4c\x7a\xe1\x02\x8b\x72\x4d\xbf\x66\xe9\xd7\x37\x24\x93\x43\x0d\x36\xb7\xde\x91\x42\xac\x3e\x20\xea\x0e\xfa\x2e\xb3\x48\xd4\x31\xe7\x2c\x78\x33\xcc\x2d\x78\x09\xe6\x1e\x78\x69\x17\xa8\x24\x4d\x41\xd6\x05\x2a\x81\x9a\x34\x96\x85\x89\xdc\x82\x06\x06\x91\xe4\x94\x08\x00\x91\x4d\x88\xcc\x65\x9b\xaa\x13\x79\x30\x6f\x1d\xd5\x0a\x4a\x51\x89\x69\x1d\x43\x25\x6f\x42\x46\x95\xe7\xdb\x2a\x2e\x51\xa2\x0f\xfe\x58\x4a\x85\x93\x4c\xd1\xb2\x29\x94\x9c\x33\x30\x9d\x3e\x80\xb6\xc8\x7b\x7e\x21\x89\xcc\x92\xd7\x44\x7c\x2c\x37\x71\x82\x0c\x6a\x16\x68\x33\x1c\xe5\xc9\x8f\x8e\x6a\x2e\x50\x6b\xd9\x60\x90\x02\x9a\xc0\xbe\x75\xfc\x69\xad\x8e\x21\x8f\xf4\xeb\xbb\xfc\x6a\x5f\xda\x10\xb6\x03\xa8\x41\xc0\xb6\x42\x39\xda\x9a\xc1\x3a\xc0\xc5\xa9\xd2\xbd\x58\x2b\x32\xa4\xca\x1f\xc2\x2d\x55\x2e\xf1\x3a\xb1\xd7\xff\x3b\x0d\x8a\xfa\x36\x3f\xab\x00\x1f\x88\x1d\xe0\xcb\xa9\xf9\x80\xc7\x35\x85\xdb\x4d\xbf\x9f\x39\x5d\x60\x11\x11\x76\x5b\x35\x8b\x2c\x68\xc1\xf3\x6b\x0a\x60\x24\x57\x94\x81\x16\x11\x31\xab\xbc\x04\xbc\x13\x17\x61\xd3\xdc\x05\x4a\xfd\xcd\x04\xe0\x79\xba\x6f\x5f\xb8\x0e\xf4\x25\x7f\xe3\x1b\x93\x28\xcd\xed\x11\x44\xcb\xe1\x38\xba\x09\x18\x8d\x64\x94\xe4\x19\x65\x12\xdd\x7b\xce\xcb\x3c\xd5\x01\x34\x95\xa2\x14\x84\x26\x3d\x74\x17\x60\x2c\xfe\x05\x4a\x4e\xd1\x57\x5f\x9e\x9b\x61\x88\x28\xf8\x87\x20\x1b\x5d\x46\x70\x2e\x83\x3a\xc2\x90\xaa\x49\x58\xf0\xcc\x14\x77\x97\x57\xff\x70\x4f\x69\x96\x8e\x3c\x03\xd7\x3f\xac\x66\xcb\x76\x7c\x86\xad\xc9\xa8\x97\x2a\xca\x8a\x77\xf4\x9f\x65\x26\x14\xa7\x59\xfa\xa1\x1d\x5c\x63\xb1\x88\xd4\x3c\xfd\x82\x9a\x7b\xa4\x3e\x72\xff\x26\xb3\xfd\x3a\x99\x6d\x65\x71\xea\xf6\x73\xe3\x7e\xeb\x10\xc0\xed\xc8\xdf\xb5\xd5\xbe\xe1\x9d\x2b\xd0\x60\x64\x1b\x71\x82\x1b\x62\xe2\xbb\x6e\x48\x51\xd0\x54\x07\xae\xcc\x0c\x9a\x99\xd5\x88\x82\xd7\xe4\x23\x0d\x8a\x52\xd0\xe0\x96\x97\xba\x9c\x02\xb1\xbe\xf6\x65\xcb\x5e\x67\x44\x63\x6a\x8d\xdd\x0a\x8d\xa2\x7b\xda\x02\xa1\x53\xa2\x0f\x1f\x9a\x51\x7d\xd0\x41\x89\x3e\x7c\xd0\xb1\x55\x0f\xe4\x63\x7f\x2a\xb0\x89\x64\xbe\xb1\x91\xcc\x3f\x87\x04\x3a\xb4\x6f\x85\x56\xd2\xf0\x68\xba\xe8\x67\x0e\x0e\xab\xaa\x5a\x5d\xef\xa7\x99\x5e\x6b\x76\x2b\xd9\x9a\x9b\x3b\xb7\x22\xf2\x36\x1f\xe3\x29\x6d\xed\x52\x39\x44\x89\x0f\xb4\xe5\xcd\xb0\x21\xd0\xb2\x4d\xa0\x75\x1c\xca\xe9\x23\xe8\x05\xbf\xa0\x70\x4b\xe7\x34\xd2\x62\x14\x9e\x2c\x70\xf8\x37\x13\xaa\x56\x25\xba\xab\x12\x78\xba\xc0\xa1\xfb\x61\xb2\x2e\x4c\x18\x32\x6d\xca\xc6\xa7\x0b\x1c\xfa\x09\x61\x05\xd2\xdd\x0e\xa4\x78\x5b\xd9\x00\x4f\xeb\x3a\xc4\x64\x8d\xec\x97\x35\xa7\x46\x0c\x09\xbc\xf6\x23\x06\x35\x46\x81\x6b\x30\x1a\xd1\xf1\x78\x34\xa2\xfa\x8a\x1b\x0a\x9d\x73\x98\xa2\xa5\xe1\x09\x3d\x09\x1d\x4a\x4b\x1e\xe8\x0b\x33\x0d\xae\x77\x2f\xf9\x3a\x75\xfc\x8d\x02\x75\xf0\xdf\xbc\x0c\xd6\xe4\x36\x60\xd4\x54\x56\xaa\xea\x3d\xef\x52\xe4\x3d\x1d\xb1\x84\x71\x1d\xc4\x64\x4d\xe5\x8a\xeb\x62\x09\x67\xd7\x54\x48\xb3\x31\x6a\x98\x07\x19\x93\x3c\x20\xf5\x3d\xe2\xd0\xa9\xcb\xed\x2b\xa6\x7b\xad\xb3\x7b\x6e\x95\x9a\x49\x57\xc6\x4f\xf1\xb8\x86\x86\xae\x9e\xd4\x2d\x8d\xc7\xd6\x9f\x51\xa7\xd4\xa3\xaf\x94\x36\xf9\xa5\x3a\x58\x3b\x3c\xe9\xf5\x51\x7e\xb1\x3e\x0a\x1f\xd9\xba\xfd\x28\x9c\xe1\x56\x2d\xda\xed\xb2\xfa\x8b\xd4\x5f\xa5\x33\xee\x85\xdf\x2b\x45\x99\x5d\x05\x9c\xe5\xb7\x01\x69\xae\xbe\x4a\x5e\xe3\xc2\x3d\x17\x1a\xfb\x96\xca\xa0\x28\x37\x1b\x2e\x24\x4d\x2d\xfe\x94\x85\x22\xa1\xfa\x1a\x55\x40\x02\x23\xff\x06\xfe\xe8\x14\x12\x39\x88\x04\xa4\x08\x6e\x68\x9e\x87\x10\x5d\x03\x37\xae\x13\x37\xac\x93\xb2\x79\x8c\x01\x85\x82\x92\x44\xde\x37\xf7\x64\xcd\xe8\x6c\xd7\xc5\x70\x3f\xc8\xc4\xd7\xa9\xbb\xda\x50\x11\x7c\xfb\xf6\x79\x64\xf7\xc8\x8a\xa4\x41\x78\x52\xf7\x19\xea\x26\x32\x5a\xa0\x20\xac\xfb\x3d\x09\x5b\x2d\x16\x3a\xac\x41\xd8\x8c\x2f\xac\x5b\x2f\xcc\xec\x13\xc2\xcc\xae\xd1\x52\x4b\x41\xef\x29\xb0\xfd\xc4\x33\x16\xac\xcb\x5c\x66\x9b\x9c\x7a\x1b\x44\x1f\x36\x06\x7a\x93\xd4\x42\x4e\x08\x11\xc3\x6e\x50\xe7\xa9\x21\x42\x71\x5a\xd3\x1d\x34\xb4\x78\x80\xe1\xb4\x45\x7e\x5c\xa4\xb4\xba\xa1\x2c\x76\xa5\xcf\x49\x5c\xce\xae\xc1\x54\x5f\xd0\x76\x6b\x7e\x00\xb4\x9c\xd1\x40\x63\xe8\x7e\x18\x16\x0d\x38\x7c\x5c\xfe\x52\x00\xb1\xcf\x82\x14\xf3\xc9\x62\x26\x71\x3e\xe4\xd0\xb9\xdb\xcd\x8d\x62\x9f\x60\x13\x44\x2e\xd7\x87\x9a\xe3\x71\xa8\xaf\x88\x60\x8c\x4d\x82\xb9\x13\x9c\x7b\x57\xd1\xe3\x30\x25\x92\x84\x48\x75\x1d\x33\xd4\x84\x5b\x97\xb5\x80\xb4\xb6\x3a\x6c\x02\x51\xa2\xc5\xe0\x2b\xcb\x31\x6a\xba\x7d\xd3\x56\xae\x0d\x47\xda\xed\x1c\x8f\x77\x0d\x5d\x81\xd1\x88\x1d\x2f\x18\x0b\x47\xc6\x33\x66\xa2\x69\x6b\xd9\xe2\x33\xa5\x63\xe4\xda\x51\x99\x56\xd0\x6e\x8b\x39\xaa\xa2\x12\x63\x0c\xc3\xbe\x07\x11\xd3\x93\x7c\xfb\x9b\x88\xfb\xa5\x44\xdc\x97\x03\x66\xc9\x97\xff\xb9\x66\xc9\x8b\x41\x9b\xd2\xb6\x6a\x3f\xd5\x45\x8f\x1b\x00\xd5\x4f\x75\x35\xd1\xf9\x05\x7c\x36\x19\x8f\x01\x9b\x8b\x85\xbe\xa0\xaf\x85\x1f\x63\x29\xa0\xc3\x67\x99\x07\x9f\xd3\xaa\x01\xe4\xbf\x18\xb0\xf7\x55\x2d\xde\x3c\x21\xc0\x4f\x4e\xa0\x37\x2a\x05\x1a\x37\x30\x13\x63\xc3\xfc\x6d\x4e\xf9\x2a\xf4\x1e\x33\xf0\xf8\x11\x44\xdf\x5b\x8d\xe6\xf5\x3e\x0b\x88\x67\x2a\xf2\x35\x1a\x95\xdc\xd6\x68\x78\xb4\x11\xf4\x3a\xe3\x65\xf1\x82\x48\x82\xb7\x15\xe2\x0a\x88\x3a\xf6\xb0\xb6\xf3\x22\x6e\x82\x64\x68\x2e\xd1\x92\x3f\x3d\x8c\xcb\x96\x8a\xf9\xff\xb3\x5b\xc4\xed\x6a\x1e\xb9\x2b\xac\xe6\x56\x11\x80\xb3\x81\xd2\xce\x94\xf5\xf6\xb2\xa0\xe2\x5a\x3f\x17\xd6\x04\xe5\xdd\x32\xfa\xc9\x3b\x2b\xa9\x71\x42\x46\x8a\xb8\xce\xe8\x78\xfc\x58\x4b\x24\x8c\xca\x1b\x2e\x3e\x5e\x48\x22\xcb\x62\x3c\x7e\x0f\xa8\x2e\x80\x18\x3c\xa7\xd6\xc2\x14\x03\xf7\x85\x78\x54\xea\xa8\xc4\xcf\x4b\x21\x94\x18\x68\x2d\x84\x48\x1f\x2a\x77\x03\x77\xf2\x48\xd0\x7a\x40\xef\xb9\x9e\x0f\x80\x68\xd4\x3b\xf7\x73\x57\xa8\xf4\xcd\xa9\x22\x74\x2f\x1a\xd0\xd9\x60\x77\x55\x05\x2b\x05\x75\x73\x07\xf3\x20\x98\x07\x80\xa6\x43\x75\xf7\x52\x5b\xf1\x8c\xa1\x0b\x32\x33\xb4\x42\xd5\x10\x0c\xda\x7d\x36\xe8\x30\x1e\x6b\xd7\x84\x84\x9a\x58\xce\x40\xd7\x6e\x2f\x6d\x8f\xa4\x23\x86\xb7\x6a\x05\xe2\x0e\x5d\xd3\x16\x58\xef\xad\x3a\x43\xa4\x00\x43\xde\x7b\x24\x80\xf6\x71\x02\x36\x56\x4e\x24\xa8\x36\xec\xc6\x4a\x51\xd4\x5f\xd1\x65\xc6\x52\x40\x21\xd2\xbf\x5e\x73\x41\x63\x6b\xfc\x55\xdf\x75\xae\x99\xf0\xdf\xec\x1b\x25\xde\xaf\xba\x84\x46\xf9\xef\xb9\x7e\xac\x27\xa6\x91\xff\xd3\x2b\xc3\x37\x7e\x91\xfa\x57\x53\xa2\xc1\x16\x3b\x96\x4e\x8a\x2b\x59\x41\xc4\xad\x3a\x5b\x7c\xcc\x36\x90\xe1\x97\xe6\xd9\x2d\x03\x3a\x8b\xad\x06\x2b\xed\x8f\x9c\x93\x54\xf5\x3c\x9a\x56\x5e\x9c\x2b\x31\xb0\x89\x12\xb3\xb0\x6e\xeb\xa1\x0c\x8b\xc8\xd6\x46\x04\x8b\x68\x43\x84\xcc\x48\x8e\x4a\x2c\xda\xdb\x07\x15\x58\x18\xff\x8a\x02\xe5\xee\x53\x2d\x99\x0e\x7f\x6b\x9f\x1d\x50\x14\x2b\xd7\x7a\xa6\x8c\x0c\xf3\x37\x41\x92\xb6\xad\x4d\x10\x17\x55\x13\xd8\xa3\x59\x6a\x37\x89\x0c\xb5\x3a\x8e\x4b\x3b\xd7\x5c\x29\x61\xb0\x53\xcd\x6c\xe8\x36\xe1\x42\x42\xa7\x36\x81\x1a\xf3\x6e\x2d\x0b\x4a\xd0\x87\xcf\x15\x95\xdf\x91\xa2\x86\xcf\x6e\xb7\xad\xa0\x6e\xcd\x07\x6c\x32\x00\x58\xf7\xf2\x80\x46\xb0\xef\x79\x9e\x25\xb7\x68\x89\xdd\x42\x5a\xb0\xbe\x33\x98\xa9\xc0\xb6\x1c\x8f\x27\x18\xb7\x3c\x93\xec\xb0\x2d\x30\xc7\x63\x32\x1e\x87\xda\x14\x72\x5f\x89\xc8\xe1\x08\xe3\x04\xb6\xcd\xbb\x7d\xe0\x8d\x26\x1d\xe8\xc9\xe8\x8d\xff\xdb\x2d\xb6\xbe\x20\x69\x37\x0a\x80\x88\xcd\x06\xe1\x6a\x47\xd4\x81\x2f\x36\xc9\x55\x75\x90\xd2\xa7\xb8\xee\x60\x56\x7f\x0d\x1d\xd6\x0f\xb4\x70\xae\xf6\x41\x3c\x7c\x88\xa3\x44\x2a\xee\xda\xa3\xe2\x6f\x25\x2d\x29\xde\x5a\x2b\x75\x2c\x91\xa0\x6a\x22\x31\x53\x32\x44\x11\x53\x4d\x51\x1d\xd3\xb4\x02\x32\xe6\xce\x26\xc5\x14\xd1\xb2\x89\x37\x9a\x51\x22\xee\x5e\x05\xc8\x7e\x36\x74\xa0\x59\x64\xed\x7d\xe2\x1a\x7b\xdb\x3f\x1f\xa8\x4f\x96\x3a\xec\xd0\x33\x50\xe9\x1d\x6d\xcf\x21\xa7\xb3\x3d\x51\x8f\xad\x49\x0a\xd1\xa8\x28\x84\x52\xd0\xb4\x7b\x6e\xb1\xc9\x89\xbe\x1b\xae\xd2\x3f\x66\x1b\xe4\x24\x7f\x44\x23\xce\x9e\xf3\xf5\x46\x11\xf6\x54\xff\xd2\x1b\x0d\xd1\x0e\xde\xa1\x0b\x13\x2d\xd9\xb6\x1f\xa2\xb0\x28\x44\x88\x42\xaf\x6d\x95\xf6\x51\xbf\xcb\x61\xd5\x04\x14\x7a\x6d\xeb\x5f\xf6\x0e\x70\xd8\x6e\x3b\x5c\x40\x13\x75\xda\xdb\x00\x3a\x26\xdc\x54\xdf\x96\xaa\xa7\x1c\x5a\xf4\xac\x71\x5a\xd4\x58\x4e\x58\x7a\xdf\xe6\xea\x0c\x1d\x83\xdc\xe6\x2d\x33\x51\x34\x26\x1d\x23\x45\x1b\xcb\xe1\x0d\x91\xc9\xca\xf0\x5f\x47\x27\xbd\x21\xc4\xa2\xd2\x71\x12\x9b\xd3\xac\xfd\xc4\xd0\x9d\x0f\x8f\x32\xb7\x4b\x4c\x30\x6b\x93\xdb\x3e\xc0\xe9\xbd\xcd\x30\xb4\xe4\xbe\xec\x34\x41\xa3\x0e\x1a\xb8\xb8\xf6\xc3\x12\x15\xb0\x27\x70\x6d\x44\x87\xad\x48\xd9\xed\x3c\x24\x8d\x87\xbc\xf1\x28\xb7\x1b\x42\x3b\xd6\x9a\x2d\x31\x1b\x84\x81\xa3\x01\xd2\x1e\xbf\x30\x18\x19\xb7\x3a\xed\x2b\x35\x38\xe5\x7f\x64\x79\xfe\x8e\x26\x34\xbb\xd6\x7e\x2d\x43\xef\x38\x19\x0c\x35\xd2\xa5\x8f\xf9\x56\x50\x33\x0a\xec\xec\xbd\xb7\x33\x10\x55\x72\x79\xb3\xae\x4a\xfd\xd9\xed\x80\x97\x32\x32\xcf\x08\xfa\x65\x98\x83\xd1\xa0\xb4\x04\xfc\x43\xcc\x66\xca\x9e\xff\x42\x57\xdc\x35\x0f\x3c\x34\x22\x00\xa0\x2e\xbc\xbf\x99\x83\x6e\x49\xfb\xf1\xea\x2f\x3b\xe0\x3b\xba\x6f\xb7\x87\x5a\xa0\xd9\xb7\xf6\x36\x3a\xda\xe1\xe6\x0f\x2c\x8f\x7d\x19\xc3\x47\xca\x63\x86\xda\x12\xf6\xf7\x23\xbc\x91\xf8\x86\x0f\xb2\x6b\x42\xd6\x26\x4a\xfa\x92\x83\x21\x1d\xfa\x79\xb4\xdd\xae\x79\x69\xe8\x88\xad\x89\xb8\x27\xa7\x64\x4e\xfc\x40\x8e\x15\xcd\x46\x52\xdf\x16\xcf\xce\xd9\x78\x3c\xe2\xe3\x71\x36\x1e\x33\x90\xc1\x58\x02\xd2\x45\xe3\xfe\x31\x42\xeb\x14\xbe\xf5\xe0\x07\x1b\x38\x6d\xa0\x9d\xa3\x06\x40\x7b\x0a\x4d\x63\x09\xd0\x71\xb4\xdb\x67\xb7\xe7\xdd\x84\xae\x0b\x85\xd5\xce\x60\xdc\x5b\x62\xfa\x49\x0a\x92\xc8\xb7\x1b\x13\xd1\xa5\xbb\xf9\x6a\x5b\xbe\x77\x0b\xd9\x78\xd6\x2b\x51\x4c\xdf\x93\xb8\x26\xb9\xb9\x86\xe1\x49\x29\x19\xb6\x8e\xb3\xf6\x37\x51\x9a\x13\x97\xd9\xf2\xf6\x2d\x6b\xc9\x0e\xcf\x57\x84\x5d\x99\xd3\x7c\x63\xfe\xd4\xe1\x19\x3d\xbe\xe4\x9d\xed\x17\xe7\xf6\x14\x23\x2e\xf4\x01\x7f\xfd\xd8\x8c\x7f\xb2\xbf\xad\xe2\xa4\xe5\xf3\x50\x9b\xe6\xf0\x25\x28\x21\xfa\x1e\xb4\x53\xf5\x75\x09\x8c\xb1\x35\x53\xa2\xf0\xfd\x8a\x06\xcf\xf4\x77\xf0\xd5\x1f\x3c\xdb\x94\x30\x27\x32\x45\x40\x02\x6b\x42\x76\x06\xdb\xcb\x52\x06\x57\xfa\x60\x22\x3c\xd9\xdb\xba\x33\x7e\x9e\x37\x96\xf4\xb8\x6d\xf0\x86\x27\x61\x14\x42\xd4\x7a\x30\x91\x21\x1f\xcc\xb1\xb0\xef\x1e\x96\xc8\x67\x47\x1c\x79\xa0\x56\xa2\xee\x7e\x40\xc7\x04\xad\xa9\x24\x5a\x52\xdd\x6a\x8b\x69\xf3\x36\xc9\xd6\x03\x7b\x9c\x57\x15\xb2\xf0\x8d\x97\xee\xc6\x4e\xed\xa2\xda\xf7\xc4\x6d\xbc\x54\xeb\x67\xbd\x4c\x78\x35\xcf\xa4\x85\x68\x85\xb6\x5d\xaf\x85\xbd\x82\xd1\xc0\x93\x64\x1a\xb6\x43\x08\x0b\x28\x34\x9c\xa8\xf0\x22\x66\xa9\x91\x0e\x13\xeb\x3d\xac\x5e\x76\x86\xd6\x6a\xac\x35\x1c\x7f\x43\x7b\xc7\x9c\x8e\xd9\xf4\x32\x8c\x57\x55\x1b\x33\xf4\x8d\x95\x6d\xeb\x1d\x4b\x34\xf8\x52\x66\x17\x62\x1e\xed\xef\x0f\xaa\x33\xd5\xf3\x01\xa8\x50\x68\xce\x4a\xf7\x8b\xa4\x74\x18\x6e\xa6\x1d\x0b\xda\x03\x4b\xe1\xb8\x7d\x9f\xce\xe9\xe7\x5e\x7a\x6e\x2b\x5d\x9b\xc7\xf1\x1c\xc6\x17\x76\xf7\x68\x5d\x46\x59\x84\x8e\x0a\xdf\xa1\x9b\xed\x93\x67\x0a\xbf\x58\xe1\x58\xdb\x5e\x29\xab\xad\xf8\x0c\xb5\x89\xb6\xb9\x1b\x5c\x4c\xf5\x9b\x5e\xa6\x6d\xed\xa7\x82\xd8\x61\xb7\x8f\xa1\x43\x61\xb4\xdf\x9b\xe7\xc0\xa9\x35\xda\xef\x27\xd2\x22\x31\xc2\x3a\x75\x1d\xa4\x2d\x22\xba\xe4\x3c\x47\x1e\x8b\xb6\xad\x22\xcb\xa5\xdd\xcf\x36\x4d\x8b\x8c\x3b\xb8\x25\x6d\x43\x67\xe0\xcd\xb6\xa8\xc7\x5d\x14\xc2\xf5\xd7\xd6\x19\x6c\x6a\xcf\x89\x09\x7d\xfc\xed\x30\xe0\x4b\x1d\x06\xfc\x34\x70\x18\xf0\xd3\x7f\xee\x61\xc0\x27\x6b\xec\xfe\x60\x8d\xdf\x6f\x70\x63\xfa\x98\x22\xd5\x2c\x4d\xd5\x57\xcb\x3c\xe6\xd9\xcd\x2a\xf4\xe2\x0b\x98\xc9\xbb\x46\x71\x51\xb2\xda\x51\xa3\xc5\x0a\x9d\xac\x43\xd5\x3c\xf1\x56\x9b\xf6\x78\x5d\xf6\x42\xd1\x24\x4b\x19\xa5\x36\x8c\x9b\x77\x23\xde\xd0\x1b\x57\xe4\x55\x0a\x9a\xd7\x89\x22\x2d\x8e\x28\x9a\xdf\xf6\xc5\x6b\x19\x53\x9a\xe6\xeb\xad\xad\xf1\x18\x29\xa8\x76\x88\xbd\xb3\x65\x37\x75\x0c\x09\xd6\xe5\x47\xce\x78\x65\x53\x9d\xe5\xba\xd2\x96\x5e\x33\x94\x01\xc6\x6f\x6b\x21\x86\x65\xe4\xc4\x27\x24\xb0\xf4\x44\xd2\x0c\x9b\x47\xb8\xd6\x59\x21\xb3\xe4\x1d\x2d\x36\x9c\x15\x14\x11\x2c\x2d\xc3\x44\x25\x6e\x5e\xa9\x2e\x7a\x1e\xa3\x39\x96\x11\xb9\x21\x99\xb4\x74\xe4\x6f\xf6\x24\x3d\x69\xde\x29\xcd\xc7\xe3\x1c\x2d\xb1\x6c\x49\xba\x29\xfe\x09\x6c\x2b\x44\x21\xda\xe0\xd4\x69\xbe\xb6\xf2\x6e\xe7\xa6\xdb\x4e\x9f\x6d\xc6\xe3\x4d\x6d\x92\x6b\x3f\xf9\xb2\x51\xe8\xbb\xc1\x9b\x76\x34\xf9\xc6\x87\xa2\x17\x4f\x97\x8e\xc7\x7c\x50\x16\x19\x4a\xb5\xde\x38\xbb\x1d\xad\x6a\xab\x7d\x77\xd4\x06\x77\x56\xed\xfd\xac\xe6\x28\x50\xda\x00\xbc\x71\xc6\x74\xad\x34\x6b\xe1\xcc\x5f\x0e\xb7\x7e\x02\x5b\xb7\x6a\x31\x43\xfd\x55\x8a\x33\xd4\x1e\x42\xbc\x41\x03\x6b\x11\x27\xd6\xb0\x1e\x93\x5a\x36\x2d\x5a\x6c\x6a\xe9\xb1\x8a\x55\x85\x52\xa8\xd1\xaa\xb3\x39\xda\x87\x0f\xfa\x35\x53\xa7\x06\x36\x0b\x96\x5d\x31\x2e\xa8\xe5\xf7\x2a\xb9\x79\x99\xd2\x33\x8b\xee\xa3\x08\x35\xd1\x98\x54\x9d\x11\xd4\xfb\x07\xb7\x85\x67\x6d\xd5\x1a\x61\xec\xd3\x01\x58\x5b\xdc\x9d\x2f\xb6\x68\xe9\xbf\x4a\x53\x6d\x8d\xd3\xb8\xe2\x10\x49\xb4\x16\x55\x1b\xd6\x5b\xd6\xf4\xf3\x63\x2c\xe9\xf5\x34\x06\x74\xd5\xec\x3c\x03\x25\x34\x2f\xf7\xcd\x78\x94\x15\xaf\xb9\x12\x5e\x12\xca\xea\x18\xbc\x9a\x7d\x8d\xc8\xf9\x20\xd4\xa6\x06\x50\x8d\x05\x1e\x25\x30\x4e\x80\x39\xa3\xea\x10\x8d\x01\x2b\xd0\x30\x90\x18\xee\x10\x16\x34\xe4\xd4\xc7\xce\xb5\x2b\xf0\xc1\xa1\x4b\xb8\x6f\xd8\x66\xbc\xb4\x42\x02\xc6\xc2\x8e\x77\x90\xba\x0e\x3d\x74\x14\xad\x7b\x5d\xbd\x4a\xf1\x70\xf2\x89\x22\xff\x43\x19\xaa\xc7\xa1\x41\x0f\x5b\xc0\x07\x7b\xc4\x98\xaa\x56\xae\xa9\xc8\x96\x75\x7c\xe5\x57\xc5\x30\xa7\xd1\xb4\xf7\x52\x29\x57\x9f\x80\xec\xab\xb2\x56\x57\x76\x3f\xef\x54\x97\x6b\xca\xdd\xd1\x98\x3b\x2a\xf8\xb9\x75\x66\x1b\x54\x8f\x87\x6c\xeb\xfb\x26\x03\x58\xcd\x2c\xe0\x1e\x88\xe2\x09\xb2\x24\x00\xbf\x69\xcc\xf0\x1f\xfb\x66\xf8\x83\xb6\xd9\xbe\x61\xf6\x17\x98\xd1\x8e\xb1\x93\xdd\x61\x25\x6d\x19\x42\x3f\x1c\x69\x08\x35\xdb\xc6\x01\x4a\x1b\x22\xdd\x0f\x5b\x67\x2f\x7c\xa9\x07\xdf\xa3\x8c\xaa\xf5\xbe\x7a\x03\xe1\x9d\xb7\x17\xba\xf6\xbf\xe6\x0c\xa3\x7e\xbe\x52\xb1\x75\x25\x13\x38\x2b\x9e\xb0\xc7\xf5\x88\x63\x69\xcd\x79\x4a\x2e\x30\xd4\x18\x11\xbc\xb5\x74\x39\xab\x4f\x37\x99\xa1\x46\xc2\xee\x6e\x8e\x7c\x57\x63\xf3\x5d\x4b\xdd\xf6\xe5\x5e\x4f\x30\x43\xe4\x6e\x65\xed\x4e\x67\xde\x96\x7e\x56\xf3\xc9\x23\xf5\xa0\x01\x66\xea\x69\x84\x2d\xee\xa9\x98\x07\x7d\xbb\x54\x1d\x81\xb9\x88\x88\x12\x37\xde\x2e\x41\x27\xd9\xea\x79\xae\x11\x7d\x02\xa3\xb5\xb6\x05\x1c\xe4\xc9\x56\x09\xb3\x8c\xd9\x2a\x78\x07\xb4\xca\xbb\xb5\xc3\x21\xbd\xb3\xaf\xce\x3d\xff\x4d\x9d\xfb\x52\xea\xdc\x3b\xab\xf7\x7c\x8d\x81\xbd\x1b\xf3\xab\x6f\x31\x34\xb6\xa5\x36\x6f\xea\x9a\x41\xf4\xbd\xc4\xae\x79\x4e\x38\xf1\xd1\xf3\xce\x71\x76\xb2\x96\x73\xec\xa0\xb9\xac\x85\x3f\x2d\xab\x74\xa5\x68\x8e\x30\x56\x9b\x7d\x1e\x30\xa2\x7f\x70\xdc\x8c\xb1\x55\xa9\x37\xee\x9e\x33\x91\xe8\x3b\xbe\x58\x32\xe3\x72\x34\xde\xdb\x61\x5d\x51\xf9\xca\x40\xed\x42\x76\x4e\x42\xec\x2d\x88\x23\x04\xcf\x4a\xb5\x74\xc0\xdd\xa6\xe6\xea\x42\xd3\x4d\x77\x8b\x02\xcb\x5a\x7a\xf2\xe7\xa8\xea\xea\xd7\x77\x81\x23\x6a\x0c\x15\x9d\xfc\x98\xea\x3b\xa2\x8d\xc4\xa4\x47\x63\xc5\xd0\x9e\xf4\x64\x47\x09\x9b\x61\x76\xe5\x3c\xb5\x04\x4d\x63\xd4\x19\xc8\x3c\x67\x14\x55\x97\xb2\xf4\x33\x56\x70\x3c\x1e\x5a\xc1\x61\x1f\xa6\x81\x82\xba\xc7\x5a\xe8\xd0\x9b\xcf\xc7\x70\x1d\x4c\xc1\x0a\x11\xbd\x65\x04\xde\xd5\x97\xe7\xfd\xab\x2f\x77\x8b\x15\x3d\x6c\x05\xb0\x1a\x6e\xe2\x73\x84\x03\x25\x49\xbf\xf3\xf9\x7f\xb3\x7d\xbc\xad\x64\xb7\xb5\xc7\xd6\xdb\xa7\xaf\xde\xa8\xb4\xdc\x50\xf4\x1c\x36\x74\xe0\x5c\xfd\x2a\xc9\xbb\xc6\xcc\x3b\x18\x2b\x47\xa8\x45\xc2\xa3\x91\x68\x8b\x2d\xee\x74\x5e\x1f\xf9\x9b\x63\xbe\xc3\x82\x06\x44\x23\x0e\xfd\xf3\x9f\x0e\xaa\x34\x2b\x3d\x68\x96\xed\x58\xc6\x6b\x53\xf8\xc0\x32\x20\x8d\xcc\x6d\xb9\xc6\x3d\xcf\xdc\x46\x01\x6b\x56\x3e\xae\xd9\xea\xc0\xf2\xee\x93\x1d\x7b\x73\xbc\xeb\x96\xd3\x5e\xd9\x6a\x66\x5e\x5e\xf4\xec\xf5\xd6\x92\xd4\xb3\x06\x78\x22\x98\x77\x60\x35\x84\x52\xcd\x5b\xd8\xfa\xe1\x24\x24\x3f\xe3\x52\x63\xeb\xca\x95\x8f\x5f\xc7\x0a\x48\x1d\x51\x04\xf5\x29\x9c\xcb\xe9\xe1\x69\x57\x62\xd2\xa5\x8c\xbc\xb3\x80\xbd\x4b\x58\x10\xbd\xfa\x4d\x24\xf9\x52\x22\xc9\x37\xd6\x24\xfb\xdd\x00\x1b\xac\x2a\xf4\x43\x3f\x79\x34\xf5\x82\xb6\xfd\xad\x15\xc4\xd6\x3b\xd7\xdc\xed\x4c\xa8\xb8\xdd\x2e\xac\x57\xce\x8b\x79\xf6\x0f\xf7\x12\x69\x03\x3f\x8e\xb7\x15\xca\xf0\x44\x1f\x61\x37\xf7\xdf\xb3\x67\xa4\xf7\xb2\x60\x89\xc9\x3c\x5b\xa0\x02\x97\x4d\x44\xf8\x1c\x97\x5a\xbd\xd5\x5e\x8d\xf6\x42\x87\xff\x8c\x20\xb4\xce\x7f\xad\xa7\x05\x97\x58\xce\x13\xf3\x2c\x61\x13\x2d\xab\x21\x95\x4b\xa8\x72\xbc\xe8\xc2\xe6\x72\x88\x79\xa9\x30\x5b\x02\xda\x57\xd5\xed\x86\x9e\x7d\x33\x1c\x7f\x6b\x69\x54\xf9\xe6\x16\xcb\xbd\x3a\x68\x72\x78\x2f\xb8\x11\x64\xb3\xc9\xd8\x95\x4a\x15\x2a\x21\x2b\x02\xf3\x3e\xa5\x4a\x24\x81\x9b\x6c\xac\x0a\xf8\x13\x51\x65\x95\xaa\x9f\xc9\xfa\xf2\xde\x92\x97\x3a\xf8\x9e\xbe\xfd\xa1\xe9\x84\x77\xd1\xef\x5e\x78\xc2\x4e\xc2\x7b\xa1\xf5\x54\xe1\xf3\x64\xa1\xf1\x68\xd6\xfc\x5c\xd6\x8e\x77\x5c\x5f\xf1\xf8\xe7\xde\x2b\xb7\xde\x5d\x96\x46\x54\xed\x08\xaa\x2c\xba\xc9\xe4\xea\x1d\x5d\xe2\xd1\x14\xe9\xd8\x17\xff\x50\x73\xa5\xe9\x2b\xbb\xf7\xf0\x50\xa2\x71\xaa\x65\x10\x31\x37\x96\x57\x83\x97\x5a\xbb\x6d\xf5\xcd\x42\xdf\x18\x86\x61\x07\x81\xc2\xf7\x3c\x20\x49\x42\x8b\x42\x83\xe7\xc6\xd4\xaf\x6f\xb9\x20\x7d\x85\xd7\x5d\x6c\x2c\x36\x34\xc9\x96\xb7\xc1\x36\xb0\xd5\xe3\x40\x8a\x92\x06\x95\x83\xae\xf5\x1e\x0d\x2d\xab\xb9\x69\x8f\xa6\xcd\x21\x06\x66\xde\x3b\x5a\xee\x34\x80\x69\xff\x1e\xea\x7f\xff\x46\x01\xbf\x14\x05\xfc\x79\xe0\x8c\xed\xe7\xff\xdc\x33\xb6\xbf\xff\x76\xe1\x66\xf0\xc2\xcd\x9f\x30\x03\x0f\xa7\xde\x3d\xbc\x3f\x5b\xf8\xd4\x0f\x5e\x2b\x01\x17\x6f\x6d\xa0\x2e\xa6\xcd\xb1\xda\xce\x65\xb7\x37\xca\x9a\xa3\x2c\x71\xfe\x5d\x2c\xf4\x91\x97\xf6\xe5\x2d\x9b\x1c\x72\xfe\x43\x4c\x50\x81\xa5\x7d\x02\xa4\xed\x55\x65\x0e\x03\x8c\x5b\x55\x36\x1b\x7a\x10\x31\x19\x8f\xc1\xe0\x61\x80\x1d\xd7\x12\xa5\xb8\xac\x9f\x9c\xe8\xd7\x4f\xc7\x63\x30\x64\x17\x2f\x2b\xcf\xda\x60\x8f\x4a\x33\x9c\x9f\x84\x20\x3c\xf9\x1b\x10\xf0\x24\x84\xa1\x1f\x12\x8b\x78\x3b\xb1\xec\x85\x61\x21\xe3\x31\x39\x26\x0c\xcb\x7f\x83\x12\x11\x88\xca\x3b\x45\x64\x62\x3c\xf8\x4a\xdf\x0b\xb1\xc0\x29\x28\x21\xca\x71\xd1\xdd\xd8\x65\x9e\xc3\xf8\x67\x25\x1b\x27\xa0\xac\xa3\x95\x8c\x8a\xf1\x78\xd4\xdc\xf8\x2c\xc6\x63\x2f\x4c\x51\xeb\x92\x43\x93\x8c\xff\x01\x18\x2a\x51\x86\x14\x0c\x74\xc0\xce\x76\x2c\x94\xd7\xe8\x67\x1b\x14\xc6\xf7\xd9\xca\x90\x5a\xf6\xb8\xb0\x9e\x14\x14\xdd\x10\xc1\x7e\x60\x2b\xc2\xd2\x9c\xa6\xc6\xc6\xa6\xc3\xc8\xf9\x64\xc3\x39\x7c\x1b\xf4\x42\x19\xca\xdd\x19\x52\x82\xff\x6e\x5c\xbb\x9d\xd3\xb6\xbe\x65\x6a\x36\x97\x74\x3c\x6b\x3c\x06\xa4\x61\xa2\x93\xe6\x35\xe9\x46\x51\x28\xd1\x56\xd0\x65\x4c\x06\x98\x4c\x05\x21\x2a\x60\x7d\x62\xd1\x9e\xa4\x30\x93\x2c\xad\x0e\x98\x76\x5a\x4e\x50\xae\x6f\x52\xa0\x0d\x96\x4e\xa6\x33\xf7\x60\x57\x18\x00\x45\x5b\xe0\x7c\xb3\xc0\x29\x62\x76\xc4\x7a\xf9\xcc\xba\xde\x62\x00\xb2\xa6\x44\x16\x71\xb3\xb5\x0b\x5c\xa2\x0c\xce\x96\xce\x1e\x02\x6e\xd1\x12\xa2\x15\x5e\x56\x77\x8c\x11\xad\x20\xac\x60\x85\x4a\x5f\xd8\xc4\x19\x2a\x23\x3b\xe3\x9a\x49\x62\x81\xca\x0a\xfc\xb3\xa6\x01\x7f\x02\x04\x09\xed\x16\xa7\xe5\x99\xdf\xfd\xc6\x41\xbf\x14\x07\xfd\xcb\x00\x07\xfd\xcb\x7f\x2e\x07\xfd\xdf\x5d\x4e\xf1\x7f\xbe\x08\xa7\x30\xfc\xa0\xc5\x2a\x6a\x7e\xa0\x38\x46\x76\x80\xaa\x17\xe3\x31\x18\x0a\x66\x96\x0d\x52\xf5\xf2\x5f\x4c\xd5\x7f\xf7\x79\x54\xdd\x92\xf3\x12\x17\x80\x34\xaf\xcc\x7b\x74\xcd\x17\xcd\x15\x69\x23\x7d\xd2\x46\x0c\x69\x73\x36\xa0\x01\xea\x36\x2a\x8f\xa0\xfc\x65\x87\xf2\x93\xfd\x94\xff\x05\xfa\x8b\xa5\xa9\xf5\x49\x11\x45\x2d\x27\x80\x2e\x89\x77\x46\xfb\x0c\x95\x5a\x00\xb0\xa4\xd2\xb8\x66\x84\x28\xaf\x49\x61\xb1\xc0\x54\x51\xbf\x2e\xb1\x4c\x30\x00\x65\x53\xa2\x6c\x88\x25\x41\x25\x9c\xe5\x35\xb1\x4c\xe0\x7e\x32\xf9\x17\x03\xae\xfc\x97\x92\xc9\xff\xdd\x26\x93\x7f\xfd\x8d\x4c\x7e\x29\x32\xf9\xed\x00\x99\xfc\xf6\x3f\x97\x4c\xd2\xe1\x70\x91\xbf\x69\x1a\x92\x76\x19\x08\xa3\xff\xc3\xba\x86\xec\x9f\x0d\xa0\xe5\x1e\x0d\x44\x51\xe4\xe5\x01\x0d\x24\x45\x9b\x83\x1a\xc8\x46\xbb\xd5\x7d\x69\x0d\xa4\x3e\x4f\x23\x9e\x95\x89\x76\xac\x4c\xd2\x1e\x0e\x6d\x3d\x57\xf7\x78\x34\xad\x90\x74\xf4\xf2\xaf\x7d\xd6\x75\xcc\xb1\x0e\xdc\x26\xd6\x45\xa3\x39\x31\xf3\xfb\x48\xda\x67\x29\x86\xf2\xfe\x32\x9d\x67\x73\x48\xe7\x59\x82\xf2\x5f\xa9\xed\x7c\x8d\xbe\x3d\xa4\xed\xb4\x4e\x05\xe8\x80\x19\xbf\x39\xa9\xf0\x2f\x1b\x74\xf4\xa0\x01\xf5\x87\x52\xad\xff\xfc\xdb\xd5\x9e\x6f\x7d\xb5\x67\xf9\xcb\xd4\x9e\xe5\x9d\x6a\xcf\xb2\xa7\xf6\xa4\x9e\xda\x93\x2a\xb5\x27\xdd\xcf\xcf\xbf\xfd\x95\x6a\x8f\xa4\x6d\x86\x2e\x06\xae\xfe\xfd\xc6\xd1\x7f\x19\x47\xe7\x03\xa6\x66\xc0\xe9\x7f\x2e\x4f\xcf\xa8\x3d\x0e\x22\x96\x87\xa1\x52\x7d\x9c\x9e\x4d\xe0\xcc\x52\xca\x82\xe2\x92\x22\x6d\x76\x7f\x41\x24\xf9\x46\xf0\xf5\x7b\xd1\x93\x05\x5a\x57\xd4\x7c\x86\x87\x72\xb0\x95\x82\xd2\x98\xd6\x9e\xc5\xee\x46\x8d\x0b\x20\x1c\x1f\x88\x19\x5c\xe9\x58\xcf\xed\x18\xb0\x78\x59\x27\xb9\x48\x56\xf8\x16\xb9\x90\x8c\xaf\x91\x17\x87\xf1\x05\xea\x44\x5e\xfc\x5a\xcd\xc4\x78\x4d\x76\x66\x50\xdc\x64\x32\x59\x81\x81\x19\x5c\x6a\x17\xfe\xdb\x8d\xe2\x0a\xa4\xa0\x41\x73\xf8\x13\xdb\x69\x1b\x85\x71\x66\x73\x2f\x5a\x87\xa9\x56\x4c\xa0\xad\x22\x36\x70\x9b\x79\x2b\xc0\x95\x31\x06\xca\x4a\x4d\x58\x11\x40\x33\x9d\x3f\xdb\x5f\xf5\x94\xfe\x8f\x4d\x68\x4d\x8b\x51\x9b\x6a\xc0\xd2\x15\xd4\xf6\x89\x21\x61\x53\x05\x84\x27\x03\xbe\xae\x47\x1c\xf1\x01\x6a\x38\xb9\xc7\xee\x84\xb7\x35\x33\xcf\x33\xe6\x30\x27\xef\x1f\x94\x0c\x25\x9a\x23\x22\x09\x1b\x16\x2f\x28\xc8\x90\x80\x28\xfb\xdc\x33\xa2\x8c\x36\x6c\xe7\xdf\x7c\x42\x94\xfd\xfa\x13\xa2\xec\x4e\x79\xa3\x1d\x86\xbf\xcb\x69\x96\x3a\x94\xfa\x80\x84\xd6\xe3\xb7\xcc\xca\x2a\xb5\x3b\x01\xd2\xaa\xb9\x03\xdd\xf9\xd0\x49\x5e\xed\x8f\xb4\xaf\x7b\x8a\x38\x55\x8d\x67\x86\xcf\x65\x2d\x3e\xc7\x50\xd6\xe7\x73\x14\x65\xc3\xd1\xb3\x09\x05\x02\x51\x73\x01\x96\x46\xef\x5a\xb7\xf5\x70\x61\x48\x97\xa1\x26\x35\xf1\xca\xd5\x76\x21\xf9\xc7\x16\x25\x0b\x34\xbf\x40\x02\x65\xfa\xb0\xb7\xde\x35\xd9\x78\x0c\xb2\x26\xb4\xbf\x84\xd9\x12\xb4\xaf\x96\x48\x08\x87\x5f\x0b\x68\xbc\x33\x6c\xc3\x55\x13\xe7\xa6\xbf\xdd\x46\x23\xfb\x0c\xac\x6a\xb0\xfb\x60\x8c\x95\xb6\xa5\xa5\x44\x56\xa0\x34\xcf\x85\x0e\x08\x49\xc4\xbd\x44\xa2\xc5\x10\x34\xb8\xb7\xf5\xb2\xaa\x5d\x4d\xa4\x14\xd9\x65\x29\x69\xa1\xbb\x46\x05\x66\xb5\x72\x31\x1b\x1c\xaa\xff\xaa\x80\x62\x3a\x3d\x64\x54\xcd\x7a\x77\x91\x8b\x77\xad\x2b\xd1\xb0\x02\x04\x3a\x23\x88\x82\x2c\x01\xa5\x95\xab\x86\x5f\x62\x49\x50\xa8\x47\x5b\xbf\xda\x92\xb8\xd1\x2b\x35\x23\x71\x7e\x2f\xb8\xfe\xda\xed\x18\x4a\xac\x7a\x60\xff\xee\x76\x1a\xe3\x93\x5a\xa6\x6f\xed\xb3\x21\x60\x9b\x8b\x60\x14\xd8\x06\x90\xed\xb4\xe9\x0f\xc2\xba\x93\xde\x0a\xb8\x4a\x14\xaa\xd5\x50\xec\x93\x8a\xec\x9a\xa6\xba\xeb\xfa\x56\xaf\x01\xc2\x12\xef\x2f\x01\x9a\x5e\x75\x83\x70\x66\xcd\x77\x4a\x56\xbe\xb3\xf7\xa5\x8b\x4e\x91\x44\x3f\xbc\xb9\xf8\xfa\x9b\x97\x1f\x5a\xfa\x8f\x76\x8d\x3b\x3f\x90\x07\x60\x9c\x44\xfd\xe4\xf1\x78\x28\x15\xe8\x15\x4c\xba\x71\xa7\xb5\x31\xb3\x4f\x56\x50\xaf\x20\x50\x4a\x8a\x71\x48\x03\x12\x25\x28\x43\x0c\x15\xee\xdd\xa2\x59\x8e\x13\x8b\x5c\xc0\xcc\x69\xeb\x22\xd6\xa8\xd2\x7a\x6d\x33\xc4\xbc\xe2\x06\xa9\xaa\x7c\x3c\xee\xec\xd7\x1c\x9e\xe7\x77\xed\xd7\xc2\xee\xd7\x98\x82\xdc\xfe\xb0\x90\xd4\xc2\xbf\x46\xeb\x0f\x35\xb2\xd9\x04\x27\xa2\xc0\xc3\x43\x33\x31\x4b\x9b\xfd\xd5\x69\x0e\x36\xe4\x06\x64\x10\x9a\x3b\xee\x66\xa7\xcb\xda\x05\x2c\x2f\x29\x44\xb5\x89\xb0\x71\x33\xab\xe3\x5e\xa5\xb8\x6e\xd6\x38\xac\xea\x67\x68\x67\x99\x7e\xa5\xc3\x66\x39\xf9\x09\xea\x53\xc4\xcc\x3c\x59\xd2\xc9\x1a\xea\x05\xa4\xbf\x14\xac\xcc\x07\x2b\xf3\xc0\x7a\x18\x62\x76\x00\xe3\x71\x77\x24\xe3\x31\x8f\x9e\xbb\x97\x63\x5c\xdf\xdd\x42\xc8\x1f\x8c\x1c\x8f\xfd\x81\xe8\xce\xdd\xe5\xbf\xc6\xaa\x21\xc7\x63\xf7\x9a\x96\x97\xb8\xdb\xb5\x46\x57\xed\x79\x37\x8a\xee\x7d\x68\xaa\x52\xd5\xc1\x83\xa7\x10\x31\x30\x55\xff\x4d\xba\x2f\x43\x59\xde\x3d\x1b\x8a\x66\xa2\x8d\xf2\x00\xce\xa4\xb8\xdd\x32\xcc\x76\x3b\x27\x42\x83\xd0\x2b\x11\x42\x00\x77\x3b\x30\x41\xf4\x9a\xe4\x10\x84\x26\xad\x72\x81\x82\xb6\xde\xc3\x62\x76\x5e\x37\x19\x4b\xf9\xcd\x78\x0c\x18\x36\x9f\xb0\xf2\xde\xe3\xfb\x97\x3e\xc5\xe7\x1e\xf7\x92\x51\x21\x6f\x73\x5a\xf8\xaf\x85\x99\xc7\xb3\xce\x74\x48\x28\xf5\xf5\x18\x42\x44\xf4\xd7\x13\x08\x51\xa9\xbf\xa6\x13\xcd\xaf\xf4\xe7\x54\xe3\xaa\xfe\x3c\x55\x94\xd9\x7c\x3e\x80\x10\x2d\xf5\xa7\x2a\x9a\x62\xa0\x53\x21\x44\xf6\xf1\x38\xfd\x77\x7a\xa6\x48\xcf\xc6\x34\xae\xfa\x59\xe9\xcf\xa7\x10\xa2\x5b\x35\xb7\x07\x10\x5d\x9b\x9a\x67\x8f\x5d\x95\xc9\x43\x55\x67\xad\x0b\x9e\x4e\xd4\x30\x2f\x07\xee\x8b\x6d\x37\x7c\xb3\xa1\x22\xde\xfe\xac\x1f\x07\x8c\x69\x64\x3e\x22\xc9\x79\x2e\xb3\x0d\xe2\x1b\x92\x64\xf2\x36\x8e\x9e\x56\xc8\xa6\xc5\xdb\x4b\x92\x7c\xbc\x12\xbc\x64\xe9\x73\x9e\x73\x11\xd3\x68\x43\x72\x2a\xa5\xd2\x5e\xe8\xed\xfc\xf1\x64\xb2\x40\x97\x5c\xa4\x54\xbc\x23\x69\x56\x16\x31\x8d\x8a\x15\xd9\xd0\xc8\x4f\x44\x49\xa7\x6e\xc2\xd7\x6b\xce\xa2\x9b\x55\xa6\x38\x03\x67\xf2\x1b\xb2\xce\xf2\xdb\x58\x8b\x1d\x5c\xeb\x45\xb7\x51\x93\x8e\x36\x24\xd5\xce\xe1\xe1\x83\xcd\xa7\xe0\xc9\xe6\x53\xa8\x2b\x5d\x64\x3f\xd3\x76\x95\xcd\xa7\xf7\xfc\x1d\x5d\xab\xc5\x40\x79\xc6\xe8\xb7\x34\xbb\x5a\xc9\x38\x0c\xdd\x2b\x9c\xad\xd2\x7a\x5a\x60\x1a\x3d\x80\x28\xa4\xeb\x10\xa2\x35\xf9\xf4\x8f\x2c\x95\xab\xf8\x6c\x32\x51\x30\x28\x93\x55\xbc\xad\xfb\x7e\xb2\xf9\x14\x4c\x1f\x1d\xd1\xf9\x83\xcf\xe8\xfc\xd1\x57\x53\xd7\x7d\x0d\xf5\xef\x73\x92\x68\xe1\xf4\x3b\xba\x94\x31\x98\xa0\xa4\x79\xd6\x6f\x2b\x05\x61\xc5\x92\x8b\xf5\x5b\x91\x5d\x65\x2c\x0e\x85\xea\x25\x48\x28\x93\x54\x84\x68\x4d\x84\x4e\x9d\x04\xa7\x0a\x56\xa1\x92\x44\x2f\x05\x25\x1f\x37\x3c\x53\xca\x7e\xb9\x01\x61\xa1\xe6\xba\x6d\x4a\x4e\x1f\x6c\x3e\x85\x6a\x13\x74\xba\x7f\xa7\xc7\x7f\x57\xff\x39\x5d\xee\xeb\xfe\x57\xf5\xfe\x9e\x6f\xee\xec\xdb\x74\x1b\x5c\x72\x29\xf9\xba\xe9\x5d\x4f\x7d\x72\x44\xef\x53\x5b\xb0\xdf\xfb\x9f\x74\x93\xc7\x0e\x40\xf2\xcd\xaf\xe9\xbd\xaa\x66\x35\xd9\xb9\x9c\x99\xe0\xdd\x7b\x9c\x1e\x9d\x1d\xd3\xea\x1c\x60\xa2\x34\x96\xfa\xcd\x47\xe3\x01\x89\x80\x7e\x0c\xb2\xec\x64\x80\x09\x2a\xfc\xf7\x21\x1b\x2d\x18\x42\x58\xb3\xa8\x77\x74\x69\x42\x9d\xb1\x28\xc9\x79\x41\xdf\x67\x6b\x2a\x5c\x8a\xad\xfd\x2a\x75\x09\x7a\xfa\xad\x22\x4b\x9e\x94\x45\x2b\xc5\x9c\x5d\xbe\xe1\xec\xbd\xda\x50\x2f\xaf\x29\x93\x85\xf1\xc6\xcc\x0a\x25\x6f\x09\x9e\xe7\xb4\x6e\x31\xa7\xe4\xba\xdd\xa9\xde\x87\xad\x14\xce\xde\x71\x2e\xd5\x48\x7d\x28\xb1\xd6\x1c\xa8\xd2\x17\x8d\x63\xcc\x37\x6a\x48\xb8\xed\x12\xb3\xa1\xa2\xc8\x0a\x09\x60\x7b\xc8\x05\x95\xea\x83\x97\xd2\x8f\x6d\xe3\x1a\x7a\xa9\x66\x0b\x8c\x99\xbd\x95\x36\x70\xfd\xc6\x29\xab\x02\xcb\x86\xfd\xeb\x4b\x8b\xaa\xc2\x0b\x9a\x93\x5b\x7d\xdd\x5b\x97\x9a\x85\x7a\x0c\xe6\x45\x04\xa3\xca\x64\x11\x67\x7a\xe0\xde\x27\xa0\x10\x85\x6b\x5e\x16\x94\x5f\x53\xd1\x2d\xfd\x5a\x65\xbc\xbd\xa6\xa2\xf3\x53\xbf\xbf\x3a\xb8\x0a\xe3\x71\xa8\x81\xab\xef\x28\x84\x23\xd7\xdc\x6e\x07\x5a\xb0\x54\x72\xdf\xd7\x4e\x33\x03\xa1\xcc\xa4\x62\x9f\x61\x08\x91\x7e\xda\xcb\x01\xcc\xc7\x86\x5e\x56\xb3\xac\x10\xf1\x73\xd0\x5e\x00\x0f\x8b\x0e\x2f\xc0\xdb\x8d\x7e\xea\xa9\x42\x1c\xc2\xb8\x93\xe8\xad\x89\x4a\xe9\xa0\x86\x8f\x6a\xbb\x1d\xb3\x87\x05\x7c\x43\x99\xfe\x55\x1f\xae\xa8\x14\x23\x12\xb0\xfa\xc2\x94\x6a\x6e\x3c\x6e\xff\xd6\xa3\x70\xfd\x7d\xa7\x26\xf7\x39\x38\xa0\xa1\xd1\xc3\x81\xcb\xbc\xec\x2d\xea\x9f\xf2\x52\x34\x5f\x0d\x02\xe8\x16\x06\x31\x40\x0f\xa6\xfb\x5b\x55\xfc\x42\x8b\xe5\x6d\xd0\xc3\x8b\xf5\x5c\x91\x8f\xde\x6a\x35\xa9\xad\x94\xbb\x96\xab\xb3\x40\xd3\xd6\x02\xe9\x16\xfc\x15\x72\x9d\x74\x27\xd6\x50\x34\xd8\xa6\x6f\xfb\x66\xb2\x87\x76\xd5\xb6\xa8\x48\xae\xe8\x9a\x46\x9a\x2f\xd8\x07\x25\xd2\xd2\x86\xff\x2a\x56\x5c\x48\x5a\x48\x6f\xaa\xba\x95\x4e\x88\x0a\xba\xbf\x9f\xc9\xec\x18\x5a\xa2\xab\x68\x64\x9a\x89\x1a\x02\x4d\x4f\xe3\xf1\x50\xea\x00\x70\xfc\x55\x3f\x00\xb7\x4e\x56\x43\x9d\x21\x6a\x23\x8a\x47\xb7\x8f\x24\xab\x88\x77\x61\xf5\xb2\xf5\x78\xf5\x71\xfb\x6a\x3f\x3c\x5e\xb2\xb4\x07\x8d\x97\x26\xce\xf6\x81\x59\x1d\x00\xd3\x17\xd8\x19\xd5\x10\x1f\x1c\x99\x87\x71\x18\x62\xee\x60\x59\xa3\xbd\x0e\x6b\x81\xba\xbb\x03\xf8\xd4\x0c\x8f\xa6\xcd\xad\x05\x30\x41\xb9\xc7\xf1\x11\x85\x4a\x08\x20\x7e\xd2\x7c\xfb\x91\xde\xc6\x61\xef\x96\x62\x88\x8c\x76\xd4\xbd\x87\xd6\x48\x00\xe1\xba\xcc\xee\x5b\xb1\xe9\x7e\x2d\xe3\xbe\x26\x72\xe5\x64\x5b\xfa\xf0\xf7\xe6\x27\x61\x29\x5f\x6b\x9b\x8a\x77\x79\x8c\x6b\xaa\xaa\x13\xda\x01\xe1\x2b\xd4\x19\x93\x77\x2f\x6e\x60\x58\xad\xe5\xb1\x17\x05\xf7\x60\xab\xbd\x49\xb7\x87\xee\xd9\xa1\x38\x59\x60\x28\x77\xef\x16\xd1\xb9\x1e\xd2\xd4\x93\x30\x76\xa2\x81\x61\xf7\xc3\x87\x36\x01\x90\x6a\x9c\xd6\x08\x9e\x93\xa2\xb0\xe1\x8f\xd2\xac\x20\x97\x56\xa0\xf9\x2e\x2b\x24\x65\xd4\x78\x68\xd8\x8c\x6f\x95\x5c\x50\x67\x94\x4d\x86\x46\xf5\x3a\xa3\xc0\x32\xca\x52\x6d\x4e\xd1\x58\xb6\xc2\x32\xda\x38\xc9\x17\x5d\x63\x19\x7d\xaf\x75\x45\x63\xb2\xbd\xc4\xd2\x90\x39\x74\xa5\xbe\x14\xf7\x47\x37\x58\x46\xef\x6b\xa2\x57\x9b\x53\xd1\xdb\x56\xba\xa9\xff\xd2\x4c\xcf\x47\xda\xf3\xdc\x3f\xb2\x57\x63\x98\x85\x8a\x99\x5d\x8d\xc7\xe0\xa5\x42\x61\x4d\xf8\x2e\xf0\x36\x24\x22\x23\xf7\x53\x6a\x0e\xf4\xd3\xcb\xdb\x30\x7e\x79\x5e\xd8\x3b\xaa\x35\x2e\xc6\x26\x36\xaf\x1a\x59\xfc\x72\xb7\xeb\x1b\x51\xae\xce\x55\x89\xf8\xaa\x3e\xbf\x2d\x77\x3b\x70\xd1\x22\x88\xd8\x86\xe8\x68\x93\x69\x74\xe1\xd1\x89\x5e\x91\x97\x2c\x85\x88\xd8\xa6\x6a\x79\xcb\x2f\xa6\x49\x1b\xba\x68\xf1\x62\x3f\x5f\x27\x40\x94\xd9\x36\x8c\xa4\xea\xe5\xeb\x04\x5d\x5f\xb1\xff\x81\x9a\x4b\x07\x85\xee\xa9\x4a\x9d\xee\x1e\x28\xb3\xc7\x2c\x7b\xca\x6f\x5c\x3a\xda\x0a\x23\x5b\x9b\x15\xaa\x45\xed\xca\xaf\x9a\x73\x56\xd7\x64\xe8\x02\xee\x1f\xc7\xba\x6e\xb7\xfd\x3c\xfd\x56\xa3\xb5\x76\xf3\x10\x91\xb1\x4c\xa0\x1a\x05\xe3\x15\x22\x2c\x59\x71\xf1\xd2\xe2\x89\x27\x8c\x22\x4d\x09\x5f\xa2\x2c\x8d\x2f\xe6\x7d\xf4\x58\xa0\x86\x17\x2b\x39\x0e\x5d\xc3\x96\xd1\xcd\x3d\xf9\xd1\xa0\x7b\xd6\x47\xd9\xfa\x94\x7f\xcf\xa4\x6e\xba\x93\x91\x86\x0c\xc4\x97\x87\x24\x01\x51\xa1\x0c\xbd\xdd\x0f\xaa\x30\xcd\xae\x43\xe4\x01\x06\x4c\x50\xda\x74\x22\x6a\x43\x4d\x47\x29\xad\x90\x30\xa4\x07\xd1\x41\x39\x02\x22\x31\x0f\xbb\xfa\x6d\x4d\xb0\xc1\x04\xdd\x46\x09\xd9\x64\x92\xe4\xd9\xcf\x14\x2a\x6e\xb2\xc9\x33\x09\xc2\xfb\x21\x9c\x4f\x16\x10\x2e\x60\x85\xae\xf4\xa3\xc7\x55\xb5\x80\x48\x56\x1e\x72\x79\x87\x60\x57\xfe\x3d\xde\x0a\xf5\x7e\xfa\xc7\x40\x78\x3b\x44\xc9\x74\xe4\xa8\x01\x42\xe6\xa5\xb7\xe8\x98\x0e\x3a\x50\x6b\x53\xf1\x04\x75\xc4\xa1\x78\x4a\xcf\x50\x23\x6a\xc7\x13\xd4\x91\x0f\xe2\xe9\xc3\xc9\xc4\x43\xbb\xd0\x19\x12\x06\x48\x5b\x7c\x5d\x3f\xa9\xaf\x89\xd3\x8d\x52\xb1\x57\xcd\x32\x5c\x22\xf3\xa6\x57\xf8\xba\xcc\xde\x1b\x60\x87\xe8\x26\x93\xab\xf7\x8a\x74\x6a\x95\x02\x5c\xc1\x59\x63\x68\xbc\xf9\x17\x9a\x33\xf7\x56\x30\x86\xb7\x10\x6d\x29\x2b\xd7\x54\xe8\x3b\x9d\xa3\x09\xba\xa2\x32\xee\x5b\x79\x6b\x0c\xaf\x0e\x35\x29\x68\x7a\x64\x7b\xd9\x51\xed\x6d\x32\xf6\xf1\xc8\x06\xc9\x71\x0d\x96\x62\xa3\x01\x74\x4c\x93\xe5\x51\x4d\xa6\x94\x6e\xbe\xff\x9c\x66\x8b\xa3\x9a\xcd\x58\x9a\x5d\xf1\x23\x9b\xcc\x8f\x6a\xf2\x32\x2f\x8f\x1d\x63\x72\x54\x83\x79\x76\xb5\x92\x7f\x3a\xbe\xd5\xe5\x51\xad\x26\xb7\xe4\x58\xac\x4c\x8f\x6a\x50\x52\x92\x1f\xd9\xe0\xe6\xa8\x06\xaf\x04\xa5\xc7\x0e\x71\x75\x3c\x24\xff\xfc\x19\xcd\xde\x1e\xd9\xec\xfa\xd8\xb5\xb9\x3e\xaa\xc1\x5b\x9a\xe7\xfc\xe6\xc8\x26\xd7\x47\x35\x49\xf4\x79\xd6\x71\x2d\x5e\x1e\xd5\x22\x17\x84\x5d\x1d\x3b\xef\xab\xa3\x37\xf9\xdb\xcf\x69\xf6\xe6\xb8\x1d\x29\xf8\xcd\xb1\x2b\xfe\xf6\x58\xd4\xbc\x3d\xb2\xc1\x97\x47\x13\x8d\x3f\x1f\xdf\xe8\x85\xd7\xa8\x77\x5e\x36\x9d\x9c\xd6\x27\x66\xd3\xc9\xb4\x3e\x33\x7b\xfa\xb4\x3e\x34\x3b\xf5\x4e\xcd\x4e\xbd\x63\xb3\xa7\x4f\xea\x63\xb3\x53\x7d\x84\xb6\xb4\xdf\x67\xfa\xe4\xcc\x7c\x3f\xa8\x0f\xca\x4e\xa7\x0f\xeb\x93\xb2\xd3\xe9\x23\x7d\x56\x66\xbe\x1f\x43\x88\xae\xed\xf7\x93\xe6\x90\x6c\xfa\x54\x1f\x92\xe9\xef\x53\x35\x84\x2b\xfb\xad\x86\x70\x63\xbf\x55\xbf\x6f\xed\xb7\xea\xf7\xa5\x9d\x89\x2a\x7f\x61\xd3\x1f\x74\x4f\x4d\x7b\x6c\xbc\x39\xbf\xf4\x00\x57\xdd\x51\xe9\x73\x19\xbe\x15\x16\x8e\x71\xff\xc4\xd3\x99\x7c\xd6\x73\xfe\x94\x2e\xc2\x05\xf3\x1c\x3e\xe5\xa2\x7d\xa3\x82\x1d\xe7\xff\xc9\xf4\x8d\x0a\x40\xe7\x62\x81\xd9\x5c\x2c\xea\x3b\x43\xb4\x42\x1c\x0f\xb9\xb7\x98\x1b\x10\xe3\x71\x58\xe8\x8f\x5e\x4e\x94\x49\x2a\x88\xe4\xe2\x7c\xc0\x01\xc8\xb9\xc8\x54\xf1\x90\x77\xd0\xf0\x95\x0d\xd7\x21\x6d\x39\xea\x62\x5c\xa7\x8f\xdc\x77\x33\xd7\x73\x37\xba\xb8\xee\x11\x65\xfe\xa2\x7a\xee\x5b\x6d\x17\x63\x3c\x99\xb1\x67\xb2\xf6\xb3\x75\xa0\x16\xda\xb5\x78\x26\xa2\x66\x8f\x61\xff\xc7\x6e\x37\x9a\x22\xa1\x46\xb8\xcc\xae\x4a\x93\x3f\x9a\xa0\x50\x2f\x7b\x98\x31\x13\x50\x29\xba\x11\x99\xb4\x79\xfb\xb6\x34\x45\x22\xfa\x48\x6f\x91\x68\x1e\xb5\xf2\x1d\x98\x91\x68\x2e\xe4\x69\x9f\x04\xdf\xe9\x18\x22\x61\xfc\x14\x84\x12\xfd\x2b\xa0\x76\x71\x0e\x18\x38\x9b\xea\x5d\xac\x3e\x1f\x3d\xd6\x9b\x58\x7d\x3e\x38\x83\xde\xf5\x93\xbc\xbd\x12\x34\x6a\xd0\xf7\x9c\xc6\x5b\xe7\x76\x4a\x8d\x83\x78\xb2\x07\x98\x76\x84\xa3\xb6\x73\x42\xb6\x04\x23\x40\x03\xcf\x0b\x5c\xba\x57\x12\x19\xbd\x09\x94\xe2\x61\x62\xdf\x86\xcf\x09\x63\x5c\x06\x0a\x37\xf5\xf3\xf9\xfa\x99\xd9\x22\x20\x35\x0c\x42\x58\x39\x67\x50\x63\xa0\xd2\xae\xd7\xa1\x3e\x90\x0b\x6d\xbc\xa8\xe2\x7b\xc1\x13\x5a\x14\x3a\x76\xa7\x23\x72\x51\xb1\xa2\x54\x6a\x13\xbe\xf1\xf6\xa3\xe6\x71\x99\x82\xe6\x54\x61\x94\x09\x0a\xf5\x91\xde\x62\x89\xec\xdb\x10\x5a\x33\xc4\xc2\xc5\x56\xba\xcd\x29\x66\x88\xd4\x8f\x3a\xd9\x8a\xef\xe9\x27\x89\x49\xfd\x96\x93\x69\x1a\xf3\x73\x5e\xff\xd0\xcf\x9c\x65\x6e\x35\x33\x40\x9d\x25\x4f\x69\x5d\x3d\x73\x93\x83\x58\xe3\x80\xdb\x0a\xa0\xa5\xc7\x31\xa7\x8b\x3a\xf8\x96\x4b\xe8\x96\xb4\xee\xba\xc6\x79\x1d\x58\x9b\x89\x7b\xc3\xee\xa7\xa2\x88\x36\x79\x79\x95\x31\x6d\x82\xd7\x2f\x06\x68\x57\x1f\x20\x91\x09\xbb\x05\xa1\xc2\x69\xd5\x28\x12\x98\x1a\x1f\x55\xd7\x9b\xbe\x66\x35\x1e\x8f\x44\xaf\x3f\x8e\xd9\x78\xac\x03\x83\xf1\x73\x3f\xb0\x97\x1b\x64\xdc\x1e\xb2\xf4\xa1\xa6\x9f\x7b\x74\xea\xcc\x79\x0b\x9c\xf6\xcd\x89\x86\xba\xb6\x6b\x21\xf7\x88\x46\x5d\xde\x5c\x47\xd8\x53\x18\xd9\x97\x48\x66\xc6\x77\xb5\x05\x18\x8d\x25\xce\xa6\x90\x8d\xc7\x59\x44\xa4\x24\xc9\x8a\xa6\xe3\x71\xdb\x1e\x3b\x9a\xa2\x7b\xef\xca\x9c\xba\x97\xcb\xf3\x8c\x7d\xa4\x69\x14\xbc\xce\xcc\x6b\xe7\xba\x25\xeb\xd4\x1b\x84\x2a\xd7\x38\xfc\x86\xd1\x3d\xd3\x7d\x6d\x77\xd4\x7e\xf6\xef\x79\x1f\x13\x5a\x2f\xad\x48\xfe\x97\x8b\xb7\x6f\x00\x9c\x75\xaf\x43\xec\x9d\x38\x45\x0c\xe9\x1b\x11\xfe\x0b\x3c\x75\xaf\xa6\xbd\xbd\xd6\x4e\xef\x8a\x9e\x6c\xaf\xbe\xef\x28\x6c\x97\x52\x2e\x66\xce\x41\x68\x84\xf1\x70\x9c\x24\x76\xee\x25\xc7\x1c\x30\x08\xcf\x55\x4d\xcc\xe2\xb6\x47\x98\xbd\xce\x21\x17\xb8\x7d\x0a\xce\xa0\xc7\x9d\x9a\x59\x5c\x18\x03\xe2\x61\xe0\xb5\x96\x17\x31\x3c\x1a\xe9\x77\x9b\x5c\xb2\x5a\x9d\x73\xa1\x23\xc7\xa3\x2d\x51\x22\xf4\xcb\xf5\x46\xde\x6a\x7e\x1d\xd3\xe6\xfc\xbe\x73\x4c\x5f\xd3\x00\x8f\x44\x20\xd6\x18\x94\x5d\x76\x88\x0a\x5f\x18\x33\x31\xf9\x15\xdf\xea\x11\x92\x41\xe2\x42\xbb\xbb\x64\x3c\x1e\xf5\x56\xfd\xc2\xd6\x18\xd8\x1b\xf5\x23\x66\xf5\x2e\x6b\xc1\xc6\xdb\x64\xda\xbc\xa2\x90\xba\xd7\x8a\x26\x09\xb3\x7a\x7c\x4d\x0e\xd6\xb7\x0f\x86\x85\xcd\xde\x54\xb4\x51\x8a\x6a\x6f\xb4\xda\xb6\x92\x74\x5d\xd9\x06\xa4\xb0\x63\x59\xd3\xbf\xd4\xeb\x2c\xe1\xec\x9a\x0a\xf9\x2d\xfd\xf4\x9e\xbf\xfb\xf3\x9f\x70\x86\x64\x24\xae\x2e\xdf\xf3\x6f\xe9\x27\xdc\x59\x5c\xfd\x22\x44\x7d\x23\x34\xfc\xaf\xd0\x39\x25\x06\xd4\x9e\x13\x12\xa0\xdf\xb6\xcd\x4b\xda\xdc\x67\xc0\x72\xcf\x3b\x03\x41\x1f\xad\x69\xe4\x50\x5f\xbf\x1c\x6f\xcb\x69\x82\xed\xde\xe5\x0f\x27\xb5\xe5\x50\xc2\x58\x56\xe6\xe5\xd9\xf0\xbf\x9a\xd4\xe8\x27\x9e\x31\x10\x86\x50\xc7\x01\x4c\xa9\xbd\xbc\xa3\xdd\xc7\x30\x51\xf3\x6b\x27\x95\x48\x5f\x88\xd5\x87\x03\xa4\x90\xef\x88\xcc\x7a\xf7\x46\x34\x6d\x28\xcc\x5d\xd5\x02\xd4\x1e\xf7\xe6\xb4\x69\x4d\x3e\x69\x99\xf3\x24\x9a\x3c\x84\x5f\xd9\xb4\x8c\x35\x69\x95\xe9\xe1\xbb\x72\x9d\x31\x7d\x6b\xa1\x40\x32\xa2\xeb\xcd\x8a\x14\xdd\xf0\xb5\x16\x8e\x1d\xf1\xf8\x0f\xd3\xf1\xb8\x7e\x23\xa2\x91\x8f\xa7\x8b\x73\xff\x47\x1c\x4d\x1f\x3a\x98\xa9\xb1\xfe\x21\x7a\x78\x9e\xeb\x09\xc4\x89\xb9\x51\x83\x64\xb4\x24\x69\xf7\xca\x52\x2b\x1e\x23\x9d\x51\xbd\x8c\x48\x62\x0e\x24\x44\x20\x14\x57\x97\xcd\x39\xff\x6e\x17\xae\x8a\xbc\xf9\xad\xc9\x9a\xfe\x3a\xc1\x21\x09\x9b\xab\x56\x16\x0d\xe6\x67\x8a\x21\x96\xfa\xac\x51\x46\x29\x11\x1f\x29\xc3\x39\x92\x91\x36\x3e\x50\x86\x93\x99\xf5\x3e\x6c\xa4\x36\xfe\xab\x01\x31\x41\xac\x5f\xf5\x74\xb0\xea\xa9\x5f\xf5\x74\x11\x4f\xeb\x19\x3c\x93\xe7\x32\xa6\x7f\x60\xe7\x2c\xa6\x55\xfb\x1a\x0f\xb5\x91\x48\xa5\x00\x53\xf7\x0e\x8a\x92\x87\xde\xd1\xab\x97\x9f\x36\x20\x8c\xb6\x53\xe4\x79\xdd\x99\x01\x7c\x75\x86\xc2\x2a\x84\x28\xbc\x0a\xa1\x7e\xec\x6e\x4d\xcc\x0b\x96\xb3\x46\xf6\x55\xa8\xce\xe6\x93\x45\xfd\x72\x07\x60\x98\xed\xdb\x3f\xf4\x44\x5f\xf3\x64\xe7\x6a\x89\x40\xdd\xdf\xde\xf2\x1b\x22\x0a\xfa\x4a\x5f\x39\x99\x3e\x82\x15\xb4\x1b\x05\x05\x6a\x50\x30\x84\x71\xe8\xc5\x29\x24\x76\xd3\x87\xff\x65\x16\x3b\x59\x11\xf1\xb5\x04\x93\x7a\xcf\x13\xa0\x40\xe1\x66\xef\xd1\x05\x60\xa7\x67\x00\xa4\xf6\xf2\x44\x09\x27\xa2\x95\x24\x4f\xa6\xc8\x01\xe6\xfe\x14\x3a\x93\x3f\xaa\x31\x68\xab\x70\x2a\x66\x86\x03\x16\xb1\xc0\xe2\xe0\xb4\xbe\xc9\xb9\x02\x35\xac\x60\x55\x0d\x5d\x9e\x36\x38\x6a\xdf\x18\xf4\xe8\xd3\xfd\xa9\xe2\x58\xcd\xe0\x15\xb2\xc3\x41\xb0\x7b\x97\xfb\xe4\xb3\xb3\x73\x1f\x98\x13\x18\xeb\x95\xe8\x36\xa6\x76\x8a\x6e\x6c\x3e\x5d\xe0\xc6\x0d\x53\xfd\x44\xe1\xff\x52\x60\x9a\x9f\xb6\x33\x4e\x4d\x06\x44\x1d\xa7\x4d\x8a\x14\x58\x9b\x15\xee\xac\x5c\x33\xe5\xc2\xdb\x3b\x80\xea\x5b\x08\x76\x54\xf6\x29\x3c\x7f\x9e\xcd\x69\x94\x81\xc9\x1e\x08\x03\xfa\x15\x3e\x7d\xf8\x10\x3e\xc3\xd1\xe4\xec\xe9\xe9\x93\x73\xfa\xd5\xf4\x34\x7a\x7a\x1a\x6b\x4a\xb7\xe1\x37\x00\x50\x45\xe7\x1e\xc2\xaf\xa6\xea\x0f\x3a\x8d\x1e\xc0\xe6\xc2\xd3\x1b\xed\x3c\x0e\x40\x74\x3a\x3d\x7d\xf4\x7b\x85\xdd\x27\xd1\xe3\xe9\xc3\xd3\xdf\x2b\x38\x9c\x44\x93\xc7\xa7\xea\xf3\x74\x01\x23\xc9\xbf\xc9\x3e\xd1\x14\x9c\x35\x42\x91\x1b\xda\xfc\x74\xf1\xd5\x74\x32\xa9\x7c\xd5\x6e\x80\x76\x29\x11\xa4\x45\xbe\xf4\xe4\x69\x67\xf2\x7a\x5d\x20\x6d\x9a\xfe\x3d\x9e\xde\x97\xf5\x7d\xa4\xc1\x3a\x06\x60\x6d\x95\xfa\x6c\xc6\x4e\xf0\xb4\x69\x88\xd9\x86\x9c\x29\x5f\xe1\x63\x3d\xe0\xe4\x4b\x0e\xf8\x04\x83\xe9\x64\x72\xdf\x4b\x81\xbf\xff\x22\x13\x38\xc1\xe0\xf4\xe1\xc3\xfb\x5e\x8a\x6a\xd8\x9f\xd0\xff\xc4\xa9\x91\x95\x86\x7e\xc1\xb1\x91\x67\x0e\x3c\x3d\x9b\xf6\xaf\x18\x0c\xcb\x65\xbe\xa6\x4a\x3d\xa5\xfe\x1d\x5d\x52\x41\x59\xe2\x34\x7b\x25\x0b\x06\x2b\x52\xb0\x7b\x32\xb8\xa4\x54\x29\x2f\x26\xfe\x72\x41\xd3\xe0\x7e\x50\x94\x1b\x2a\x00\x6c\x95\x30\xcf\x43\x78\x8c\xf2\x5f\x2b\xdf\x79\xb7\x0a\x36\x34\xc9\x48\xee\xaa\xb9\xeb\x05\xf5\xcd\x00\x7b\xc3\xc0\x02\x2c\xa4\x9f\x48\x22\xef\x2b\x65\x3e\x0e\x7e\x2c\x4f\x27\x93\xcb\x70\xd6\x6f\x84\x5b\x75\x73\x88\x3b\x55\x9e\x3c\x9c\xfd\xfb\xe4\xe1\xff\x8b\x4d\x97\xff\x0f\xda\xfa\x32\x63\xd5\x7b\x00\x9d\xd9\xef\xe9\x59\x6d\xf6\x3b\x3b\xad\xcd\x7e\xd3\x47\xa7\xff\x02\xbb\x5f\xeb\xf6\xf0\xbf\xd1\xfc\xb7\x26\x9b\xfa\x59\x6f\x41\x6e\xea\x6f\x4d\xcb\xf1\x7c\xe1\x3f\xd0\x3d\xa0\xa9\x08\xcc\xea\x70\x3a\x1c\x0b\xdf\x2e\xa6\x4d\x85\xc6\x1c\xa4\x64\xbb\xfe\x4b\x6f\x90\x47\x9c\x59\x4f\x38\x89\x98\x7d\xcc\x0d\x65\xf6\xb6\xae\x43\x33\x82\x27\x33\xf2\x8c\x99\x11\x39\x64\x23\x27\x27\x7e\x75\x8a\x6c\xfe\x9c\x2c\x50\x06\xab\xb6\x05\x52\xba\xe7\x7c\xb4\x73\x59\xe3\x66\x56\xc7\x03\x69\x2c\x8a\x24\x4d\x87\x0c\x8a\x2e\xea\x18\x6f\x59\x43\x10\xc1\x3c\xda\x10\x41\x99\x44\x39\xe6\xd6\x38\x92\x60\xae\xc0\x80\x96\x98\x37\x96\xd2\xd4\x7b\xbb\xf0\xb9\x73\x7a\x99\x8d\x00\xc3\xc2\xba\x07\xb9\x68\xf3\xce\x05\xce\xb4\x1b\x13\xa4\x5b\x8d\x73\xf4\x53\x51\xc4\x09\x72\x2d\xc6\x4b\xd4\x6b\x2f\x4e\x2b\xc4\xf4\xd5\x45\x63\x31\xa8\x1f\x49\xd2\x2d\xce\xe9\x42\xc9\x87\x75\x2e\x0e\xa3\xf0\xa4\x73\x4f\xa2\x5d\xdc\xf9\x30\x0a\x72\xa3\x8d\x8d\x9a\x7c\x6d\x70\xfb\x1e\x86\x81\x0e\x5a\x39\x22\x3f\x62\x5e\xff\x1b\x1f\x69\x6b\xe3\xcf\x78\x0c\x56\x38\x05\x1b\x94\x43\xb4\x39\x34\x9e\x55\x3d\x02\x7a\x95\x15\x92\x0a\xb0\x41\x2b\x43\x45\x6f\x9b\x30\x4c\x76\xe9\xcf\x1b\xbc\xb5\x58\x12\xdb\x9c\xd6\x03\xda\xa6\x80\xd2\x01\x12\x0a\x6e\xd1\x04\x6d\x20\xda\xd4\x16\xa7\x2b\xda\x77\xbb\xa4\x6d\x7b\xcc\x9a\x6c\xe6\x74\xe1\x39\x3d\xae\xf9\x35\x1d\xaa\x64\x76\x0e\xab\xc7\xee\xb6\x5c\x6b\x04\x4d\xca\xdb\xa5\x2a\x31\x6d\xac\x5f\x36\xf5\xae\xf1\x98\xe6\x9a\x26\xea\xfa\x1b\x63\xc5\x3f\xe8\x8f\x39\x64\xd0\x9e\xf9\xa3\xd4\x83\x9c\xc0\xfa\x96\x27\x8d\xb4\xdf\x98\x6a\xf8\x5d\xa9\xad\x63\x1e\x24\xcc\x44\x87\x2d\xf2\x0d\xec\x14\xc9\x5e\x60\x8a\xe8\x3e\xe4\xf0\x8a\x3a\xe4\x50\xe5\x65\xf3\x38\x86\xc5\x50\xd3\x92\x84\xcd\x18\x1a\x70\x0f\x81\xcd\xb7\xa8\x37\x43\xd9\x3f\x90\x7e\xf9\x7a\x3c\xad\x67\x37\xda\x03\x6a\x46\x93\x6b\xf7\x9e\xfe\x38\x1a\x2e\xdf\x37\xae\x36\xe6\xc4\x2b\x2a\x7f\x60\xb4\x48\xc8\x86\xa6\x7f\xa5\xb7\xc5\x6b\xb2\xf1\xd0\x45\x29\xbe\x8a\xff\xd2\x01\xfe\x4b\xe7\x6c\x81\xf8\x5d\x8d\xff\x95\xde\x02\x01\x67\x72\xce\x15\x61\xe0\x36\x7e\x8d\x67\xd3\x57\x53\xe6\x8b\x59\xd6\xb5\xdc\x67\x9a\xe1\x1e\x63\x41\x6e\x26\x1a\x86\x88\x0d\x99\x92\x05\x1e\x8d\xf4\x85\x13\xdf\x94\x8c\x38\x9e\xcc\xf8\xb3\xde\x86\xd6\x81\xe2\xb6\xde\x08\x0d\xcd\xe7\x8b\xc6\x96\x47\xe1\x0c\x64\xbb\x9d\x16\x6d\x34\xc2\x9c\xe0\xf0\x47\x16\x42\x24\x4f\x70\xd6\xa8\x7a\x47\x18\x52\xff\x45\xd2\xb1\x7f\xd5\xd6\x3a\x0c\x9c\xd5\xee\x02\x0f\x6a\x6f\x81\xc7\xb5\xaf\xc0\x93\xe6\x82\xed\xa4\xb9\x60\x3b\xad\x1d\x05\xb4\xcf\x40\x5a\xdf\xb5\xdd\xb4\xef\xda\x3e\x7c\x00\xb5\xbb\x80\x4e\x7c\x70\x6a\x53\x1f\x4f\x60\xed\x38\xf0\x78\x6a\x25\xf1\xeb\x81\xcb\xcf\x7d\x7b\xa1\xef\x60\x5a\x0b\x30\xbe\x44\xb0\xd7\xda\xaf\xd8\x04\x10\xb8\xe3\xa8\x6f\x6f\xeb\x25\xfe\x39\x45\xfb\xb6\x9e\xf7\xb0\x91\xbb\x8c\xe7\x1e\x28\xda\x56\xcd\xa7\x76\xdb\x8e\x6b\xbf\x21\xf7\x3e\x0d\x90\x70\xb7\xe3\xbb\x1d\xe0\x1d\x27\x46\xfd\x4e\x55\x73\x79\x60\xe9\x0d\x40\xdf\x2b\x6c\x9f\x9d\x7c\xce\xe5\x81\x86\xbc\xce\x2c\x0f\xf0\x27\xd0\x8c\xb0\x79\xaf\xc9\xc5\xd1\xd2\xaf\xf9\xfa\x10\xa6\xde\x6d\x20\x33\x41\x59\x69\xc3\xd3\xe7\xdd\x1b\xb0\xc1\x2b\xfa\xa3\x19\x8f\x9b\xe1\xf8\x0f\x48\xb5\x06\xd4\xaf\x76\xa4\xcf\x7f\xcf\xd9\x3f\x63\x8c\x8a\x77\x74\x89\x34\x1a\xb4\x2f\x67\x84\x2e\x33\x6c\x0e\xdc\xd2\x3d\xee\xc3\x14\xb5\x85\x10\x07\x9b\xc6\xcf\xde\x38\xf1\x0b\xba\x8c\x59\x85\x84\x75\xe7\x65\x15\x48\x87\xdc\x79\x6b\x03\x50\xcb\x8d\xb7\xf3\xb0\x4f\x03\x28\x3f\x59\x0d\x64\xd3\xb9\x77\x22\x2b\x5f\x1f\xbd\xee\xea\xa3\xfe\xae\x31\x27\x59\xe3\x71\x3f\x3c\x80\x67\x4e\xbc\x59\x65\xc9\x6a\xb7\xd3\xdc\xe5\x39\x4f\x75\x4c\xa8\x64\x45\x84\xfa\xd6\x47\x4a\xfa\x10\x49\x09\xd9\x36\x78\x82\xdf\x8a\x33\xa1\xce\xe9\xc2\x05\x45\xc7\x0d\xad\xb4\xe8\xcf\xb0\x98\x67\x91\xe4\xdf\xf1\x1b\x2a\x9e\x93\x82\x02\xb8\x80\xe7\x2c\x06\x0c\xf3\x7e\xc6\x6e\x07\xa6\x18\xe3\xcc\x9d\x93\x64\xf5\x68\xb4\xd5\xd6\x86\x21\x82\x15\x8b\xb2\x42\xbb\x65\xff\x95\xde\xf6\xcf\x01\x0e\xcd\x9a\xdd\x35\x6b\x1b\xa7\xd4\xbc\xfc\xd9\x48\x82\x76\xb6\xa3\xe9\xb0\xca\x61\x49\x54\xa6\x72\x33\x2c\xe6\xb2\x3b\x33\x77\x6e\xad\xda\x32\x85\xf8\xe1\x42\x75\x70\x92\x3e\xe8\x1b\x67\x02\xdd\x9a\x1b\x59\x55\x59\x46\x02\xd4\xd2\xd6\xf1\x1e\x60\x94\xf0\x94\xea\x37\xbd\x53\x85\x7e\x97\x24\xf9\x58\x6c\x48\x42\xe3\x27\x48\x92\xcb\xf8\xa9\x71\xf8\x8e\xa7\x67\xa8\x58\x65\x4b\x19\x4f\x1f\xa1\x44\x8a\x3c\x9e\x3e\x46\x24\x97\xf1\xf4\x09\x0a\x37\xa4\x2c\xe8\x57\xfa\x1e\x76\x18\x4f\x9f\xa2\x30\x21\x9b\x22\xc8\x79\xf2\x31\x8c\x4f\x27\x88\x16\x49\x7c\xfa\x18\x99\x56\xcf\x4e\x55\xf9\x2b\x1a\x94\x9b\x30\x3e\x3b\xb3\x3f\x52\x7e\xc3\xc2\xf8\xec\x01\xa2\x2c\x8d\xcf\x1e\xa2\x15\x5f\xd3\xf8\xec\x11\xca\xe9\x52\xc6\x67\x8f\x51\xb9\x89\xcf\x9e\x20\x7d\x0b\x3f\x3e\x7b\x8a\x54\xf1\xf8\xc1\x04\x65\xac\xa0\x42\xc6\x0f\x1e\x5a\xa9\x28\x7e\xf0\x08\x25\x7c\xbd\x26\x2c\x8d\x9f\x4e\x91\xbd\x36\x6f\x12\x42\x9d\x62\x2f\xf2\xd7\x49\x67\x48\x01\x70\x43\xd2\xe0\xf7\x61\x3c\x9d\x3c\xaa\x7f\x9e\xa8\x9f\x8f\xeb\x9f\xf7\xd5\xcf\xa7\xf5\xcf\x28\x8c\xa7\xd3\x49\xfd\xf3\x2b\xf5\x73\xaa\x7f\xda\x69\x4f\x1f\x3c\x40\x61\x91\x08\x9e\xe7\x75\xca\x43\x14\xae\x6f\xf5\xdb\xbe\xa5\x92\x13\xe3\xe9\x93\x53\x93\x42\xf2\xa4\xcc\x89\xe4\x3a\xed\x0c\x85\x33\xf5\xf7\x11\x0a\xb1\xfa\xfb\x18\x85\x48\xfd\x7d\x82\x42\x35\x88\x27\x4f\x51\xa8\x7a\x7f\x3a\x41\xa1\xea\x56\x4d\xea\xff\x53\x7f\x4f\x51\x38\x0f\xe3\x53\x05\xfe\x1f\x7f\x0c\xe3\xd3\xd3\x09\x0a\x17\xea\xef\x14\x85\xf7\xd4\xdf\xd3\x4a\x5f\xdf\xd3\xd1\x64\xd5\x4a\x9b\xe0\x1f\x85\x06\xcb\x8f\xe5\xe9\x94\x3e\x0e\xd5\xe2\xaa\xef\xb3\xd3\x87\xa1\x5e\x59\xf5\x3d\x39\x0b\xd5\x62\xeb\xef\xe9\x13\x0d\xc6\x44\xea\xf5\x4f\xcc\x5d\x23\xf5\x69\xa4\x28\x55\x47\x23\x83\xc2\x02\x8d\x0f\xea\x43\x61\x83\xc2\x03\x83\x89\x0a\x93\x8c\x70\x69\x90\x22\x51\x28\xa1\x71\xe3\x92\x08\xf5\xbd\xb9\x52\xab\x7d\x86\x36\x57\x29\x53\x28\x91\xb1\xc2\xae\xb0\x5e\xde\xb5\x5a\x5a\xe3\xe3\x90\xe1\xa7\x8f\x67\xd9\xb3\xe9\xe9\x99\x7e\x3d\x4a\xcc\x0d\x7d\x89\x96\x82\xaf\x9f\xdb\x1d\x0b\x32\xb8\xc0\xd9\xfd\xb3\xd3\xda\x56\x95\xe1\x07\x4f\x66\xd9\xb3\x87\x4f\x6c\xa5\xec\xfe\x83\x27\x0b\x9c\xd9\x16\xa7\xaa\x41\xd7\x5e\xb8\x0c\x4f\xb2\x05\xce\x4e\xa6\xd3\xa9\xcd\x9f\xa8\xfc\x89\xcb\xb7\xeb\x6f\x4b\x3d\x7d\x34\x73\x91\xba\x18\x59\x6b\x8d\x5f\xdf\x97\x72\x3e\x19\x59\x90\xb1\x40\x40\x32\x17\xf3\x6c\xe1\xba\x54\x35\x4a\x95\xc1\xa1\x98\x97\x0b\xcc\xe7\xe5\xe2\x48\x81\xf0\xec\xc9\x17\x93\x08\xb5\x44\xf6\xe8\x91\xf6\x25\x1d\x3e\x0f\xd2\xa1\x7c\xdb\x57\x72\x4c\x30\xc0\x03\x36\xd0\x5f\x6d\xb8\xf4\x46\xfb\x2b\x4e\x90\xc7\x63\xff\x97\x7e\x9b\xaf\xed\xb9\x42\x3b\xa7\xfc\x0c\x87\xe1\xac\x17\xf8\x8d\xea\x9b\x3a\x5e\xb0\xe9\x19\xaf\xb5\xa0\xf1\x38\x1c\x65\x6b\x45\x53\x09\x33\xb7\xfc\x95\x06\xa3\xd4\x06\x36\x1e\x03\x76\x82\xcd\x41\x16\x3b\xc1\x42\x07\xed\x44\x61\x10\x5a\x7b\x13\x53\x49\x48\xe7\xcf\xe4\x6e\xd7\x6b\xa7\x39\x42\x5c\xec\x76\xba\xa9\xc0\x2b\xe2\xc5\xa6\xb6\x78\xd1\x61\xfa\xb5\xd1\x34\x0c\x91\xc0\x93\x99\x38\x34\x66\xb1\x98\x89\x66\xcc\x52\x0f\xd8\xa4\xba\x4e\xfe\x0d\x0b\xec\x04\xd9\xde\xfa\x4e\x06\xd7\x77\xe2\x9f\x6e\x4f\x16\x4a\x17\x57\xbb\x2f\x0d\x91\x6c\x61\x81\x7f\x5e\x3e\x3f\x5d\x20\x82\x99\xb6\x97\x95\x1d\xc3\x92\x54\x0a\x10\xf1\xbd\xec\xb4\x08\xa8\xbd\x6b\x28\x72\x91\xeb\xea\xc0\xc3\xc5\x2c\xfc\xa3\x3e\x3e\x9e\x4f\x16\x5a\x61\x15\x2d\x57\xb3\x70\xfe\x97\x8b\x8b\x45\xf0\x03\xfb\xc8\xf8\x0d\x0b\x88\xbc\x2f\xca\x9c\x06\xff\xab\x08\x11\x6d\xd6\x8e\xde\x34\x27\x3a\xb6\x13\xb7\x9c\xc4\xf9\x81\x72\xf3\x69\xfc\xbd\x89\x36\x08\x4f\x7c\x83\x30\xf9\x52\xa7\x0b\x2c\x12\x0a\x08\x2c\x4a\xf5\x7d\x99\xe2\x4f\x82\xdf\x14\x4a\xd6\x1e\x38\x86\xaa\xcf\x16\xfe\xaf\x72\x39\xe6\xd8\x93\x10\x87\xbd\xe2\x0c\xf7\x6c\xb9\xc6\x09\x60\xe3\x69\xc1\x96\x84\x39\x5c\x3f\xb5\xef\xc0\x77\x5a\x70\xc9\xaa\x8d\xa7\x18\x63\xf7\x3b\x62\x3c\xa5\x4a\xf0\xf7\x88\x2d\x3f\x6a\x1d\x7b\x54\x61\x50\xc7\xae\x63\x52\x0e\x0a\xc7\x15\xa0\x70\x3c\x1e\xf5\x49\x70\xef\xc0\xc7\xd9\x43\x6c\xdc\x7f\x87\xe1\xe1\xdc\x34\x6a\xbd\x47\x16\xba\xf1\xdd\xae\x4e\x7e\x41\x24\x75\x89\x43\xcb\x1d\xfd\xee\x77\x66\x2c\x18\x63\xae\xfd\xa1\xd4\x3f\x77\x8e\x77\x00\x13\xec\x6a\x2f\xb9\x38\x6f\x3e\x41\x28\x28\x49\x64\x44\x8d\x56\x17\xc2\xf8\xd1\x64\x3a\x39\x9b\xf9\x0e\x30\x0d\xeb\x1b\x19\xdf\x02\x7d\x1f\x57\x3f\x62\x50\xbc\xa6\xe2\x8a\x92\xcb\x9c\x9a\xe9\x03\x0a\xcf\x4b\x00\x18\xa6\xa8\xeb\x10\x79\x3e\x5f\xc4\xdb\x0a\x6a\xd7\xd5\xd8\xf2\x96\x96\xff\x09\xf2\x82\x72\x07\xb4\xf1\xfa\xda\xe7\x08\x92\xe9\x97\x48\x2a\xd8\x72\x00\x31\x8d\x00\x1d\x24\x6e\x5b\x41\xf3\x26\xbd\x1e\x24\x66\xde\x8f\xdd\x8e\xe8\xb8\x06\x9d\xe1\xe3\x81\xb4\xdd\x4e\x58\xe0\x76\x63\x9f\xd6\x21\x5e\x31\xc6\x5d\x26\x7a\xce\xcf\xfd\xfe\xec\xc0\x06\x0f\x34\x84\x92\x89\x1c\xf5\x1b\x04\xe9\x78\x6c\x91\xeb\x23\xbd\x2d\x00\x85\xc3\xb1\x06\xe7\x72\x81\x33\xed\x74\xaa\xc1\x82\xfc\x3a\x72\xa0\x0e\x37\x81\x4f\xba\xdd\x69\x13\xe4\x78\xac\x38\xf3\xb9\x98\xf3\x05\x2e\x0d\x97\x56\xe9\x6a\x0a\x3a\x2d\x03\xf6\x67\x05\x91\xa8\xdc\xec\x32\x13\xb4\xbc\x8c\x48\xde\x8d\x32\x3d\x28\x68\x34\xe7\x67\xf6\xec\x6c\x99\x89\x42\x06\x8e\x35\x05\x26\xf0\x7e\x70\x49\x03\xc2\x02\x0d\x4c\xdf\xe3\x4c\xd0\xb4\x4c\xa8\xef\xb2\xd3\xa0\x4f\x69\x1c\x87\x61\xa5\xa3\xe3\xea\xf5\x2b\x70\xe9\x11\x8c\xe2\x4e\x82\xa1\x29\xfe\x6a\x88\xd2\x93\xaa\xe6\x08\x57\x43\xf9\x65\x93\xbf\x1e\xca\x2f\x9a\xfc\x9f\x86\xf2\xf3\x26\xff\x72\x28\x7f\xd9\xe4\x93\xa1\xfc\xb4\xc9\xcf\x86\xf2\x37\x4d\x7e\x32\x94\xbf\x6a\xf2\xe9\x50\xfe\x6d\x93\x9f\x0e\xe5\x5f\x37\xf9\x1f\x87\xf2\xd7\x4d\xfe\x72\x28\xff\xb2\xc9\xcf\x87\xf2\x6f\x6a\x4e\xcb\xc0\xf4\xec\x81\x12\x07\x58\xc4\x80\x80\xed\xfb\x31\xd6\xae\x92\xfd\xc7\x46\xa9\x1f\x94\x67\xe6\xa1\xe1\x2a\xfa\xa6\x43\x88\xc2\x3f\x71\x9e\x53\xc2\xdc\xcf\x97\xac\x5c\x9b\xef\x45\x73\x1e\x65\x1e\xf2\xfd\xc3\xfd\x69\xc7\x57\xce\xb5\xf8\xca\xc6\x48\x0d\x51\xa8\x1d\xeb\x8e\x69\xa0\x68\x1e\x36\x1e\x0c\x94\xdc\x34\xaa\xfd\x09\x55\x03\x15\x60\x70\x88\xa7\xf9\x9d\xb6\x0a\x43\x3a\xb7\x0e\x61\x0b\x6c\xdd\xca\x98\x8d\x00\x7b\x20\x9a\x74\x1b\x24\x77\xf7\xee\xc3\x73\x6f\xf7\xb6\xdf\x43\xdd\x1a\x34\x18\x6a\xc7\x9e\x5b\x6f\xab\x19\x8b\x96\x19\xcd\xd3\x7d\xae\x77\x41\x01\x38\x32\xc1\xe6\x91\x7b\xba\x59\x28\x1a\xeb\x8d\x84\x57\x07\xc6\xf0\x77\xfb\x02\xca\xd0\x00\x32\x0c\x84\x66\x8a\x73\xe6\xbd\xa8\xbc\x98\x79\x6d\x67\x87\xda\xfe\x2e\x2b\xee\x5a\x24\xb6\xcf\xb3\xf0\xda\x3d\x99\x54\xcf\x93\x21\x89\xd4\xe4\x10\xab\xab\x1f\x8c\x11\xee\x61\xf6\x51\x8b\xa4\x39\xce\x40\x33\x6f\xca\x3c\x1f\x6a\xa6\xcb\x8b\xee\xbd\x5f\xd1\x20\x63\x79\xc6\x68\xc3\x90\xc2\x7b\x27\xb6\xb3\x93\x7b\x61\xc0\x97\x81\xaa\xae\x52\x99\x6e\xe8\xe4\x5e\x68\x2f\xd2\x14\xe5\x46\x29\x93\x34\x8d\x82\x1f\x0a\x5a\xbf\x67\x5d\xe8\x53\x4e\x4a\x52\x55\xb7\xd3\x78\x11\x48\x1e\xf0\x6b\x2a\x12\xbe\x36\x67\x9a\x41\x9e\xad\x33\xf3\xfa\x41\x74\x0f\xfa\xeb\xa4\x03\x33\xf5\x9c\x23\x9b\xcb\x52\x33\x1a\xa5\x99\xa0\x89\xcc\xae\x69\xa1\xdd\x5b\xb7\x15\xf2\xd3\xfa\xd2\x00\x85\x5b\x36\xa7\x3e\x62\x98\x3a\xf5\xf0\x94\x2a\xd1\x90\xc7\x5e\x7d\xe1\xb0\x5c\x18\xf4\xcd\xb0\xb0\xab\xd1\x2c\x79\xbb\x7d\xc4\x51\xa6\x58\x34\xac\x60\x4d\xcf\xd5\xd8\x6b\x06\xbf\xa7\xeb\xda\x57\x5a\x74\x46\x38\x38\x29\x67\xca\xd6\x83\xe2\xce\x1f\xb8\x19\x94\x40\x0c\x71\x3d\x0c\x88\x14\xa5\xf3\x1e\x4d\x17\x4a\x98\x31\x1e\x43\xf3\x30\xe1\x8c\x51\x23\x5a\xa3\x30\x63\x49\x5e\xa6\x8a\x5e\x16\x1f\xb3\x4d\x88\x9a\x17\x4d\x05\x2d\xd4\x1f\x63\x53\x0e\x17\x0d\x09\x5f\x3a\x31\xc3\xdc\x3b\x63\x51\xd3\x60\xfb\x97\x12\xd8\x4c\x29\x3f\x71\x99\xe5\x92\x8a\x4e\x49\x93\x58\x9b\x04\x1a\x77\xa0\x5e\x99\xf3\x81\xb4\x78\xbe\x98\x89\xa8\xe0\x42\x82\xfa\xc8\x19\x11\x6f\x93\x8a\x41\x80\x92\xb9\x22\x14\x73\xb5\x5d\x51\x77\xdc\xda\x30\xf6\x97\x8b\xb7\x6f\x22\x63\xf7\xcf\x96\xb7\x80\x18\xcb\x58\x2d\xe0\xb6\x6b\x68\xf8\x96\x58\x9f\x26\x58\x14\x2e\x30\x07\x50\x89\xd7\xe5\x09\x56\xed\x15\xad\xfa\x6d\x59\x98\x0d\xc8\xb5\x14\x6e\xef\x4f\x31\xc6\x89\xe7\x90\xa1\xbd\xb2\xe9\xa2\x53\x79\x4e\x17\xd0\x1d\xa0\xa8\xce\xfe\x18\x9e\xd0\xa1\x29\xe8\x82\x6a\x14\xb1\x2b\xa5\x68\x72\xd9\x6c\xc0\xb4\x39\x51\x39\x8c\xb5\x7d\x4a\x78\x0c\xfe\x8a\x03\xf8\xcb\x90\xb0\xf8\xdb\x3c\x1e\xaf\xc9\x43\x3d\xb8\x4d\x4b\x7b\xd4\x36\xef\x73\xfb\xd7\x34\x16\xfb\x58\xdf\xd4\x5b\xf9\x1c\x5a\x71\x2d\x8f\x62\xd6\x85\x6e\x5b\x1c\x5f\x11\x34\x17\xff\x69\xa8\xf4\x75\xc7\x6e\x91\xa5\x7e\x48\xc9\xf0\xd2\x30\x6e\x5f\xdd\xae\x3d\xb6\xbc\x56\xd6\x87\x9e\xde\x19\x4d\x21\xca\x80\xb9\x4e\xa0\xda\xaf\x5d\xb4\xd2\x58\x56\x68\xc0\x05\xee\x7c\x9b\xa5\x31\x45\xea\xa7\x0e\xa8\x63\x1f\xf0\x88\x7d\x67\xee\x4b\x6f\xdc\xcd\xdb\x7c\x7d\xe3\xc0\x78\x1c\xfe\x54\x18\xe5\xdb\xbe\x68\x51\x37\x71\x65\xdc\x91\x3a\x0a\x8f\xe3\xd7\x01\xe3\x29\x2d\x02\x22\x68\x9b\x7d\x04\x97\xb7\x81\x5e\x96\x6f\x04\x5f\xbf\xe1\x29\xf5\x9d\xff\x6f\x0e\x3d\xe0\x73\x05\x91\x15\xdb\xf4\xe3\x3d\x8d\x64\xe0\x5e\xdd\x51\x8a\xa5\x7e\x96\xc7\x63\x89\xb1\x37\x47\x93\x57\x4b\x71\x71\xef\x56\x89\xa5\x92\xd3\x89\x6d\xc6\x93\xe2\xe2\x81\xbb\x1a\x4e\x70\xd3\x65\x1b\x59\x22\xee\xdc\x20\xda\x27\x19\x99\xc9\x56\xb6\xbe\x2f\x6b\xc5\x8d\x5d\x77\x5b\x21\x81\x27\x7a\x9b\x18\x39\x6b\x26\x9e\x71\x27\xca\x8b\xc6\x71\x85\xcf\xc5\x62\xc6\xe6\x59\x8b\xdd\xdd\x80\xcc\x4e\x49\xd6\x4e\x2a\x6c\xd6\x79\xab\xc8\xed\x92\xbb\x0c\x87\xad\x29\xd4\x2b\x26\x6a\xb5\xc4\x33\x75\x8d\x3c\x5c\x0c\x37\x82\xa7\xa5\x61\x33\x71\x98\xd2\x6b\x9a\xf3\x8d\xde\x4d\xcd\xb2\x73\x0f\x2a\x02\x40\x85\x6b\xfe\x7d\xa5\xda\x56\xa3\x70\x81\x03\xbf\x45\xe8\xdb\x5b\xba\xe5\xfc\xce\x5a\x36\x95\x6e\x41\xa9\x58\x1c\xac\x0e\x69\xa0\xe2\x0e\x0d\x93\xdf\xa1\x41\x66\x77\x68\xc0\xe4\x0e\x0d\xb5\x54\x42\x85\xf7\xea\x12\x03\xa7\xa7\x8f\xee\x0c\x9d\xe1\x1b\x09\x95\x4e\x09\x4e\x15\x2d\xc1\x0c\x3c\x3e\x83\x88\x28\x65\x73\x3a\x81\xa8\xd4\x1f\xfe\xab\x97\x85\x4f\xd5\x9e\x3d\xae\x5a\x62\xa7\x3e\xb4\xe0\x24\xcd\xd8\x15\x9e\x2e\x70\x68\xbf\x43\x44\xb5\x2b\x9b\xfc\x7b\xfd\x66\xe1\xe9\x02\x87\x7e\x82\x29\xb2\xa4\x32\x59\xbd\xe6\x82\xe2\xb3\x05\x0e\xeb\x5f\x26\x53\x50\x9d\x80\x1f\x2c\x70\x68\xbf\x4d\xc6\x86\xe7\x39\x7e\xb4\xc0\xa1\xfa\x70\x65\x49\x7a\x8b\x1f\xeb\x92\x24\xbd\x35\x89\x54\x91\x21\xfc\x64\x81\x43\xfd\x15\x56\x4a\x45\xd0\x82\x95\x95\xc9\x72\xcc\xc0\x43\x88\x12\x05\x85\xa7\x10\x2d\x7f\x7b\x53\xef\x4b\xbd\xa9\x97\xee\x0b\xb9\xde\x7d\xad\x5a\x1f\x60\x1c\xf1\x5a\xf5\xd2\x7a\xbe\x34\xdd\xcd\x6b\x8f\xae\xc5\xbe\x47\x35\x5a\xc5\xc3\x3f\xfe\x91\x5f\x16\x54\x5c\x6b\x46\x71\xa0\x4e\x05\xf2\xe8\x12\xa2\xcd\x6f\xd8\xf0\x85\xb0\x41\xef\xb5\x15\xba\x1d\x38\xda\x0d\x43\x37\xc4\x8e\xfd\xd4\xbc\xe7\xf7\xb7\xef\xb4\x28\x51\xc0\xf1\x78\xa2\xaf\x81\xb5\x52\x6b\x65\xa9\x9b\x7e\x40\x55\x3a\xa7\xd1\x9a\x16\x05\xb9\xa2\x71\xa8\x4b\x07\xf6\xa7\x16\x4d\x96\xbc\x64\x69\x14\xce\xe4\x09\x0e\xff\x6c\x9a\x0c\x34\xed\x88\x83\xf0\x84\x9d\x84\x3f\xb2\xb0\x52\xa2\x07\xa3\xf2\x86\x8b\x8f\xba\x01\xeb\x03\xfa\xc6\x24\x35\xc5\xdb\xa5\x5c\xaf\x27\xd6\x59\x14\x4b\x77\x9b\x1f\x7c\xf5\x23\xfb\xdd\x57\x28\x0c\x61\x85\xae\xf7\x6d\x1b\xd6\xa8\x3f\xad\xa9\x1a\xeb\xa0\xd7\x8f\x22\xe9\x86\xf0\xbd\x36\x1d\xea\xe3\x4f\xfa\x49\x0a\xf2\x8a\x2d\x39\x2a\x31\xf5\x58\x47\xd6\x79\xb0\xaf\x6c\xb7\x8e\xc5\x6e\x37\x5f\xa0\xb2\xd5\x03\xe6\xf6\xc9\xad\xd2\xcd\x09\x67\xbb\xdd\x2d\x28\x21\x2a\x9b\x8e\x30\x41\xa5\x8f\xd1\x1e\x62\x94\x6e\x4f\x6f\x9c\x37\x1b\xd0\x0d\xc3\x59\x8f\xb7\x30\x2e\xd6\x24\xd7\xac\xc5\x7c\xb6\x39\xc3\xe9\x20\x67\x38\x73\x9c\xa1\x02\xab\xdd\x0e\xac\x1a\x7a\xbf\xfe\x6d\x4b\x7f\x29\x02\x7f\x39\x60\x8c\xbe\xfc\x8f\x35\x46\xa3\xbd\x4f\x84\x78\x51\x6e\x8b\x64\x45\xd3\x32\xa7\xa2\xf5\xc6\x37\xaf\x9f\xe5\xbe\xa8\x1f\xe5\xf6\xde\xfd\xe6\xbb\x1d\x47\xa4\xb5\xe9\x06\xe4\x7f\x12\x71\x56\x57\xd7\x37\xbf\xdb\xfb\x92\x44\x59\xf1\xdc\xbc\xf7\x95\xdf\x7e\xcf\xf3\x5c\x09\x5c\xa3\x29\x52\xe9\xef\xb9\x60\x2f\xf8\x0d\x33\xbf\x9b\xa0\x48\xc4\x7b\x31\x5a\x34\xdf\xbb\x9d\x7e\x47\xf0\x9f\x25\x15\xb7\xaf\x52\xcc\xcc\xd7\x6b\xc2\xc8\x95\xf6\xda\x37\xfa\xe4\xdf\x4c\x36\x80\x88\x74\x67\x87\x33\x95\xe6\x60\x81\x99\x6b\xcc\x36\xd1\x69\x51\x0d\x49\x73\x5d\x2a\x0a\x3c\x5f\xa8\xaa\xde\x13\xa7\xdf\xea\xe8\xcb\x26\xc3\x51\x85\x75\x8f\xd3\xeb\x67\xa8\x87\x1c\x47\x7c\x10\x29\xdc\xb4\xef\x43\x82\xf6\xde\x70\x22\xef\x96\xd1\x4f\xde\x15\x5b\x06\xb7\x8a\xae\x22\xda\x0c\x30\x2a\xf8\x9a\x0e\x46\x27\x18\x61\xcc\xd5\xa2\xd0\x36\xb8\xcc\xdd\x1c\x0d\x2c\x40\x1d\x4c\x21\x1a\x0e\x58\x2f\x5a\x0e\xd0\xb0\x42\x13\x58\x21\xc3\x2e\x5a\x86\x4a\x7d\xc5\x66\xe6\x42\x0c\x98\xd2\x5c\x3f\x93\xe2\xc3\xc4\x3e\xff\xf6\xae\x07\x1a\x17\x76\xaa\xc1\x0c\xeb\xc1\xb2\x4d\x89\x24\xc6\x85\x39\x27\x85\xd4\x34\xf7\x7c\x5b\x35\x29\xa6\xad\xf3\xce\x6f\xfd\xbc\x77\xbc\x75\x43\x6d\xd7\x47\x56\xe2\x8f\x47\x53\x64\x99\xc4\x85\x24\xb2\x2c\x62\x61\xb8\x90\x39\x9e\xd4\x0a\x89\xf1\xd5\x6e\xc1\x4f\xff\xb8\x90\x5c\x50\xf3\x48\x5d\x5d\xe0\x55\x0a\xcd\x75\x72\x86\xea\xad\xd4\x0d\x91\xa5\xdb\xff\x9e\xe7\x59\x72\xab\x2f\x63\x28\x1e\xc1\x68\x08\x91\x79\xbb\xb2\xc5\xc9\xfa\x32\x42\xe3\x6a\x64\xaa\x19\x9f\x84\x36\xd3\x86\x2d\xc8\x6d\xab\xfd\xb3\xad\x99\xb0\xf9\x6d\x61\xa5\x70\xf2\x1a\x6c\x5b\x1d\xc7\x5d\x0e\xee\x77\x18\xb7\x99\xb9\x3b\xdd\x55\x14\xa4\x0f\xbc\x2b\x2a\x2d\x4d\xd0\x08\x68\x56\xcb\x5c\x6a\x40\x25\x26\xe6\x59\xf6\x1c\x93\x68\x43\x84\xcc\x48\x8e\x12\x3c\xd2\x0f\xb4\xb4\x86\x8a\x31\x16\x4e\x87\x43\x4b\x1c\xda\xcc\xfb\x9c\xe5\xb7\x1a\x28\x3e\xc8\x35\xab\x35\x20\x1f\x8f\x93\xdd\x2e\x1f\x8f\xc3\x84\x24\x2b\x6a\x8a\x8f\xf6\x17\x47\x29\x36\x50\x2c\x6b\x20\x16\x80\x63\x76\xde\x19\x4e\xbc\x3c\xaf\x87\x13\x0b\xa3\xd7\xc1\x0e\xb0\x79\xe5\x45\x19\x61\xdd\x85\x0e\x49\x9e\xf7\x06\xee\xe1\xca\x78\x0c\x52\xf3\xbb\xe8\x4a\x53\x10\xe5\xbb\x1d\xe8\xe0\x3f\xbe\x04\xdb\x0a\xa5\x68\x5b\x48\x92\x53\xf3\x5a\x4a\xa7\xc8\x05\x23\x9b\x62\xc5\x9d\x9b\x0c\xc8\x22\x02\xbb\xcd\x40\x88\x5c\x43\x76\x3d\xe2\xbc\xbb\xa7\xb3\xe2\x45\xb6\xd4\xb7\xf2\xe5\x37\x82\xaf\xbf\x6b\xc6\xd0\x97\x9c\xf7\x0c\xc1\xb9\x81\x03\x39\x1e\x6b\x2f\x96\xee\x62\xd3\x76\x8a\x2a\xa2\x27\xa6\xb3\xf4\x97\xb3\x23\x03\xa2\xa7\x61\xf0\xc8\xbc\xf2\x0f\x3b\x03\xbe\xa2\x72\x68\x90\xed\xfb\x83\xcd\x20\x07\x2b\x1b\xa1\xf2\x40\x5d\xb3\x15\xba\x0c\xc1\xef\xb9\x15\x0e\xd4\xbf\x37\xd7\x74\x8d\x86\x93\x1d\xd8\x7a\xd9\x86\xba\x75\x08\xa9\x7e\xac\xa6\x3d\x0e\x23\x88\xee\x59\x9e\x81\x7d\xa0\xef\x0d\x78\x5b\xc6\x0f\x0a\x68\xd9\x57\x24\xa8\x06\xbf\x67\x49\x6d\x2a\x04\x5e\x5b\x2e\x76\x9d\xf5\x24\x51\x0a\xcc\x25\x0d\xca\x42\x3f\x67\x7d\x45\xe5\x8a\x0a\xfd\x94\x75\xa0\xc9\x46\x60\x07\x1b\x85\xd0\x79\x13\xdb\x15\x56\x43\xad\xe5\x03\xfd\x88\x77\x27\xad\xff\xcc\x6b\xaf\x8e\xf3\xc8\xf1\x9a\x74\xb3\x6f\x8a\xb5\x6b\xd5\xfd\xf4\x0a\xee\xe9\xef\xce\x06\xeb\x17\xd0\x7b\x44\x6c\xb7\x0b\x19\xbf\xaf\xc1\x18\xda\x90\x89\x97\xdd\x76\xd1\xd6\x83\x6d\xcc\xce\x65\xdc\x6e\xa7\x6a\x85\xe9\x6b\xd3\x62\x5d\xd3\xc8\x01\x3e\x13\x43\x02\xad\x1c\x92\xc0\x48\xae\x28\x1b\x94\x2e\xba\x74\xa0\x31\x8b\xf5\x10\xcb\xb2\x51\xed\xdb\x4c\xed\xb5\x79\xdd\x6f\xdf\xdf\xc8\xcb\x74\x98\x92\x15\x81\xa0\xff\x2c\x33\x41\xd3\x28\x78\xbf\xca\x8a\xa0\x39\xe5\xd1\x06\xdb\x22\x58\xf1\x9b\x40\xf2\xc0\x54\xd6\xcf\x9e\x1b\xec\x51\xdb\xdf\x60\x93\x4a\xd3\x9a\x80\xd9\x7b\x51\xe3\xb6\xd4\x20\x70\xc1\xf3\x6b\x0a\xba\x53\x6e\x94\xd8\xc3\x42\xa7\xbb\x35\x24\xb1\x15\xaa\xce\x69\x7c\x69\x1e\x2d\x77\x6b\x45\xd1\xb6\x5e\xf7\x78\xe0\x71\x73\x0f\x37\x3d\x04\xa9\x20\xf4\x37\x63\x07\x51\x10\xdb\xbb\xa8\x02\x49\xb4\xb2\xea\xa8\x2b\xf6\x2a\x85\x55\x77\x86\x5e\x40\x08\x7f\x71\x80\x2f\x75\xd6\xc6\x76\xbf\x00\xb3\xd8\xa7\x56\xdd\x90\xa6\x58\x18\xca\xdb\x4c\x53\x36\x33\xa9\x8c\x6f\x5a\x07\x6f\x6a\x79\xf1\x3d\x1f\xc6\x1e\xf3\x44\xce\x90\x24\xa6\x5f\xad\xb3\x26\x8f\x0b\x4f\x42\x07\x5b\x5d\x2c\xa6\x91\xf3\x50\xf5\x06\x44\xfd\x01\x79\xd2\x6a\x5f\xd2\x6e\x4d\x56\xf1\x9c\x41\xe0\x48\xe4\x1d\xb4\xd7\x4d\xcf\x06\x01\x26\xd1\xd6\xd7\x24\x5e\x28\xd9\x82\x79\x63\xe3\xfa\x1a\x63\x57\xbe\xd6\x5a\x39\x67\x46\xf6\xad\xbf\x80\x84\xb1\xd2\x97\x79\x6e\x8d\xc6\x20\xfc\x81\x99\x97\x61\xd2\xc0\xd9\x81\xfc\xde\x8c\x95\x27\x44\x12\x56\x1d\xaa\x30\xa0\xdd\x44\x9b\xb2\x58\x29\x4d\xa3\xaf\xbf\x0c\x16\x77\x07\xbb\x0c\xce\xe8\x1f\xf0\x44\x89\xb6\x83\xe5\xec\x05\x7f\x8a\xa6\x10\xb1\xb6\x6e\x01\xab\x0e\x62\x50\xf9\xd6\x2a\x86\x87\x59\xd5\xac\x15\xd7\xe2\x20\x19\x56\x4a\x9a\xb1\xb8\xbc\x62\x92\x8a\x6b\x92\x9f\xbb\xeb\x91\x42\x5a\x1d\x15\xb4\x0b\xc0\xd8\x84\x5d\xf4\xd3\x6c\x0c\x89\x42\xf2\x8d\xab\x34\x4c\xc6\xb5\x73\x6e\x4b\x00\xed\x91\x79\xea\xe7\xef\x76\x5d\x3e\xdb\xa9\xdd\x16\x5c\xbb\x75\x0b\x49\x58\x7a\x39\x58\xd1\x65\xf5\x6b\x8d\xa6\x6d\x64\xf0\x0e\x3c\xf6\xf1\x44\x86\x6c\x1b\x56\x94\xe9\x6e\x69\xff\x10\xa5\xe7\x60\xdb\x3f\x1d\x6e\xae\x2a\x6a\xcf\x98\xd1\x04\x0e\x08\x31\xd6\x21\x85\xda\xa7\x9f\x7a\x3b\xcd\x67\xe5\xa2\xcb\x64\xc7\xe3\x91\x3c\x9f\xd4\xa2\x7e\xad\x3b\x3b\x63\x2c\x73\x91\x81\xb5\x3a\x02\xe3\x41\xc5\xdc\x63\x7e\x00\x56\x30\xee\x0a\x1c\x62\x0f\xc7\xc7\x02\x4d\xf0\x9e\xae\xcf\x8f\xea\xe9\x78\xde\x3d\x20\x20\x78\xb4\xb8\x35\x5e\xc5\x57\x0e\x70\xf7\xce\x9a\x7a\x64\x6c\xdf\x76\xec\x2a\x7a\xba\xf0\x3f\x32\xb9\xfa\x5e\xd0\xeb\x8c\x97\x85\xa7\xed\x35\x76\x07\xfd\x16\x53\xab\x80\x36\x55\x35\xc8\xc6\xb1\x6c\xe8\xb8\xf3\x1d\x05\x65\x74\x09\x41\x5f\x00\xa7\x8a\x29\x35\x33\x56\xdc\x06\xea\x58\x0d\xfd\x11\x2a\x46\x65\xd4\xf8\x35\x11\x1f\x7f\x68\xe6\x67\x87\xc9\xf5\xb3\xec\xa8\x5f\xf1\x52\x70\x92\x26\xa4\xd0\x13\xcc\x68\x01\xba\xb0\xf2\xe8\x82\x2f\xe4\x5b\x9c\xee\xda\xc4\xea\xe8\xbc\xce\x3c\xe5\xd7\xef\x2f\x31\x6c\x63\x99\x4f\x96\xac\x05\x0f\xed\xe9\x48\xed\xb5\xee\x40\x1b\xb2\xd7\x8d\xbf\x66\x49\x8d\x76\x00\x3f\xa4\x53\xf7\x49\xd6\x9e\x82\x7d\x61\xcf\xc2\x2f\x90\x2b\x22\x03\x1d\xd9\x6c\x79\xab\x25\x35\xaf\xeb\x80\xb0\x34\x18\x54\x25\x54\xcd\xc4\x84\x76\x22\x79\xc1\x95\x1a\xb1\x31\x53\xd1\xd2\x5f\x46\xb5\x94\xf7\x45\x81\x3e\x0c\xd3\x03\x0b\x42\xf7\xd7\xb3\xcb\xe4\x0f\xa0\x59\x0c\x6f\x04\x6e\x1f\xb7\x86\xd3\x5e\x46\xcf\x0e\xbb\x67\x6f\x36\xe2\xc8\x07\x9f\x2b\xeb\x8b\x58\x7e\x42\xf4\xc1\x11\xa8\xf1\x78\xb4\x37\xcf\xc8\x1b\xda\x60\x75\xb0\x44\x6b\x30\x7b\x65\x15\x2b\x96\xd4\x67\x5c\x48\xe3\x65\xf2\x11\x3a\x9b\x45\x43\x33\xb5\x50\x42\xcd\x61\xd6\x27\x69\xb9\x70\xa3\x18\xab\xe9\xa8\x8c\x9e\x19\x03\x51\x37\xe4\xb6\xae\xac\x2a\x98\xf1\xb4\xd3\x21\x9a\xee\x23\xd8\x8e\xf5\x53\xf9\xc3\xc6\xac\x52\x4b\x46\x92\x9e\xe5\xd8\xfb\xb6\x0e\x7e\xed\xeb\x21\x96\xe9\x2a\x8e\x5c\x41\xc3\x22\x86\xba\x8b\x24\x25\x42\x31\x41\xdb\x5d\x5f\x4c\xb2\x23\xd9\x63\x6b\xae\x43\xfa\xb7\x4d\xe2\x76\x22\x2d\xca\x46\xd2\xf4\x6d\x7d\xdc\x3c\xc0\x5d\x8c\x9d\x6e\x2f\xba\xff\x3f\x40\x37\x7e\xed\xbe\x35\x5b\xb2\xa3\x6b\x68\x01\xdf\x33\xde\x49\x44\xef\x34\xd4\xb5\xcf\x00\x86\x0e\x8f\xeb\x2d\x6f\xf6\x8a\xdb\x1a\x7b\x35\x8c\x1a\xfb\x75\xff\x47\xb6\x4d\x3b\xdb\x08\x9a\xb7\xec\x87\x55\xb5\x3d\x18\x35\x00\xaa\x96\xad\xdd\xbd\xf6\xf7\x0d\x17\x6f\xed\xa8\x0e\x35\xd2\xe5\xc6\xad\xed\x33\xc0\x8f\x1b\x19\x73\x2f\xe7\xfc\xf2\xdc\x62\x48\x37\x3a\x08\xe8\xf6\x31\xcc\xfe\x56\xea\xe8\x84\x03\x67\x3e\x87\xf6\xf6\x90\xa0\xa3\x26\xb9\x5f\x00\xf1\x4e\xc8\xb4\x03\x4a\xfa\xff\xb3\xf7\x2e\xdc\x6d\xdb\x48\xdf\xf8\x57\x91\xf8\x6c\x59\xe2\x11\x2c\x4b\xce\xa5\x2d\x15\x54\x27\x1b\x3b\x4d\x76\xe3\x38\x8d\x9d\xcd\x66\x15\xad\x0f\x2d\x42\x12\x6b\x0a\x54\x49\xc8\x8e\x2b\xf2\xbb\xff\x0f\x06\x17\x82\x17\xc9\x4e\xdb\xe7\x7d\xdf\x7d\xce\xbf\x3d\x27\x16\x71\xbf\x0e\x06\x83\x99\xdf\x20\x7c\x0b\x9a\x58\x47\x08\x9f\x11\xe6\x3d\xfe\x1e\xe1\x93\xff\xff\xf1\xfa\xcf\x7a\xbc\x3e\xdf\xad\x9d\xa4\xf0\xcf\x1f\xa6\x9c\x54\xe2\xfa\x44\xec\x25\x80\xc0\xbf\xa7\xbf\x6e\x68\xc6\xcb\xd5\x91\x01\x96\xfa\x69\xb0\xc6\x16\x1c\x53\x6a\x85\xea\x67\xcf\x93\xb6\x67\x4f\x28\xac\x15\xbf\x5f\x1f\x47\x54\xc3\xfd\x0b\x82\x84\xa4\xf3\xe7\x97\x20\x6e\xb4\x35\x61\xb5\x9e\x35\x4f\xfe\x4e\xc5\x29\x9b\xb4\x99\x09\xb3\x3d\xbd\xe8\x4b\xf9\xb8\x60\x18\x98\xdd\x0f\x85\xa9\x59\x80\x3c\x52\xee\xd4\xdd\x65\x88\xb4\xa9\xb6\xd7\xc1\x01\x01\x34\xce\x0d\x0c\x45\xdc\xbf\x6a\x68\xeb\x70\xd2\xac\x2a\x2d\xa5\x2d\x79\xee\x69\xea\x3f\x99\x2a\x2a\x3c\x99\xe2\x59\xb2\x5a\x03\x44\xcc\x44\xea\xf0\xdb\x25\x64\xa2\x04\x2c\xf3\x70\xa0\xe1\xda\x10\x77\x22\x49\x7a\xff\x2a\x02\x0f\xe6\x53\xa4\x5f\x3b\x25\x31\xb6\x92\xc9\xef\x32\x9d\xa9\x4f\x94\x25\x7f\x5a\xa9\x4d\x90\xc9\x50\x48\x07\xc5\x11\x09\x76\x0b\xcc\xcc\x00\x24\xa2\xc3\xd5\x3e\xa8\x89\x48\x91\x84\x2b\x94\xcd\x6e\x35\x99\x2d\xe7\x5f\x79\xc7\x50\x4d\xd9\x47\x1b\x3d\xf0\x4c\xdb\xf2\x2a\xfd\xb0\xf6\xe8\xe1\xba\xb7\x3d\x05\x58\xa4\x58\x8f\xd6\xae\x1b\x55\xe9\x32\x7e\xc8\x72\x4c\x41\xfe\x76\xdf\xba\x93\xd3\xbe\x29\xc1\xf9\x1e\xb4\x4e\x95\x26\x60\x80\xf0\x05\x61\xde\x77\x4f\x10\x7e\x27\xfe\x3e\x46\xf8\x14\x48\xf3\x23\x84\xaf\x5b\x94\x60\xae\xff\x73\x95\x60\x7e\xd9\x05\xca\x5c\x22\x85\x55\x54\x3b\xc0\x31\x42\x96\x9e\x02\x4a\x98\x3d\xa6\x8a\xa9\x2c\x71\x7f\x15\x64\x26\x0d\xeb\x31\x91\x62\x77\xeb\xe1\x8a\x8b\x04\xff\xef\x65\xa8\xaa\x8c\x74\x87\xcd\x13\x56\x83\xf0\xea\x34\x2c\xcf\xbb\x43\x83\x38\x6d\x2b\x4e\x2c\xe9\xec\xfa\xb5\x6a\xe9\x83\xe4\x2f\x35\x2d\x85\x12\xce\x83\x37\x1e\x58\xbb\x84\xa8\x47\xeb\xf6\x28\xa9\x13\x81\x69\xfd\xb1\xa7\x2e\x0c\xb2\x0d\xe8\xf9\x7d\x5a\x2e\x09\x8e\xd0\x36\xdd\x29\xd4\x92\x85\x35\xe5\x53\x09\xec\xc4\xfe\x0c\x3c\x77\x54\x24\x16\x72\x8b\xa2\x6a\x3b\x1b\xbc\x79\xa3\xb9\xf2\x4d\xaa\x72\x8b\x69\xdc\x37\x9e\x73\x4e\x57\x6b\x0e\x4f\x94\x1d\x28\xb2\x13\x54\xee\x0c\x77\xf0\xc8\x94\x6c\xec\x70\xbd\x4a\xac\xa7\x26\x7b\xae\xc7\xdc\xf7\xda\xd7\xd9\x84\x4f\x09\xc5\x6c\xc7\xfd\xec\x67\x9b\x23\x56\x3c\x86\x48\xa7\xa3\xce\x98\xee\x87\x3a\x9b\x1b\x23\x52\x65\x5c\x2b\x8b\xc9\x7e\x50\x6e\xb6\x8b\x4e\x77\x2c\x82\x88\x66\x65\xb5\xbb\x24\x10\x6d\x5b\x07\x00\x94\xdb\xc3\x1b\x37\x66\x35\x57\xbc\xd9\xb0\x26\x1f\x97\xe7\x2d\xc9\x26\x6c\x5a\x99\x67\xc1\x2b\x55\xa0\xf1\x78\x75\x9b\x79\x4c\xab\xd2\x74\x07\x8a\x19\x69\x2f\x15\x27\xe4\x1a\x9c\xb0\x97\xf8\x13\xfb\x1e\xec\xb8\xbd\xce\x19\x4e\xf0\x12\x9a\xd5\x58\xd4\x68\x5b\x20\x0c\x30\x44\x46\x7a\xdc\x32\x4c\xc6\xf6\x72\x16\xd3\x20\x2d\xe7\xbe\x41\x90\x26\x74\x8a\x2a\x1a\x03\xcd\xc2\x6a\x4b\xa5\xb9\xa4\x76\x72\x75\x20\xb2\xb5\x07\x17\x78\xab\xb4\x65\x2b\xc1\xfe\x30\x9b\xc3\x7e\xdc\x2d\x37\x57\x73\x6b\x75\xa2\xb0\xf3\x2d\xd8\x02\x7e\x5b\x5e\xce\xab\xed\xaf\xaf\x82\xb4\x84\xbf\x45\xda\x59\x59\xbd\xcb\xe9\xd4\xa8\x54\x8d\x77\x25\x50\x32\x27\xdf\xdb\x91\x80\x4c\xe8\xb4\x85\xfe\x8b\x98\x8c\x72\x33\x21\xd6\xb4\xb2\x1d\x3b\x07\xce\xef\x14\xd5\x66\x41\xaf\xb8\x9d\x9b\xf6\xab\x29\x98\x2e\xb1\x13\x74\x58\xc2\x0e\x5a\x46\x9b\x2f\x69\xa7\xbc\xeb\x3a\x15\x28\xa8\x85\xb7\x35\x51\xf0\xa2\xa0\xe0\xf5\x32\x1f\x54\x02\xa8\xb8\xab\x7c\xd9\x71\x28\xab\x9b\x52\x26\x8e\x25\xb2\x2d\xda\x4e\xba\x05\xe5\x70\x6a\xed\x52\xae\x81\xbc\xd5\x11\x5a\x50\xde\x76\x35\x28\x93\x37\x28\x57\xc4\x22\x7e\xba\x91\x86\xdc\x8d\x13\xa1\x92\x8f\x6c\x57\x2a\x9d\x5c\x4b\xbe\xfd\x94\x0c\x88\x36\xa5\x7e\xdd\x40\x6b\xd0\x81\x2d\x78\xa5\xc2\x55\x90\x5e\xeb\x0a\x6b\xba\x43\xb5\x9d\x64\x6a\x1e\xc1\x63\x98\xb1\x54\xea\x0e\xb1\xd2\x91\x27\x75\x92\x6e\x17\xbe\x5f\xf5\xca\x94\x2d\xd9\x70\xab\x6c\xc5\x04\xc3\x25\xb2\xb1\x00\x33\xca\x1b\x72\x13\x33\x87\x72\xc6\x2f\x5b\xb8\xca\xcb\xff\x5c\xae\xf2\xed\x7f\xc0\x02\xde\xfb\x16\xa7\xb2\x69\x99\x8d\x74\xec\x2a\xd8\x3b\xfd\x92\x06\xef\xc0\xfa\xc3\x68\xcf\x25\x4a\x7b\x4e\x03\x7d\x75\x09\xb1\x63\xca\x1c\x2d\x50\x41\x40\x7d\x58\x10\xcb\x6f\xbf\xb3\x0a\xee\x40\xbd\x4b\x69\xe5\xd0\x2f\x51\xc6\x4b\x3a\x23\xcd\x7e\xc5\x9c\x42\x53\x1d\x64\x70\x78\xbb\x43\x71\xbf\x96\x98\x09\x10\xa7\x9f\x0f\xcd\x9b\xb2\xeb\xee\x60\x62\xd5\x82\x76\x5d\xaf\xaa\x0d\xd8\xae\x58\x03\x37\xda\xee\x00\x6f\xec\xe7\x46\x84\x30\x23\xd1\x38\xad\x3c\x62\xfb\xb4\x1f\x65\x82\x00\x8f\x53\x20\xb4\xf0\xfd\x5e\xaa\x48\x8d\x53\xad\x2c\xe5\x9b\x06\x28\x78\xa3\x09\x6c\x34\x5e\x57\xf6\xf4\x32\xc2\xeb\x3a\x9c\xad\x93\x46\xb6\x7a\xb8\xef\x55\x65\xc1\xeb\xfa\x20\xf9\x9b\x9a\x96\xee\x26\x8e\x71\x55\xab\x37\xab\x2b\x04\xe3\x15\xe5\x01\x68\xbc\xd2\xbe\xfe\xd9\x6a\xa2\x5d\x6a\x7b\xbd\x4c\x52\xa5\x02\x55\x2a\x45\xa4\x15\x33\xc9\x32\xc5\xd4\xc8\x51\xf7\xa4\xa9\x29\x7f\xa6\x65\xa2\x16\xb2\x67\xbd\xd7\xee\xa1\xe3\xd5\x96\xd5\x5b\x31\xad\x5a\x0a\xc1\x38\x55\xe3\xab\xf6\x45\x8a\x54\x66\x46\x72\x60\xde\xf2\xf5\xb7\xaf\x65\xb0\xa6\x84\xc6\xec\xb4\x55\x53\xef\x38\x5c\xc9\x5a\x46\x9f\x55\xfa\xc3\x6a\xfd\x61\x3b\x0a\xaa\xf3\x15\x66\xf8\x9a\xe7\xd1\x1f\x18\x3d\x7e\x4f\x9f\x60\x80\xf6\xf4\xa9\x36\xa9\x2f\x00\xc5\xc3\x63\xb8\x3b\xd8\xd9\x7e\x3b\x65\xed\x58\xfd\xf3\x96\xc0\xef\x98\x40\x3e\x56\x23\x5f\xd2\x85\x96\xbb\xd8\xfe\x4b\x58\x3b\xf5\xaf\x9d\xc8\x2d\xf7\x2c\x79\x40\x55\xf0\xe6\x4c\x30\xda\xf3\x18\x59\xba\xab\xe3\x00\x2e\x85\xf6\x62\xba\x81\xac\xfc\x12\x34\x4e\xcc\xe2\xc3\xdb\xba\x49\x85\xea\x7b\x81\x30\x95\xe0\x6f\x92\x63\x38\x6e\xe1\x18\x8e\xff\x73\x39\x86\x17\xb5\x1d\x64\xbb\xd9\xa2\xb7\x1e\xcb\x73\x8f\x11\x25\x05\x41\xa8\x26\x07\x31\x1c\x06\xc0\x8a\xf1\xf4\x6e\x9b\x79\xa9\x7c\xaf\xa3\x08\x15\x33\xe5\xa7\x74\x1b\x79\xbc\xe1\x5e\x53\xa7\x86\xf3\x78\x6f\x72\xb0\x8a\x17\x07\x09\xa3\xe3\xc4\xc0\x3f\x80\xae\x13\xab\x2c\x86\x12\x1b\x42\xeb\x8a\x06\x78\x83\x8a\xcc\xf3\x52\x92\xaa\x01\xa0\x98\xe7\xf9\x64\x8a\x90\x6c\x26\x02\xd1\xcb\xfb\x36\xb6\x16\xe0\x50\x22\x1c\x90\x6d\x1c\x5c\xd1\xd8\x1f\xe0\x4c\x9c\x68\x55\xeb\x9f\xa1\x9b\x4c\x06\x53\xc5\x54\x24\x93\xa1\x01\xf5\x15\xbf\x0b\xcc\xd3\x3b\xa0\xaa\xc9\x5a\xfc\x31\x4f\x32\x91\x92\xa5\x6f\x3c\x50\x19\x4b\x93\x5b\x7f\xe3\x0d\x91\x06\xf3\xde\x78\x47\xa8\xc0\xfb\x10\x38\xbd\x68\x52\x43\x7b\xdd\x69\x63\x8d\x70\x34\xb2\x46\x3e\x6a\x22\x95\x6e\x9a\x41\x91\xc4\x0d\x6a\xf7\x4b\xf6\x93\x54\x21\x4e\x52\x71\x0b\x0e\x62\xa0\x15\x1d\xfa\x85\xce\x36\x82\x4f\x12\xd7\x2e\xb1\x92\x47\xc1\x08\x89\x39\x16\xe5\x88\x75\x0f\x5e\x69\x8e\xdc\x68\x32\x98\x02\x81\x81\x9e\xaa\x2f\xa8\x26\xcf\x3d\x2f\x21\x3a\x0a\xb9\x6e\x22\x57\x75\x8a\xf0\x00\xf9\x72\x59\x21\xd7\xed\x7a\x09\xd1\x31\x38\x9a\x0c\xc5\x54\x8a\xa5\x61\x9c\xe5\x8f\x14\x8c\x09\xe0\x77\x88\xa1\x22\x13\x59\x2d\x4e\x14\x40\x07\xc2\xe2\x53\xc2\x99\x74\x06\x3e\xfc\x19\xfa\x09\x89\x46\x00\xaf\x0e\xc0\x20\x9d\xc7\xbe\xb1\x07\x84\xf9\xef\xf5\x34\xc4\xb2\xa8\x14\x8b\x2a\xfd\xee\xb0\x90\x89\x9f\xf8\x65\xaa\x94\x40\x82\x88\x4c\x06\xd3\xd1\x2c\x61\x3c\x62\x1b\x2a\x93\x7d\xe7\x47\x24\xe8\x27\x6b\x71\xe7\x5e\x83\xbd\x9f\x58\x20\xf2\xa3\x4c\xaa\x81\x42\xc0\x53\x5c\x42\xbc\x84\xc8\x74\xc8\xb2\xa3\x4a\x26\x49\x89\x60\x2d\x36\xfd\x53\x42\x88\xe8\x55\x9e\x1f\xa9\x5f\x08\x6d\x03\x32\x30\xc5\x16\xd1\xdc\x7b\xa4\xa2\x5c\xd7\xeb\x26\x79\x2e\xda\xf9\x63\x02\xdf\xe2\xe7\xb3\x64\xf2\x08\x72\xc9\xae\x40\x37\xe4\x88\x88\xbc\x4f\x4d\x5e\x15\xff\x4c\x2c\xf1\x32\xb5\xf8\xc2\x66\x0c\x45\x8e\xc4\x4e\x7a\x54\x49\x7a\x34\xc5\x6a\x1c\x36\xd9\xd2\x8b\x90\xca\x24\x22\x44\xa6\x7b\x46\xa8\x88\x08\x57\x58\xb8\x38\xd0\x74\x63\x83\xb6\x11\x99\x3c\xc5\x9b\x29\x4e\xc9\xa0\x98\x47\x2c\x88\xe3\xbb\x2d\x23\x09\x19\x88\xd6\x3c\x81\x35\xa0\x56\x74\x54\xee\x54\x33\xa9\x83\xe9\x58\x04\x2b\xd8\x1e\x35\xc1\x83\xa2\xf0\x26\x11\xde\x4c\xc1\x47\xd2\xf3\xfb\x85\xf6\xe0\xf1\x88\x69\xe9\xfd\x31\x0d\x37\xeb\x38\x9a\xc1\x1d\x17\xa7\xc4\x20\x6d\x33\xd7\x65\x80\x2e\x03\xe7\x0f\x8e\x08\xed\x27\xec\xaf\x5a\x41\x0f\x07\xa5\x51\x6b\x34\xb6\x25\x6b\x7e\x04\x56\xe5\x4a\x18\x8b\xb3\xb2\xc4\x8d\xeb\x6e\xf0\x8c\xd0\xbe\x44\x10\x7b\x7e\x1b\xa4\x94\x51\x70\x5d\x67\xca\x9a\x8d\xb7\x85\x3f\x93\x47\x6d\x29\x1f\x10\x47\xae\xd8\xe2\x5f\x2c\x41\x7f\x19\xfa\x56\xfb\xdb\xab\x94\x5a\x3e\x2a\x84\x2f\x92\x8d\xb8\x41\x11\xeb\x9d\x20\xb2\x9f\x62\x45\x60\x29\x39\x54\x47\x49\x2d\x5e\xdd\x1c\xb2\xbf\xde\xbd\x0d\x56\xd4\x14\x2e\x06\x53\xb3\x66\xa1\x19\xca\x24\x25\x71\x3f\x00\x87\x04\xde\x44\x14\x73\x8e\xf9\xd4\xd6\x03\xa8\x8c\xba\x56\x6f\x35\x6a\x93\x24\x51\x8a\x00\xe5\x78\x93\xa0\xbd\x93\xf3\x9a\xce\x0c\x34\xfa\x17\xa5\xa6\xaf\x84\xdb\x52\x96\xa4\x26\xc4\xcf\x0a\xd4\x76\xb9\x86\xc1\xde\x63\x23\x40\xcd\x74\x80\xbb\xeb\xf2\x7a\x04\x0b\x63\xcd\xa3\x95\xb8\x84\xce\xde\xd3\x6c\x9d\xb0\x8c\x82\x91\x73\xa9\xd9\x1a\xd1\x0c\x67\xc4\x58\x48\xe9\xa0\x59\x39\xf1\xd9\x78\x32\xf5\xc5\x52\xa0\xfd\xe0\x36\x88\xf8\xfb\x6a\xca\xb0\x5c\x46\x73\xd7\x9d\xe3\xb5\x29\x1e\x2f\x09\xb5\x0d\xfa\xb0\xe5\xaa\x6f\x39\x96\xd6\x9c\xfe\x12\xaf\xaa\xca\xd9\xf8\x8a\x50\xe3\x70\x68\x51\xe6\xb8\x12\xeb\xef\x0a\x64\xac\xac\x79\x11\xd7\x43\xd0\x6a\x40\xf3\x29\xd9\x74\x56\x9b\xac\xd4\x9b\xba\x4b\x36\xa9\xb1\x17\xd0\x97\x4c\xe0\x9c\x96\xb4\x53\x2b\x4a\x9c\x49\xd1\xdc\x5b\x81\xfd\xa9\xb2\x4c\xea\x12\xb2\x6a\xc1\x0d\xb6\x2c\xbe\xe6\x49\x6a\x0a\xca\x3a\x33\xad\x13\xd3\x01\xbd\x2c\x05\xac\x95\x41\x75\xdf\xea\x52\xbf\xed\xac\x21\xaf\x12\x0b\xdc\x4a\xa1\x46\xd3\xd0\xfb\x8c\x54\xd7\x24\x28\x16\x88\x02\x3c\x34\x62\xe4\xac\xcf\xd3\x80\x65\xf3\x24\x5d\x1d\xab\x8e\x79\x0c\x61\xed\x6b\xd6\xbb\xe8\x07\x48\x70\xaf\xea\xf3\x5d\x7f\x86\x3c\xf3\x7b\x81\x3c\x86\x10\x4e\x65\x0b\x4e\x2a\x72\x10\xa6\x44\xd0\x99\x52\x72\xf6\x6e\x9b\x90\x47\xe5\xdd\x9d\x69\x37\xc8\xe7\x4d\x6d\x98\x12\x76\x2e\xa8\x42\xe1\x05\x2d\x38\x7a\xa5\xbe\x0c\xaf\xed\xf4\x09\x9b\x02\x37\xd6\x8a\x02\x09\xce\x6c\xb7\x72\x1d\xa6\x7e\x20\x98\x74\x69\x1f\xc3\xeb\xaf\x84\xf0\x34\x0d\x8c\x7a\xe5\xc9\xaa\x42\xe2\x2a\xc2\x53\xef\x16\x9f\x80\xaf\xd8\xea\x2c\xd8\x12\xc9\xd7\x2c\xe2\x9e\x91\xa2\xbe\x0e\xfd\x5b\x5c\x8e\x8c\x25\xcc\x00\x24\x54\x5c\xd9\x8c\xfe\xb9\x87\x54\x88\xbf\xc6\xcd\xed\xeb\x47\x5a\x11\xaa\xa9\x92\x8d\xdb\x15\xeb\x71\x22\x47\x3e\xc0\x62\x17\xf3\xfe\xd5\x26\x8a\xc3\xb3\xb5\x58\x56\x51\xc2\x5e\x26\xe9\x9b\x88\x5d\x03\x84\xdf\xb1\x58\x19\x0b\xbc\x6d\xaf\xd6\x58\x23\xc6\x62\xd1\x70\x79\x5c\xcd\xf7\xd8\x13\x51\xb4\x35\x9a\xeb\x01\x02\x00\x44\x63\xc3\x7d\x37\x96\x64\xbc\x61\x76\xad\x48\x46\x06\xc6\x06\xb5\x69\x68\x4a\x7d\xbd\x5b\x84\xab\xfb\x12\x04\x7e\xad\xb3\xa2\x72\x54\xe7\x45\x9a\x3f\xf8\xf4\xf7\x4d\x50\x81\x04\x39\x6d\x55\xc4\xd8\xd7\x76\x49\x30\x6e\xa5\x1e\x51\x7b\x63\x5f\x28\x2d\x90\x5a\x73\x77\x2d\x88\xb6\xd5\xc0\x1f\xb8\x57\x15\xd6\x60\x81\x70\xe2\xa9\x29\xa9\x48\xd1\xa4\x61\x84\xd1\x9f\x69\xde\x15\x5e\x78\x5c\xd9\xb3\xe8\x3f\xf5\x3d\x2f\x6f\x87\x38\xc1\x06\x58\xf5\x7d\x0d\x63\x63\x6e\x20\x04\xe7\x92\xd3\x33\x2c\x76\x34\xf7\x32\x2d\x29\xb9\x77\x44\xb3\xbd\xfb\xf2\x2b\x07\x75\xc7\x2e\xcb\x14\xe9\xcf\xe0\xae\xd2\x76\xd5\x9a\xb9\xae\x37\x23\x33\x2f\x40\x08\x53\xd0\x4e\x24\x03\xcc\xc8\x6c\xc4\x9f\x31\xdb\x83\xb7\x96\x09\x19\xf0\x3d\x2f\x25\x6c\xc2\xa7\x68\xec\xc5\x44\x19\xf4\x29\x7d\x01\x7b\x51\x5a\x67\xbc\x6d\x09\x5b\xb3\x82\x95\x9e\xb5\x39\x28\xc2\x8a\x2d\x2b\x7f\x13\x13\x0a\x56\x61\x82\x85\x2e\x99\x1f\x2f\x46\x08\xf9\x9e\x72\x18\x6a\xb1\x04\x77\x92\xe4\x7a\x29\x42\xae\xab\xb2\x25\xa5\x73\xbe\xf1\xe4\x31\xd6\x36\xa5\xd2\xcd\xc4\xd4\x9f\x3c\xc2\x47\xd3\x91\xba\x1f\xcd\xfb\xe2\xfe\xeb\x21\xac\x26\x97\x1c\xc9\x98\x23\xbf\x66\x86\xf5\x55\xcb\xd5\x89\x16\x2c\x49\x25\x39\x71\x5d\x73\x98\x48\x6a\x13\x20\xd7\x55\x62\xa5\x40\x91\x14\x3c\x39\xc2\xc1\x14\xc8\xbd\xbc\xe2\x0b\xd2\x58\x34\x35\x28\x76\x6a\x7a\x18\xb3\x47\x2c\xdd\x8e\xe2\xa0\x62\xb5\xb3\x29\xb9\x95\x40\x70\x2b\x01\xce\x08\x37\x42\x65\x1c\xdb\x3c\x15\xdb\xc4\xb1\x2f\xf8\xac\x8a\xd1\x5a\x95\xe1\xae\xa8\x95\xfb\x33\x1c\xee\x3e\xf9\x5b\x4e\x7d\x75\xd2\x21\xbc\x6e\xda\x59\xcf\x6b\x76\xd6\x73\xf0\xa3\xd7\x25\xc4\x58\x41\xd7\xad\xf6\x24\x7b\x57\x21\xb5\x73\x39\x18\x77\x7b\x5a\x15\x46\xf3\xb9\xb6\x4c\x0d\xad\x25\xbc\x51\xe2\x8a\x77\x12\x61\x01\x8c\x42\xbb\x03\x6b\x23\x02\x7c\xc3\x68\x4d\xba\x77\x46\x1f\xce\x28\xcf\x07\x2c\x3c\x50\x6d\x83\xb6\xe3\x84\xdc\x29\x33\xb6\x42\xa2\x47\xad\x1b\x56\x83\xf3\xaa\x39\xe0\x5c\x1f\x65\xa7\xfd\x10\x79\x13\x27\x8e\x6e\xa8\x33\xc5\xa1\xb8\x0d\xaf\x48\x77\x20\x79\x97\xab\x2a\x0b\xa6\x34\xd0\x80\x09\x5b\x28\x17\x9a\xa5\x05\xd5\x47\xb8\x49\x52\x1c\x62\x8e\x4a\xfb\x03\xbd\xa2\xe9\xbe\x15\x1d\x62\xa9\xf9\xae\x8a\xf7\xaf\x70\xc4\x6e\x82\x38\x0a\x01\x30\xb6\x3b\xc0\xb3\x80\xcd\x68\xec\x2f\x8a\xc2\x78\x8e\xd6\xf1\x5e\x77\x60\x98\x11\x8b\xb3\x31\x8f\x65\x6a\xf4\x5f\x87\xf6\x11\x17\xe2\xf6\x47\x26\x7f\x55\x99\x23\xf9\xfe\xe3\x33\xc1\xaf\xc3\x1b\x10\x36\x2f\x40\x2a\x50\x2d\x96\xf2\x0d\x25\xc6\x2d\xef\x1b\x7e\xba\x87\x9a\x7a\xdd\xd5\xce\x99\x45\x15\x23\xb6\x92\x9e\x37\xa5\xe5\x14\x77\x57\xad\x63\x43\xcd\xe8\xb4\x98\xb0\xe1\x95\x5c\xc2\x8a\xd7\x56\xe6\x9d\x30\x0d\xde\x36\xb5\xe6\xa3\x75\x0c\xb5\x0e\x00\xdf\xd5\xe7\xba\x76\x8b\x04\x67\x6e\xe8\x60\x3b\x15\x06\xc8\xd1\xcf\x8c\x5c\x59\xd7\x46\xc6\xae\xd0\xa3\xa8\x5f\x59\x29\x23\x99\xf2\xea\x47\xe2\xb1\x3c\x1f\x8a\xe1\x8a\x5a\xc7\x4a\x1e\x8f\x82\x86\xa5\x08\x47\x6d\x43\x14\xb5\x8e\x4f\xa4\xb4\xe8\x5f\xd6\xef\xe0\xde\x95\xe4\x36\xeb\xbc\x02\x97\xc6\x87\xc6\x24\xc6\x9e\x51\x20\x19\x1a\x48\x77\x74\xdb\xa6\xfb\x53\xec\x00\x28\x90\x90\x34\x49\x9d\x50\xef\x32\x95\xd8\xa3\xa0\x07\x8f\xad\x0d\xf5\xf6\x00\x6f\x60\x6e\xd2\xca\xd0\x0c\x05\x83\x16\xc8\xdc\x31\x49\x2b\xf3\x90\x54\xed\x0a\xf0\x8c\xc4\xe3\xb8\xcd\x94\xc7\xe7\x0d\x58\x11\x8b\x10\xcd\x64\xe9\xf3\x4a\x6e\xeb\xce\xac\x15\x9b\x0d\x38\x8f\x48\x57\x41\x73\xf1\x90\x7c\xe6\x5c\xdb\x51\x72\xbe\x55\xcc\x92\x74\x37\xae\x2b\x55\xe5\x83\xe6\xab\x4e\xc3\x28\x69\xb6\x6b\x3f\xce\xf0\x1d\x51\x6e\x2d\xbc\xd0\x75\x83\xc6\x6b\x74\x58\x0d\x41\x78\x25\x08\xaf\xb7\x76\xdd\x75\xed\xf1\xb7\x4b\x48\xd0\x00\x04\x82\xbb\x41\x57\x9d\x46\xdd\xcc\xab\x55\x80\xf2\x5c\x6a\x6b\x26\x3c\x9a\xdf\x9d\xb1\xb7\x76\xe4\x8b\x65\xc0\x16\x34\xcf\x97\x30\x8f\x5e\x57\x9e\x70\xf2\xae\x21\xe8\x48\xa3\xb6\x60\x07\xce\x54\x9e\x07\x55\x6c\xa9\xad\x3c\x0a\x5a\x2f\x2b\xc1\x3e\x8c\xa8\xa0\x86\x11\x25\xfd\xc8\x76\x07\x5a\xa9\x05\x44\xdc\xea\xb7\x77\xa5\x65\x91\xef\xd0\xb6\x1d\x96\x4c\xee\xf5\x77\x00\x47\x06\x1e\x2a\xf6\x25\xbb\x12\xc9\xf4\x25\xff\x4c\x1c\x72\x28\xcf\xb5\x39\x62\xc4\xe6\x89\xe7\x3c\x67\x9d\x4d\xd5\x20\xb1\x73\x1b\x64\x1d\xc8\xcf\x3a\x57\x74\x16\x6c\x32\xda\x61\x89\x8a\x93\x29\x53\x29\x59\xd1\x0a\x81\x20\xe7\x28\xb1\x47\x9c\x9e\x2d\x31\x08\x2c\xcd\x09\xb5\xe3\x0a\xd1\x65\x31\x9e\x5a\xb0\x83\x6f\xb5\xd7\xcb\x68\xee\x6d\x50\x85\xbf\x98\xb9\x6e\xba\xff\x04\x65\xf4\x56\xe2\x49\x80\xf6\x91\x38\x95\x37\x8a\x11\xc0\xb7\xa4\xbb\xb1\x58\x87\xee\xd0\x78\xf5\x08\x5d\x37\x04\x6e\xc5\x75\xbb\x2b\xb4\x20\xf2\x43\x64\x90\x69\xb6\x52\xf6\x51\xdd\xee\x46\x13\xe1\x9c\xa4\xf7\xb3\x3a\x27\xd6\x31\xda\xba\xe3\x02\xdb\xd6\xdb\x62\x7a\x06\x05\x1a\x2d\xc8\xb9\xd5\x89\x73\xd3\x09\xe0\x6d\x2e\xac\xe1\xba\x20\xb7\x0d\x3e\x67\x36\x96\xa4\xd2\x74\xd2\x42\xf1\xaa\x6f\xa7\x9a\x26\x44\x2d\x1a\x2b\x18\xad\x41\xe1\xcb\x22\x17\x7f\xb8\xa8\x61\x81\x35\xe8\xd7\xfc\x2b\x76\xa4\xeb\x7a\x17\x1a\x08\x2c\xa8\x2b\x91\x30\x65\xea\xe7\x45\x79\xde\x8d\xf3\x3c\xde\x0d\xce\xe5\x5d\x20\xa4\xf6\x1c\xbc\xdf\x5d\x7c\xd5\x96\x13\xe7\x86\x4a\x7f\x5a\x42\x84\x8b\xed\x2c\x66\xc4\x63\xda\x2c\x50\x6f\xe8\xb6\xd3\xf1\xb4\x40\x08\x15\xf0\x5f\xe5\x1c\xbb\x0d\x5a\x2f\x1c\x40\xca\xea\xd8\x11\x03\x84\x6d\xcc\x0b\xba\xd7\x6c\xf4\x5b\x29\x95\xb6\x2a\xd0\x66\xa0\x57\xb4\x33\x0b\x62\xb1\xf5\x41\xfb\xd1\x96\x5d\x66\x94\x77\x78\xd2\x31\xb5\x7c\xab\x71\x3e\x8c\x9c\xf0\x1a\x69\x14\x45\x20\x6a\x25\x8a\xcf\x31\x9d\x83\xb7\xfd\x84\x65\x62\x24\x5a\x82\x2b\x2e\x28\x52\x62\x8b\x21\x19\x1a\xd1\x06\xb6\x94\x11\x58\xa6\x55\x80\xa0\x56\x1f\x8e\x74\xdf\xd9\x00\xb6\xdb\x7b\xe2\x49\x77\x88\x94\x8f\x3d\x90\x83\xd1\xfd\x2a\xa0\x16\xcc\xa8\x66\x04\x13\x5c\xb3\x37\x06\x76\xa8\xc9\xb1\xec\x52\x63\x90\x5a\xad\x72\x5c\x1b\xd2\x65\x49\x61\xff\xb8\x78\xdb\x2e\x47\xc9\xb6\x1d\x7d\x67\x94\x48\x29\x90\x42\x7a\x6d\x68\xac\x27\x53\xd7\x6d\x1a\xac\xad\xf2\x4a\xd5\xb6\xa0\xe3\x2c\x7e\x8d\x9d\x0e\x0f\x16\xfd\x6f\x25\x38\x64\xbf\x71\xd9\x6b\x76\xaf\x91\x44\x77\xd5\x96\x98\xd3\xb0\x93\xb0\x4e\xb9\x98\x55\xfb\xef\xd3\x04\xb6\x63\x1f\x5a\xac\xa5\x9d\x6a\x9e\xa9\xf6\x1a\x77\xa4\x38\x29\x1f\xcf\xfb\x41\x18\x36\x79\x66\x10\x81\x21\x6c\x6f\x47\x71\x71\x19\x22\x03\xc2\xd2\x34\xfe\xe0\x3b\x39\x70\x86\x70\xba\xcb\x32\x64\x6f\xae\xa4\xd5\x6c\xa4\xf6\xd0\xd0\x6e\x58\x5f\x8e\x85\xa5\x69\x5e\x91\x9b\x9b\x04\xbd\x1e\xa6\x3b\x54\x7f\x5e\xb3\x9a\xb6\x28\x55\x6a\x4b\xd6\xd5\xa5\xb4\xc3\xa5\xed\xf7\xba\x9d\xb7\xba\x76\x85\x7e\x7d\x4b\x68\xd5\x96\x6a\xe1\x31\x2c\xa7\x4d\xb1\xca\xaa\x8d\x7b\xb6\x26\xc0\x2f\xa9\x33\x1b\x4f\xa6\x3e\x38\xef\x97\x26\x85\x7c\x8a\xac\x5b\xbc\x38\xfb\xea\x03\x5e\x97\x1d\xec\xbb\xb4\x24\x5a\x12\x51\x72\x24\x52\x26\x30\x4a\x5c\x37\xa9\x4d\x41\x2b\x7b\x02\x4b\x4e\xf3\x27\x15\x85\xee\x5d\xac\x08\xae\x22\xd4\xf8\xb5\x05\x21\x8d\x6f\x31\xdb\x7f\x2f\x82\xe3\x41\x63\x85\xb1\xfa\xcd\x45\xb4\xde\xe3\x24\x91\x98\x95\xc6\xec\xaf\xc0\xe2\x68\xba\x0a\x66\xd7\x15\x73\xfd\x7b\x98\xc1\x9a\xcc\x44\xf3\x86\xbc\x00\x2b\xc6\xc6\xaa\x68\x6c\x8d\x76\x75\xc0\xe6\xeb\x33\x98\x29\x52\x6b\xfd\xe3\xad\xba\xa6\xfa\x1c\x4b\x48\x48\x9f\xd5\x2b\xdc\xb1\x1d\x9b\x5b\xa0\xa5\x3e\x6d\xd2\x6b\x1b\x77\x34\xba\x53\xb3\x73\x7f\xe8\x32\x37\xa3\x57\x9b\x37\x18\xb6\x96\x63\xdf\xe0\x69\x57\x8e\x7f\x16\xac\xa8\x38\xef\x4b\x47\x36\x25\x82\x60\x19\x36\x6a\x79\xae\x9f\xa4\x53\xd2\x1e\x0c\x88\xf6\xed\x51\x4a\x6c\x5d\x22\x4c\xb4\x8d\xf5\xee\x01\xa9\x28\x8d\x5b\x6b\x17\x60\x99\xea\xf7\xfa\x14\xd4\x45\x60\xab\x45\x73\x2f\x75\xdd\xd4\x43\xd8\xac\x68\x7b\x68\x58\x6d\x68\x70\x44\x12\xe8\xfd\x38\xb1\x06\x01\xee\x2a\xa3\xaf\x9f\x0f\x7d\xc5\xa9\xe2\x3a\x95\xa3\x12\xb5\x8f\x63\xd4\x34\x2a\x2b\x9d\x4b\x7b\x06\x20\x51\x30\x92\x60\x51\x5c\x1d\x49\xb0\xaf\x6a\x68\xf6\xef\x5a\xa7\x6d\xf6\xca\xde\x00\x6b\x9c\x54\x64\x03\xa5\x42\xa1\x1d\x50\xea\xec\xdc\x2e\xa3\x58\xf3\x11\xe2\x06\x1a\xb1\xce\x5c\x59\xa3\x25\xbc\xa3\xaf\x3f\xa1\x08\x8f\x23\x76\xdd\x99\x2d\x83\x88\x21\x07\x21\xb5\x42\x29\x99\x4c\x1b\x88\x9f\x51\x5b\x83\xe4\xb6\xae\xcf\xb1\x79\xd1\x60\x06\x64\xc2\x3a\x88\xa0\x8d\xe6\x10\xaa\xbe\x40\xc9\xb8\xc6\x93\x93\x0a\x6e\x51\x60\x6d\x8c\x65\x13\x1f\x5d\x29\x93\xe8\x81\x6f\xc1\xe6\x34\x3a\x22\xa9\x24\x28\xd5\x95\x2e\xcf\xc0\x46\xe5\xed\x29\xf7\xec\x8a\xda\xfe\xd1\xb3\x6c\x5b\xd5\xee\x90\xe8\xda\x2f\x41\x4d\x53\x4c\x8d\x89\xd2\x20\xb7\x76\xa9\x0d\xa3\x4f\x6a\x8c\x3e\xab\x06\xb3\xed\x16\x84\x0d\xc6\xa3\x1d\x33\x73\x27\x6a\x2b\x28\xd2\xc8\x67\xb7\x84\x74\x3d\x5a\x87\x33\xb4\x5e\x4e\xaa\xf7\x2f\xf5\x2e\xf4\xd0\x27\x9a\x14\xe1\xe0\x41\x8a\x19\x4b\xe4\xa5\x08\x55\x6e\x40\x38\xb3\x96\xbd\xd8\x59\xa1\x57\xb3\x90\x2b\xb1\xa3\x86\x84\x90\xfa\xcd\xab\xf9\x56\x9f\x80\xf1\x55\xf5\xe5\xd4\x1e\x2e\x75\x6a\x53\x1c\xe1\x40\x5c\xbc\xdb\x04\xc6\x6d\x9b\xae\xa9\x05\xa0\x84\x9a\xda\x78\xc0\xbb\x47\x11\x00\x29\x10\x08\x69\x00\xf3\x45\x21\x13\xb4\xbc\xb9\xb7\xd7\xce\x0d\x10\x96\xaa\x4e\x02\x1b\xe0\x19\x61\x3b\x74\x21\x44\x07\x47\x06\x7c\x08\xd4\x1d\x98\x54\x77\x98\xd9\xea\x0e\xa9\x61\x59\xac\xe5\x07\x08\xf8\x19\x79\x00\xfc\x15\x2a\xf1\xae\x00\x69\xb5\x82\x76\xd3\xb4\xea\x6e\xd3\x9b\xd7\x1a\xee\x15\xbe\xda\x10\xab\x8a\xd7\x83\x56\x86\x64\x47\x89\x36\x43\x67\xe3\xed\xfc\x1e\xbc\x1e\x4d\x8c\x0d\x30\x49\xc3\x0e\xac\x09\x8e\x5f\x57\xa9\x6e\x88\x40\x46\x9a\x37\xd7\x08\x48\x29\xa9\xf0\xb1\x1a\xb9\x18\x74\xe0\x6a\x4c\xa7\xc6\xe8\x2f\x3b\x69\x18\x89\xbe\x62\x1a\xc5\x51\x1f\xb8\x6e\x60\x64\x6f\x15\xff\x02\x81\x16\xcf\x69\x7c\xf8\xee\xb0\x18\xf1\xf4\x6e\xdb\x70\xdf\xd0\x4a\x06\x52\x1a\x84\x9a\x11\x4f\xec\x67\xfd\x3a\xc3\x1d\x8d\x23\xe9\xd3\x41\x89\x4a\x2d\xee\x9c\x17\xc8\xae\xbd\x54\x63\xad\xf9\x41\x30\x69\x06\x75\x91\xd3\x6e\xac\xca\x26\x55\x54\x8f\x16\x75\x83\xa8\x8a\x09\xe7\x3d\x77\x80\x36\x9d\xbd\xda\x09\xa3\xcd\x70\xa3\xac\x13\x85\x9d\x30\xa1\x19\xfb\x96\x4b\x13\x3a\x70\xd3\x24\x76\x24\x93\x92\x6f\x4e\xa8\xb1\x4e\x2f\xfd\xbb\xa4\x15\xdd\x47\xa5\x37\xa1\xef\x6c\xb5\xb1\xd5\x6d\x6e\x73\xcc\x00\x37\xf2\x1a\xa4\x73\x52\x3e\xfc\x45\xb5\x91\xac\x93\xc1\x1d\xc7\x7b\x5d\x6f\xd4\xab\xed\x8f\x5d\xcc\x8a\x75\xad\x11\x54\xc2\xdc\x3d\x2b\x1f\x7b\x98\xbc\x2e\x2d\xda\x55\xe4\x52\xbd\xf0\x4b\x5d\x38\x00\x6f\x52\x7b\xa0\x55\x44\xb0\x8b\x2b\xd8\xad\x9d\xfa\x50\xd6\x2c\xd5\x5a\x6a\x62\xe6\x5a\x16\x50\xa4\x74\xd8\x48\xd4\x8e\xd6\xdf\x70\x35\xe0\x21\x5c\x7b\xd7\x0a\xf2\xbc\x4b\x2d\x3d\x00\x19\xc4\x94\x1e\xb9\x7e\xcb\x16\xa7\x98\xa5\x39\x95\x3c\xe0\xd9\x81\xd7\x64\x13\xa0\x54\x82\x59\x8b\x52\xc9\xfb\x06\x52\x94\x61\x3c\xd4\x1d\x1f\x28\x96\x79\x7a\x06\x65\x5d\x0d\xf9\xb6\xb1\xac\x57\x41\x67\x57\x2f\xfd\x19\x69\x35\x2b\xc4\x73\x62\x03\x18\x87\x24\x33\x7a\xb5\x6b\x52\x79\x65\xc4\xcb\x52\xed\x64\xad\x35\x73\xd7\xf8\x8e\x54\x5d\x83\xac\xe4\x56\x6f\x3f\x33\x37\x78\x2e\xf5\x07\x43\xbc\x2d\xd1\xad\xfc\xee\x0e\xd5\xea\x02\xa1\xbd\xe2\x34\x8a\x33\xb4\x4d\xda\xe5\x68\x11\x16\xb1\x40\x01\xc2\xca\x21\x9d\x54\x34\xbd\xf1\x6a\xbf\x6e\xa2\xa4\x20\x49\x49\xba\x82\xfa\xf3\xba\x58\x77\x3f\x82\xc3\xfa\x21\x92\x40\x8f\xf6\xfb\xd4\x1d\x3c\x26\x24\x35\x8e\xc9\x26\x25\x14\x8b\x51\x99\xd9\x8a\x4a\xcb\x3c\xd7\x6f\x20\x4b\xfd\xfe\x10\x57\xdd\x08\x67\x5e\xac\x5e\xf8\x92\x72\x1d\x06\x7b\xd6\xe1\x56\x2b\x31\x4a\xaa\x65\x34\xf5\x80\xea\xa3\x51\xb2\x47\x7d\xc2\x0b\x30\xc5\x33\x84\x93\xda\x12\x0e\x64\x60\x8b\x74\x0d\xe4\xad\xb4\xf2\x64\x0b\x7d\xc9\xee\xe5\xe2\xcc\x0b\x9c\x19\x00\x80\xbe\xd6\x29\x10\x9e\xd5\xb4\x92\xee\x10\x27\xb2\x4f\x32\xab\x18\x6e\x2d\x2d\xda\x71\xac\x96\x14\x7b\xae\x14\x7e\x37\x75\xad\xa2\x72\xd0\x8b\x36\x1e\x32\xd9\x29\x3a\x8d\xc4\x88\xb4\x4d\x88\x21\xb6\x15\xa4\x7b\xd1\xf7\x1a\xf3\xb4\x8b\x48\x83\xdf\xaa\x10\xe4\x54\x38\x03\x16\xa9\x4d\xdb\xf2\xff\x76\xcb\xb4\x1a\x06\xc7\xca\xe4\x97\xed\xf3\x2a\x25\x2d\x79\x4b\x5f\x3c\x72\x25\xfe\x91\x46\x6a\xd1\x6a\x38\x6d\x53\xda\x6b\x6a\x2b\x3e\xc4\xad\x42\x29\x29\xa1\x80\x17\x50\x1a\xd9\xd4\x9d\xbd\x88\xdb\x2c\xdb\xe5\x17\x9a\xef\xe3\x7f\x8a\xa6\xf5\x69\xed\x78\xde\x51\x2a\x2d\xcf\xa4\xa2\x2e\xf2\x6b\x28\xa5\xdd\x27\xb0\x7f\xa8\x94\x5e\x77\x64\x27\x3a\x83\x3e\xc2\x25\xc4\x56\x9e\x5b\xe2\xf0\xc9\xb4\xaa\xb9\x36\xb4\xb4\xaa\x41\x58\x6c\x1d\x9c\x35\x9d\x37\x08\x6a\x13\x7a\xe1\xea\xa2\x98\x4c\x6b\xec\x57\xd6\x6c\x6f\x0d\x5d\xc4\x16\xf1\xa5\xf2\x6d\x8f\x61\x80\x3a\x1a\x55\x3a\x04\x72\x1e\x9c\xa2\x3a\xec\x84\xee\x50\x53\x40\x5c\x02\x23\xcb\x0a\xf8\x3d\x62\x69\x0a\x7c\x41\x3d\x17\x7b\x40\xae\x1a\xcb\xd9\x76\x02\xef\x79\x3f\x68\x37\x16\x51\x55\x69\x35\x63\x23\x9e\x50\xe5\x8d\x9b\x41\x1e\x45\x3e\xb5\x1d\x9d\xe0\x44\x37\x42\xec\x21\xdf\xc8\x2b\x7e\x41\xb0\x34\xd4\xc5\x45\x71\x1d\xbe\x1a\xfa\x2d\x10\x78\x3f\xc5\xba\x2d\x7f\xa7\x77\x7e\x4d\x76\x01\x5a\xca\xf3\x68\xa1\x77\xa1\xfe\x86\x9e\xbc\x0e\x5f\xa6\xc9\x4a\x55\x26\xee\x05\xf5\x9b\xc5\x45\xd2\xd9\x64\xb4\xa3\xea\xed\x5b\xf5\xe0\xce\x5d\xb2\xe9\x30\x2a\x51\x81\x44\xa2\x40\x22\x26\x4b\x60\xe5\x65\x90\x89\x00\xa8\x6a\x93\x82\x4f\xfc\x7a\x85\xb8\x13\x47\xd7\xb4\x13\xac\x93\x38\x56\x67\xd5\x41\xc4\x56\x74\x95\xc0\xc3\x61\x81\x6b\x86\x60\x7e\x9b\x75\x18\xc8\x1f\xc0\x24\xfc\xf5\x6e\xb3\x40\x99\x51\x54\x40\xe8\x0e\xd4\x15\xe8\xd6\x2e\xd4\x15\xc8\xfa\x35\xf8\x11\x58\x32\xe1\xc6\x25\x26\x98\xdd\xea\x57\xf1\x88\x74\xab\x62\x9c\x51\x52\x55\xb8\xa6\xa0\x1a\x2e\x15\x6b\x40\xcf\x09\xe1\x6e\xea\xba\x91\x5a\xee\xd0\x9a\xfe\x6d\x1a\x71\xea\xd5\x18\x16\x39\xc4\xbe\xf3\xfe\xec\xec\xe2\xf2\xe7\x0f\x27\xef\x3f\x39\xb8\xe5\xa1\xaa\xbe\x0b\xda\xe5\x53\x8d\x6d\x50\x6d\xa3\x72\xa5\xf1\xd0\xd6\x9c\x7f\xf8\xeb\xf9\x8b\xf7\xaf\xdf\x5d\xbc\x3e\x7b\xfb\xe0\x46\xd9\x66\x40\x7b\xde\xfa\xdb\xac\xf3\x14\xe1\x1a\x31\xd2\x66\x57\xd0\x96\x63\xdc\x16\xe8\xd9\x92\x42\xbf\x2d\xc5\xc8\x1a\x86\x94\xce\x92\x34\x3c\x33\x69\x2e\xc4\xb6\x0f\x94\x5d\x86\x75\x63\x94\x6f\x1e\x5c\xe6\x1a\xa9\xbf\x24\x05\xd9\x07\xbf\xcf\xd4\xa6\x34\x53\x7c\x1d\x6a\xab\x1b\xc9\x4f\xb0\x02\x3f\x1c\xf3\xa5\x6a\x8b\x53\xb7\x64\x54\x76\x39\x3a\xb8\x40\xc6\x96\x57\xb7\x36\x81\xe3\xa3\x6c\x4a\xfd\xc9\xe3\xc1\xc0\x52\x20\xd5\xa8\xac\x2d\x25\x16\x42\xfa\xf0\x99\x4c\x47\xea\x72\x59\xae\xb0\xb4\x74\xd5\x59\x5d\x68\xa7\x1f\x2e\x9e\xdb\x8b\xec\x7e\x3f\x4e\xb8\xd6\xf9\xaa\x2d\x5d\x2d\x72\x3f\x00\x46\x25\xe9\x84\x4f\x77\x48\x0c\xe4\xfc\xd7\x93\xa7\x53\x78\xe9\x92\xf2\xb6\x80\x24\x2a\x3a\x05\xe3\x07\xb9\xc0\x6c\xdd\xb8\xa8\xad\x63\x91\x35\xc3\x0f\xb1\x0c\xc0\x31\xd1\x9e\x6b\x46\x20\xe9\x36\x82\x3a\x68\xe4\xec\x1e\x8f\x29\x81\x17\x63\xb3\x36\xdf\x57\xe7\x46\x8e\x7f\xe3\x38\x2b\x9b\x5d\x9e\x6b\x90\xf2\x1f\x6d\x9d\x00\x2d\xe8\x99\xeb\xd6\xe6\x7f\xb6\x87\xd4\xdd\x37\x2e\x92\x07\xb7\x76\xed\x9a\xa6\xe2\x68\x6e\xdd\xac\x14\x10\xf7\x76\x83\xfb\x6a\xd2\x07\xd8\xf5\x25\xec\xb4\x9c\xb9\x51\x5a\x21\xd9\xfb\xea\xb1\x65\xfb\xad\x23\x9d\x7a\x1c\x9b\x8d\x51\x48\xb9\xfb\xae\xed\xa6\xad\xb3\x5a\x36\x9c\xbd\x63\x47\x6d\xe4\xac\xd2\x62\xf5\x00\x6c\x12\x35\x5e\xa1\x5a\x9d\xdf\xb4\xbf\xff\xb7\x1d\x14\xac\x75\x1a\x6d\xb6\x48\xed\xe1\xe6\x1d\xa5\x06\x2b\xd7\x38\xae\xad\xb7\x43\xc1\x1d\xbc\x24\xcc\x1b\x3e\x7a\x82\xf0\x9b\x16\xe4\x98\x37\xff\xb9\xc8\x31\x1f\x48\x77\x88\x7f\xbe\x0f\x11\xa1\x94\x9b\x2a\x58\x0b\xed\x1b\xad\xc4\x2b\xd6\x6f\xaa\x2f\x94\xc2\x48\xe9\x0b\xa0\x09\x3a\x30\x2a\x15\x7a\xd8\x35\x3c\xf1\xc1\x90\x4b\x28\x05\x05\x8a\x10\x95\xd6\xec\x89\xeb\x4a\x8f\xe0\x59\x96\xbe\x34\x02\xad\x63\x1a\x07\x77\x55\x4b\xaf\x01\x18\x7a\x81\xd1\x3a\xa3\x33\x7e\x91\x1c\xd3\x9b\x8b\x24\x89\xa5\x60\xae\x05\xcb\xc1\x36\xf2\xca\xf3\x19\x0e\x09\xad\xf5\x10\xac\xe8\x59\xb0\x92\x36\xf4\x37\x34\xcd\xa2\x84\x49\x39\x7a\x9e\xb7\x61\x8c\x7e\x66\x1d\xf5\xdf\x6b\xd6\x49\xd2\x90\xa6\x82\xbf\x05\xa5\xcb\x20\x8e\x7e\xa3\x9d\xe7\xc0\xaf\x76\xa4\xb9\x8c\xe4\x82\x2b\x3a\x83\xf0\xb2\xee\x2a\x5e\x78\x2d\x27\x38\xa2\x59\x27\x91\x5a\x83\x92\x25\xee\x24\x72\x41\x94\xb5\x81\x6f\xca\x28\xeb\xac\x83\x94\x77\x92\x39\xa4\x35\xe0\xa6\x9b\xf5\x22\x0d\x42\xda\xb9\x5d\x52\xd6\x59\x45\x0b\x71\x53\x60\x8b\xce\x3c\x4d\x56\xd5\xf6\x74\x86\xfd\x81\x68\x6f\x35\xf0\xa8\x3f\xb0\x6a\x7a\x99\xa4\x9d\x55\x92\xd2\x4e\xc4\x04\x39\x92\x23\xd9\x59\xc7\x34\xc8\x68\xe7\x26\xca\x22\xee\x97\x89\x3b\x9d\x25\xe7\xeb\xcc\x3f\x3c\xbc\xbd\xbd\xed\x4b\x5e\x1d\xe4\x52\xbf\xc6\xe2\xa8\x38\x0c\x93\x59\x76\x98\xd2\x60\xc6\x0f\xaf\x82\x2c\x9a\x65\x87\x19\xe5\x9b\x75\x7f\xc9\x57\x71\x59\x0a\x4f\x3a\x4b\x1a\xaf\x61\xb0\x16\x94\x4b\xa4\x56\x1a\x9a\x46\x29\x35\xc1\x3b\x83\x47\x71\xa3\x30\xf2\x03\xaf\xed\x32\x7a\x27\xaf\xcc\x5a\x73\x46\x4b\x3f\x01\x25\x49\x51\xd1\xdb\x7e\x58\xaa\xd6\xe2\x3b\xa5\x6a\x24\x8f\x56\xa6\x03\x18\x66\xf0\x16\x2c\x75\x49\xc5\x55\x96\x22\x8d\xae\x0e\xa8\x17\x37\x5a\x54\xc2\xec\x03\x43\x83\x59\x64\x06\x9e\xe3\xb5\x67\xcc\xd8\xa3\x4c\x90\x2e\xa5\x15\x0b\x0b\x9d\x66\x24\xca\xf3\xcd\x8f\x83\x9d\xe0\x18\xf3\x2a\x90\x77\x84\xdb\xb6\x6a\x28\x2d\xa8\x5d\x77\x87\xaf\x75\x2d\x3f\x69\x6f\x41\x77\x58\xe0\x8d\x6a\xa3\xa5\x24\x5d\xfb\x96\xa0\xfd\xbc\x74\xd4\xf3\x6b\x99\xea\xd7\xd6\x04\x0a\x53\xc3\xfa\xdd\x48\x62\xe9\x6b\xd4\xbe\x5b\x92\xee\xd0\xae\xd8\x1b\x6b\x15\x33\x92\x66\x8b\xdd\x8a\xbd\x86\xeb\x5a\x3a\xce\xc6\x42\xb8\x73\x1b\xb1\x30\xb9\x75\xdd\xae\xfc\xd1\xbf\xbc\x7c\xfe\xee\xec\xcd\x9b\xb3\xcb\x17\x6f\x5e\x9f\xbc\xbd\xb8\xbc\x1c\x79\xad\xba\xd1\xd9\x78\xe5\x67\x7b\xcb\x14\x54\x7c\x57\xa1\x44\x76\xf7\x43\x9e\xd7\x6c\x4a\xbc\x0f\xa4\x3b\xc0\x7b\x5b\xaa\xca\x2c\x81\x37\x55\x00\x4f\xd6\x84\x10\xf5\x91\xd1\x78\x5e\x69\x1d\xa9\x95\x53\xb6\xe9\xf8\xe4\x1f\x17\x67\x67\x6f\xce\x2f\x7f\x7a\x73\xf6\xd7\xe7\x6f\x2e\x5f\x9d\x9d\xfd\xfd\xf2\xd2\x14\xcb\x82\x9b\x68\x11\xf0\x24\x6d\x86\xf4\x37\x19\x4d\x9f\x2f\xec\x46\xb4\xc4\x19\x3c\x38\xe7\xc5\x32\x4d\x56\xd4\x41\x3f\x1e\x0c\x5d\x57\x5b\xcf\x84\xf4\x6a\xb3\xf0\x9c\xe3\xe4\x96\xc5\x49\x10\x02\xc9\x53\x84\x4b\x13\x7e\x30\x8b\x09\x3a\x57\x94\x73\x9a\x76\x42\x7a\x43\xe3\x64\x0d\x4a\xd8\xf4\xcb\x5a\x4c\x3e\x9b\x51\xdf\x90\xa8\x19\xd4\xd2\x5f\x24\xc9\x22\x06\x4f\x14\x87\xb7\xf4\x0a\x76\xe9\x61\x48\x79\x10\xc5\x87\x5a\xd8\x00\x74\xf1\x40\x95\x47\xd3\x03\x7e\xf8\x4b\x78\x7d\xcd\xae\xaf\xaf\xe8\xd5\x55\xb0\x8e\xe2\x45\x42\x67\xb3\x59\xb4\x88\xaf\xe7\x57\xab\x2b\x36\x5f\x39\x48\xad\x51\x75\x86\x90\x97\xfa\x17\x5e\x6b\x4d\xb2\xda\x49\x09\xe7\x0e\x59\x23\xbc\xdc\x95\x40\x97\xb5\x6c\xc5\xab\x69\x35\x66\xa8\xb2\x3a\x55\x1a\x61\xe5\x10\x7c\x04\x79\x63\xfc\x39\xee\x4c\x07\x8e\xac\xbb\xbb\x49\x57\x9e\x37\xac\x97\xeb\x4a\x3c\xad\xf6\x89\x35\x37\xa1\xba\x31\xb4\xea\x72\xba\x62\x97\x5d\x20\xa3\x9f\xac\x4c\x6e\x15\xb8\x8f\x56\xba\x6d\xd7\xbf\x68\x1a\x02\x68\x9b\xe1\x5a\xa7\x7f\xbd\x7f\x5c\x7e\x35\x43\xd2\x6e\xb7\xb7\xdf\x46\xa4\x99\xa7\x62\x0d\x32\x0b\x94\xb2\xbc\x76\x59\x0e\xcf\xf4\x65\xcf\x6a\x50\xff\xad\xd3\x71\x9f\x0b\xd8\xb2\x7b\xbf\x77\xa4\x7f\x6d\x1d\xe4\x16\xe8\xa4\x3d\xcb\x50\xa6\xde\x3f\xd4\x32\x0d\x8c\xf5\xae\xa6\xc8\x24\x8d\xb6\x64\xad\xee\x0a\xab\x9e\x4e\x1a\x65\xed\xf4\xf6\xdc\x54\xe7\x09\xc2\x36\x31\xb8\xfd\xae\x58\x75\x40\x6b\xaa\x7c\x97\x26\x5f\xee\xd4\x03\x5a\xa9\x57\xd7\x2c\xfe\x65\x1a\x2c\x56\x4d\xbc\xd1\xaf\xac\x41\x97\xd2\x52\x09\x5c\xb2\xf6\x2a\xeb\xda\x85\x95\xa9\xeb\x2a\x89\x2d\xe3\xd8\x86\x8e\xd2\x52\x79\x4b\x17\xf7\xd7\x5f\xf6\xe6\xcf\x6a\xc2\x71\xc0\x83\x07\x57\x2f\x12\xff\x29\x55\x5f\x5e\xca\x9b\xfd\xab\x24\xb9\x7e\x99\xa4\xfa\x1c\x6b\x6a\x86\x85\x2a\x46\x24\x7c\x71\x45\x68\xbd\x18\xa5\xb9\xf0\x3e\xb8\x6d\x5b\xe6\x15\xfc\x20\xcd\xae\xe2\xfa\x5a\xae\xf7\xe0\x01\xfa\xb2\x36\xa8\x5a\x9e\x37\x1d\xdf\x02\xbb\xfb\xdc\xdb\x8a\xfa\xfc\xb2\x66\x38\x64\xfd\x92\x2b\xc6\x4d\x2e\xd7\xdf\xc1\xfd\x1a\xd4\x36\x9b\x07\x7e\x90\xec\x1f\x5b\x4a\x40\xf6\xf3\x2e\xad\x0d\x2e\x48\xd3\x2b\x21\xde\x56\xce\x92\xbf\x2d\x70\x26\x88\x8c\xbf\xfd\xd5\x08\x42\xed\xee\x8e\xe9\x3e\xc7\x38\x4a\xaf\x58\x94\x62\x20\xca\xee\x29\xa0\xaa\xf6\x5c\x29\xa3\x00\x61\xc8\xc7\x88\x2f\xcf\x6c\xa9\xcc\x26\xe6\xa2\x50\x29\xd4\xa0\x5f\x78\x1a\xcc\xb8\xd7\x1d\x68\x97\x52\x8d\x19\xfa\x7d\xca\xd2\x75\x9c\x80\x3d\xca\xd2\xfb\xba\x67\xab\x5b\xfb\xf5\x32\xa5\x7b\x80\x9d\x25\x57\x70\x6f\xda\x24\x12\x3b\x5f\x77\xe5\xab\xee\x03\x9b\x2c\x56\x43\xcd\xbd\x61\xfb\xb5\xa2\xde\xb7\xdd\x4a\xe2\xbb\x7a\xfa\x10\x1b\x00\xeb\x85\xd9\xae\xed\xeb\xe7\x65\x4c\x1f\x34\xfa\xd5\x36\x81\xd0\xb6\xb1\x40\x5a\xbd\xff\xee\x92\x13\x19\xdd\x68\xdb\xb0\xa1\x55\xa0\xd4\x1a\x7a\xbf\x76\x6f\xc3\x28\xe5\x01\x1a\xf8\xbb\x48\xda\xb8\x11\xb2\x7b\x5a\xe9\xae\x31\xac\x34\x47\xed\xc8\xbd\xbc\x88\x3e\x6a\xf4\xee\x6d\xf2\x1c\x59\x63\x02\x76\x95\xa1\xd2\x36\xca\x30\x69\x76\x49\x45\xd7\x22\x52\x93\xf4\xe6\xd9\x86\xcb\x44\xa4\x14\x75\xd8\xc1\x52\x92\x3a\x62\xfd\xd0\xe3\xd8\x59\xa7\x11\xe3\xcf\xcf\x2f\x9c\xe6\x9b\x7b\x27\xe9\x07\xe0\x89\x10\x12\xd6\x14\x1d\xdb\xd2\x2f\xca\xd4\x15\x73\xe2\xb6\xb4\x69\x99\x16\xe6\xed\xe2\x6e\x4d\xdb\xd2\x2d\xcb\x74\xf2\x4e\x79\x22\x3d\x45\x37\x53\xde\xd4\x53\x4a\xa9\x59\x5b\xd2\x9f\x0b\x34\xe2\x9a\x93\x25\x3f\x17\xb8\x2e\xe9\x76\x36\x19\x05\x13\xde\x19\x77\xf4\x48\x05\xad\x43\x54\x56\x7a\xd5\x16\x1f\x98\xc7\x04\xe6\x3d\x79\x82\x70\x42\xb6\xf0\x92\x32\x99\x62\x6d\xf4\xe0\x4f\x9c\xb0\x34\x07\x77\xa6\xd8\xe8\x31\x94\x56\xe2\xfe\xc4\x11\x97\x50\x07\x3b\x2d\x16\xe4\x0e\x76\xc2\x28\xa5\x33\x1e\xdd\x50\xf1\x91\xd1\x98\x42\x33\xce\x29\x77\xa6\xf8\x1f\x8d\x1c\xfe\xc4\x14\xe3\x60\x87\xc3\xc8\x3b\x6a\x34\xfe\x11\xc4\x1b\x5a\x2d\xb1\x2c\x42\x37\x63\x8a\xcf\xad\x3a\xfc\x49\x59\xa5\x48\xfd\x32\xa2\x71\xe8\x4f\x9c\x20\x8e\x02\xd1\x1e\xd5\x72\x23\xee\xbe\xa7\xbd\xcf\x55\x3a\xbb\xcf\xa2\x4d\x53\xac\x99\xcb\xf3\xb5\x60\x9c\xcb\xf8\x4a\x5b\x5f\xb3\x38\x62\x86\x0f\xf5\x27\xd0\xbf\x17\x09\x0b\xa1\xeb\xf7\xd4\xad\xb3\x3d\x7c\xe4\xbf\xa6\xf4\xd7\x4c\x0e\xaf\x98\xfd\x97\x71\x12\x94\x5f\xd2\x8c\xd1\x7c\x2a\x4c\x19\xf3\xfd\x76\x13\xc7\xe6\xe3\x84\x6d\x56\xe6\xe3\x4d\x94\xe9\x52\xe4\x30\xc1\x02\x02\xae\x52\x07\xcf\xc5\x74\x94\xc1\x7a\x76\x6a\x63\x7b\xac\xdb\x5d\x46\x95\x13\x36\xc5\x62\xd1\x86\x62\x8f\x96\x4b\x40\x54\xad\x42\x60\x09\x4d\xf1\xdb\x84\x89\x96\x56\x03\xcf\x67\x4b\xba\x0a\x2a\x03\x5a\x19\x23\xa3\x30\x23\xb2\x55\x96\xbf\x08\xa8\xe4\x33\x25\x06\x71\x90\x36\x62\x43\x6a\x6e\x83\xe5\xa2\xab\x2c\x0d\x39\x00\x0f\xcb\x08\x3e\xbe\xe6\xc1\x8c\x36\x96\xab\x19\x4f\x18\xc9\xfb\x4b\xb2\xd7\xbd\xde\x6b\xd5\x05\xbb\xde\xc8\xc9\xba\xbf\xac\x07\xec\xd5\xd7\xba\xe1\x5f\x3d\x40\x56\xd7\x3e\xb0\xb6\xf1\xbf\xbf\x00\xae\xe6\x50\xac\xd1\xdf\x91\xdd\xac\x60\xb3\xc6\xbf\x72\x86\x61\x2c\xbf\x66\x9a\xdb\xbb\x6f\x36\xc3\xd7\xcd\x6e\x9c\xc8\xab\x50\x66\x96\xfd\xc9\x17\x4e\x59\xf6\x90\x55\x5f\x2e\x6a\x3b\xcf\xfe\x55\xdc\x92\xf2\x01\xcb\xb6\xb2\x40\xf6\x57\xd6\xb6\x22\xee\xcb\x51\x5f\x02\xf7\xa5\x37\x73\x5e\x9b\xbb\x87\xb6\xac\xc0\x11\xd9\x16\xa5\x57\x86\xc0\x7e\x61\xaa\x3f\xf2\xfe\x78\xe4\xba\xe6\x3d\xb3\x7c\xd9\x3d\x9a\x8e\xed\x0f\x3f\x31\x98\xf1\x38\x26\xe0\x64\xbc\x1f\x65\xf0\x57\x30\xc8\x33\xf0\xf6\x37\x27\x07\x43\x1c\x92\xc9\x14\xaf\x75\x5a\x6d\x34\x60\x70\xbd\xf1\x8d\x88\x5f\x89\x7f\xae\x08\x1d\x85\x89\x82\x7a\xea\xf5\xe6\x84\x90\x99\x6a\x14\xbe\x25\x0b\xd7\x1d\x00\x5c\x98\x7a\x8b\x8e\xe6\xde\x02\x04\xa0\x4b\x32\x20\x84\xac\xb4\x73\x21\x59\xac\x7f\x33\xb9\x29\x1d\x16\xe0\x35\xb9\xc3\x77\x64\xa5\x40\xfe\x6f\x21\x5f\x8c\xd6\x64\xdd\xcf\xe2\x68\x46\x3d\x54\xa2\x38\x9d\xc1\x50\xa9\x07\xee\x93\x4e\xc4\x3a\x6b\xb4\xae\xc3\xef\x9d\x20\xd7\xf5\xce\x26\x27\x53\xb2\x9e\x9c\x4c\xd1\x68\x4d\xce\x0a\x9d\xe7\x9c\x0c\xf0\x05\x19\x8c\x2e\x9e\x99\xb6\x5e\xf4\x7a\x72\xb8\xdf\x91\x70\x72\x31\x9d\x0c\xa6\xf8\x54\xfe\x1a\x4e\x47\xb1\xeb\x7a\xef\x0e\xc8\x39\xc2\xb1\x44\x5c\x23\x84\x9c\x8e\xbd\x75\x3f\x5b\x43\xdb\xde\xe1\x21\xc2\xe7\xbd\x1e\xf2\xd7\x93\x77\x53\x72\x5a\x14\x73\x12\xc8\xf7\x06\x3c\x23\x01\xa8\xee\xe0\x90\x04\x7d\x1a\x46\x3c\xc3\x31\x44\xc2\x4c\xe0\x40\x61\xb7\x81\x65\x80\x1c\xab\xbb\x71\x3c\x9e\xfb\xb3\xc9\xdc\x38\x1e\x50\x55\x7a\x6b\x72\x37\xbe\x9b\x2c\xa7\xfe\x95\xd1\x56\x21\x84\xac\x91\xf1\x13\x71\xe7\xba\x37\xf2\x0a\xb4\x44\x00\x2c\x75\x6d\x01\x4b\x75\xab\x6b\x60\x2d\x6d\x1f\xba\x1b\xf1\xab\xc5\x05\x1a\x68\xaa\x76\x9e\x9f\x5f\x74\xde\x26\x21\xf5\x4b\x14\xb0\xb4\x1f\x20\x91\x07\x58\xc2\x5f\x48\xe6\x71\xbc\x06\x5c\x19\xbc\x00\xe0\x80\x5f\x24\x56\xdb\x35\xf9\x45\x6b\x12\xac\xf1\x12\xdf\xe1\x1b\xbc\x42\x88\x10\x12\x21\xe9\x53\x43\x54\x3e\x24\x84\x5c\xcb\x76\x2c\xd0\xf6\xa6\xee\xd5\xa1\xd0\xb6\x05\x66\xb9\x5f\xbb\xae\x17\xca\x2e\x4e\x96\xf8\x7a\x8a\x70\x77\x61\x3a\x72\x8d\x5a\xca\x58\x93\xeb\xa2\x28\xcc\x68\x5d\xbb\xee\xad\xeb\x96\x45\xac\xa7\x08\x2f\xc6\x2a\x97\xef\x05\x64\xab\xa6\xc6\x8f\x31\xcc\xa0\x3f\xc7\x62\xfe\xfc\x19\x86\xd9\xf3\x43\x30\xe8\xf3\x83\x02\xcf\x88\x57\xdf\x58\x6b\x84\xc6\x6b\x9f\x4d\xe4\x80\x48\xb4\x83\x72\x8f\xdd\xb9\xee\x4a\x56\x7c\x87\xf0\x1d\x59\xa3\x02\x8c\xe4\xcb\xde\x05\x46\xe8\x67\x6f\x24\xd7\xf5\xae\x48\x38\x09\xcb\xdd\x32\x19\x4e\x11\xbe\xaa\xb9\xcf\x51\x39\x35\x94\x9f\xb4\x89\x6a\xb8\x3b\x03\x00\xa0\x8a\x27\x1d\x5b\xad\x98\x4e\x38\x28\xcc\xa7\x72\x48\x99\xeb\xb6\x29\x2c\xa6\x46\x7f\x57\x21\x2b\xb1\x71\xda\x8f\x69\x70\x43\xfd\xb4\x4f\x41\x2d\x3d\x9a\xb7\x42\x28\x27\xc6\x27\x4b\x61\xb6\x73\x44\xd8\x98\xaa\xec\xb4\xcc\x2e\x1d\xce\xb4\x15\x12\xe9\x42\xa2\x91\x32\x1e\x53\xad\x6e\x4b\x1c\x20\x73\x89\x29\x8a\x7b\xee\x48\xfa\x8e\x73\x74\xf4\x3d\x5c\x72\x66\xcb\x28\x0e\x95\x77\x7f\x38\xe2\x00\xb5\xb5\xfc\xae\x7d\x42\xb4\xe2\x6a\x04\x1d\x92\xdf\x51\xb6\x8e\x03\xa9\x79\xd6\x1d\xe0\x05\x15\x6c\x79\x25\x05\x04\xa5\xd1\x0d\x0d\xc5\x45\x93\xbe\x4c\x93\x95\xc4\x15\x6b\x8f\x33\xf9\x56\xd1\x97\x88\x65\x12\xd2\x25\x59\x9b\x06\x70\xd9\x30\x38\x51\x98\xaa\x55\x2e\x1c\x95\x54\xde\xd1\x25\x00\x6d\x1c\xd3\xd4\xfc\x82\x30\x73\x84\xc8\x8f\x88\xdf\x41\x61\x81\xa0\xb9\xc1\x24\xed\xbf\x4c\xd2\xdb\x20\x0d\xdf\xd3\xf9\x94\x6c\xff\xf2\x17\x39\xca\x22\x6d\x4a\x59\x28\x0b\xbb\x67\x08\xec\xd6\x4a\xed\x9d\x8d\x56\x79\x92\xaf\xc4\x9a\x86\x63\x8d\x16\x06\x26\x8a\x25\x6d\x17\x05\x09\x2a\xda\x1a\x29\x9d\x20\x65\x78\xd6\x1e\x7d\xac\xd8\x9f\x24\xc5\x73\x2b\xc5\x3b\x3d\x2c\x67\x73\xac\x8d\xcf\x4a\x79\xc6\x88\xf6\xe9\x17\xf0\xed\x40\x2c\x85\x26\x85\x1c\x6d\x59\xd1\x96\x8f\xe4\xd2\xc5\x73\x28\xb7\xd5\x9a\xcc\x3d\x86\x46\x6b\xd7\x5d\x8b\x5d\xed\xba\x14\x68\x62\x2a\x49\xf4\x92\x64\x22\x56\x9c\x31\x4b\xb2\xd4\x3a\x1e\xb1\xc7\x10\x42\xe6\x94\xbb\x23\xc1\x84\xf7\xf5\x70\x4f\xf3\x3c\xc1\x37\x24\x98\xb0\x6a\xd0\x8a\x0c\x46\xab\x67\x4b\x7d\xa6\xf5\x7a\x2b\x0d\x73\xb9\x9c\xac\x60\x87\x74\xa3\xc9\x15\xf8\xfa\x49\xf3\xbc\x9b\x4e\xae\xc0\x51\x50\xf7\x26\xcf\xbb\x37\xfa\xe3\x2e\xcf\xbb\x77\xe2\x03\xa9\x73\x7e\xe6\x31\x7c\x85\x40\x1d\x78\xe3\x71\x7c\x85\x17\xda\xd8\xea\x16\x6d\x8b\xa2\xc4\xf7\x31\x3f\x1e\xb8\xcd\x1e\x7d\xaf\x7d\x0f\xd4\x26\xde\xe3\xd8\xb9\xbc\xa4\xd9\x69\x12\x6e\xc4\xed\x5e\x39\xe4\x01\x0f\xd2\xa5\xc4\x43\x9d\x6c\x92\x02\xa5\x1e\xf3\x8e\x1e\x3d\x42\x08\x47\xea\xf7\x53\x84\x70\x40\x3c\xf1\x31\x1c\x3e\x41\x08\x8b\x5f\x8f\x8f\x10\x6a\x31\x51\xf2\x06\x38\xd1\xe5\x22\xaf\xed\x25\xac\xeb\x0d\x70\x54\x26\x81\x67\x2e\xa4\x34\x74\x4c\x8b\x82\x87\xd2\x97\xdf\xd1\xef\x9d\x19\x54\xe5\x0e\xde\x52\xb6\x59\x51\x30\x6f\x50\xa4\xa3\x05\xd4\xdf\x74\x53\x03\x01\xe9\xa1\xfb\x1e\xa1\x07\xb5\xfe\x5e\xa2\xf8\xe7\x51\xc1\x07\x53\xba\xe4\xcf\xa4\x74\xd1\x0e\x62\x14\xec\x23\x46\x9b\xfd\xc4\x68\x07\x21\xb3\x88\x51\xbc\x83\x18\xcd\x48\xec\xba\xb1\x82\x0c\x41\xbb\x09\xd1\x7c\x2f\x21\x52\x78\xc4\x21\x11\x64\x65\x14\xba\x6e\x28\x81\x58\x45\xde\x10\xcf\x25\x21\x5a\x93\x40\xc4\x6e\x5c\xd7\x13\x6c\xb7\x22\x44\x9b\x2a\x21\x5a\x92\xc1\x68\xf9\x6c\x5d\x92\x98\xa5\x86\x8b\x5f\x4f\x96\x92\xc4\xa4\x93\xbb\xa9\xeb\x76\x13\xf8\x03\x90\xbd\xdd\xf9\xe4\x4e\xd3\x93\x1b\x41\xee\xf0\x9d\xa4\x27\x91\xc7\x05\x63\xa8\xe9\xc9\xea\xf7\xd1\x13\x33\x14\xa9\xb5\xa3\xd3\x56\x53\x0b\xed\x2d\xcf\xc9\xe0\x47\x23\xc6\x38\xcf\x1b\xb7\x89\xbf\x15\x0f\x55\xf8\x6d\xef\x3e\xed\xac\x92\xae\x10\xf4\x48\x33\x9e\x6e\x66\x3c\x49\x09\x21\x26\xbc\xab\x7f\x97\xc7\xcd\x58\xb7\xce\x37\x35\x02\xa9\x31\xfd\x4c\x00\x15\x45\xf9\xb4\xf3\x28\x92\x4e\x35\xf4\xe4\x6b\xe7\x0b\x7f\x3b\x3f\x7b\xdb\x97\x61\xd1\x1c\x9e\xd3\x21\x95\x69\xa4\x6f\x5e\xa4\x00\xce\xca\x99\x98\xf2\x1d\x3d\xf9\x4a\x5b\xd5\x99\x3a\xc8\x2f\xe3\xa7\x8e\x2c\x49\xaa\x8d\x3a\x7e\x34\x57\x8a\x2e\xed\xc6\x2d\x11\xcb\xd6\x62\xf1\x9a\xea\x54\x80\x07\xb7\x85\xfa\xc5\x54\x25\x73\x26\x4e\x8f\xc2\x1b\x5b\x82\xfa\xbf\x24\x11\xf3\x1c\xdc\x71\x50\xcf\x99\x4a\x42\xc4\x2b\x2e\x41\x69\xcd\xd8\xd2\x90\x6d\xc7\x74\x85\x63\xc7\xef\x38\x06\xc9\x2f\xf1\x04\xab\x0b\x0f\x75\x65\xe9\xe6\x75\x69\xec\x6c\x3b\x4e\x8f\xf7\x9c\x4e\xe1\xf8\xce\xb6\x70\xf4\x5a\x54\x48\x6d\x14\x19\x97\x7c\xf5\x88\xa2\xb8\x47\xd2\xfe\x15\x8b\x59\x61\xc5\x76\x3d\xda\x89\x58\xc6\x03\x36\x13\x23\x5a\xf1\x58\x6d\x39\x61\x7c\x21\x21\x60\x05\x81\xeb\x04\x9d\x59\x1c\x64\x59\x07\x0c\xdf\xcc\xac\xa0\xbd\x6d\x4b\xbf\xba\x6d\x9a\x28\x30\x32\x18\xb1\x67\xdc\xe8\xa0\xeb\xbb\x74\x4a\xf8\x84\x4d\x47\xe2\x4e\xa0\x4f\x26\x62\x7f\xe4\x79\x77\x88\xb5\x0d\xa0\x34\xcc\x03\xb5\x43\x29\xce\x8d\x58\x27\x75\x5d\x2f\x05\xa5\x08\x15\xb7\xeb\x1c\xa4\x38\x15\x2b\x41\xf0\x54\x95\x6d\x52\xc5\xa0\x72\xdd\xd4\xb3\x9e\xa9\x30\x07\xb3\x4d\x05\x43\x45\xff\xc4\x89\xb3\xa8\x90\x6a\x6f\x56\x21\xeb\xe3\x56\x62\xdf\x4a\x56\xfa\x97\x97\xd0\xe0\xcb\x4b\xad\xa4\x59\xcb\x05\x4c\x88\xf8\xe7\x8f\xcd\xed\x1f\xe1\x4d\x4a\x0e\x88\xf7\x33\x7e\x17\xd3\xac\xc9\x9c\x95\xac\xd9\xf0\x31\x70\x66\xc0\x8e\x21\x84\x37\xf0\x6b\x80\x10\xce\x14\xb7\xa6\x78\xb5\xe1\x23\x84\x10\x8e\x21\xfa\x07\x84\xf0\x4c\xb4\xee\x31\xc2\xf3\x96\xa7\xc9\x6d\x9a\x24\xdc\xdf\x2a\x36\xc3\x77\xae\xe2\x64\x76\xed\xe0\x55\x90\x2e\x22\xe6\x0f\x0a\xcd\x80\x3c\xf6\x69\x9f\xdf\xad\xa5\xd6\xf8\x5d\x5f\x87\xea\xe8\x47\xad\xd1\x8f\x74\xf4\x51\x6b\xf4\x91\x8e\x1e\xb6\x46\x0f\xf1\x92\x06\x61\x1c\x31\x5a\x8d\xd6\xa1\x98\x47\x3c\xae\xc5\x41\x10\xce\x36\x57\x22\x51\xc4\x16\xd5\xd8\x32\x1c\x5f\x25\x61\xbd\x55\x10\x04\x11\xc3\x66\xc4\x10\xcf\x02\x90\xfd\x56\xa3\x54\x20\xbe\xda\x70\x5e\x8f\x93\x61\x38\x88\xa3\x05\x7b\x43\xe7\xdc\xdf\x0a\x4e\xef\xb9\xf8\xf4\x9d\x98\xce\xb9\x53\xc8\xc8\x17\x70\x75\xaf\x44\xcf\x20\x48\x27\x78\x1f\x2d\x96\xd5\xec\xa9\x08\xd1\xd1\x7f\xdb\x64\x3c\x9a\xdf\x55\x12\xfc\x22\xc3\x9c\x02\xb3\xe4\x63\x1a\xac\xfd\x6d\x72\x43\xd3\x79\x9c\xdc\xfa\xce\x32\x0a\x43\xca\x1c\x2c\x92\x9f\x99\x50\x1a\xc7\xd1\x3a\x8b\x32\x07\xdf\x2e\x23\x4e\xcf\xd7\xc1\x8c\xfa\x0e\x4b\x6e\xd3\x60\xed\x14\x78\xb1\xe1\x9c\xa6\x7f\x4d\x38\x4f\x56\xfe\x56\xae\x0f\xf5\xe5\x0c\xfa\x8f\x9e\xd0\x95\x03\xf8\x4a\x01\xf4\xbe\x96\x62\xf8\xb4\xc0\xb3\x24\x4e\xd2\xd7\x6c\x49\xd3\x88\xfb\x5b\xf8\xf2\x9d\x48\x7e\x3b\x2a\xfa\x5d\x1a\xad\x82\xf4\x4e\x47\xd3\xfe\x3a\x88\x29\xe7\x82\xf4\x40\x44\x7f\x15\x44\x4c\xa5\x3d\xa7\xb3\x84\x85\xad\xa9\x33\x1d\x65\xa7\xbf\xa0\x5f\xf8\xce\xf2\xc1\x2e\x5a\x55\x62\xa5\xdf\x53\x07\xe4\x30\x15\xa9\x3c\x52\xfc\xd0\x48\x0b\xf8\x10\xb2\x2d\x85\x25\xab\x0e\x6d\x9c\x3d\xda\x87\xb9\x94\x76\x38\xe2\x08\x82\x9b\xba\xfa\x2d\x78\x65\xf0\x38\x09\x25\x83\x81\xcc\x2c\x59\xad\x13\x46\x19\x07\xdb\x18\x7b\x76\xc0\x46\x46\x6f\x92\xd3\x60\xbd\x16\xeb\xfd\x8e\xd0\xbe\x5c\x09\xf8\x86\x88\x96\xa9\x89\x02\x77\x93\xf0\xb6\xc9\x38\xbe\x22\xde\x00\x07\xf6\x65\x0d\x9e\x71\x17\xcc\xc1\x8e\x6a\x93\xfe\xf5\x56\xca\xe4\xa1\x3d\xf0\x57\xb5\xc6\xc1\x8e\xdd\x16\x07\x3b\xb5\x96\x38\xd8\x91\xed\x70\xb0\x63\x5a\xa1\xdf\x57\x19\x77\xa6\x08\x2f\x44\x33\xb2\xb2\x19\x69\x5f\x10\x29\x9c\x4e\x56\x53\xec\x71\xb2\x2d\x70\xf5\x4e\x29\xa2\x54\x4b\x34\x97\xe2\x0d\xf0\x4c\x6c\xce\x88\x83\xb9\x0f\xf2\xe6\x08\x4d\xcb\x2b\x1f\xb8\x5e\x69\x96\xa2\x47\xe8\xae\x2d\xae\x32\xc4\xeb\xb6\x14\xe5\xa0\xde\xb4\x44\xeb\xa1\xdc\xd9\x44\x06\x4d\xd4\x3b\x02\x30\x37\xc4\x41\x1b\x23\x7c\x4b\xc2\x3c\xf7\x6e\xc6\xce\xda\xf1\x97\x93\xd5\x14\xe5\xb9\x93\xad\x03\xe6\x68\xbe\x6b\xa3\x6b\xea\xcf\x52\x1a\x70\x7a\x12\x53\x50\xc3\xbc\xc5\xd5\x0b\xfa\xd6\xcc\x9d\xbf\x28\xf0\x15\x42\x85\x39\x77\xe6\x38\xec\x9b\x4b\xa2\x18\xe3\xb0\x6f\xdf\x45\xc9\x36\x90\x84\x45\xb7\x0f\xab\x1d\x6c\x6e\xd1\x15\x02\xd1\x2d\x89\xb7\x9a\x77\x73\xc6\x3c\xf6\x9d\xe5\xd0\x29\x0f\x0e\xfb\xeb\xa8\xf2\x35\x94\x5f\xe6\x14\x80\x2f\x49\xf4\x9d\xe5\x91\x63\x93\x79\x67\xf9\xc8\x51\x34\xdd\x09\xb2\x28\xa4\x8e\x22\xe4\xce\xba\x24\x81\xdd\xa1\x45\xa0\xba\x43\xac\x96\x9c\xef\x40\x52\x47\x8a\xd4\xd6\x62\xf1\xc5\x96\x4c\x03\xcb\x2b\xb2\x73\xba\x89\x2e\x0c\x71\x77\x0a\xe4\x85\xb6\x04\x63\xfd\x40\x2e\x61\xf8\xf8\x08\x01\x1e\x1f\xf3\x52\x04\x6f\x57\x38\x20\x83\x11\xef\xb7\x69\xb9\x36\xde\xaf\x86\xad\xef\x57\x43\xfb\xfd\x6a\x38\xf5\xb7\x05\x66\x95\xe7\xad\x51\x53\x9e\x2d\xd5\x92\xb7\xeb\x80\x2f\x7d\x6e\xb4\x54\xb8\x60\x2a\xfa\x22\x10\x67\x82\xe1\xfc\x12\xcc\xb8\xf1\xd3\xd6\x25\x24\x73\xdd\x0c\xcf\x48\xda\x97\xdd\x32\x96\x7b\xf2\x52\x3c\xc3\xa1\x88\xa2\x2c\x8b\x78\x74\x43\x01\x0b\x19\x1e\x60\x36\xfa\x0a\xc3\xd4\x10\xb7\x99\x83\x39\x4e\x8f\xf7\x29\x0b\x7b\x5c\x95\x2e\x7e\xe8\xb2\xc0\x13\x38\x9b\xe6\xb9\x27\xfe\x90\xad\xf4\x1e\x93\x4e\xe8\xd4\x48\xd4\x27\x74\xaa\x64\xa2\x93\x29\xce\xc8\x36\xa5\x7e\xe2\x21\xc0\x9c\xe2\x48\xbe\x44\x6c\x4a\x4f\xab\xcf\x86\xf4\xb1\xe0\x91\x27\x74\x4a\x32\x1c\xf4\x7a\x08\x67\x85\xb7\xc1\x5b\xca\x42\x3f\xc6\xb2\x05\xfe\x1c\x9b\x16\xf8\xa6\xa7\xa1\xeb\x86\x05\xc2\x4b\xb2\xee\xa7\x14\xdf\x91\xb5\x7c\xa6\xba\x21\xcb\x3e\xfd\x42\x67\xe2\x8e\x23\xee\x1e\x37\xa6\xd3\x9b\x38\x56\x16\x4d\x37\x93\xc1\x14\x5f\x91\x1b\xf5\x34\x37\x14\xb4\x8e\x12\x42\x56\xba\x5d\xb1\xeb\x76\x17\xd2\x19\x9e\x9c\x9b\x0d\xde\xa4\xb1\xef\x1c\x8a\xa9\xdb\xb8\xae\x23\xfe\xae\xc6\xce\xa1\xe3\xaf\x70\x94\x9d\x88\x09\xf2\x17\xb0\xac\x57\x99\x7f\xd7\x4f\x69\xb8\x99\x55\x60\xc3\x6c\x3e\x9e\x4e\x38\xdc\x4b\xa7\xe4\x6a\xc2\xa6\x98\x16\x78\x5b\xa0\x07\x0b\xf7\x87\x3f\x54\x56\x2e\xf3\x86\x4f\x05\x3b\x2a\x02\x22\x34\x6a\x7b\x52\x91\xcd\xa6\xfd\xd9\x32\x48\x9f\x73\x6f\x50\x7f\x3e\xb1\x2f\x42\x1c\xa7\x84\xf5\x86\x60\x7d\xaa\xae\x43\xe9\xb3\x64\xc4\x7a\x64\x88\xd3\x1e\x19\x22\x2a\x26\x9e\x4e\xd2\xe9\x88\xca\x37\xa7\x42\xfa\xa1\xfa\xd3\xb6\x8d\xe3\x88\x63\xd8\x75\x29\xbc\x4e\x72\xcf\x39\x74\x10\xbc\x43\xa5\x04\x00\x49\x6b\xa1\x89\x48\x2b\x3a\x8b\x23\x11\xbf\xf1\xb8\x18\x8d\x24\xcf\x23\x00\xb3\x90\x71\xe3\x94\x30\x9f\x95\xcf\x51\xa9\x7a\xa6\x4d\xa5\xdf\x49\x69\x94\x88\x70\x37\xd5\x68\xb4\x66\xe0\x46\xb2\x77\xe5\x2b\x64\x5a\x01\xac\x9d\x91\x74\x92\x96\xef\x5a\xa3\x98\x38\x7d\xed\xac\xaa\x6f\x7e\xc1\x5f\xf9\x16\x18\x93\xee\xd0\x08\xa3\xe6\x64\x00\x7b\x55\x0d\x74\xf8\x23\x19\x8c\xc2\x83\x03\x2d\x75\x4f\x27\xe1\x74\x24\xcb\x5b\x8f\x33\x2f\xc5\x21\xf2\x55\xa9\xeb\xb1\x27\x03\xf0\xbc\xd7\x43\xfe\xdc\x75\xcd\xf7\xc1\x01\xa0\xa1\x75\x03\xb0\xa1\x1e\xcd\x0f\x0e\x46\x73\x94\xf6\x37\x2c\x5b\x46\x73\xee\x89\x02\xd0\xa8\x1b\xa8\x66\xa5\xe0\x60\x3f\x05\x2f\xf8\x1b\x4f\xfc\x45\x79\x6e\xa5\x56\xc6\xa4\x4b\x92\x2a\x39\xc3\x61\x29\x66\x88\x5d\xd7\x39\x74\xc0\x3d\x63\xb6\xb9\xca\x78\xea\x1d\x80\xb3\xb7\x65\x8f\x88\x64\x78\x59\x8c\xf6\x89\x94\x6a\x12\xab\x91\x1c\xcf\xe6\xdd\xa8\xb1\x7c\xc7\x54\xec\xc4\x1e\x2d\x2a\x57\x29\xcb\xea\x83\xd1\xdb\xce\x7b\xba\x38\xf9\xb2\xf6\x9c\x7f\x83\x1c\xc4\xfb\xfc\xf9\x30\xff\xfc\x79\x9c\xff\x57\xfe\x17\xe4\x60\x27\x72\x50\x9f\xd3\x4c\x6a\x8f\x86\xed\xa5\xcc\xe1\x6b\x4c\x75\xe7\xb4\x7c\x00\xf9\xb4\xc0\xeb\xfb\x1b\x4a\xcd\xba\x80\x42\x80\xd4\x0c\xf0\xc1\x10\xf2\x2f\x5b\xe1\x04\x04\xad\x01\x89\x95\x60\x44\x33\x1a\xa4\xb3\x25\x70\xa2\xcb\x20\x5b\xe2\x84\xf0\x3c\x17\x4b\x52\xf7\xd2\x75\x9d\xb1\x23\x3d\xef\x7b\x49\x8f\x38\x63\x51\x3d\xb3\xc6\x89\xf9\xce\xd8\xe9\x31\x84\x53\xd7\x75\xfe\x4b\x24\x4d\x55\xd2\xff\x82\xb9\xb7\x92\xa6\xbe\xf3\x5f\x4e\x2f\x45\x38\x29\xf0\xdd\x83\x2c\xf8\xc9\x70\xc4\x9f\x35\xec\xf7\xb9\x96\x9d\xd8\x47\x1f\x9f\x9a\x25\x9f\x76\x22\xd6\x61\x0f\x33\xe1\x67\x38\x95\x26\xfc\xe9\x94\xb0\x49\x3a\x2d\xed\xfa\x0a\x7c\xb3\xcb\x07\xaa\xde\xaa\x2d\x6f\xc7\x63\x2f\x69\x1b\x75\x18\x54\x2c\x4e\x3e\x9c\x8a\x7f\x12\x62\xd9\x5a\xfe\x97\x83\x46\x07\x43\x69\x77\xef\xa5\x84\xeb\xc5\x90\x20\xcc\xcb\xaf\x01\x4e\x90\xc6\x23\xb2\x32\x8f\xcd\x5e\x81\x22\x22\x00\x16\x34\x99\xa2\x5a\x11\x11\x42\x78\xab\x57\x80\xcf\xb1\x9c\x7f\x5f\x4d\xeb\xd8\x71\x7c\x86\xc5\x42\xf0\xd5\xec\x89\x90\xb4\x28\x3c\x8a\xc0\x22\x8b\x53\xc2\x2d\xcf\x1f\x5e\x42\xee\xa4\xbf\x20\x64\x96\x95\x98\x7c\xf3\x41\x1c\x47\xe2\xf3\x89\x5a\xc6\x72\x25\xe9\xcf\x72\x61\x40\x16\x19\x28\x16\x58\x4f\x7f\x20\xbf\x0c\x76\x70\x02\x2b\x74\x2c\xd7\x98\xfc\xa8\x15\x21\x82\xc4\xb2\xeb\xc9\x9f\x22\xbb\x0c\x72\xb0\x39\x13\xb8\x3e\x1f\x08\xb4\x44\x99\xbd\x25\xba\x73\x48\xca\xdc\xad\x1e\x84\x74\x96\x84\xf4\xc3\xfb\xd7\x56\xb7\xb4\x2c\x3e\xd2\x7e\xb2\x22\x5b\xf6\xf8\xe1\xfd\x6b\xb8\x1c\x8e\x05\x89\xd0\x1f\xde\xb7\xef\x54\xe6\x8e\xf3\x6d\xaf\x2c\xaa\xf7\xad\xd3\x99\x25\x9b\x38\xec\x28\xd7\x54\xb2\xbe\xb0\x6f\xf0\x05\xe2\xe8\x9a\xc6\x77\x1d\xf0\x49\x17\x76\xae\xee\x3a\x01\xeb\x28\x8c\xb4\xce\x9a\xa6\x33\xca\xf8\x01\x65\xb3\x44\x30\xc7\xfd\x6f\x91\x1f\x15\xe5\xde\xf5\x12\xc1\xb0\x88\xdb\x45\x3a\x2e\xeb\x1c\x4b\x8a\x5a\x06\xd4\xc6\xd1\xf4\x3d\xb6\x3e\x70\x5a\x76\x5f\x8c\xac\x49\x54\x86\x5b\xa1\x79\x5e\x59\x05\x82\x52\x27\x05\x5e\x35\xed\x28\x00\xe7\x8e\x97\x58\xb9\x5b\x29\x04\x5c\xad\xb9\xdf\x62\x60\x20\xb8\x3c\xc9\x67\x52\xec\x3c\xef\x2c\xa3\x8c\x27\xa9\x71\x66\x94\x49\x6b\xcd\x84\x01\x8c\xc3\x6a\xcd\x3b\x01\xef\x04\x1d\x1e\xad\xa8\x83\x30\x25\x15\x8c\x3a\xaa\x0c\xf6\x64\x13\x00\x14\x3d\x61\xf3\x48\xa1\xbd\x80\x26\xe0\x45\x62\xb5\x01\x30\xc2\xa4\xbe\x85\xf4\x27\x49\x35\x2c\x6f\xab\x44\x7f\x0c\x4f\x4e\xc8\xa7\x2d\x44\x22\x18\xb7\x2a\x8c\x8c\x53\x2f\xc0\x11\xf2\x3d\xd1\xcb\xee\xd0\xee\x20\xa3\x34\xcc\x3a\x41\x67\x41\xf9\x87\x8c\xa6\x2f\x64\x4b\x41\xad\xd0\x48\xae\x05\xd1\x33\xf0\x17\x12\xde\x4d\x8d\xc2\x8a\x66\x59\xb0\x10\x63\x10\x79\xdd\x01\x42\x7e\xe4\x75\x87\xa0\x49\xa3\x74\x87\xc0\x3a\x09\x07\xeb\x35\x65\xa1\xf6\x3b\xd0\xc0\x8b\x65\xa4\x3b\xc0\x15\x8b\x34\x26\x18\x28\x09\x73\xa2\x94\xb0\x2c\xa0\x13\xf3\x4e\x20\x95\x79\xd2\x8a\xb9\x09\x23\xdd\x21\x10\xa6\xfd\xe8\x9b\x29\xd8\x92\x48\xc7\x65\x6f\x0c\xd4\xa2\x0d\x9d\xa2\x28\x3e\x6d\x30\x82\x98\x11\xa3\xc6\x97\x92\xc1\x28\x7d\x46\x47\x69\xaf\x87\x04\x8d\xb7\x4e\x8d\x74\x3a\xe2\xfb\x91\xdd\x2b\xfd\x63\x48\x32\xd1\x57\xa4\xdb\x0e\x35\x20\x4d\xeb\xf3\xbc\x5b\xb3\xfc\x6f\x86\x54\xaf\xef\xe2\x76\xb0\x8b\x93\xef\x07\x61\x78\x72\x43\x19\xd7\x43\x30\x6e\x06\xc1\xfa\xec\x8a\x63\xbf\x1f\x70\x1e\xcc\x96\x10\xeb\x39\x09\x73\x7a\xa2\xb0\x02\xdf\xee\x2e\x5f\x82\x06\xd5\xab\x68\x09\xb5\x6a\x09\x69\x6b\x2d\x67\xed\x6c\x0e\xd7\xe8\x0a\x6a\x8f\x89\xf3\xa4\xc0\x27\xff\xab\x9e\x1f\xf1\xf9\x7f\x00\x4b\x73\x51\xf1\x66\x63\x80\xfb\x35\xd0\x84\xa2\x37\xf2\x34\xcc\xf3\xad\x86\xd7\x2f\xdf\x10\xc4\xea\x7f\xd7\x24\xe3\x8d\x7b\xd8\xa0\xf5\x1e\x36\xb0\xef\x61\x83\xa9\xbf\x2d\x46\x81\x87\xbc\x2b\xec\xfc\x35\x4d\x6e\x33\x9a\x36\x28\xde\xf1\xd9\xa9\xba\x1e\x70\x52\x6d\x24\x66\xcd\x66\xec\x46\xb6\x50\xe4\xc8\x3b\x18\x02\xfb\x6c\xd8\xa7\xe7\x2c\x4c\x45\x3b\x8f\xfa\x0e\x72\xdd\x5d\xb1\x8f\xfb\x03\x71\x15\xac\x47\x9f\x26\x57\x51\x4c\x3b\xe7\xc1\x3c\x48\x23\x99\xa0\x5b\x49\xa0\x51\x34\x9a\x31\x1f\xa1\xa5\x59\xe7\xdd\x32\x61\xd4\x41\xc8\xa0\x72\xa8\xde\xb9\xae\x23\xe8\x26\xe8\x79\x38\x51\x7d\x82\x0a\xb8\x57\x76\x65\x6f\x1e\x02\xe7\x71\x91\x46\x21\x65\xdc\x81\x07\x26\xda\x07\x94\xf2\xf7\x74\x9e\xd2\x6c\x69\x10\x9d\x24\xf7\x18\x01\xa0\x53\xcb\x41\x53\x75\xe2\x7f\xe6\x67\x20\x68\xbe\xa6\x77\x6f\x24\xc1\x7d\x57\x46\xdf\x8d\x9f\xfa\x77\xf8\x94\xd0\xfe\x55\x90\x51\x60\x39\xd6\xde\xcc\x2b\x3f\x11\x12\x57\xf0\xeb\x76\x4e\x19\x64\x5a\x5c\x3e\x55\xc2\x63\x59\xc0\x29\x8e\x74\x37\xb5\xea\x3d\x0e\x48\x54\x72\x51\x91\x62\x14\x7b\x11\xb0\x7c\x23\x8b\x5f\xe8\x9e\xe6\xf9\xdc\x0b\xf0\x29\xc2\xe0\xc3\x31\x48\x69\x27\xe0\x9c\xae\xd6\x00\xc9\x64\x0e\x4b\xdd\xb6\x4e\xc2\xc4\xd1\x19\x2c\x68\xe7\x76\x99\x64\xb4\xf3\xe1\xfd\x9b\x8e\xa8\x08\x1c\x33\x28\x36\x6d\x01\x53\x02\x4e\x1b\xa8\xc9\xd9\xef\x9c\x7c\x59\xd3\x19\xa7\xa1\x4c\xef\x7c\xdb\x0b\x04\x7f\xc7\x13\x3b\x87\xf3\x6d\xef\xb4\xf7\xad\xd3\xff\x16\xe1\x53\xd7\xf5\x02\x12\x42\xe3\x10\xbe\xf1\x02\x9c\x02\x15\xfd\xa5\xc5\x24\xf0\x34\xe0\xcb\x7e\x1a\xb0\x30\x59\x79\xa8\xf4\x87\xf6\xe8\x29\xd2\xdc\xfd\x11\x7e\x87\x0a\xfc\x85\xac\x3c\x84\x2f\x2b\x43\x7b\xee\x7d\xc2\x14\xe1\x4f\x6a\x73\x12\x7d\xcb\xc4\x5f\xfa\xb5\xc3\xd5\xfb\x54\x0e\xf0\xa7\xbe\xb4\xb9\x46\x05\x7e\x5b\x29\xae\xed\xa0\x34\x73\x4f\x35\x53\x0d\x6b\x73\x3f\xc6\x4c\x1a\x9d\x9d\x3b\xf2\x65\x36\xcf\xdf\x7b\xd7\x9e\xca\x2c\x0e\x87\x63\x7b\x0c\x44\xdc\x85\x87\x44\xf8\x0b\xc1\x3a\xbc\xaf\xb4\xe7\xc5\xd8\x83\xd0\x4b\x0f\x21\xff\x4b\xbf\x85\x8f\xf3\x28\x76\xde\x9d\xbd\x73\x70\x8c\x6d\xae\x92\x8f\x2f\x8d\x61\xb9\x8a\x57\x9d\xf7\x69\x81\xfc\xe7\xca\xdb\xce\xf3\x96\x75\x6a\x8d\x13\x23\x2f\x4d\x9f\x60\xd9\x8a\xdb\x1c\x91\x57\x66\x46\x06\x5a\xe0\x5a\x26\xa2\x56\x22\x78\xbd\xd7\x89\x12\xc2\x0e\x52\xf0\x0c\xf8\x42\x30\x5b\x1f\xbc\x44\xf4\xf8\x35\x91\x9d\xc7\x2f\xc9\xe4\xb5\xc8\x3a\xb5\x31\xf1\xca\x29\x38\xed\x2d\x41\xd4\xf0\xa1\x8a\x5d\xd0\x5f\x80\xd7\x4b\xfc\x33\x19\xe0\x8f\x95\x28\x51\xbf\xf7\x73\x8f\x50\x34\xf6\x16\xea\x84\xc6\xce\x3a\x59\xc3\x24\x38\xf8\x2d\x5c\xea\xcb\x18\xb1\xb3\x66\xe0\x30\xd6\xc1\xc7\x08\xf9\x62\xba\x7f\x76\x5d\xef\x76\x67\xde\xdb\x5d\x79\x0b\xfc\xab\x98\xb1\x4f\x64\xab\x94\xd1\xcc\x92\x6c\x9f\x8e\xd7\x58\xb2\x4b\xaf\x52\x3a\xf7\xdf\x60\x41\x1a\xad\x13\x5e\x5c\xcc\x61\xab\x7b\x5a\xdf\x46\xf4\xac\xdd\x4f\xee\xd8\x0a\xf6\x4f\x04\x23\x62\x9d\x54\x66\xf1\x9a\x90\x14\x61\x47\x50\x0d\xe9\xde\xb6\x13\x40\xc4\x3a\x4d\x6e\x22\x71\xdf\xea\x04\x9d\x23\x16\x76\x20\x53\x47\x9f\x6c\x62\xbf\x8b\x06\x4a\xf0\x37\x41\x20\x86\x19\x2f\x63\x23\x71\xac\xe9\x8e\x1d\x00\xa2\xb2\x6c\xb4\xc4\x61\x0e\x62\x80\x8f\x07\x3c\x66\x28\x77\xd4\x89\x20\x93\x74\xa4\x10\x3a\x5a\x06\x70\x23\xfa\x8d\x7f\xf1\x60\x5f\xab\xe2\xd0\xa8\x7d\xf9\x47\xd8\x79\xf7\xe1\xfc\x55\x65\xfd\x4b\x75\x24\xe3\x0c\xe2\x8d\x17\x21\xa0\xa9\x82\xee\x66\x24\x92\x23\x21\x9d\x58\x46\x62\x61\x9b\xe3\xc8\xdb\x5e\xd3\x3b\x3f\x50\x38\x0c\x59\x01\xa6\x17\x38\x45\x78\x83\x6a\x34\xba\xbf\x4c\xe9\x9c\xa4\xa5\x55\x4a\x6c\xed\x82\xb2\xd5\xb0\x1d\xf0\x8c\xbc\xb4\x04\x58\x84\x90\x78\x3c\xf0\xe3\xde\x10\x8d\x66\xda\x4f\x09\xa4\x7b\x49\x66\xd8\xde\xb6\xb2\x5f\x7a\xa1\x44\x85\x76\x20\xe1\xa1\x52\x50\x91\x35\x19\x0c\xe5\x0c\x1a\x26\x4a\xce\x5f\xc4\x3a\x57\x32\x51\x26\xa7\x22\x4c\x80\xda\xab\xdb\x65\xe7\xd5\xc5\xe9\x9b\x27\x3a\xbf\x83\x70\x7b\x67\x01\xb1\x3c\xa5\xeb\x38\x98\xd1\xff\xa7\x97\xa8\x6a\xe3\xff\x5b\xab\xf4\xfd\xc9\xbb\x37\xcf\x5f\x9c\xfc\xa1\x85\xaa\x3a\xf6\xb5\x6b\x55\x65\xf3\x52\xf4\xa0\xf5\x2a\x25\x76\xb1\xeb\x7a\x2f\x27\xf1\x94\xa8\xc5\x69\x2d\xcc\xb2\x2b\xbf\x77\x6d\xea\x19\xfa\x73\x96\x67\xd9\x3f\x58\xa2\x8b\xc4\xff\x80\x17\xc9\x5f\x2b\xae\x66\xcd\x59\xf2\xc1\x3b\x18\x42\x22\x65\xca\xd0\x9a\x44\xa4\x00\x25\xa2\xba\x83\xdc\xaf\xb8\x0f\xb8\xae\xfd\x85\x39\xf9\xd2\x37\x12\x20\x0b\xdf\xe7\xd7\x3c\xf7\x3e\x7a\x43\x24\x8e\x8d\x01\x6a\x51\xde\xfa\xd5\x75\x3d\x38\x52\x3e\x8a\x96\x23\xcc\x3d\x54\x14\x58\xfa\x67\x68\x88\x32\x44\x2d\x55\x69\x87\x55\x15\x54\x63\x55\x00\x05\xca\xf2\x8c\x50\xe3\x53\x31\xaa\xdc\xf5\xf0\x57\xbc\x41\xe0\x4a\xce\xbd\x98\x03\xef\xee\xc1\x1c\xb8\xf9\xbd\x0a\x77\xff\x9b\xee\xdd\x2d\x6a\xbf\xaa\x9f\xc9\x43\xfb\x99\x7a\xb5\x2e\xa2\xb6\x3e\x82\xf7\xc4\xff\x63\xfd\x4b\x8d\xce\x62\x29\xe0\xab\x18\x5b\xf0\x3c\xd7\x47\x49\x97\x90\xc4\xe3\xc8\x6e\x46\xa9\xdd\xce\xc7\x35\x4a\x5a\xb2\xea\x96\x8e\xec\x7b\x3a\xa7\x29\x65\x33\xad\x28\x0b\xce\xe8\x96\x01\x38\xa2\xbb\xa2\x94\x19\x40\xdd\x8c\x86\x9d\x03\x41\x74\x68\xea\xa1\x4a\x0a\xb0\x1a\x08\x1d\x0b\x04\xd9\xa3\xc8\xe7\x7b\x75\x2e\xa3\xaf\xd6\xa7\xdd\xaf\x34\x6a\x0b\x5d\x30\x6f\xd3\x10\x25\x1c\xc3\x9a\xc1\x1c\xd5\xb4\x60\x6b\xea\xd9\x5d\x5b\x81\x42\x8a\x7c\x09\x6f\xd7\x2a\x3e\x17\xa3\xd1\xa1\x5f\xd6\x29\xcd\x32\x51\x1e\xe0\x0b\xd3\x88\x2f\x69\xda\xb9\xa2\xa0\x16\xd0\x01\x5c\xcc\x52\xcd\x78\x64\x29\xd9\xea\xbe\x48\x1e\xd7\x83\x27\xe8\x52\x03\x77\x6b\x2d\x1f\x5f\xa9\x94\x52\xac\x15\x7e\x95\x65\x89\x51\x0e\x06\xd7\x57\x08\x4b\x3d\x5e\xd1\xc9\x3f\xa6\xb1\x2b\xcf\xdc\xbd\x86\x1b\x49\xc3\x16\xac\x26\x96\x2a\xcd\x45\xca\x14\x0a\x67\xf9\xee\x75\x76\x62\x54\x9d\x5b\x2c\x37\x94\x94\xaa\x74\x38\xa0\xc8\xa6\x7a\x3c\xef\x0e\x95\x1b\x64\x31\x21\xea\x46\xec\x04\x57\x33\x07\xf4\x32\xe8\xe4\xc9\x94\x38\x21\x75\xb0\xf3\x44\xec\xcb\xdd\xb6\x29\x1e\x45\x93\xc1\xb4\x2c\xb4\x94\xd6\x81\x30\x62\x30\x62\xcf\x86\x03\xd0\xd9\xe6\x13\xe7\xd2\xe9\xc9\xaa\xfa\xf3\x34\x59\xbd\x58\x06\xe9\x8b\x24\xa4\x1e\x43\x53\x02\x40\xd5\xce\x60\x78\xf4\xe8\xf1\x93\xa7\xdf\x7d\xff\x83\x58\x44\x7b\x6a\xe5\x3b\xfd\x1f\xf1\x09\x9d\x1a\xb5\x7b\x07\x55\xbb\x9b\x92\xad\x3e\x89\x44\x67\x43\x3a\x5f\x2c\xa3\x5f\xae\xe3\x15\x4b\xd6\xbf\xa6\x19\x77\xb4\xfe\x82\xd3\xe2\xcc\x40\xd4\x31\xa1\x53\x42\x0b\x84\xdb\x73\x97\x23\x05\x76\x03\x95\x71\xf7\xb6\x05\x4e\x51\xd9\x30\x25\x1f\x4c\x0c\x55\x1a\x16\x85\x87\xc6\x95\x3c\x7e\x75\x4b\x1a\x3d\x10\x1c\xe0\x4d\x1d\x06\x54\x59\x71\x53\xcb\x74\x9b\xb6\xef\xb9\x4a\x15\x9a\x63\xba\xa2\x8a\x0a\x49\x51\x8b\xde\x77\x25\x3b\x6d\x88\x93\x71\xa1\x23\x88\x14\xce\xc8\x70\x94\x35\xa5\xb2\x59\xaf\x57\xb6\x37\x06\x11\xac\x86\xab\x2e\xb9\x96\x6c\x8a\x50\xa2\x25\xaf\x31\x72\x5d\x6f\x23\x18\x42\x36\x89\xa7\x48\x99\x09\x83\x22\x77\x69\x1f\x34\x23\x83\xd1\xec\x59\xa0\x6b\x99\xf5\x7a\x28\xd2\x05\x04\x93\xd9\x54\x96\x21\x7e\x89\x62\xe0\x2f\x32\x26\x3f\x9b\x9a\x0e\x8f\x85\x1f\x6f\x1b\xeb\xb5\x7b\x51\xf9\xdf\x71\xc6\xa7\x96\xed\xca\xc3\x3a\xc9\x9a\x07\x7c\x49\x6b\xd2\x36\x61\x0a\xe0\x8c\xfa\xf7\x24\xfa\x1f\xe9\xb4\x44\x38\x15\x7d\x2c\xac\xea\xef\x21\xd3\x7f\x8e\x89\x68\x5b\x27\xdb\x74\x1c\xa8\x4f\xc7\xb4\x6f\xd9\x2b\xe6\xb9\xb4\x82\xca\x73\xe7\x85\x51\x0f\x56\x6a\x74\x85\xa5\x3a\xf9\x3f\xd8\x8d\x36\x3d\xc3\xdf\x09\x0a\x22\x68\x1c\x71\x1c\x50\xed\xe3\x0d\x33\x7e\xb8\x10\x32\x6e\x3b\x42\x48\xc6\x03\x3f\x01\xa7\x2f\x73\x8d\x92\x27\x32\x6f\x7a\x3d\x9c\xa1\x86\xfd\x56\x86\x8c\xe7\x89\x98\x0c\x46\xf1\x33\x43\x6f\x62\xfd\x0a\x34\x23\xd9\x24\x2e\x5f\x7f\xe6\x82\xf4\x18\xfb\xc4\xd9\x64\x3e\x1d\x49\x86\x24\x74\x5d\x2f\xed\x11\xe7\x33\x73\x7a\x81\x37\xef\x39\x7e\xc7\xe9\x55\xd5\x91\x43\xd4\x73\x46\x0e\xde\x20\xa4\x90\x22\x74\xa1\x6b\x51\x68\x26\x0b\x5d\x92\x6c\xb2\xd6\x85\x2e\x2b\x85\xae\xdb\x0a\x5d\x96\x85\x1a\xeb\x6b\x70\xa2\xa1\xed\x17\xf9\xe4\x4e\x17\x77\x23\x36\x89\x1e\x16\x70\x1e\x5a\x29\xff\xae\xad\xfc\x9b\xb2\x7c\x3d\xfc\x79\xce\xfa\x41\x1c\x27\xb7\x27\xab\x35\xbf\x1b\xa7\x24\xf0\x68\xcf\xe9\x6c\x9d\x5e\xda\x13\x45\xe1\x83\x83\x0d\xea\x05\x9e\x53\x88\x7c\x7e\x2a\x55\x7c\x53\x9c\x10\xe6\x3d\x7e\x84\x70\x44\xbc\x94\x24\xc8\x75\xd3\x7e\xb9\x98\xc6\xa9\xbf\x35\x46\x6a\x4d\x68\x99\x52\x65\x11\xf4\x76\x06\xa3\xf4\x19\x97\xaf\xc8\x3d\xe2\x74\x3a\xa5\x96\x54\x8f\xde\xa7\x59\xf9\xb5\x2b\xdb\x6a\xfd\x0f\xc3\x87\xb5\xbe\xdc\x0b\xe2\xa8\x34\xa3\xf9\x3f\xd7\xb0\xc7\x4f\xb4\x94\xc7\x71\x70\xa0\x76\x8c\x77\x6f\x43\x91\x99\xe7\xad\x54\xe2\xdd\x9e\x26\xbf\xf9\xce\xc1\x2a\xf9\xed\xc0\xc1\xab\x4c\xfc\xcc\x0e\x1c\x7c\xe6\x3b\x07\xc9\x81\x83\x3f\xd2\xab\xeb\x88\xfb\xce\xc1\x2d\xfc\x38\x70\x0a\x9c\x91\xf6\x67\x74\xcf\x59\x3b\x48\xaa\xb9\x8f\x2a\xe7\xf6\x46\x6c\xc3\xb8\xe7\x5c\x68\xb7\x7e\x8e\x5c\xfc\x11\x89\x71\x40\xc4\x81\x3d\x02\xc0\x95\xa2\x28\x47\x71\xfb\x4b\xe6\x47\x78\x96\x65\x7e\xf0\x60\x50\x8c\x3f\xd7\x58\xbf\xb4\x07\xb3\xcc\xc1\x9e\x1a\x7b\xb0\xe1\xf7\x3f\x94\x16\x61\x4f\xb5\x45\xd8\x0f\xc3\xd2\x24\x6c\xf8\xc3\x11\x18\x85\xc9\xdf\xa2\xb8\xb9\xfa\x2d\x0a\x0c\xd5\xef\x27\x08\xe1\xb5\xfa\x2d\x8a\x59\xaa\xdf\xdf\x21\x84\xef\xe4\xef\x81\xc8\x7b\xa3\xc2\xbf\x47\xda\x6d\xc3\x9f\xf7\x0e\x8c\x39\xa1\x7d\x98\x82\x75\x12\x31\x9e\x61\x56\x92\x57\x3e\xde\x16\x3e\x07\x25\x45\x69\xe5\x8e\x57\x65\x64\x2a\x22\x53\x7c\x45\x8c\x0d\x0e\x5e\x94\xb1\x57\x22\xf6\x0a\xdf\x12\xda\xcf\x96\x41\x98\xdc\x66\xf8\x8c\xd8\xa6\x5b\xf8\xa4\x4c\x7c\x26\x12\x9f\xe1\x73\x52\xc7\x31\x98\x38\x56\xcb\x1c\xec\xc8\x56\x80\x55\x0b\xd4\xe8\x60\x47\x95\x2e\x61\xb1\xb4\xe5\xc0\x14\xe1\x0b\x02\xc6\x1f\xa6\xb0\x05\xc2\xef\x6a\x36\x2f\x4c\x33\xa5\x35\x03\x0e\xab\x4e\xff\x1d\x56\x90\x58\x09\xf3\x9d\x98\xa7\x8e\xb6\xf7\xaf\x5a\x30\xbc\xc3\x4b\xfd\x81\x57\x08\x27\x37\x34\x4d\xa3\x90\x66\xd2\x21\x3e\xb4\xd5\xbf\x00\x80\x00\x08\x52\x8d\xf6\x6f\xf3\xdc\x98\x80\xe0\xb2\xfd\xa2\xf0\x79\x59\xf8\x05\x3e\x41\x60\x8f\x63\x99\x0d\x6d\xb3\x65\xb0\xa6\xfe\xda\xe4\xce\xd6\xc1\x2c\x62\x0b\xbf\x6c\x07\x37\x22\xde\xcc\xbf\x33\xa1\xbf\xbd\x06\xdc\xa0\x9b\x92\x4a\x9d\xe3\x6d\x94\x9d\xd2\x74\x41\xc5\x5d\x50\x6e\x23\xdf\x58\xbb\x14\x08\xd9\x14\x6e\xf5\x7f\xc8\x52\xf3\xc5\xab\xe7\x6f\xdf\x9e\xbc\x69\x6e\x4d\x30\xd0\x54\xb6\x9a\xb0\x37\x9d\xcb\xcb\x8b\x57\x27\xa7\xaf\xdf\xfe\x74\x79\xe9\x8c\xca\x9c\x81\xb2\x54\xd8\x56\xe0\x1f\x6a\x53\x5d\xe0\xa0\x5c\x71\x7d\x29\xd5\x41\x58\x89\x5c\x5a\xd9\xed\x49\x30\x1d\x8b\x7f\x24\x22\x75\xc0\xa9\x87\xa4\x53\x76\x6c\xd0\xf6\xfd\x76\x51\x88\xc9\x59\x3a\x08\xe7\x3a\xef\x86\xed\xca\x2d\x72\xb8\x2e\xe4\xb3\x12\x09\x26\xd5\x9e\x96\xcd\x3d\xd3\xc2\xad\x43\x81\x74\x07\x95\xa1\x3e\xf9\xe7\xeb\x8b\xd7\x6f\x7f\x12\xbf\xde\x5e\x9c\xbc\x3f\x39\xd6\xbf\x54\xe0\x3f\x5f\x5f\x40\xd8\x87\xb7\xa7\x67\x1f\xde\x8a\xdf\x3b\x39\x57\xa9\x94\x4f\xad\xca\x8c\x61\xfd\x48\x5f\xeb\x47\x96\x22\x9f\x39\xe7\xc5\x51\x41\xc5\x51\xf1\x20\x45\x1b\x8a\x19\xd2\xaf\x12\xad\xab\xcc\xf8\x25\xdc\x05\x69\x31\xbe\x27\x1e\xaa\xf0\xc5\x6d\x5f\x24\xc9\xf3\xb4\x9f\x51\x3e\xde\xb5\xa2\x19\x4e\x91\xcf\xa5\xed\x04\x9b\x1a\x68\x08\x33\xc6\x14\xf3\x42\xad\xd7\x84\x6c\x94\x41\x71\x04\xbf\x8e\x1e\xc1\x22\x16\x94\xfe\x29\x1a\x31\xef\x68\x70\xd4\x6e\xe7\xd1\xa9\x0d\xec\x98\x96\x47\x3b\x2d\xc0\x4e\x23\x23\xce\x86\xad\xc0\xc9\x72\x28\xa6\xbc\x9c\xb0\x4c\x59\x3a\x38\xf4\x4b\xa4\x22\xd5\xb4\xc6\x4a\x33\xdf\x01\x63\x58\x71\xdf\x18\x59\xb3\x3f\x1b\x49\x4b\x06\x19\xab\x32\xaa\x45\x32\x1f\x95\x4b\x07\xca\x85\xcc\x92\x53\x6e\xc8\xfd\x31\xb3\xe5\x89\x25\xa6\xd7\x48\xba\x44\x8b\x63\xe9\xaf\x4d\x44\x48\x6f\xa9\x72\xc7\xe3\x88\xb0\x7e\x49\xc7\x7e\x4a\x93\xcd\x1a\x07\x24\x72\xdd\x6e\xd4\x8f\xb2\x53\xd1\xd7\x88\x2d\xc6\x5c\x22\x73\xf9\x1c\x5e\x17\x02\x83\x09\x9e\xaa\x6f\x09\x92\xac\x74\x5e\xfb\x11\x1b\x07\x63\x2f\x21\x31\xae\xc5\xcf\x90\x9f\x90\xb9\x9f\x10\xde\x57\x03\x79\xc6\x4e\xbe\x44\x3c\xcf\x79\x5f\x7f\x8a\x7a\xc6\x99\x2f\xf2\x4a\xd5\xe5\x6d\x26\xdd\x8f\x27\x05\x4e\xfb\x8c\x7e\xe1\x1a\xb0\x5b\x56\x97\x16\x8c\x50\xec\x71\x92\xa2\x9d\x72\x47\x56\xc6\x08\x2a\x68\x01\xa1\x5b\xd7\x58\x8e\xb9\x25\x4c\x65\x0a\x5d\x2c\xb5\x80\xa0\xb4\xdd\x15\x78\xe9\xb5\x80\x70\x9a\x4a\x2d\xdb\xda\x98\x4a\x2a\x24\x3a\xb0\x0b\xe9\xa6\x5d\xbd\x90\xf6\x23\x06\x66\x3b\x72\xfc\x08\xc9\xc6\x7a\x38\xe2\x42\x91\xb6\xa0\x34\xa3\x3d\x8e\x42\x98\xb2\x8a\x94\x71\x19\x65\xca\x09\xa4\x9c\x05\xaf\xab\xdc\x7f\xd9\x53\x83\xea\xe5\x48\x57\x8a\x2d\xfa\x21\x60\x09\x26\xe8\x50\x97\x10\x8d\xc8\xbd\xce\x2a\xce\xb9\x61\xde\x54\x9b\x47\x65\x1a\xb1\x2e\x98\xb4\xb2\x13\x7f\xe6\x60\xbd\x37\x43\xbe\x1d\x96\xe7\x1e\x2f\x57\x3b\x2a\x5a\x5a\x3f\x04\x27\x23\x56\x6b\x3f\x46\x71\xfc\x41\x2e\xa7\x46\xc7\x67\x01\x9b\xd1\xf8\xad\xb5\x6a\x3c\xc8\xbc\x30\x9e\xcb\xb2\x06\xaf\x27\x2d\x22\xac\xce\xf5\xb9\x4c\x6a\xe4\xff\x84\x13\x46\x52\x2c\xa9\x6c\xea\xba\x0e\xdb\xac\xae\x68\x6a\x49\xd6\x53\x50\xc0\x4e\xfb\xa2\x27\x98\x13\x05\x8c\x87\x19\xd1\x3b\x02\xe1\xad\x88\xf3\x29\x56\x3b\x0b\xcb\x70\x9f\x15\xa2\x7d\x76\x97\x6b\x4b\xa3\xf2\xd0\x01\xd5\x74\x87\x08\x1b\x39\xfe\xee\x7e\x2b\x5f\x89\xe5\x71\x3c\x8f\x58\x78\x7c\x76\xfa\x36\x09\xa9\xf2\x59\xc6\x09\x21\x33\x89\x4c\xaf\x5c\x84\xc2\x7e\xf4\x18\xa6\xc8\xaf\x04\x7f\x89\xb8\xc7\xd4\xab\xaf\x35\x52\x95\x6d\xad\x9d\xa2\x5b\xcb\x81\xc0\xcb\xb2\xf6\x95\xae\x5e\xb2\xd5\x8a\xce\x0a\x98\x1a\xbb\xe2\x9d\x0e\xe0\xab\xf3\x23\x07\x37\x51\x68\xf1\xca\x43\x78\x6d\x0b\x8e\xf7\x45\x5a\xb4\xce\xe7\x38\x32\x3e\xe6\xf5\x1a\xf1\xd0\x48\x1c\x52\x63\xcf\xaa\x34\x91\xb4\xca\xa3\x38\x51\xd8\xf4\x59\x30\xa7\xe7\xf5\x5e\xcd\x8a\x8a\x7e\x78\x35\x33\xa0\xc6\x88\xfc\xac\x9f\xb0\x52\x65\xe0\x84\x85\x1e\xc5\x91\xea\x57\x25\x7b\x6b\x1d\xf3\x7d\x75\xd0\x10\xaa\x00\x47\xad\x48\xcd\xe2\xef\x2b\x05\x55\x27\xe8\xcb\x4e\x4f\xd8\x98\x55\x66\x47\xec\x81\xb4\x6d\x4c\x59\x7d\x40\xc5\xaa\xa2\xfb\x46\xd3\x90\x86\xa2\xea\xe4\xc1\x2e\x41\x42\xf1\x60\xde\x32\xa4\x6a\x43\x56\xb2\xb6\xd6\x13\xef\x29\x5f\x0f\xc5\x3d\xc3\xf9\x90\x22\x04\x19\x6b\xec\xd4\x8a\x25\x82\xda\xd6\xa2\x16\xfb\xec\xd3\x6e\xdc\xec\x30\x55\x94\x76\xa0\xd0\x38\x2a\xa1\x3a\xbb\xa9\xb5\xdd\xa5\x3c\x12\x65\x94\x57\xe8\x06\xd7\xf3\xa1\x3b\x48\x15\x01\xae\x25\xdc\xbd\x16\xba\x83\x8a\xe7\x0e\xd6\x9a\x29\x05\xb3\x0b\x4f\x1a\x50\xb4\x9c\xf3\xd4\x4b\x11\x2a\x9a\x5d\x53\xbd\x26\x35\x23\x8c\x96\x94\xa2\xcd\xb5\x25\xd1\xee\x1f\xb8\x3e\x02\x0c\x61\x5a\x59\xa9\x41\x18\x9e\x94\x2a\x16\x8a\x9e\xb5\x45\x89\x62\xeb\xcd\xd0\xb4\x9a\x57\xfc\x67\x36\x92\x61\x8e\x90\xbf\x37\x01\x98\xb6\xf4\x25\xf2\xe6\x0e\x3f\x2e\x95\x93\x58\x1c\xda\x82\x85\x68\xd8\x74\x73\x6b\xb7\x82\x86\x32\xa0\xfc\xa5\x94\xe1\x3a\x01\x36\x0f\x59\xfa\xde\xa1\x3d\xf0\x62\x41\x7e\xb7\x16\x7e\x9e\x42\xe6\x02\x61\x95\x14\x30\x46\xc6\x24\xba\xd7\x43\x8c\x44\x93\x74\x8a\x4b\x9d\x59\x86\x7e\x24\x83\x3c\xf7\x12\xcd\xe5\x9b\x07\xad\xa4\xf0\x38\x9e\x38\xba\x4d\x8e\x7c\x7c\x0a\x69\x4c\x39\xed\xa4\xfd\x88\x61\xf3\xdb\xe6\x21\xcb\xd0\xca\x99\x54\x06\xcb\xf3\xb6\xfc\xa6\xd5\x5c\xb4\x92\x58\x71\x00\x56\xee\xca\x3c\x97\xe1\x49\xbd\xf6\x92\xd2\x37\xc2\x68\x58\x09\xaa\x54\x68\x48\x59\x3d\x88\x86\xad\x3a\x39\x0c\x95\xef\x3b\x38\xd5\xe2\x4b\x73\x15\xef\xbf\x50\xc3\xd7\x4f\x58\x7c\x57\x4a\x66\x4a\x48\xc8\xfe\x2c\x4e\x98\x11\x37\x46\x38\x45\x05\x4e\x0b\xcf\x2a\x41\xf3\x5b\xd6\xfd\x69\xed\xa1\x6d\x11\xf6\x6d\x09\x00\x69\xf0\xbe\xa9\xba\xf7\x17\x38\xec\x37\xf0\x23\x9b\xc9\xad\x95\x5c\x14\xf7\x01\x7a\x44\xcc\xef\x0e\xb1\x3d\xef\xe2\xbb\x32\xe3\x22\x40\xf1\x56\xdd\xa1\xe2\xb6\xba\x03\x0c\xdc\x57\x77\x80\xd5\x5c\xf8\x6b\x5c\xce\x54\xf9\x41\x43\xf9\x5b\x24\xd6\x3f\x4c\x02\x98\x0d\x7f\x2d\x5a\x55\x5e\x05\x07\x38\xd4\x77\xbf\xa1\xf8\xa9\xaf\x7a\x47\xfa\xe3\xe4\x98\x3c\x52\x69\x44\xf8\x63\x65\x22\x0e\xe2\xa7\x75\x12\xdf\xcd\xa3\x38\xae\x01\x73\x2c\xff\x98\x7b\x97\xaa\xae\x43\x79\xfb\xd1\xba\xf6\xa3\x36\x25\xa3\xd2\xfc\x4e\x1a\xfc\x19\xc8\x41\x75\x9d\xd4\xb8\x83\x13\xa5\x3d\x09\x4f\x40\x53\xc0\x03\x64\xfd\x65\x90\x89\x14\x7a\x49\x82\x93\x64\xae\x55\xc1\xb9\xd6\x86\x2d\xfd\x25\x83\x0f\x64\x2e\x18\xa1\xa4\xc5\xc5\x3d\xa8\x98\x4e\xd2\x29\x91\x2d\x29\x10\x4e\x46\x95\xba\x65\xcf\x1e\x50\x79\x54\xbb\x18\xb6\x63\xaa\x71\xd4\x68\x59\x64\xb0\xe7\x80\xb0\xf1\x16\xfd\x83\x14\x6d\x23\xd5\x48\x41\xda\xa0\x9d\x51\x1d\x29\x90\x17\x85\x47\xb1\xf2\x2d\x8d\xee\x93\xbe\xab\x79\x5d\xec\x50\x30\xc2\xfb\xe6\xdd\xf2\x7b\xb4\x6c\x8b\xdf\x94\xf1\x51\x5b\x7c\x56\xc6\xff\xd2\x16\x1f\x97\xf1\xad\x5e\x8f\x66\x65\xfc\x75\x5b\xfc\xbc\x8c\x0f\xdb\xe2\xc3\x32\x7e\xde\x16\xbf\xbe\x47\x85\xd0\xf2\xba\x34\x6b\x8b\xbf\x2b\xe3\xe3\x1d\x2a\x88\x46\xd8\xfa\x1d\xb8\x3d\x62\xde\xe3\xef\x2c\xda\x17\x89\xbd\x02\xae\x1a\x35\x00\x81\xe5\x03\x69\xb7\xfd\xa7\xd3\xe2\x1b\x49\x22\x1f\x5c\x47\x2c\x74\x5d\x47\xfb\xe5\x93\x81\xc6\xcb\x46\x81\x26\x83\xa9\x7a\xb9\x6d\x00\xf6\x9f\x6e\x32\xde\x11\x54\x38\x88\x58\x27\xe8\xe8\x22\x3a\x65\x8b\xfa\x16\xc0\x65\x61\x3f\x07\x4a\xe5\x30\xed\xc9\x49\x3a\xcc\x05\x98\xf8\x7a\x25\xdf\x4a\x1b\x20\xa9\x79\xbd\x0e\xd2\x8c\x86\x1d\xe5\xc6\xb4\x63\x1e\xad\x3a\xef\x68\xba\x0c\xd6\x19\xf8\x57\x67\x94\x86\x1d\x9e\x74\x6e\xd3\x60\x0d\x8a\xd8\xe0\xed\xac\x23\xdf\xdd\x3b\xd0\x52\x67\xf1\x6b\xec\x74\x78\xb0\x18\x83\xeb\x64\xff\x10\xdc\xb8\x2b\xef\xee\x19\x07\xfe\x2e\x59\x55\x9d\x25\x1f\xce\x92\x94\x82\x5b\xf7\xff\x5a\xfc\x1a\x7f\xfb\xb5\xe3\xdf\x74\x90\x54\x76\xba\x68\xea\x2d\x89\xd1\x69\x9b\xb2\x3d\x03\x25\x1d\xa7\x80\x5a\x89\x35\x03\xd2\xc2\x0a\x5e\x7a\x69\x28\x7a\xaf\xfc\x3c\xf6\x3b\x2f\x93\x0d\x0b\xfd\x8e\xf3\x6d\x4f\x96\xd8\xfb\xd6\xf9\xd6\x52\x36\x04\x7e\x87\x1b\x1c\x98\xe6\xec\x3f\x5f\x5d\x45\x8b\x4d\xb2\xc9\x1a\xf3\xe1\xeb\x45\x91\x75\x9c\x9e\x2e\xa2\xe7\x74\xcc\xaa\xca\x1c\xd4\xee\x48\x40\xac\x0c\xfc\xa7\x2c\x69\x58\xb8\x15\xd0\x1c\x7d\x3d\xd8\x68\x98\xa1\x96\x15\x5d\xef\x49\x27\xca\x3a\xab\x28\xcb\x60\xf9\xb1\xb2\x03\xad\xcb\x3a\xae\x18\x3a\xff\x29\xdb\x52\xaa\x81\xb4\xac\x0f\x53\x0d\x18\xca\xc1\x6b\x0b\xf4\x38\xcf\x41\x3c\x67\xda\x34\xfb\x1d\x6d\x6a\x59\xaa\xd6\xb0\x96\x65\xcf\xdb\xc6\x34\xcf\x1d\xd8\x6f\x20\x95\x2a\xe9\xc8\xbd\xc4\x43\x6e\xd2\xfb\x28\x47\xf8\xbf\x82\x72\x88\x2b\x51\x65\x2e\x76\x6f\x32\x3d\x17\x52\x05\x76\x19\xdc\xd0\x0e\x40\x8b\x29\x5c\x86\xea\x78\xb5\x50\x24\x45\xbd\x77\x90\x1f\xde\x3e\x72\x72\x6e\xae\x68\x27\xe8\xcc\x75\xfd\xf7\xcd\xcc\xda\x2c\x86\x51\xa0\x6f\x60\x0a\xa7\x17\x5e\x9a\xad\x36\x8d\xd8\xb3\xb4\x81\xdb\x9b\x90\x74\xc2\x64\x5b\x77\xec\x89\x44\x36\x76\xab\xef\x18\x66\x6d\x41\x26\xb9\xe8\x08\x21\x51\x9e\x57\x0e\x33\xf1\x9d\x59\x0e\xaf\x21\xac\x74\x09\xb2\x63\x64\x64\x65\x79\xce\x41\x34\x9c\x00\x3c\x93\xd1\x5d\xe2\xa3\xc6\x88\x19\x4b\xd5\xc6\x52\x93\x6b\x08\xf4\x27\xd5\x2a\xc7\xe6\xa4\xc4\x1d\xbb\x65\x58\xe9\x34\xab\x06\xf5\x6d\x22\x09\x36\xe3\x35\x01\xec\x64\x8a\xca\xe7\x37\xb3\xc7\xdb\x34\x54\xf9\xc4\x26\x14\x52\x59\xd5\x9a\xbb\x3b\xfb\x91\xaf\xc5\x5b\xdf\x8e\xe0\x0a\xaa\x16\x27\xed\x69\xf6\x20\x52\xf4\x6d\x6f\x6c\x2d\x34\xae\x5e\x2c\x20\x2c\xd9\x79\xb0\xa5\xb9\xab\x35\x50\x93\xfe\x0a\x79\x29\x96\x68\x6d\x98\x21\x9c\x16\xc8\x7a\x37\xaa\xe2\x4f\x4c\xb6\xc5\xd4\x80\x75\x1b\xe5\xa8\xad\x85\xe7\x7c\x63\x3d\x41\xd0\xdb\xce\x39\xe5\x72\xf7\xb6\x74\x15\xd5\x97\x7c\x4b\x9a\x7d\x4b\x9f\x8b\xdb\xbd\x97\x98\x6c\xd6\x8c\xa1\xdf\x89\x4b\x5f\xea\x5d\x4f\xa6\x98\x91\xe1\x88\x35\x95\x72\xa5\x16\x36\x3b\x18\xda\x38\x1e\x6c\x5a\xe2\x8d\x34\x6f\x46\xa2\x4e\xa3\x02\xdc\xaa\xd7\x6f\x5e\x6a\x77\xde\x5b\x18\xda\x02\x2c\x1d\x9f\xb0\x69\x21\x2e\x2d\xfb\xb1\xb0\x1f\x0a\x26\x7d\xcf\x43\xf3\xa8\x6e\xa2\x60\xde\x56\x08\xe1\x63\xb0\x07\xcc\x73\xc0\x35\xca\xf3\xe1\xa1\x08\x1d\x1e\x72\x9f\x76\x61\xcb\x71\x11\x5e\xb4\x28\xd5\x6b\x21\x95\x2c\x53\x2b\x97\x03\xf4\x9c\x65\x52\xa2\xd5\x3d\xe5\x11\x2d\xb5\xb2\x9b\xd1\xdc\x44\xf3\xaa\x96\x3a\xab\xc9\xb8\x6a\x42\x2f\x0e\xc7\x8a\xc6\xcb\xeb\x12\x12\x55\x71\xf1\x2c\x2d\xfc\x80\x0c\x46\xc1\x33\x9d\x74\x14\xf4\x7a\x08\x7c\x28\x68\xd7\x59\x6c\x12\x4c\x51\x9e\x77\x13\x8f\x4e\xc4\xef\x29\xe6\xf2\xaf\xa5\x37\xaf\xfb\xf8\x3f\xa9\xc9\xf5\x3f\xeb\x7e\x64\x38\x7c\xfa\x40\xf7\x23\x7f\xba\x1e\xda\xd1\x13\x83\x3c\xd6\xa4\x77\xbf\x13\x82\x51\x19\x86\x33\x52\x55\x85\xa1\x96\x4c\x41\x93\xce\x88\xde\xe6\x39\xeb\xaf\x83\x94\x32\xf5\xc5\x6d\xad\x93\xe8\x5e\xf9\x40\xea\x71\xdb\xa5\x8d\x01\x72\x93\xd8\x96\x8f\x8e\xd0\x28\x21\xad\x24\x22\xa3\xf1\x7c\x2c\xfe\xf1\x5b\xa3\x65\x27\xc6\xf2\x4f\x7b\x12\x3a\xa6\x7e\xaa\x5e\xc9\x15\xc9\x8f\xfa\x01\xf2\x92\xaa\x53\x1c\x4b\xfb\x80\x79\x47\xdf\x23\xcc\xbc\xe1\xd3\x21\x92\x40\x39\xff\x47\x54\x9d\xfe\x10\x28\xbd\xd6\x83\x52\x6a\x87\x8f\x8c\xd6\xe1\x0f\xa0\x73\x28\x41\xe9\x43\xc2\xbc\x47\x8f\x51\x2b\xae\x61\x1d\x9c\x1e\x6c\x9b\x0e\x66\x34\x8e\x1d\x7c\x43\x53\x1e\xcd\x82\xf8\x79\x0d\x96\xf8\x0a\xe0\xae\x34\x32\xf9\x70\xfd\xa5\x93\x25\x71\x14\x7e\x66\x9d\x4e\xa7\xf4\xcf\xe1\xc4\x00\xa0\x0e\x37\x02\x83\xe8\x7d\xb7\xa6\x63\x6f\x80\xc3\x3e\x44\x52\x86\x3c\xf8\x9a\x07\x21\x45\x5e\x99\x2e\x8c\x6e\xa2\x90\xa6\x78\x88\x70\xff\xfb\xef\x91\x0f\x89\xc2\x20\xbd\x7e\x58\x0e\x84\x70\x1d\x07\x1e\xaf\x83\x50\xc2\x18\x3f\x5e\x7f\xe9\x3c\x79\xba\xfe\xd2\x11\x3f\x8e\x1e\xaf\xbf\x38\xd8\x71\xfd\x38\xc8\xf8\x01\x88\x7f\x1d\x7f\xab\xd2\x4a\x4c\xf8\xa3\xc7\x45\x01\x00\xc9\xf7\x01\x94\xe3\x79\xc2\xf8\x79\xf4\x5b\x0d\x2f\x7f\xfd\xe5\x22\x79\x4f\x57\xde\xf0\x08\x41\x8a\x8f\x14\x8a\xad\xa4\x29\xc3\x4f\x69\x18\x6d\x56\x05\x40\x2b\xef\xc7\x50\xbf\xaf\xba\x47\x0f\xa9\xee\x3d\x5d\x6c\xe2\x20\x2d\xf0\x3c\x49\x00\x20\xbf\x32\xb7\x03\xfc\x47\x7b\x5c\x60\x20\xbc\xd1\xac\x05\x5a\x1f\xcf\x63\xfa\xe5\xb8\x54\xaf\x4c\x93\xdb\x83\x94\xde\xd0\x34\xa3\x80\x73\x0f\x73\x70\x4c\x59\x46\x9b\x33\xa2\xa3\x5f\x2c\xe9\xec\xfa\x2a\xf9\x62\x52\xf8\xce\xa0\x33\x3c\xba\x77\x52\x87\x47\x85\x29\xe3\x6d\xc2\xca\x1a\xfc\xc1\xae\x8c\xfe\xa0\xa8\x40\xcb\x2f\xad\x47\x7f\x9c\x02\x7a\x8f\x79\x98\x9a\x59\x08\xf3\x61\x05\x61\x7e\x5d\xc1\x95\x5f\x12\xda\xcf\x92\x94\x9b\x51\x90\x20\xf2\x72\xc8\x14\x8a\x3c\x54\x0e\x18\xf2\xd9\x2c\x59\x53\xd0\xb8\xd5\x68\xf2\x8b\x16\x34\x79\xf3\x12\xb5\x1b\x50\xbe\x04\x92\xaf\x54\xee\x60\x47\x55\x0d\x2a\xb6\x50\xb1\x48\x23\xaa\xad\xc2\xc7\xdf\x12\xde\x07\x4a\x81\xcf\xf4\xaf\xf8\x26\x3e\x1a\xa5\x64\x9d\xe7\xde\x99\xeb\x02\x24\x3d\x58\xb4\xe9\xb6\x8e\x1d\xbe\x74\x7c\x87\x6b\x88\x82\x13\xb2\x1a\x75\x4f\x5c\xb7\x35\xb1\xeb\x7a\x27\xc4\x99\x25\xb1\x4a\x7c\x4e\x6e\xf2\xdc\xbb\x75\xdd\x5b\x3d\x20\x63\xf3\xab\xc4\x47\x57\x5a\xbf\x96\x5e\xee\x4c\xc2\xda\x7b\xac\x89\x68\xcf\xf0\x0c\x10\xfc\xf1\xd5\xd8\xd4\x7f\xe5\xb7\xb6\xa6\x8e\x34\x2f\xb2\x8a\xfd\x29\xb2\x8a\xbf\x65\x56\xfd\xb5\x37\xab\xdc\x6a\x22\xb3\xfc\x55\x66\x2f\xbf\xf7\x16\xa0\xd7\x47\x03\x43\x9f\xe1\xd9\xc4\x4c\x9c\x05\x82\x3f\xaf\x80\xe0\x9f\xd7\x71\xfa\xcf\x91\xb8\xff\x84\x08\xbf\x93\xea\x53\x5a\x44\xed\xba\xde\x3b\xe2\x04\xd9\x4c\xb4\x68\x39\x16\xbf\x28\x83\xb2\x7d\x70\xd5\xac\x3e\x10\xde\x85\x8d\x9f\xee\xc6\xc6\xbf\xc0\x8e\xe8\xe0\x81\x58\x80\x8e\xff\x0e\xc3\x22\xf3\x4f\x0a\xbc\x40\x38\xb3\x30\xf3\xd7\x78\x59\x7d\x62\x5b\xd6\x9e\xd8\x34\x7d\xe9\x0e\x45\x5c\xed\xa9\x0f\x18\xbe\xac\xa6\xe0\x8b\xcd\x7a\x6d\x44\xc9\xe7\xe2\xbb\x9a\xee\xf8\xda\xc6\xa7\x17\x79\x5f\x88\xe3\xb1\x40\xde\xd2\xe6\x25\xee\xfe\x63\x39\xdc\xa3\x1f\x9e\xb4\x71\x3b\x95\x3b\x76\xab\x89\x70\xa3\x7f\x35\x45\xcf\xd2\x84\x51\x5d\xa7\x41\x55\xc2\x02\xab\x6c\x7d\xd9\xab\x38\x94\x82\x77\xbb\x3c\xaf\xbf\xe3\x95\xb6\xb2\xcd\xf7\x42\xa5\x24\x5c\x35\xe0\x2f\x0d\x0c\xa5\xee\xb1\xeb\x36\x9e\xe7\xbe\xae\xcc\xa0\x15\x84\xab\x55\x5a\xad\xf5\xef\x88\x7d\xb7\x33\xd5\xbf\x85\xc8\xaf\xad\x3e\xdb\x35\x60\xc7\x80\x20\x68\x4a\x17\x9f\x5f\x5b\x76\x5c\x39\xd9\xc8\x44\x1a\xc4\x49\x73\x6c\x5a\x7a\xd7\x63\x28\x95\x00\x41\x5c\xdc\xff\xa6\x98\x95\xef\x92\x69\x45\xb0\x6c\xdd\x9f\x1f\xa8\xdf\xcd\xab\xd2\xe3\x8a\x4d\x98\xb4\x77\x9b\xc1\x5b\x2b\xc0\x2d\x2a\xe1\x80\xa9\x5c\x44\x39\xba\x77\x0e\xa4\x31\x9d\x15\xa7\x95\xfa\x89\x30\x24\x84\x5d\x76\x36\x57\xe9\xd4\x17\xe1\xfa\x17\xc2\xb4\x22\x55\xd6\x78\xd4\xaa\xae\x5f\xb8\x0e\xc2\xdd\x01\xea\x6f\xf8\xcc\x43\x35\x59\xa7\xb5\xee\x04\x2b\x7c\xb9\x9e\x43\x4d\x97\xeb\x39\xd9\xd2\xd5\x9a\xdf\x49\x95\x80\x4d\x46\xc3\x8b\xe4\x9a\xb2\xcc\x9f\x4c\xd5\x37\x38\x6c\x17\x9f\xc6\xb1\xd0\xc1\x11\x9e\x2d\x83\x34\x7b\x43\xe7\xe0\x57\xc8\x97\x0e\xb8\x65\xc2\xee\x10\x2b\x80\xe2\xd3\x84\xf1\x25\x28\xe0\xea\x90\x97\x49\xba\x0a\x20\xc9\x26\xa3\xa9\xf2\xa0\x1d\x70\x1a\x42\xae\x2c\x51\x9e\x3b\x32\x1a\x8a\x15\xf3\x2e\x48\x39\xb4\x43\xd0\xd6\x30\xa2\x2b\x59\x56\x3a\x9f\x1d\x7d\x7f\x74\x24\xd2\xde\x52\x7a\x1d\x06\x77\xa7\x51\xb6\x0a\xf8\x6c\x29\xc8\x2f\xc2\xd0\xab\x9a\x2c\xb2\xd4\xc9\xe9\x5f\x46\xd9\x3f\x44\xb5\xfa\x06\xbb\x96\x20\xb1\x4c\xdd\xc1\xfa\xb5\xfa\x5b\x7c\xa1\xea\xdd\x5b\x20\x9c\x90\x6e\x94\xbd\x0d\xde\x8a\xa1\x0c\xb5\xe2\x9e\x87\x90\xeb\xf2\xbe\x1e\xae\x67\x03\xd7\xed\xf2\x3e\x8c\x32\xfc\xb2\x87\xc7\x0e\xf8\x28\x7b\x03\x41\xb5\x9e\x41\x98\x19\x63\x3b\x93\x1c\x52\x08\xa9\x8d\xa9\xeb\x7a\x5d\xde\xd7\x63\x07\xea\xe3\xea\xb7\xeb\xa6\x4a\xac\x7f\x29\xe9\xa6\xeb\x7a\x09\x49\x5c\x17\xec\xad\xfa\x95\xb9\xd5\x81\xf6\xda\x30\x6e\x0e\x4a\x23\xad\xfe\x55\xb4\x78\x95\x6c\x52\xad\xb8\xa5\xb6\x58\x94\xbd\x4c\x93\xdf\x28\x33\x12\x36\x1d\x50\xfa\x31\xec\x24\xa3\x72\x52\x48\x52\x94\xa0\x1d\x2a\xac\x26\xf9\x95\xb3\x16\x7a\x6f\x83\xb7\xa5\xb4\x40\x4e\xc8\x78\xee\xad\xc5\x5d\x9f\x22\x5f\xfc\xad\x0f\x08\xd8\x9c\x14\x0a\x1a\xd8\xda\xfd\x59\xb2\xa2\xe3\xb6\xc0\x8a\xed\x4d\x29\x9d\x54\x17\x79\xd0\x06\x06\x55\x30\x25\xfa\xf8\xf1\xc7\x81\xb2\x13\x65\xa0\xbf\x15\xcd\x3d\x40\x6e\xe5\x60\x0c\x5e\xda\x17\x4c\xd2\x29\x4e\x2b\xa2\x37\x03\x9f\x30\x92\x06\xb4\x69\x7f\x95\x88\xc3\x49\x51\xa4\x88\x66\x40\xff\xf4\x38\xac\xaa\x4c\x7f\x22\xe6\x32\xf0\xb8\x18\xb1\xe7\xa7\x90\x51\x79\x43\xcd\x73\x8f\x36\x42\x49\x4b\x42\x2c\xb3\xeb\x0c\x90\x44\x05\xce\x55\xa0\x20\x47\x97\x73\x15\x18\xab\xc0\x98\xc0\x87\x0c\x94\x6b\x49\xc5\xc8\x0f\x52\x06\xcb\x34\xfc\xb7\x95\x4a\xc0\x7f\x5b\x11\x15\xa0\x6a\xcf\x3e\x5c\xbc\x30\x4d\xfe\x70\xf1\x82\x98\x40\x99\x20\x99\xcf\x33\xaa\xcb\x97\x1f\xa4\x0c\x96\x69\xd6\xba\xb9\xeb\x39\x11\x6b\x40\xb7\x37\x99\x05\x31\xd5\x8d\x86\x0f\x52\x06\xe3\x1b\x63\xb0\x88\xca\x43\xe6\xc6\x96\x39\xa7\xe4\x46\x9c\x2e\x81\x97\x10\x31\x7f\x50\xd2\x24\x9d\x92\xc4\x7a\x83\xbe\x01\x47\xd2\xdd\x61\x39\x51\x0b\xb1\x70\x56\x72\xda\xb5\xca\xee\x65\x08\xb2\xf9\x63\xb0\xb9\x90\xeb\xb6\x7f\x19\x8e\xab\x04\xc4\x17\xab\x5b\xa6\x57\xbb\xc0\x13\x55\x36\x0a\x10\xc9\x10\xee\x0e\x05\xf3\x0e\x4e\xf0\xbb\x03\x9c\x2a\xc5\xf8\x33\x18\x17\xb5\x4c\x45\xbb\xac\x33\xe1\x76\xd7\xc1\xbd\x90\x02\x5d\xe0\x4d\x4c\xeb\x6a\xab\xa5\x2c\xe6\xcc\x2e\xe6\xd9\x60\x0c\x30\xa5\x33\x1a\xc5\x80\xe9\x39\xf0\xe1\x7b\x1e\x27\x49\x5a\x39\xda\x4f\xca\x7d\xdc\xa3\x80\xb0\xa2\xca\x50\x18\xfd\x51\xf6\x32\x62\x11\xa7\x80\x6a\xe4\x31\x72\x06\x13\xc9\xca\x02\xce\x2b\x3e\xf9\x71\x42\xa0\xa2\x55\xc4\x8c\x4b\x0c\x6c\x7c\x69\xe0\x48\xc6\x06\x57\x59\xe9\x30\xa3\x8c\x0d\xc8\xc0\xd2\xbf\x4c\x60\xe3\x7a\xcc\x75\xc5\xec\x8a\xd6\x4c\xd2\x69\x9e\x77\x99\xeb\x9e\xc0\x84\xa3\x2e\x21\x27\xa0\xbc\x24\x88\x7c\xd0\xeb\x19\x83\x97\x5e\x54\xb6\xef\x42\x74\x10\x66\x25\xed\x67\x9b\x35\x20\x03\x1d\xd3\x75\x4a\x25\x1a\xdb\xc7\x20\x65\x11\x5b\x64\xae\xdb\x2a\x34\x9c\x25\x2c\x4b\x62\xea\xba\xea\x47\xff\x36\x48\x59\xf5\xcb\x73\xac\xe2\x3a\xb7\xb2\x3c\xbf\xe3\xf4\xec\x61\x7e\x67\x1b\x04\x94\xfa\xc5\x73\xcf\x62\x9e\x8d\x1d\x5c\xda\x0f\xcb\x12\x5f\x05\x2c\x8c\x05\xed\x6f\x0b\x95\xfc\x33\x15\xd7\x35\x43\x14\x13\x1c\x91\xc9\x14\x4b\x59\x7d\xe3\xd1\x26\xe8\xf5\xe4\x8b\x03\x71\x1c\x6c\x21\x20\x6a\x44\x7c\x23\x19\x0e\xa6\x65\x91\x1b\x80\xb4\x07\xa4\x80\x89\xd3\x0b\x7a\xce\xb4\xe3\x60\xdb\x6e\x18\x25\x3d\xb2\x91\xf8\x01\x76\xf0\x64\x33\xed\x39\xb8\xe3\x8c\x12\x92\x94\x90\x92\x47\x1a\x7c\x8f\xd8\xb5\x8d\x22\xc9\x3b\x26\xa8\xb8\xf0\x68\xcf\xf9\xcc\x9e\x1b\x97\xd7\x1d\xa7\xd7\x38\x13\x44\x69\x92\x92\x47\x25\x0a\x0e\x00\x10\xf4\x3c\xf3\xbc\x0a\xbe\x32\x40\x85\x99\x74\x87\x45\xed\xee\x01\xa4\xc0\xba\x7b\x08\x26\x53\xf4\xf6\x14\x5f\x93\xad\x25\xd7\xf9\x45\xce\xdd\x57\xcf\x0d\xb8\x6c\xbd\x9e\xd0\x69\x9e\x7b\x17\x9e\xfa\x4d\xba\xb6\x47\xa6\x2f\xbb\xf6\xfe\x4b\x95\xc2\x62\xdc\x75\xd0\xd7\x32\xef\x97\x55\xe6\x7d\x2e\xfd\x84\x48\x0e\xbe\xc6\x3a\x47\xc0\x3c\x23\xd7\x8d\x3c\x60\xa0\xc7\x5e\x2a\x3d\x7f\xe1\x39\xfc\xc2\x10\xad\x3f\x20\x89\x34\x58\xed\x02\xc3\x3d\x4e\x35\xeb\xed\x6b\x25\x60\x60\xc3\x4d\x55\x14\xcd\xc0\x90\xd2\x75\xbb\xba\x4e\x53\xa5\xac\x0a\x5a\x07\xb9\xda\xae\x0e\x6f\xc5\x70\x19\x9a\xa8\x75\xdf\x45\x6f\xf7\xee\x6d\x02\x8e\x7b\x9b\x33\x24\x15\xf5\x4f\xed\xd7\xb0\xb1\xf5\xbb\x89\x56\x88\x99\xbe\xfb\xf0\xb2\x3b\x82\x30\x32\x75\xef\x29\xb9\x20\xc9\x3e\x1c\x57\x16\xd2\x0b\x9b\x08\x88\x29\x7b\x93\xdc\xd2\xf4\x45\x90\x51\x0f\x8d\x8e\x45\xf7\x8f\x27\xac\xe7\x64\x8e\xf8\xc1\xa7\xf6\xe5\xf1\xfd\x7e\x1c\x98\x63\x58\x65\xc7\x93\x5a\xa1\x53\x8d\xfc\x62\xca\x79\x6e\xf5\x45\x3e\x82\xb7\x4c\x8e\xc7\xc9\x7b\x8f\x21\x39\x29\xbc\xa6\xde\x9e\xc2\x1e\x79\x5d\xe9\xd8\x4b\xd9\xb1\xd7\x62\x7d\x5b\x47\xd2\x9b\xca\xd1\x40\x1c\xa7\x57\x52\x7f\xc1\xaf\xf3\x03\xfd\xa4\x8d\x23\x42\x7f\x34\x67\x8f\x17\x8d\xd9\xd8\xe9\x39\xbe\xe3\xf8\xce\x81\x83\x64\xb6\x75\x72\xeb\x0d\x07\x58\x1e\x2f\xc1\x17\xe9\x86\xa7\xc4\xdf\x36\xe8\xdb\x43\xd4\x93\x6d\xfc\x40\x0e\xbd\xcf\x93\xc9\xbf\x3f\x4f\xa6\xff\xfd\x79\x8a\x72\xef\xf3\x67\x34\xf6\x26\xaf\x96\xd3\xd5\xca\xcb\x32\x34\xce\x4f\x93\xfc\xf4\x74\x2c\xfe\xcf\x8f\x93\xfc\xf8\x18\xfe\x19\x8b\xff\xf3\x30\x0c\xc7\xe1\x38\x0f\x93\x71\x7e\x3b\x49\xf2\xdb\xe9\x38\xff\x38\x49\xf2\x8f\xd3\x71\xfe\x73\x32\xce\x3f\xc1\x7f\x79\xf9\x6f\xfe\xe9\x53\xbe\x58\x78\x8b\xc5\x62\x8c\xc6\xf9\x4f\x3f\x79\x3f\xfd\xf4\x93\xf8\x45\xf3\x93\x3c\xc8\x9f\xe7\xcb\xe5\x38\x7f\xf5\x6a\x9c\x5f\x5f\x8f\xf3\xd5\x6a\x9c\x67\xd9\x38\x3f\xdf\x0e\xf1\x0f\x45\xfe\x25\xff\x67\xfe\xdb\x6f\xe3\xfc\x5f\xff\x1a\xe7\x7d\x74\xb8\xc0\x3f\xb7\x36\xfc\xcd\xc5\x79\xfe\xe6\x22\x7f\xf3\x66\x2c\xfe\xcf\xe3\xed\x10\x3f\x2e\x44\xf2\x8f\x62\x83\xfe\x5a\x99\x90\x4f\x75\x3f\x49\x69\x8b\xf7\x13\x70\x0f\xd5\x02\x70\x2e\xf6\xd5\x24\x9d\x7a\xf0\xb6\xee\xba\xde\xaf\x62\x5a\x13\x40\xb2\xf3\x7e\x9d\xf0\xc9\x60\x3a\x6d\xc9\xf5\xc6\x4b\xda\xe9\x2a\xe6\x93\xa1\x20\x16\x47\x53\x51\x20\x83\x42\x58\x5b\x09\xb0\x9f\x25\x1b\x78\x1c\xf0\xc0\x43\xfd\x24\x0d\x23\x16\xc4\x3b\x4b\x06\x9b\x24\xd3\xe9\xdf\xea\xa6\xa8\x9a\x5b\x1b\x7b\x9c\xfc\xc3\xe3\x98\x56\x4a\x47\xf8\xa3\x58\xdc\xe2\x9f\xaa\x87\x08\xb3\x3d\xc0\x2f\x1e\xdc\xf9\xbc\x0f\x92\x8a\x71\x32\xc0\x8c\x24\xc6\x59\xc4\x33\x06\x0e\x23\x7e\x9d\x24\x13\x3e\x9d\x8e\xc5\xbf\x44\x7d\xf8\xf0\xe1\xa5\x44\xfc\x45\xaa\x98\xc3\xcf\x93\xc9\xe7\xec\xf3\xf9\xf4\x10\x8d\x53\x03\x04\x7b\xf8\xef\xcf\x93\xfc\xf3\xf4\x2f\x87\x0b\xec\x38\xc8\xb7\x22\x3e\x7f\x96\x61\xa3\x9a\x8e\xbb\xc7\x35\xbf\x15\x11\xc7\xb1\x98\x26\x75\xdb\xe9\x91\x2f\x5e\x22\x18\xa3\xb1\xf8\x57\x3f\xcf\x53\xe4\x8b\xcf\x91\xd1\xc8\x2e\xc4\xa9\x24\x06\x40\x5c\x01\xfd\xea\xf0\xe8\x4b\x2d\xf0\xb6\xd6\x28\xff\xc3\x26\x62\x4f\x5a\x71\x4d\x3b\xbc\x1f\x27\x6c\x21\x72\xca\x2b\x31\xb0\xa0\x14\x10\x8a\x7e\xee\xc7\x41\xc6\x01\x73\x42\x70\xf6\x3f\x92\x81\xeb\xfe\xac\xbd\xb3\x8d\x10\x25\xd4\xf4\xfe\x67\x9c\x22\x5c\x49\x8f\xd9\x01\x19\x56\x99\xfc\xbf\x92\xc3\xcf\xe1\x21\xfe\x49\xfc\x11\x3f\xfe\x22\x7e\x6c\x1f\x15\x87\xf8\x6f\xf0\xeb\x71\x71\x88\xff\x49\x0e\x27\xbd\x83\xe9\xf8\x73\xb8\x7d\x5a\x1c\xe2\x7f\xc9\xb4\xe3\x43\xfc\x77\xf9\x4b\x7d\xbd\x2a\xbf\x54\x08\xa5\x50\xc6\x10\x8b\xf2\xb8\xfe\x10\x45\x32\x5a\x96\x39\xc4\xa2\xd4\x14\xa2\x7b\x87\x38\x29\xa3\x7a\x87\x38\xa2\xe4\xf0\x5f\xb9\xf8\x16\x65\xfa\x63\x68\xe5\x22\xc2\x41\x25\xdc\x1b\xfb\x32\x0a\x8d\x45\xe4\x46\x14\x31\x38\xf8\x61\xba\x1d\xe0\xa3\x27\x4f\x8b\xc9\xb7\xc1\xc1\x6f\x9f\x37\x83\xc1\xf3\xc1\xc1\xe7\xcd\xe0\xc9\xcb\x97\x9f\x37\x83\xef\x06\xe2\xe3\xf8\x3b\xf1\xf1\xf2\x07\xf8\x78\x79\xfc\x42\x7c\x1c\xbf\x84\x8f\x97\x83\xef\xc4\xbf\x43\xf9\x71\xf2\x72\xba\x1d\x42\x69\xf9\xe4\xf3\x66\xf0\x14\x32\x0c\x9e\xbe\x7c\xf9\xf9\x50\x47\x78\x9f\xb3\xff\x1e\x57\x23\x75\x14\x12\x7f\x8b\xc3\x08\x67\xb4\x42\x68\x62\xaa\x69\x7c\x46\x05\x99\xf8\xe2\x71\x34\xe6\x35\xb8\xed\x12\xb0\x80\x8d\x99\xcf\x2d\x25\xa9\x19\xad\xec\xd9\x99\x97\x51\x4c\xd1\x18\xca\x2a\xaf\xb1\xb8\xbc\x1e\xfa\x96\xb7\xbf\x39\xf5\xca\xc5\xe2\x7c\xfe\xec\x88\x9d\x62\xef\x1d\xef\xf3\x04\xe5\xe2\xcf\x14\xe5\x9f\x27\xde\xe4\xdf\x9f\xa7\x82\xa4\xa2\xcf\x53\x11\x0a\xa4\xb6\x2a\xe2\x16\x5b\xbe\x5c\xc4\x79\xce\xf2\x3c\xcd\xf3\xa4\x40\xc8\x16\x3f\xd2\x8a\x2a\x9a\xa9\x6f\x72\xf0\xf9\xf0\xf3\xe7\x7f\xff\xe5\xbf\x7b\xe3\xbe\x87\xf2\xc9\xe7\xe9\xb6\x98\x8a\xed\xfb\xf9\xf3\x5f\x5c\x47\xb2\x96\x61\x75\xf4\xd6\xb4\xca\x9b\x71\xd8\xc9\x2d\x07\xbc\xd4\xda\xa3\x53\x84\x37\xf2\x22\x56\x31\x74\x63\x68\xcb\x04\xb1\x39\x01\x23\x4d\x5c\x93\xcb\x8a\x2b\x73\x48\x27\xe2\x10\x9f\x12\x8b\x99\x5a\xaa\xca\xa1\x11\x76\x69\x6a\x14\xfa\x97\xb7\x44\xfc\x03\x7e\x40\x38\x18\xa3\x5e\xde\x42\x9c\x4d\x74\xef\xcc\x02\x30\x56\x82\x33\x2f\x14\xb3\xe8\xba\xa1\x9c\x46\xcc\xfa\x97\x01\x66\x82\x5a\x83\x48\x85\x92\x01\x5e\x51\x32\xc4\x57\x94\x1c\xe1\x05\x25\x8f\xf0\x2d\x25\x8f\xf1\x19\x25\x4f\xf0\x09\x25\x4f\xf1\x39\x25\xdf\xe1\x0b\x4a\xbe\x2f\x87\xea\x9d\x3d\xea\xa7\xe2\x63\xfc\xe8\xe9\x53\xff\xd1\xd3\x27\x65\x5b\x4e\x2b\x33\xf3\xcd\x63\x42\x04\x75\xa1\xdf\x0c\x07\xe2\x32\x3b\xc8\x73\xfa\xcd\xe3\xc1\x40\x84\x16\x9f\x3c\xe7\x93\x83\x07\x78\x80\xdb\x0d\x11\xef\x68\x90\x7a\xa5\x3c\xe1\x19\xf9\xe1\x87\x1f\x7e\x18\x3b\x4e\x8f\xfa\x4e\xcf\xe9\xd1\x02\xe1\x4f\xde\x00\x4f\x9c\x4f\x9f\x1c\x7c\x34\xad\x96\x63\x9f\x67\xb2\x20\xd1\x04\x2b\x8b\xc8\xf4\x58\x64\x72\x44\xb4\x63\x47\x7c\x72\xf0\x93\x1d\x31\x9f\x1c\xfc\x14\x77\x07\x76\xec\x0b\x4f\xfe\xc2\xce\x9d\x83\xf0\x4b\xfd\x35\x44\x38\xa6\xd0\xc3\x84\xaa\x9f\x9f\x1c\xfc\x2f\xfc\x93\xfe\x10\x9f\x9c\xe2\xbf\x95\xdf\x9f\x1c\xcc\x28\xfe\xa7\x15\x60\x42\xd6\xd4\x33\x6d\xd3\x51\x53\x7c\x43\x21\x46\x15\x56\xd5\x68\xe3\x93\x1b\x3a\x25\x47\xa0\xe9\x21\x57\xe1\x38\x95\xc2\xdc\x8b\xdb\xe4\x38\x5a\x44\xfc\x93\x18\x16\x8a\x7c\xb5\x64\xd7\xaa\x89\x6d\xc5\xb4\xe7\xd4\x99\xda\xf3\x40\x8e\xd7\x4c\xac\xda\xe1\x40\xa4\x6d\x29\xa4\x0d\x47\x52\x34\xa7\xe7\x89\x7f\x7f\x7c\xfa\xfd\x78\xf8\xc3\x60\xe0\x1f\xd1\x47\x48\x32\xf3\xd7\x14\xff\x42\xc9\x17\xea\x39\x2f\x37\x71\xfc\x09\x46\xba\x3b\xb0\x2c\x6c\xbe\x54\xa9\x99\xad\xb1\x58\x11\x8e\xb2\xb1\xf7\x96\x2a\x49\x14\x28\x9a\x36\xa5\x44\x58\x59\x31\x23\xff\x52\xa7\x44\x16\xdd\xbc\xa4\x3b\x79\x1d\xda\xbf\x0c\x27\xce\x82\x72\xa7\x67\xa4\x77\x63\xe7\xc3\xc5\x0b\xc1\x4e\xa3\x1e\x9f\x4a\x89\x96\x75\xa9\x32\x3b\xd8\x2a\xc6\x75\x95\x30\x1d\xee\x03\x65\x87\xa5\xaf\x3e\xb1\xd1\xd4\xca\x46\xae\x2b\x7d\x31\xad\x12\xc6\x97\x22\xe3\xd1\x0f\xf0\x1d\x02\xdf\xa0\x9a\x93\xed\x69\x0e\xc3\x26\x33\x3e\xa6\xf6\x27\xf0\x24\xf7\x66\xb7\x69\xf3\x31\x35\x2a\x95\xea\x2d\x00\xe5\xb9\xfc\x55\x5a\xd8\xbd\x0d\xde\x6a\x23\x60\xe2\xf1\x6f\x3c\x46\x86\x47\xa8\xc7\xd0\x37\xcc\xec\xf7\x1e\xf1\xf8\x41\x8a\x0e\x87\x47\x18\x24\x47\x63\x49\x71\x8e\x7e\xf0\x8f\xbe\xf7\x1f\x0d\x0f\xd2\x6f\xbe\xfb\xe6\xa8\xb8\xa6\x0d\xf9\xb5\x32\x0f\x6e\x88\xb0\x55\x78\xf3\x4a\xa9\xd9\xca\x11\x7f\x26\xf9\x5f\xfd\x98\xc6\xc1\x87\x82\x60\xc5\xf9\x94\x94\x06\xcc\x1d\x6e\x9c\x8c\x16\xf8\x93\xe7\x9c\x3a\x78\xe2\x9c\x9e\x02\x11\x72\x4e\x93\x36\x0d\x58\x28\x57\x0d\x69\x6f\x08\x64\xc8\x39\x15\x59\x2a\xe4\x8f\xee\xe1\xc3\x21\x73\x76\xbe\x4c\x52\x6e\x16\xa3\x2e\xe6\xeb\xcb\xb1\x8a\x78\xe1\x39\x10\xe6\x60\xe7\x54\x12\x30\xf5\xf9\xbd\x24\x44\xa7\x0e\xfe\x97\xfa\x75\x6a\x11\x30\xa8\xb5\xba\xef\x0d\xe7\x69\xb5\xf5\x3d\x5d\xd0\x2f\x92\x56\xa8\x5c\xf7\x65\xb3\x72\x00\xd5\x3b\x15\x0d\x3b\x75\xa6\x0d\x22\xb3\xa2\xf2\xb8\x3d\x18\x9a\xa4\xa7\x32\x71\x23\xb9\x7d\x0d\x63\x9a\x91\x51\xf5\xbd\x13\x44\x09\x1c\x73\x30\x23\x9c\x57\x68\x9d\xc9\x58\xd6\x92\xf8\x6b\x8f\xa1\xca\x43\x15\xa1\xea\xb5\xfe\x05\x25\x87\xc7\x93\xe4\x78\x3a\x56\xf7\xc5\xcf\x53\x71\x63\xcc\x3f\x67\xa8\x27\x5a\x32\x3e\xc4\xef\x29\x71\xfe\x16\xb0\x4d\x90\xde\x5d\xbe\xa4\x57\x29\xfc\x38\x0d\xd2\xd9\xf2\xf2\xf9\x3a\x8d\xe2\xcb\xd3\xe0\xee\xf2\x6f\x1b\x46\x2f\xff\xb6\x89\xef\x2e\x9f\x6f\x16\x9b\x8c\x5f\x9e\xd3\x35\xa7\xab\x2b\x9a\x5e\x9e\xcd\x78\x22\xfe\xbe\x4d\x6e\x64\xc0\x31\x9d\xc1\x0f\x83\x6d\x7d\xe9\x20\xfc\x5c\xd6\x22\x6a\x10\x85\x8b\xa2\x75\xc1\xa2\x5c\x51\xac\x28\x53\x94\x26\x4a\x12\x85\xd8\xf9\x4b\x12\xfa\xda\xe6\x88\xc0\x2e\xc8\x22\x4a\x25\x76\x58\x34\x6f\xe1\x92\x60\xc7\x1c\xfe\xfb\x73\xd8\xfb\xcb\xa1\xbc\x51\x70\x84\x38\x39\xf1\xb8\x74\x24\xd2\x11\xc5\x6d\x3c\x4e\x68\xdb\xaa\x94\x53\xc1\x91\x55\x8b\x26\xda\xb6\x48\x5b\x92\x35\x41\xa8\x34\x05\xc4\x1c\xc1\x43\xe7\x3e\x3a\xe5\xc0\xbc\x39\xc0\x0c\x55\x1e\x90\x5f\xd2\xe6\x5b\xe6\xd8\x7b\x6d\x68\x7e\xeb\xd9\xd0\x1d\xd4\x0f\x07\x55\xbe\x64\xb0\xde\x50\xb2\xa1\xf8\x83\xf8\xb7\x1c\xd8\x9f\xa9\x67\x01\x54\xd3\xda\xea\x57\xa2\x78\x7d\x5a\x17\xa5\x84\x08\x9c\xae\x4f\xa6\x20\x53\xb6\x68\xd5\xf0\x08\x2e\xbe\x8c\x84\xde\xe4\x88\x3e\xc2\x7c\x0a\x67\x2c\x08\xc1\x0c\xb9\x51\x14\x83\x09\xbe\x1c\xe1\xa4\x11\xad\x63\xa2\xaf\x88\xb1\x8b\x94\xf7\x5e\xd0\x97\x03\x81\x92\xf9\x15\x99\x5f\x95\xd6\x82\x30\x6b\x4e\x41\xa8\x85\x70\xa2\xbe\xe0\x7e\x6e\x75\xed\xe8\x31\x24\x8e\x54\x74\x04\xd1\xf2\xb5\xc7\x22\x12\xa4\xe2\x76\xdc\x73\x7a\x91\x12\x42\xe7\x62\xba\x95\xd7\x71\x6c\x67\x2b\x49\x12\x69\x94\x56\x4d\x08\x74\xa0\xbd\x96\xe4\x41\xb5\xec\x2b\x21\x6d\x29\xa1\x5c\x8f\x1f\x69\xd5\x6c\x05\x6e\xff\xe2\x9f\xfe\x87\x8b\x17\xed\x3a\x3b\x16\x97\x3c\x1c\x08\x7e\x1b\xee\xf4\xe5\xbb\x11\xb8\x30\xbc\x78\xa1\x59\x08\xf5\x22\x9f\x55\x03\x69\xc5\xac\xe8\x57\x5a\x95\x1c\x7e\xd7\xe3\x07\x0c\x27\xc4\xfb\xae\x27\x1a\x88\x07\x38\x45\xaa\xd8\xe3\xe0\xce\x43\x07\x1c\x7d\xf3\x9d\x3e\x17\x93\x5e\x7a\x30\x2c\xcb\xfa\x44\xed\xbb\x1d\xe8\xce\x03\xde\xbd\xf7\x5d\x8f\x1d\xa4\xe8\x9b\xef\x70\x46\x7e\x95\x34\x38\x41\x38\x26\xc3\xde\x77\xff\xed\xf1\x83\x21\xea\x6d\x7a\x99\x71\x7e\xff\x8c\x0c\xc6\x01\x79\x47\xbd\x88\x50\x11\x17\xfb\xf1\x8f\x70\x25\x19\x8b\x90\xde\x10\x07\x24\x3e\x80\x00\xe4\x8b\x10\xf1\x8d\xf0\x56\x50\x08\x3f\xc2\x61\x70\x77\x36\x17\xfd\xf4\x03\x8b\x89\xfb\x8d\xd6\x9e\xce\x70\x04\x2d\x31\x74\x45\xd0\x8a\x80\x58\x0f\x77\x40\x7f\x54\x51\x1e\x3a\x88\x0e\x86\xe8\xf0\x3b\xd4\x33\x22\x91\xe0\xd9\x70\xec\x25\x44\x97\x70\x30\xc4\x29\x09\x7a\xff\xa0\x5e\x02\x85\x21\x3f\xf8\xf1\x1f\xb5\x0a\xc6\x5e\x4a\x82\x83\x7a\x28\x2e\x0b\xe9\x0d\x91\x6f\x95\x29\x4a\x44\x78\x7b\x4b\xe9\xb5\x9f\x62\xe8\x5f\x62\xf5\xe9\x1f\xb5\x99\x33\x33\x89\x13\xf8\xdd\x1b\xc2\x97\x16\xf4\xc2\x88\x1d\xa4\xbd\x04\x1d\x7e\x27\xee\x64\xb7\x82\x9b\xb9\xbd\x95\xdc\xcc\x6d\xe2\x60\x47\x54\x04\xd7\x20\xe7\xa3\x88\xfb\xf8\x51\xc6\x7d\x14\x71\x51\x96\x7c\x94\xd1\x2f\x3c\x99\x10\x3b\xb7\xf2\x4b\x47\x61\xe7\xa3\xe4\x2b\x64\xf4\x13\xf8\x6d\x22\x9f\x48\xc6\xe0\xd6\x70\x19\xa2\x6a\xc3\x65\x7c\x34\xc1\xa2\x56\x08\x5e\x8a\x93\xfe\x56\x54\x73\x0b\x45\x63\x11\xd5\x76\xdc\xf3\x49\x5a\xfa\x7a\x1f\x22\x73\x37\xff\xe4\x39\xa1\x60\x98\x9c\x50\x74\x20\x0c\xee\x64\xdf\xc2\xf0\x2b\xb8\x28\xa5\x8f\x92\x9d\x46\xac\xca\x8d\x85\xbf\xab\x98\x16\xb6\x2e\xfc\x7d\x25\x55\x0b\xa1\xb2\x04\x47\xc5\xca\x8e\x9e\xa8\x40\x35\x05\x32\xfc\x85\x07\x23\x81\x9d\xb0\x9c\x4a\x19\x40\x2b\xb3\x29\xc3\x4e\xe4\x84\xc2\xc7\x70\x68\x26\xd7\xfe\xb6\xd3\x0f\xd5\x65\x38\x34\xb3\x49\xcd\xaf\x13\xf3\x2b\x0c\x77\x72\x86\xd6\x70\xd7\x18\xca\xf0\x01\xb9\xda\x18\xd1\xf0\x21\x19\xad\x3c\xb0\xea\x44\x16\x59\xa3\xcc\xff\x10\x26\x53\x97\xb5\x9f\xcd\xec\x87\x35\x26\x53\x8d\x1d\x68\x55\xc9\xba\x61\x2a\xc4\xd0\xef\x58\xeb\x7a\x7d\x03\x57\xfa\x57\x4a\x9c\xf3\x0d\x0b\x83\xbb\xcb\xd3\x04\xfe\x5c\x6c\x68\x26\xfe\x7e\xa4\x21\x93\xbf\x2e\x96\x9b\x14\x7e\xbc\x4c\x23\xf1\xe7\x3c\xe0\x9b\x54\xcc\x97\xcd\x55\xfe\x24\x0b\x12\xa5\x88\x22\x44\x76\x91\x51\xe4\x11\x19\x2a\x69\xff\x02\x69\x2f\x4f\x93\xcb\x8b\xcd\xe5\x47\x7a\x79\xb1\xbc\x7c\x99\x5e\x9e\x07\x95\x44\x7f\x03\xce\xe8\x9f\xf0\xef\xbf\xaa\xfc\xd1\xdf\x7f\x1f\x7f\x24\x88\x36\x0e\x04\x83\xb4\x11\xff\x64\xe2\x9f\xb8\xca\x2a\x7d\x57\xe5\x94\x86\x53\x24\x88\xb8\xc7\x91\xc6\x98\xb3\xf7\x33\x30\x36\x1a\x19\xb0\xba\x43\x65\x54\x54\x8d\x52\xa1\x81\xf1\xed\xbe\xd1\xaf\xe8\x38\x53\xce\x1a\x11\x8e\x4d\x6c\x6c\x62\x63\x1d\x0b\x2d\x0d\x0c\xc3\xb4\x31\xbf\x32\xf3\x2b\xae\xb1\x53\xb2\x47\x1b\xc5\x20\x6d\x80\x9b\xca\xd4\x57\x06\x5f\xb1\xfa\x8a\x2d\xe6\xa9\xb2\xb0\x1b\x6c\x49\xbc\x9b\xb1\x69\x6e\x25\xd2\x52\x62\x2d\xb1\xde\xad\x0f\x48\xba\x8f\x5b\xca\x1e\xd8\xac\x7d\x65\x6c\xee\x2f\xe3\x34\x62\xfb\x4a\x08\xf6\xf2\x6c\xaf\x68\xed\xae\xbf\x4c\x36\x69\xe6\xa1\x6f\x86\x47\x79\x3e\x3c\x2a\x13\x52\x2e\x97\xf5\x27\x60\xa1\x76\x8a\x2c\xab\x97\x23\xa5\xa7\xe8\xd9\x25\xcb\xd6\xaf\x22\xb6\xe1\x14\x3e\x2b\x22\x61\xce\x6b\xbb\xe7\x52\x17\x02\x74\x48\x9c\xf3\xaf\xc4\x59\xfe\xea\x95\x12\x9d\x3a\xa2\x58\x79\x3e\x2c\x45\xc4\x72\xa9\x22\x5e\x51\x08\xbc\x16\x81\xd7\xd7\xfb\x05\xad\xaa\x69\x79\x7e\xf4\x58\x9e\x3f\xcb\xd5\xaa\x21\xe1\x55\x2f\xe8\x4e\xef\x15\xb5\x9e\x14\x51\xef\x8d\x57\xeb\xd1\x11\x32\x85\x64\xd9\x1f\x29\x46\x87\x49\x13\x29\xbb\xe8\x57\xfb\xda\x67\x77\x69\x77\xeb\x5e\xed\x6f\xdd\x7d\x85\xec\x68\x1b\xe5\x9e\x13\x80\x68\x13\x7e\x3e\x77\x70\x77\x08\xc7\x30\x4c\x13\x76\x96\xf2\x00\x96\x5f\xc3\x47\xf2\x4c\x0b\x1c\xcc\xb9\xfc\xf9\xbc\xfc\xf9\xca\x1c\xb0\x4b\xf3\xeb\xda\xfc\x12\x0b\xc0\x70\x5b\x62\xd2\xcd\x87\x98\xec\x32\x46\x0c\xd4\xdf\xcd\x6f\xd1\xe3\x57\xaa\x00\x2b\xe6\x95\x89\x01\x71\xcc\x2b\x07\x8b\xf2\xa7\x78\x41\x55\x88\x60\x06\xaf\xaf\x1b\x27\x98\xe6\x54\xc5\x01\x36\xe2\x93\x05\x9d\x92\xa3\xc7\x20\xf3\x1b\xf8\xa9\x16\xee\x04\x0e\x76\x9e\xb7\x64\x65\xe2\xaa\xff\x6e\x65\x1d\xb9\x51\xf6\xee\x54\x50\x4a\x56\xae\x7a\x38\x47\xa1\x98\xa5\x18\xbd\x65\x4b\x39\xb2\x5e\xd1\x04\x0c\x07\xb1\xd2\xe0\x25\x60\xeb\xb1\xd6\x63\xd0\xde\x70\xa3\x48\x77\x34\x32\xc5\x94\xbc\x67\x8a\x10\xe6\x93\xdb\x6a\xb0\x08\xdc\x59\x8f\x18\xc5\x7b\x6a\x7a\x0c\xf7\x83\xaf\xaf\x16\x1f\x41\xf0\x59\x35\x38\xd9\xd9\x9a\x57\x7f\x76\xaf\xcb\x72\xff\x6f\xf4\x52\xf1\x47\x8c\xe3\x94\xc3\x3b\x82\xe8\x6d\x26\x77\x5a\xc2\xc9\x56\x2c\x20\x16\x06\xa9\xbf\xcd\x82\x15\x3d\x0e\xee\x7c\x67\x72\x91\x84\xc1\x5d\x27\xe0\xd3\xce\x9b\x0b\x07\x33\xfa\x85\xeb\xf0\x55\x92\xa6\xc9\x6d\x25\x4a\x30\x6e\x3e\xb0\x87\x9d\x89\x0e\x8f\x83\x4c\x65\xf9\x44\x33\x4e\x53\xbb\x38\x11\x27\xf3\x4c\xde\x04\x19\x9f\x76\xaa\x59\x45\x2b\x4e\xe2\x8c\xfa\xce\x1b\xa7\xc0\xd5\x27\x7d\x7f\xfb\xe6\xe2\xdc\x77\x96\xfe\x6a\xe5\x67\x59\xe7\xb9\x83\xdf\x5c\xc8\x4f\xf8\xed\x3b\xa7\xa7\x87\xc7\xc7\x87\xf2\x75\xe8\x0d\x7c\x9f\x9e\x76\x8e\x71\x47\x87\xd4\x82\x3a\x26\x2b\x44\x89\x86\xe0\x4e\x5b\x82\x02\x5b\x8a\x09\xbe\xa3\x74\xca\x3b\x21\x38\x3b\x57\x0a\x23\xbe\xf3\x4d\xe8\xc8\x5b\x37\x08\xc6\xce\x64\x30\x1c\x3f\xbe\x7c\xc4\x3f\x82\x27\xfb\x38\xe0\xd1\x0d\xbd\x88\x56\xd4\xdf\xce\x37\x7c\x93\x52\xdf\x89\x58\xe7\x9b\xcc\xc1\xeb\x20\xe3\xbe\xf3\x4d\xd6\x09\x16\x89\x83\x33\xdf\x09\x3a\x73\x7a\xdb\x51\xb4\xd2\xc1\x59\x26\x6a\x29\xbf\x57\x22\x85\xa4\xae\x0e\x5e\xad\x20\x52\x11\x5b\x07\x2f\x7d\x27\x60\x1d\x49\x31\x97\x4b\x88\x5b\xca\xb9\x0f\x45\x36\xb8\xa8\x84\x21\x84\x0b\x76\xc0\xc1\xa7\x50\x9a\x94\x85\x9f\x9e\xca\xc2\x40\xbe\xe3\xe0\x3b\x11\x25\xdf\xf9\xee\xee\x20\x46\x7c\x64\x4e\x81\x65\x0a\xff\x3d\xc5\x96\x2c\xc8\x7f\x4e\xc1\x36\xc3\xdf\x86\xc9\xad\x3f\xc0\x61\x72\xe7\x3f\x2d\xb4\xb9\x46\xe6\xff\x95\x62\x8b\x0b\xf1\xff\x52\x7e\xca\xec\x3f\x51\x5c\x39\xbe\xfd\xc3\x49\xb0\x9e\x7e\xee\x8f\x57\xe3\xcf\xfd\xf1\x61\x54\xe0\x08\x9c\x33\x06\xbc\xf2\xb4\xbd\xe1\xf6\x5b\xec\xb8\xa6\x98\x56\x3e\xdb\x5f\x3a\xd8\x39\x70\x90\x6f\xc9\x44\x41\x70\xab\x14\x4c\xfe\x3f\xee\xfe\x85\xbf\x6d\xdc\x58\x18\x87\xbf\x8a\x84\xa7\xab\x02\x11\xa4\x50\xf2\x9d\x0e\xa2\x27\x8d\x93\x6c\x7a\xd6\x71\x36\x4e\x36\xdd\x55\xf4\xf8\x47\x89\x90\xcd\x8d\x04\xaa\x24\x14\xc7\xb1\x74\x3e\xfb\xfb\xc3\xe0\x42\x90\xa2\x6c\x67\xbb\x3d\x3d\xef\x7f\xd3\x5a\xc4\x7d\x30\x00\x06\x03\x60\x2e\xd6\x7a\x7b\x33\x91\x43\x39\xda\x22\xa4\xcb\x5b\x2d\x30\x40\x63\x14\xd2\x88\xcc\x6e\x6e\x05\x13\xb2\x7b\x11\x8d\xc7\x19\x6d\x6e\x3c\xf1\x7a\xe6\x77\x9e\x6b\x7f\x85\xd3\x44\x28\x0c\xc7\xcb\x19\x6f\xfc\xd5\xb5\xf1\x57\x44\x8c\xc1\x1e\xde\x9d\xa4\x31\x67\xe8\xf4\xec\xe4\xc3\x4f\x2f\x2e\xde\x9c\xbd\xbf\x78\x79\xf6\xe1\xcd\x09\xa2\x7c\x8d\x09\x9d\x81\x71\x71\xed\x82\x31\x23\xb7\x56\xd2\x14\x80\xf6\xd4\xa8\xa4\x7f\xb9\x5d\x48\x45\x60\x2c\x58\x84\x25\x19\x4c\x15\xd2\xc2\x89\xce\x46\x06\x42\x32\x51\x6f\xcb\xe0\x41\x62\xc9\x3f\xc1\x8e\xd4\x40\x6d\xde\x46\x60\xcb\x6d\x9a\x2e\x45\xdc\x6d\x9c\x24\x31\x18\xad\x9a\xa6\xd9\x25\x07\x0f\xe4\xb3\x34\x8a\x1b\x89\x1c\x20\x42\xa8\x45\x9b\x27\xa4\x21\x4b\xc6\x74\xb5\xd5\x76\xfb\x80\x96\x4a\x6d\xed\x4d\x15\x61\xdc\x68\x9c\x24\x72\xc8\x47\xe4\x77\x8c\x34\xe4\x1a\x90\x33\xe3\x03\x07\x51\xd0\x12\xd4\x5a\x15\xe6\x76\x5b\xe7\xc0\x7a\x0f\x05\xb5\xe8\x86\x76\xa5\x4a\x14\x78\x93\xab\x48\x5c\xf2\x46\x24\x1a\xfc\x6b\x92\x83\x5d\x2e\xb3\xdb\xda\x5a\xfc\x76\x6a\x6b\x31\x2e\xd9\x53\x31\xbb\x69\x8c\x79\x63\x99\xf3\x58\xf5\xbf\x01\xea\xa9\xda\xd0\x97\x9a\x14\xba\x68\xe3\x9c\x73\x6b\xa4\x4b\x37\xf0\x7b\x0e\xc6\xb9\x2e\x97\x49\xcc\xf3\xc7\xff\xe7\xb1\x91\xf2\xce\x1f\xeb\x86\x3b\xba\xdc\x63\xa8\x72\x9e\x66\xbc\x91\x88\x69\xda\x45\xea\x88\x07\xb8\xe8\x5e\x68\x40\xdc\x3b\x84\x11\x96\x30\xa6\x34\x34\xe0\xc4\xc5\xab\x79\x53\x4a\x1a\x91\xac\x26\xb2\x54\x6b\xa1\x57\x85\x05\x53\x4b\xa8\x5c\xb7\x7b\xd6\x88\x36\xaa\x59\xad\xf0\x66\x24\x1b\x8e\x08\xdd\x8c\xd6\xa7\x46\xad\xfd\xca\x8d\xbb\xdb\x50\xae\xb5\xaa\xd1\x71\xa6\x18\x21\x1d\xe9\x2d\x01\x3e\x82\x05\xf7\x06\x5f\x60\x50\xb5\x51\xd5\xf2\x51\xab\x05\x3f\xb5\x56\xa7\xd4\x8c\xd3\x66\x98\x78\xd7\x8c\xe0\x1a\x16\x19\x27\x14\x2a\xb4\xb5\x1b\x31\x63\x88\xa3\x65\xfb\x75\xb0\x96\xcc\x1b\xab\x73\x43\xa3\xc7\xc9\xfb\xd4\x73\x1d\xc4\x6b\x2a\x71\x84\x36\xdd\x9b\xab\x80\x2a\x9a\x29\xe6\x04\x96\x81\x64\x20\xae\x56\x3c\xc9\x82\x70\xce\xba\xfa\xee\xef\x6b\x2a\xd9\xcb\x02\x16\x1c\x27\x85\x6c\x8e\xce\x90\x32\x45\x2d\x87\xc9\x88\xd8\xcb\x8a\x8e\x3a\x21\x3a\x39\x43\x2a\xd4\x98\xea\x3c\xed\xde\x48\x51\x06\x2f\x23\x08\x60\x1f\xcb\xa7\xc1\x31\xc0\x96\x29\xd8\x0a\x69\x7b\x69\x85\xe3\x3b\xa8\x98\x03\x19\x58\xfc\x69\xb5\xac\x25\x9f\xa7\x4c\xb6\x5a\xe7\x38\xa5\x42\xf1\x22\x4f\x99\xec\xf4\x08\x38\xbd\x3a\x96\x9d\xce\x3a\x69\xb7\xd7\x0e\x11\xeb\x92\x6c\x79\x2c\x7d\xd9\x68\x85\x39\xf7\x68\xd6\x6a\x75\xfa\x8c\x81\x4a\x9f\x53\xbf\x03\xd1\x62\x31\x9c\xf3\xd1\x93\x60\xb5\x82\x8f\xa7\xbd\xde\x60\xce\x43\x31\x1c\xf3\xd1\x93\x9e\x8a\x1c\xf3\xd1\xd3\x13\x8e\xc5\xf0\x8b\x1a\x53\x95\x87\x0c\xc6\x2a\xc7\xa5\x2d\x76\xc9\x47\x4f\xfb\xbb\xea\xa4\xc7\x18\x83\x60\xab\x85\x83\xa6\xfa\xbe\x56\xd3\x59\x7f\x9e\x15\x9f\x2f\x54\x1d\x97\xaa\x8e\x6b\x5b\xc7\x35\x1f\x3d\xdd\x3b\x1a\x5c\xab\xc8\x33\x1b\x79\xa6\x23\xcf\x54\xe4\x0b\x1b\xf9\x82\x8f\x9e\x1e\x1d\x1d\x0d\x5e\xf0\xb0\xd3\xa3\xd0\x9f\x0b\xdb\xa1\x13\x7b\x1b\xaf\x7a\xf6\xe4\x0b\x5f\xad\xe4\xd3\x31\xd7\x22\xd4\x63\x60\xe6\xfd\xdc\x8a\xd5\xca\x5b\xad\x4e\x4f\x4b\x51\x60\xc9\xce\x6b\xf3\x80\xe2\xa1\x97\xeb\xbd\xcd\x65\x33\x31\x59\x7a\x44\x5c\x48\xcb\xc1\x56\x1e\x12\xb9\x15\xce\x1f\xc8\xd0\x53\xd9\xb9\xf2\x47\x4d\xdf\x60\xc1\xf5\x95\x79\x6f\xbd\x88\xed\xb4\xdc\x90\x56\x28\xde\x84\xb2\xae\x48\xaf\xb1\xf7\xf8\xd3\xbd\x58\xe6\xfc\xc3\xfb\xe7\x83\xe1\xe6\x8b\x0f\xb5\x51\xa7\x46\xce\x43\xba\xd7\x1b\x09\x62\xea\xba\x4c\xb5\x40\x29\xb7\xc9\xba\xd6\x76\x3e\x2f\xae\xb5\x4e\x14\x68\x91\x46\x6a\xce\x94\xc2\x73\x15\xde\x22\xd3\xab\xbb\x4b\xf3\xc2\xef\x14\x3c\x09\x5f\x5c\x93\xee\xab\x57\x56\xe5\x4a\x76\x3f\x16\x9f\x2f\x48\xc2\x7a\x34\x62\xbb\x54\xb0\x85\xa2\xac\xaf\x5e\x51\x68\x46\xcd\xd0\x6f\x1c\x7f\x95\x98\xd0\x1e\xdd\x25\xf0\x46\xa2\x88\x3e\xe4\xfa\x48\x7b\x84\x62\x9c\xea\xd0\x0b\xda\x23\x44\xcd\xf0\xf4\xe9\x81\x9a\x20\x39\x6b\x06\xc4\x50\x6e\x9f\xf6\x28\xee\xab\x1b\xa7\xd7\x34\xaa\x89\xbd\x31\x7e\x9b\x6c\xa3\x09\x8d\xc8\xb1\x01\xea\xf2\xb2\x00\x6a\x56\x86\xe4\x9a\xce\xe0\xc6\xd0\x99\xf2\xef\xc6\x03\x05\x98\xec\xc6\x44\x4d\xf2\xf4\xe9\xbe\x03\xc9\x4e\x99\x2e\x1f\x40\x0e\xde\x4e\x28\x96\x5d\xae\xf2\xc9\x2e\xf7\x72\x92\x30\x65\xc9\x3a\x53\x7d\xca\x9e\xfe\xc2\xb1\x00\x70\x06\x35\x73\x9e\x35\x03\x53\x6d\x5e\x93\x1c\x47\x37\x2a\x03\x5e\xb2\x5f\x55\x25\x66\x88\x88\xeb\x0d\x5b\x42\x6f\xe0\x8d\xdd\xae\x37\xb6\x2c\x5e\xc2\xb4\xe7\xe8\x42\x7f\xcf\x5b\x93\x91\xea\xbf\xc3\x4a\xaa\xfe\x12\x8a\xfd\x4c\x4f\xdf\x72\x1c\x91\xd5\x0a\x94\xf5\xbd\x78\xd5\xcb\x2d\x6b\x5d\xf5\x9d\x0a\xf6\x91\xe3\x88\x06\x25\xa8\x0c\xcc\x73\xb5\xe3\x55\x66\xbc\x9d\xa6\x2e\x41\xcf\x67\x7b\xa5\xba\x53\x9a\xbe\x72\x04\x02\x40\xe6\x9b\xc1\x4d\x6b\xaa\x62\xd5\xb2\x74\x17\xb0\xa5\xe4\x52\xe9\x41\x1f\xac\xd2\xf5\xc2\x20\xb4\xf5\x01\xad\x84\x00\x90\xcb\xc0\x86\xae\x4b\xa1\xb3\x52\xe8\x05\x10\x56\xde\xbd\x30\xc7\x4e\xd6\x0c\xa8\xad\x82\x05\x5a\xe8\x81\xe1\x62\xe5\x7f\x2c\xfb\xaa\x2b\x96\x9b\xf5\x2f\xea\xa8\x47\x39\xf5\xee\x07\xe4\x65\x99\x34\x90\x56\x6b\xd9\xcd\xbd\x18\x4e\xe8\x72\x4d\xfc\xb7\xe9\x25\xa1\xb0\xa4\x0c\x58\x56\x9d\xd3\xbe\x16\x87\x36\x02\x42\xc5\xc4\x91\xdf\xe6\xc0\x19\xc4\xe6\x71\xfa\xd4\x5c\x95\x79\xe5\x6d\x14\xe9\x70\xa3\x2e\x5b\x60\x47\xa3\x2a\x32\x37\x48\x96\x48\xd5\x1f\x58\xba\x17\xd7\x5d\x30\xd2\xab\x7e\x9b\x8c\x25\x76\xb6\x55\x74\xcd\x41\x5b\x0c\x5e\x1b\x6e\x24\x7b\xfc\xff\x3e\xe5\x8f\x30\x1e\x84\x5a\x6a\xfc\x76\x7f\xbd\x02\x01\x77\xd2\xc1\x83\xf0\x53\xfc\x29\xee\xa8\x3f\xab\x8f\xe6\x53\x7f\xac\xb4\x30\x3b\xfc\x10\x82\x07\x21\x7e\xbf\x6a\x10\x6c\x85\xce\x2b\xbf\xc3\x2e\x1d\x7d\x8a\xdb\x64\x00\xff\xf0\xf0\x53\xfb\xd3\x86\x80\xfa\xea\x53\xfe\xe8\x37\x95\xfe\x97\xc7\xf4\xcb\x1d\x50\x19\xa0\x0a\x98\x1e\x06\x52\xf9\xe7\x7b\x01\x9a\xcb\x6d\x62\xf5\x74\x2c\xd9\xd0\x4a\xd2\x76\x4e\x4f\x3b\x27\x27\x88\x3e\x76\x40\x77\x1c\x02\x1f\x8f\x8c\xc0\xad\xcb\x04\xfd\xa9\x64\x78\xf5\xea\xd5\xab\xce\xf0\xe3\xe8\xe3\xc7\xce\x0b\x97\xc5\xa2\xbe\x92\xa3\x9c\xfe\x98\x36\x7b\xae\x89\x93\x52\x03\xb7\x3b\x6b\xbf\xf5\x52\xd3\x7e\xb1\x5f\x7f\x3d\x3d\xf5\xc1\xef\x05\x45\x39\x93\xf2\x29\xbe\x3d\x5c\x3b\x38\x00\x0c\x07\xe7\xc7\xa2\x25\x97\xe8\xa7\xf5\xd7\x7e\x63\x0e\xc4\x83\xf5\xe3\xd1\x88\x5e\x02\x1a\x7f\xfc\x51\x5f\xfc\x74\xcf\xcf\xcf\xcf\x21\xf9\x53\x1c\xba\x3f\x9f\xba\x9f\xe2\x36\xd4\x6f\xf3\xd1\xda\x7c\xb4\x9a\x6d\x23\x47\x91\xea\x27\x99\xd8\xf9\xbc\x0c\x80\xfb\xe7\x35\xaf\xf2\xd0\x9a\x3c\xb4\x9c\xa5\x92\xea\x52\xbc\x78\x13\x67\x62\x14\x2a\xae\x61\xf6\x3f\x1e\x28\x92\xf6\x09\xe3\x4f\x9d\x81\x9a\xaa\x8f\x93\xe2\x16\xe4\x4c\xd6\x32\x1f\xa0\xc8\x4d\x73\x76\x23\xbb\xfc\x2b\x9f\xe0\x25\x59\xad\xbe\xb8\x6f\xc5\x98\xe4\x9a\x05\x03\x9a\x90\xe4\x29\x98\x4b\x00\xdd\xa3\xb1\xac\x2a\x1f\x25\x53\x3c\x96\x43\x39\x1a\xf6\x46\xba\x86\x7c\xa8\xce\x08\xb7\x29\xd3\xd1\xc1\x88\x66\xac\xd9\x6b\x32\x13\xee\x5b\x0f\xcb\xee\xc0\x98\x12\xcf\x6c\x0d\xf6\x2c\x40\x34\x7b\x1a\x98\xe1\x8e\x51\x06\xd6\x30\x5c\xd6\xc1\x70\x59\x81\x61\x47\xc1\x90\x30\x9c\x0f\xfb\xa3\xd5\x0a\x35\x10\x69\x5f\x1a\x78\xaa\xed\x27\x77\xb4\xbf\x06\x03\xa3\x56\x01\xfe\xae\x9c\x1a\xd2\xdd\x11\x9c\x82\x9a\x73\x69\x01\xd9\x75\xd6\x47\x6b\x4b\x45\x0c\xfd\x86\xd6\x60\x54\x21\x6d\xe3\x64\xb5\x42\x88\xb4\x71\x04\xbf\xf4\x14\x94\x4b\xe1\xd0\x5e\x2a\x06\x24\xf9\x85\x1a\x7e\x45\xbe\x4e\x53\xb1\x7a\xbf\xe4\xab\x8f\x3c\x5e\xbd\xbf\x5a\xae\x5e\x66\xc9\xea\x3c\x92\xab\xf3\xa5\x20\x74\xf0\x29\x27\x03\x6c\xee\x1c\xc9\xa7\x1c\xff\x3d\x12\xab\x97\x7c\xbc\x3a\x8d\xb2\xd5\xb3\x45\xb6\x3a\x8d\x6e\x56\x7f\x5f\x8a\xd5\xdf\x97\xb3\xd5\xb3\xe5\xe5\xea\x9c\x2f\x56\x67\x13\xb9\x7a\x93\x7e\x59\x9d\xf0\x89\x2a\xa2\xd6\x24\xdd\x5d\xeb\xcf\x4f\x31\x09\xf5\x8f\x22\x6f\xfa\x8b\x0c\x3e\xe5\x0a\x92\x0f\xef\x57\xaf\x4e\xdf\xaf\x86\x2f\x9e\x9f\xbe\x1d\x0d\xcf\x4f\x46\xef\xc9\x0a\x0f\x7f\xfb\x36\x52\x3f\x9a\x56\xec\xae\x09\xf9\xcb\xe3\x62\x8a\x9e\x17\x53\xb4\x22\x36\xef\x0c\xf9\x3e\x61\xbb\x47\x83\x3e\xdf\x69\xcb\x50\x82\x26\x04\x48\xc6\xab\x10\xe0\xe1\xbd\x64\xb7\x1f\xde\x87\x01\x7d\x75\xaa\xfe\xbe\x38\x79\x1f\x76\xfa\xbb\x01\x7d\x71\xfe\x3e\xec\xec\x04\x01\x7d\x7e\x62\x3f\x20\x66\x3f\xa0\xa7\x27\xf6\x43\xc5\xec\xf6\x03\xfa\xf6\xc4\x7e\x40\xcc\x61\xe0\xdd\x25\xbe\xf5\x40\x7c\x61\xc6\x55\x0d\x87\xa7\xeb\x83\x87\xff\x8f\x8c\x1e\x7d\x22\xab\xe1\x27\xf1\x49\x82\xda\x4d\xc3\x57\x06\xc2\x9f\xf2\x4f\x79\x9b\x6c\xc4\xff\x3f\x15\xff\xe8\x71\x45\x73\x48\xc5\xfd\xe5\xb1\x96\x31\x04\xf3\xdd\xe6\x36\xb2\x8e\xbb\xd1\x69\x11\x1b\x02\x22\xe9\x33\x27\xeb\x8d\x25\xa1\x0e\xa1\x42\x21\xb4\x08\x66\xe5\x60\xaa\x82\x85\x5e\x5e\xab\x65\xde\xf3\x5d\x86\x44\x65\x20\x34\x5a\x63\x39\xdc\x1d\x51\x39\xdc\xd1\x1a\x95\x54\x0e\xf7\xd4\x9f\x7d\xf5\xe7\x40\x7b\x9a\x6a\x56\x9f\x35\x12\x67\x6e\x3f\x63\xaf\x0a\xf0\x40\x05\xd7\x71\x64\x52\xd1\x89\x42\x53\xd3\xb1\x47\xaa\xc6\xac\xe9\xd1\x08\x78\xa9\xd9\x64\x53\xa8\xf0\xd7\x07\x75\xda\xf6\xcd\x40\xc1\xdc\x1b\x81\xfe\x8f\xa9\xe3\x58\xf1\x49\x4c\x50\x63\x79\xa4\x16\x5e\xd3\xda\x7b\x39\xe4\xa3\x63\xdf\x84\xba\x75\x33\x5c\x41\x6d\xca\xb2\x1f\x7a\x41\x00\xfe\xf9\x3b\x29\x79\xdc\x0b\x9c\x91\x85\xfd\xe0\x51\xd2\x4e\x15\x18\x87\xaa\x77\x47\xd0\xcf\x60\x64\xf8\xd7\x8f\xdc\x67\x1d\x15\x64\x3a\xe1\x7b\x98\x40\x20\xd3\xc6\x16\x12\x6b\x06\x75\x04\xa3\x50\x52\x92\xd6\x66\x7a\xf7\x62\xda\x64\x2c\xeb\xbe\x3e\x3f\xbb\x38\xdc\x0f\x7a\xc4\x8f\x7c\xf7\xf2\xf9\x85\xaa\x8e\xdc\x02\xb2\x86\x23\xdd\x08\x58\x2e\x62\xcd\xe0\xb8\x7a\x7a\x47\xa8\x6d\x36\x95\xa5\xbd\x35\x9a\x19\x73\x1a\x29\xfb\x05\xea\xa5\xee\x3c\x49\x9c\x56\xeb\x6a\x35\x1c\x99\x23\x48\xa1\xd5\xaa\x08\x3a\x9c\x37\x28\x16\x0c\x2f\x4d\xe6\x09\xc7\x89\x1a\x43\x55\x84\x0c\x03\xd0\xd9\xc7\x11\x5b\x16\xcf\x61\x4b\xcf\x3b\x1a\x21\x9e\xe3\x79\x00\xdd\xb3\x60\xa5\x67\x77\x44\xe8\x52\x15\x87\x9b\x2a\xbf\x6c\x5b\x38\x93\x20\xb3\x36\x2b\x02\xff\x1c\x26\xa3\x01\x16\x03\x1f\x13\xbd\xd0\xab\xdc\x98\x44\xb2\x72\x2f\x37\x0a\x62\x98\x77\xa1\x67\x5e\xa9\x29\x4a\x00\x95\xcb\x1c\x43\x4a\xc9\xea\x12\xcb\x3b\x33\xba\xbc\xb7\x37\x4b\xe2\xce\x46\x4f\x58\xaf\xdf\x6a\x35\x03\x7b\xfd\x65\xde\x35\x81\xdf\x87\x0c\xaa\x16\xec\x27\x19\x63\xbf\x66\x26\x55\xcc\x5e\xc1\x61\xcc\xf9\xa0\xd2\x59\x8a\xb7\xe5\xe2\x9d\xb9\x38\x9b\xd5\x3e\x6c\x1e\x97\xec\x8e\x89\x81\x0c\xed\xc9\xc7\x56\xa0\x20\x19\x94\x83\x20\xb0\xee\x32\x26\xf9\xdb\xd3\x01\xc6\x99\xf9\xd4\x36\x02\xe4\x13\xd5\x5b\x2c\xdb\xac\xd7\x27\x34\x5b\xad\x7a\x7d\x6d\x06\x5d\x71\x0b\x84\x4a\x12\xca\x75\x61\xea\xc7\x01\x49\x3d\xc8\x09\x85\x2b\x29\x1a\x17\xdb\x2d\xd0\x7c\x7d\x5d\x0e\x4c\x54\xb1\x80\x3e\x4b\xdf\xc4\xff\x45\xa2\x2f\x1e\xa7\xde\x45\x94\x31\x2a\xe4\xbe\x56\xab\x29\xdc\x02\xcc\xf4\x61\x8f\x01\x74\xce\x5e\x96\x68\xb5\x10\x68\x11\x0c\x6e\xf0\xad\x67\x3b\x2d\x58\x93\xb0\x4e\xcb\x40\x9f\xf3\x12\x26\xbd\xfb\x99\x45\xc6\x17\x56\x7f\x80\x5e\x63\x49\x06\x8a\xb0\x5e\xe2\x18\x74\x10\x42\x9c\xab\x28\x20\x37\x32\x4c\xb1\x20\x83\xad\x77\x53\x8a\xd6\x99\x03\xf8\xb4\x6c\x87\xbd\xa1\x99\x41\xdf\xd4\x98\xa2\xbb\x96\xa7\xa9\x5a\x22\x32\x4b\x3f\x38\x4e\x9f\x78\x75\x1d\xa7\xb0\xb8\x15\x37\x39\xd7\x86\x40\x8a\xf3\xaf\x3e\x2e\xab\xa1\xb4\xdf\x45\x2c\xa1\x52\x71\x48\xaa\xa6\x61\x3a\x52\x7c\x91\x24\xf4\x4a\xeb\xa2\x26\x6d\x30\xef\x54\x5e\x35\x34\x69\xb3\x5e\xf0\x48\xdb\xfe\xda\xb4\x57\x46\x21\x21\x9f\xa4\x19\x67\x09\x35\x7c\x60\xb6\x5a\x25\x4f\x32\xad\xde\xaa\x86\x55\xaa\x5e\x60\x4e\xc5\x6a\x25\xe1\x92\x27\x14\x03\x20\x9f\x9b\x6a\x54\x30\x13\x8e\x23\x87\xe6\x8d\x7b\xca\x30\xdf\x4c\x73\x36\xfd\x54\x7a\xcd\x48\x6f\x8e\x12\xbb\xf6\xd8\x0f\x2d\x42\x09\x33\x07\xc3\x1c\xd5\xc6\x9f\x0a\xba\xdf\x6a\x59\xb7\x8f\x45\x1c\x7d\xfb\xe0\x9c\x99\x31\x9e\xfa\x32\x4b\xe7\x30\x27\x5f\x5a\x07\x9f\x9c\x58\xdd\xb8\xa2\x33\x6d\xb5\xcb\x6a\x2c\xa5\xaa\xab\x70\x19\xc1\x66\xb8\xf0\x5e\x57\x27\xcc\xbb\xa1\x28\x09\x0b\x91\x84\x09\x3c\x47\x7a\xf9\x8b\xab\x61\x8d\x88\x67\x06\x05\xa6\x95\xa1\xd4\x77\x74\x46\x91\x8a\xca\x6e\x1c\xdd\xac\x56\x12\xf4\x65\xa8\x04\x29\x24\x95\x08\x5b\x27\xb5\x16\xa3\x21\x66\x36\x4b\x74\x68\x54\x07\x20\x6f\xb5\xea\x61\x5c\x43\x57\x97\x35\xa3\x4a\xc2\xbb\x30\x07\x97\x85\x57\xd8\x1a\x20\x8b\xb5\xab\x59\xb5\x49\x14\x24\xc6\x33\xe2\xe8\xee\xae\x9c\xbf\x90\x26\xbc\x29\xb4\x5a\x70\xa4\x12\xab\x15\xce\x98\xa0\xc2\x51\x70\x9c\x60\x4e\xca\x97\xcf\xc9\xd4\x73\xdc\xe7\x19\xb7\x7c\x13\xcd\xb9\xf3\x6e\x1a\x14\x56\x7d\x6a\x72\xa9\xa5\x6f\x56\xb0\xa7\x36\xa8\xcd\xb6\x00\xdb\x50\x36\x9b\x59\x68\x3b\xfa\x1e\x17\xa0\xd3\x29\x80\x17\x78\xba\xb9\x60\xe8\xd2\xc1\xbf\xdc\x34\x52\xd7\x54\x5b\xbb\x25\x09\x4b\x6b\x11\x2e\x52\x91\x33\x26\xa0\x04\xe3\xea\x67\xca\xa4\xfa\x31\xf6\xe6\x32\x5a\xff\x7e\x00\x64\x11\xa8\x78\xf1\x7c\x20\xfd\x6b\x34\xed\xcf\xa4\xa7\xe5\xc1\x8b\x14\x07\xa2\x5c\xe3\xa5\x6f\x44\x49\xde\x69\x85\xb3\x47\xd6\x5b\xe7\x03\x7b\x8b\xb5\xbd\xcf\xc6\x22\x4b\xbf\x24\x31\x8f\x1b\x89\xf6\x7b\x06\x3e\x9b\x32\x3e\x49\x2f\x45\xf2\x8d\xc7\x8d\x77\x2f\x9f\x2b\x76\xac\x91\x66\x8d\xd7\xe7\x67\x8d\x29\xd0\x5f\xfb\xfe\xdc\x70\x7e\xf9\xe1\xe5\x31\x9a\xcd\xf2\x86\xaa\xbe\x21\xd3\xc6\xef\xb9\x9e\x96\x84\x36\xae\xaf\x92\xc9\x95\x6d\x20\xe3\x33\x70\xd6\xd2\x88\x26\x59\x9a\xe7\x8d\x68\x36\x6b\x8c\xb3\xf4\x3a\xe7\x59\xde\x88\x44\xdc\xf8\xc2\xb3\x1c\x1c\xe1\x34\xde\xa4\xc2\xb6\xff\x58\x35\xae\xd6\x94\x81\x20\x6f\x44\x19\x6f\xc4\x49\x3e\x49\x97\x59\x74\xc9\x63\x28\x7a\x9d\xa8\xca\x78\x23\xe3\xf3\xf4\x8b\x76\xde\x16\x89\xc6\x72\x31\x49\xe7\x89\xb8\x6c\xcc\xa3\xdf\xd3\x4c\x01\xc0\xa3\x9c\x77\x1b\x6f\xe1\xb7\x91\xf1\x29\xcf\x14\xc4\x0f\x7b\xf9\xfe\x3d\xef\x28\x38\x36\xde\xbc\x4b\x83\x5e\x5e\x99\x8a\x62\xb4\xbd\xfb\x62\xd4\xb0\x0a\x72\x5a\x45\xdb\x32\xc2\xbe\x6d\x98\x35\x2d\x78\xe1\x52\x3c\xac\x83\x0b\xa9\x46\x50\x43\x8a\x89\x22\x2f\x0a\xbd\xd6\xd2\x13\x8f\x69\xc3\x13\x35\x98\x47\x5f\xc1\xc4\x16\x8f\xe2\xee\x03\x3b\x39\x4f\x44\x67\x1e\x7d\x7d\x8c\x36\xcd\x04\x7c\xdd\x62\xc2\xb8\xe4\x3a\xda\xd3\xa7\x2e\xe9\x68\x83\xae\x2f\x78\x78\x0f\x79\x78\x03\x96\x76\xde\x54\xba\xa2\x80\xdd\xde\x15\xd5\xd1\xff\x1d\x5d\x79\xba\xd1\x95\xe2\xe0\x7e\x22\x4b\xf6\x2d\x14\x6f\x03\xaf\x9a\xce\x68\x69\x0a\xe7\x4e\xfd\x5e\x0a\x5f\xb4\x29\x2b\x5c\xcf\x57\x89\x8d\x05\x31\xc8\x41\x33\xd6\x3b\xce\x9e\xc8\x42\x51\x3a\x23\x72\x98\x8d\x4a\xaa\xeb\x2a\x62\xc8\x47\x58\x28\x22\x2f\xb4\x95\xc8\xc2\x32\x17\x68\xce\x4a\x36\xb4\xa6\x13\xfe\xb9\x8c\x32\xc9\xd5\x97\xd5\x45\x36\xba\x44\x5a\xdf\xc4\x48\xbd\x5a\xd1\x2e\xa4\x37\x2b\x88\x71\x5b\x17\xf2\x2c\x82\xbe\xf3\xf8\xd3\x67\xf0\x32\xc5\xf4\xe6\xb8\x5a\x05\x34\x63\xb2\x6b\xda\x53\xc1\x94\x99\x0d\x53\x05\x12\xa6\xb5\x3f\xd4\xb6\x69\x34\x58\x54\x74\xc4\xcc\x66\x1a\xd0\x25\xd3\x3b\xa9\xfa\xce\x99\xdd\x4e\x55\x68\xc6\xec\x9e\xaa\x42\x13\x56\xda\x58\x57\xab\xc0\xc8\xe0\xdb\x03\x69\xad\x88\x82\xdb\x4d\xe0\xe9\xf9\xb3\xb1\xae\xf7\x5c\x52\x49\x9c\x25\x4a\x10\xc2\x32\xaa\xf5\x43\xe9\xfb\xf5\x29\x7c\x58\x35\x7b\xc6\xf4\xea\xf3\xd2\x28\xa9\x6d\x6a\xf8\x5c\x8d\x85\xbe\xa2\x13\x45\x59\xd8\xe1\x5f\xce\xd2\x48\x16\x59\xc0\xb8\xa3\x0b\x69\x4f\xeb\x01\xf1\x6f\x15\x9c\xe2\x63\xd1\xd3\x9c\xb5\x27\xed\x1e\xdf\x79\x34\x6b\xef\xf3\xdd\x47\x39\x7c\x2f\x1f\xed\x07\x8f\xf6\x03\x6b\xf2\x33\xba\xc9\x59\x3b\x6a\x1f\x3c\x4a\x4a\x8a\x93\xac\x9d\xb6\x77\x1e\x65\xed\x5e\xff\x91\x70\x59\x65\xc4\x6e\x8d\x67\x76\x7b\xaa\x98\x4a\x2b\xff\x7e\x31\x5e\x8e\xc7\xb3\x92\x71\xa4\x67\x72\x9b\x41\xbf\x77\x9e\x7a\xe3\x6b\x59\xb1\xd5\xd9\xe9\x3d\x02\x2d\xbf\x2c\x5d\x8a\x18\x77\x7a\x8f\x38\x09\xbd\x08\xff\xf4\xf3\x72\xbb\x0c\xbf\x67\xbe\x64\x29\x27\x46\x61\x58\x4d\x3f\xd4\x46\xc5\x13\x5b\x00\xbb\x7d\x87\xab\xf8\x0e\x22\x54\xb4\x7f\xc2\xff\xfd\xdf\x98\x3f\xde\x0f\x40\x26\x5c\x42\x98\xff\xb0\x1f\x80\x34\xf8\xfa\xa5\xc4\xe8\x37\x44\x51\x88\x08\x85\xef\xdf\xc0\xce\x0e\xc8\x5c\xff\x86\x68\x64\x0c\x8c\xfc\x66\xbe\x41\xce\x59\x65\xf9\xed\xb7\x7a\x79\x69\xc3\x46\xe8\x1b\x23\xf9\x6d\xce\x3e\x48\x1c\x71\xea\xb4\x87\x7e\x92\xec\xb1\x79\xe7\xd1\x2f\x44\x8f\x2f\xbd\x0b\xf5\x0f\x3e\x45\x61\x58\xc2\x35\xad\xb9\xa0\xd0\x8e\x24\x0d\x4f\x2e\x36\xbc\xc6\x67\x4c\x0c\xed\x5d\x42\xa7\x37\x82\x9b\x8f\x94\xe1\xac\x5d\xd4\xf0\x93\x9a\xe9\x43\xd4\x01\x91\xfa\x11\x4d\xd8\x7e\xf0\x28\x1d\xf6\x46\xed\x17\x38\x1d\xf6\x0b\x1a\xa2\xb8\xa7\x64\x10\x84\xa8\x0d\xee\x05\x87\xc1\x68\x90\x84\x1d\xcf\xe8\xe8\xcf\x25\xc2\x97\x7a\x5c\x8e\xd6\x0c\xc7\xe0\xb5\x7e\x96\x0a\xc5\x17\xa4\x0c\x5f\x03\x6b\xa6\xb8\xbc\x01\x2f\x0e\x25\xa1\xe2\x6c\x88\x77\x48\xe9\x88\x22\xa0\xd0\x07\x97\x54\x60\xa5\x16\x02\x2e\xad\x9d\x6e\x28\x8e\x0b\x10\xe2\x17\xb6\x4e\x98\xcc\xfe\xcc\xfd\xe8\xcf\xc9\xde\xde\xa3\x8e\x3f\xff\x3c\x7b\xb8\xdf\x52\x61\xab\x24\x8f\x7b\x7b\x5e\x0d\xff\x94\x4e\xf7\xa0\xd9\xac\x6e\x19\x96\xfc\xc0\x01\x13\xac\x54\x43\x84\xb6\x17\xbc\x2e\xc3\xba\xb9\xcd\xff\x0a\x37\xed\x9f\x3a\xab\x4f\x6d\x32\xc0\x83\x10\x7f\x8a\x1f\x91\x61\xb7\x31\x82\x9b\xf5\x36\xf9\x14\xc2\x0f\x1e\x84\xf6\xeb\x53\x57\x65\xd1\x6f\x82\xdf\xa0\xb4\x2e\xfc\x56\x95\x1e\x76\xda\xa3\xc1\x30\xe8\x1c\xd1\xee\xe8\x11\xf9\x55\x57\x59\x8e\x3c\xad\x8b\xfc\x58\x17\x79\x02\x91\xef\x37\x13\x7e\x7c\x70\xbd\xe7\x1a\xd0\x62\x96\xff\x22\x2b\x56\xa5\xa9\x56\x29\xf6\x9d\x71\x00\xa9\x19\x24\xec\x76\x9e\xab\x93\xa0\x4f\x04\x69\x1c\x6a\xa9\x84\x9c\x9e\x42\x1a\x10\xb8\x75\xb8\x34\xfa\xca\x8a\xa4\x0d\x40\xbf\x9d\x87\x49\xb7\x44\x3e\x39\x09\x71\xc4\x7e\xb5\xa7\x5c\x42\xd4\x54\x45\x1d\x35\xcd\xa3\x61\x6f\x34\xe8\xf4\xc2\x1e\x4d\xd8\xed\x4d\x18\xd0\x38\x7c\x81\x41\xa6\x81\x3c\x12\xf4\x0a\x02\x97\x3a\x30\x87\xc0\xb5\x0e\xe4\x10\x38\x33\x29\x2a\xf4\x5a\x62\x45\x97\x41\xc0\x80\x90\x47\x62\x0d\x8d\x7e\x7b\x40\xa3\x7f\x93\x38\x1a\xf6\x47\x54\x10\x7a\xaa\x03\x3b\x10\xb8\xd6\x81\x5d\x08\xc4\x3a\xb0\x07\x81\x2b\x1d\xd8\x87\xc0\x5c\x07\x0e\x20\x90\xeb\xc0\xa1\x76\x7d\x1e\x9a\xa7\x28\x85\xd1\x75\xb8\x69\x18\x37\x69\xb5\x30\x9a\x66\xe9\x1c\x29\xd6\x6b\xb5\x42\x32\x85\x2f\x52\x36\xa2\x58\x23\xdf\x5b\x5a\x06\x65\xa3\x84\x3f\x4b\xb0\xca\x47\x55\x9e\xbf\xf1\x69\x9a\x71\xb8\x3a\x62\xaf\xf4\xf8\x87\x18\xc3\xb7\xca\x43\xca\xe3\xd4\x11\xa5\x30\x15\xc6\x3c\x02\x24\xc0\x17\x2c\xf6\x5b\x3f\x53\x18\x58\x09\xf1\x60\xbd\xc6\x5f\x25\x4e\xba\xaa\x43\x84\xc2\xa7\x4c\x89\x3a\xbc\xb2\xdb\x35\xe9\xce\x73\x96\x96\xeb\x4f\xba\xa7\x2a\xca\xd4\x9c\x69\x0d\x35\x89\x13\x42\x61\x1e\xb6\x5a\x13\xcc\x29\x32\x7b\x24\xb8\x4e\xc8\x36\xef\xe1\x08\xf5\xa4\x8a\xff\x56\xa2\xe4\xf6\x98\x6f\x98\x80\x42\x3e\x9c\x22\x8a\xba\xc8\x1d\x14\xb1\xb5\x4a\x34\x08\x42\x41\x1e\x79\x9b\xea\xab\x52\x7d\x5b\x3b\x5e\x38\xb5\x33\x08\x93\xd6\x34\x4e\x87\x17\x46\x72\xfa\x8f\xb0\xb4\x4a\xf4\xce\xd2\x11\xe5\x96\x64\xc3\xf9\xd4\xd6\x00\xa6\x6b\xba\x49\xfe\x6c\x2a\x79\x06\x37\x62\x1d\x37\x08\xb4\x3c\x4c\xac\x2d\x3b\xed\x3b\x6a\xf1\xed\x6a\xff\x45\x6e\x31\x26\xe5\x14\x7d\xcb\x17\xba\x70\x7b\x06\xc8\x69\x67\x8a\xed\xfd\x1d\x4b\x5a\x1c\x27\x50\x5b\xb6\x11\x5e\xf0\x2c\x49\x63\xda\xd0\xee\x47\x48\xf9\x80\xe1\x0e\x82\xc5\x39\xc3\x15\xd4\x05\x68\x43\x57\x40\xba\xdf\x21\x21\x1d\xc5\x71\x27\x11\x5f\x78\x26\x79\xdc\x59\x44\x59\x34\xaf\x11\x93\x4e\xe1\x0a\x25\xa3\x19\x4b\x09\xfd\xbb\xd1\x46\xff\x45\x2a\x32\xb0\x71\x2d\x27\x06\x6d\x11\x2a\x2c\x58\x33\xee\x9e\xf9\x81\xbf\xdb\x73\xbf\x35\xf5\xc0\x64\x85\x34\x46\xec\xb5\xc4\x52\x53\x47\x42\x97\x26\x64\x26\xf6\x71\x69\xb1\xe2\xd4\x48\x55\xa5\xab\x55\x4a\x97\xad\x16\x18\xa7\x01\xd3\x5b\xd6\xde\x4a\x7b\xf9\x48\x10\x1a\xb5\x5a\x60\x44\x0b\x9d\x80\x12\xca\x45\xf1\x4d\xda\x91\xca\x90\x14\x72\x45\xb0\x5b\xf3\xf2\x6e\x9d\xa8\x3c\x69\xab\x55\xd9\xb2\x39\x8d\x56\xab\x25\x21\xeb\x5f\x64\x77\x2a\xd8\x3b\xcf\xdc\x33\xfd\xc5\x39\x9d\xa8\x31\xa4\xfa\x8b\x84\x2b\x60\xbd\x77\xfe\x43\xb2\xbf\x48\xdc\xa3\x28\x8a\x63\x44\xe8\x6f\x10\xec\xf4\x28\xca\x97\x63\x99\x45\x13\xe9\x9b\xdf\xf9\xaf\xea\xc6\xc3\xea\x97\x42\x1b\xd7\x2c\x1b\x2d\x75\xe5\x4f\xee\xd4\x1c\xa9\x72\xcf\xf1\x73\x27\x79\x12\x28\xfa\x5e\xc9\xa9\x20\xb2\x79\xc1\x2e\x57\x27\x21\x8f\x71\xd2\x11\x84\x84\x9b\xb9\xdb\xb5\xb9\x45\x27\x21\x84\x76\x70\x0a\x2b\xc0\xb3\x7a\xfc\xa3\x27\x0b\xee\x89\x02\x68\x0f\x3d\x03\x9f\xbd\xd7\xb2\xdf\x61\x21\x18\x0a\x62\xe4\x70\x40\xf5\x0f\x01\xd6\x3a\xdb\x3a\xb3\x0e\x94\xcc\x85\xbc\x27\x38\xf4\xde\x0a\xb5\xfc\x86\x68\x25\xdb\x07\x39\xa9\xcd\x39\xfc\x6d\xa4\xdd\x26\x71\x51\xba\x0c\x98\x45\xe2\x12\x6f\x2c\xd7\xd7\xfa\x02\x80\x96\x17\xac\xaf\xbd\xdb\x90\x69\x03\x54\x3c\xae\x78\x43\xd5\xb1\x8c\x2e\xb9\x51\x89\x58\x6a\x0f\xd8\xdd\xc6\x87\xcd\xc2\xd8\xd7\xba\xb0\xe5\xf2\xca\xd5\xce\x16\x3c\xfa\xcd\x87\x5e\x8c\x36\x0f\x50\xe8\x08\x57\xd5\x77\x0d\x66\x8b\x31\x13\xc2\x1e\x74\x02\x3a\xe4\xd4\x5e\x56\x8e\x68\x50\x72\x06\x94\x89\x0d\xf3\x2e\x65\xba\xc8\x07\xdf\x8c\x91\x24\x95\x03\x26\x70\x88\x13\xf6\x8b\x33\xf9\x22\x9f\x26\x70\xff\x90\x90\x5a\x6b\xa0\x9a\x8c\x94\xac\xc8\xd0\x88\x7d\xe4\x38\xd1\x37\xde\xe0\x6f\xcd\x09\x80\x1e\x6f\xd8\x7e\x8c\x36\xed\xdf\x50\xcf\x22\x5b\x54\x96\x13\x35\x69\x60\x65\x2a\xaa\x4a\x8a\x2a\x5a\xe7\x39\x2f\x29\x00\x22\x6b\x6d\x26\xf2\xf2\xf2\x6e\x1d\xe9\x6b\xce\x3f\xff\xba\x69\x90\xf2\xd5\xab\xbb\x8b\x99\xcb\x88\x52\x49\x21\x30\xba\xbc\x54\x0d\x22\x5b\x2b\x2a\x62\x6b\xa2\x5f\xbd\x52\xcd\x20\xaf\x2e\x2f\x61\x33\xc5\x98\x01\xd1\x56\x16\x55\xc7\x7c\x43\x20\x26\xf6\xd5\xab\xc2\xb6\xcb\xaf\xd6\xf0\xe5\xcb\x4a\x2e\x63\xfe\xe3\x55\x61\x0b\xf3\xb2\xf8\x54\x0d\x3b\x3d\x63\x05\xb5\x0b\x68\xa0\x0a\x1b\x99\xba\x53\x45\xd8\x40\x5d\xd8\xcc\x34\xdd\xd6\x11\x60\x35\xc3\xe0\xc1\xe2\xc3\x74\x53\x17\xbc\xd7\x66\x4c\xbf\xb0\x19\x63\x2a\xd3\x1d\xde\x28\x98\xaa\x82\xe9\x1d\x66\x32\x7f\xc5\xe8\x67\x30\x39\xf3\x73\xea\x5d\x76\x01\x3a\x8b\x9b\xaf\x9f\x35\x26\x5d\xc4\x81\xee\xd4\xcf\x88\xfe\x4d\xab\xcc\xfe\xbc\x69\x68\x73\xce\x47\x6c\xe7\x11\xd6\x66\xf0\x4c\x4b\x27\x88\x0e\xd1\xc9\x89\x36\xd2\x73\xa2\x6d\xdc\x48\x6e\x6d\xbc\xc0\xfd\xd9\x89\xb5\xdf\xa2\x42\x47\xba\x9d\x13\xa7\x13\xae\xca\xba\x41\x38\x49\xb7\x98\x49\xe1\x03\x69\xc4\xae\x37\xf4\x3b\x57\x2b\xd9\xbd\x48\x7d\x85\xcf\xad\x59\x7f\xe2\x22\xe1\x42\x5a\xed\xec\x13\x05\xdc\x09\x1a\xd1\xb1\x31\x6d\xba\xd9\xbc\x04\x11\xee\x17\xd8\x9a\x05\xff\x0d\x04\x21\xac\xef\x3c\x01\x4a\xbd\x9a\x09\x68\x06\xe4\x58\xe1\xe3\xc4\x60\x44\xfd\xee\x28\x9c\x9c\x18\xac\x18\x8a\xe1\xcc\xdf\x98\x20\xe4\x70\x16\x6e\x6c\xe4\xae\x45\xce\x09\xa2\x9c\xbb\xc0\x09\xa2\x7f\xb1\xc0\x9f\x68\xf0\xa1\x03\x35\xd7\x2e\x85\xe4\x7c\x61\x89\x68\xae\x40\x9b\xcf\xad\x15\x06\x73\xc3\xa9\xad\x32\xda\xdb\xce\xb9\x31\xcb\x68\xc2\x3d\x03\xc9\xdc\x0d\x98\x2a\x0f\x03\x06\x60\xcc\x55\x91\x39\x1a\xd1\x6b\xae\x91\x12\x69\xa4\x9c\x5a\x4d\xd8\x66\x0f\xf0\x92\xab\xa6\xf3\xdc\x36\x6d\x6e\x51\xa1\x69\x77\xbf\x9a\xeb\xa6\x6d\xb8\x67\xac\x35\xe5\xae\x69\x55\xbe\x68\x3a\x57\x45\x72\x34\xa2\x67\xa6\xe9\xa5\xa0\xb9\x6e\xfd\xdc\x2a\xe9\xaa\xd6\xa7\x69\x86\x7f\xc5\xe8\x7c\x8b\xdd\x84\xff\xfe\x6f\x6b\x28\xc1\x71\x8d\x18\xc4\x89\x88\xa3\x97\xe7\xe7\xdb\xe8\xe5\xb6\xc2\x7e\xd9\x73\x98\x08\x41\xf9\xfe\xd8\x4b\x3e\x37\xb6\x81\x37\x89\x71\x2f\x78\xb4\x59\xbb\x5f\xb3\x2a\xbb\xb7\xad\xec\xfd\x85\xcf\x11\xdd\xdf\x52\x9a\xef\xdc\x5f\xfa\x1c\xd1\x83\x6d\xc5\x77\x1f\x50\xfc\x1c\xd1\xc3\x6d\xe5\xf7\x1e\x52\xfe\x1c\xd1\xa3\x6d\x15\xec\xd7\x57\x00\x53\xbd\x18\x06\x8a\xe6\xb9\x9d\xf0\x5e\x6c\x6f\x5f\x4f\xb8\x73\xb5\xfa\x14\x45\x84\x80\x0e\xbd\xb2\x21\x1d\xfc\x0b\xa1\x4b\xc1\xf4\x38\x1e\x2f\xed\x7d\xe3\x13\x76\x74\xbc\x14\x6d\x86\xce\x11\x99\x71\xbc\x14\x34\xe3\x1e\x37\x34\x73\xe4\xe5\x05\x90\x17\x85\x6e\x8c\x82\x2e\x6a\xc3\xb3\x74\x9a\x61\xa8\x73\x4b\x85\x0b\xa8\x70\x26\xf4\xac\x9f\xd8\x05\x57\x1c\x7a\xdc\xaa\xfb\x66\xac\x6f\x7d\x4b\x05\x7f\x36\x1e\x1b\x9b\x2b\xdf\xfc\x68\x70\x09\xac\x6b\x9a\x0a\x76\x59\x1c\x39\x0a\x68\xe3\xd2\xfb\xfc\x7a\x2a\x14\x4f\xce\xfe\x21\xe9\x14\x1c\xf7\x81\x09\x83\xba\x1b\x11\xc6\x57\x2b\xd0\x5a\x4a\xd9\xcf\x12\xeb\x4b\x76\x70\xd0\x93\xc9\xb3\x29\x36\xc6\xd0\x12\x96\xb9\x4a\x8c\xf3\x00\x60\x76\x52\xb2\x5a\x21\x6b\x90\x00\xd1\x08\x54\xe3\xbe\x62\x39\x4c\x46\x64\xa0\xfe\xfa\x7e\xdb\x49\x08\xf1\x25\x66\x4c\xbf\x97\xe2\x68\xb5\xda\x34\x72\x63\x1b\xc4\xfa\x49\x80\x7e\x95\x20\xc1\xb6\x86\x1e\xa9\x73\x47\xcd\x21\x4b\xbf\x64\xeb\x53\x80\xca\x17\x27\xd3\x69\xbd\xe0\x95\x15\xeb\xa9\x5c\x8a\xfa\xe6\x88\x55\x2a\xce\x98\xbe\x36\x56\x55\x92\xfa\x7c\xf9\x75\xa2\xb6\x9d\x94\xed\xf3\xdd\x47\x38\xf3\xef\xf9\x3b\xd5\x8b\x7f\x42\x25\x7b\x87\x25\x21\xb7\x93\x28\xe7\xfa\xb1\x2b\x4c\xd8\x7f\x19\x84\x82\x75\x63\x2d\x89\x7d\x0c\x19\xf4\xe3\x57\x29\x87\x9f\x6c\x59\x83\x72\x15\x3b\x7e\x16\xb3\x5c\xc2\x84\x41\x3a\x18\x50\xe6\xa5\x1c\x66\x1b\xf1\x73\xec\xf3\x5d\x3f\x07\xbc\xb6\xf9\xe9\x3b\xfb\x7c\xcf\xcf\xa0\xa6\x49\x91\xde\x49\xc9\xe3\xc3\xfd\xdd\x72\x16\x78\xbe\x2b\xe7\xd9\x0f\x76\x0f\x5d\x26\x73\x16\x0b\xb5\x2d\xad\x4e\xe6\xb4\x5b\x07\x49\x78\x86\x13\x3d\x9e\x5c\xc4\x67\xd3\x3a\x1b\xe1\xee\xc4\x83\x39\x7b\x87\x41\x20\xb2\x44\x2d\xdc\x59\x28\x34\x4c\x8e\x8a\x80\x47\x17\x33\xc5\xb5\xcd\x1d\x33\xed\x39\xb1\xc2\x0e\xd6\x2a\x21\x94\x37\x7d\xe0\xe0\xd5\x06\x8e\xe9\x2a\x8b\x22\x4e\x1a\x3a\x3d\x9b\x4b\xe0\xf1\xd5\x0a\x9b\xe7\x9f\x24\xff\x20\x27\x98\x0c\x36\x8f\x9d\x61\x25\x4a\xaf\x74\xc9\xbe\x59\xdb\x7d\xc7\x5b\x2d\x41\x2d\xd2\x5c\x9a\x45\x24\x0d\x10\x59\x3a\x67\xf5\x66\xec\x2a\xd7\xff\xf0\xc0\x51\x7a\x38\x06\x52\xc0\xfd\x69\x3e\xf8\x45\xe2\x5b\x99\xc2\xa1\x91\xaa\xaa\x43\xbe\x76\x27\x52\xff\x24\x49\x48\xf7\x6a\x39\x8f\x44\xf2\x8d\xe3\xa6\x2c\x9d\x32\x6b\x5d\x97\x58\x50\xdf\xa4\xd7\x75\xe3\xa9\xa9\x43\x96\xce\xb5\x4a\x25\xd7\x05\x64\xf5\x52\xf7\x5f\xed\x19\xf4\x48\x9b\x76\x4f\xff\xcc\x9e\xc9\xf4\xae\x7e\xc9\xb4\xd4\xab\x4b\x2e\xeb\xb2\x7e\xd5\x86\xc6\xf5\x7c\x56\xf4\x14\x42\x23\x73\x82\x87\x92\xa6\xe1\x67\xb2\x86\x14\x2e\x34\x19\x74\xea\xc9\xba\x80\xbe\x10\xad\xdd\x08\xae\xe1\xa1\x4b\x3f\x45\x59\xf1\xa4\x2a\x79\x5c\xad\x9a\xc2\xc3\x61\xab\x85\xab\xab\x0c\x6b\xfa\x56\x59\x7e\x1a\xfa\xe2\x76\xed\xa9\xf7\x66\x16\x7a\xdf\xda\xdc\xba\xbd\x55\xb2\xcb\x51\xfa\xcf\x6d\xa6\x1f\xfa\x66\xfe\x3f\xde\x91\x27\x7e\x47\x4a\xc0\x03\xa9\x2a\x81\xee\xe7\x2d\xba\x21\xaf\x39\xdf\x54\x62\xb0\x66\x23\xfd\xbe\xd0\x84\x5d\x6b\x4f\x2e\x5f\x65\xe1\xd5\xac\xd9\xc4\xd5\xe9\x9f\xfa\x81\xa4\xdc\x4d\x8c\x30\xf4\x2e\x63\xd9\x6a\x85\x30\x41\xea\xb0\x34\x30\x35\xe8\xdb\xf2\x54\xed\xd5\x16\x5f\xe6\x05\x44\xc5\x01\x96\x88\x2a\x9d\x0d\x7b\xae\x8c\xc9\x90\xf8\x85\x74\x3d\x2a\xca\x75\xf4\x3c\x9a\xd7\x8e\x16\xcd\x1e\x3a\x5e\xd9\x9f\x31\x5e\xe0\x71\xb2\x18\x31\x2c\xfc\x20\xbd\x77\xf6\x3d\x61\xa2\xd5\x12\x4f\xd8\x3d\x23\x5d\xea\xf5\x59\x56\xb7\xe6\xca\x94\x4b\xe5\x83\x78\xc3\x08\x59\x14\x82\x8f\x6d\xbf\xaa\xda\x69\x7f\x5f\x5d\x66\x88\xbc\xca\x7e\xd9\x72\x49\x7d\xe5\xf1\x4e\xb3\x48\x5c\x32\x2e\xe0\x53\x5f\xb0\xfe\x28\x8b\x80\x22\x7d\x4c\x42\xea\x3c\xfa\xca\xde\x40\xd2\x3c\x11\xec\x02\xbe\x16\x51\x96\x27\xe2\xf2\xe5\x2c\xba\xcc\x6b\xda\x01\x8f\x82\x86\x42\xe9\xd6\x4a\x4f\xcc\xd6\xb2\xcd\xe6\x8b\x1f\x27\x85\x48\xcb\xa6\x20\xa3\x31\xf1\xe9\x1c\x90\x73\x62\xf4\x00\x6e\x97\x22\x91\xa1\xa0\x8b\x2c\x49\xb3\x44\xde\x84\xaf\x87\x62\xb4\xf6\x04\x1d\xc1\x96\x66\xfd\xad\x46\xd7\x16\xea\x48\xf7\xb9\x06\x79\x47\x0e\xa2\x44\xc4\xfa\x34\xb6\x72\x35\x59\xbb\x4d\x80\x58\x8b\x61\x36\xea\xaa\x96\x47\x98\x7b\x81\xc2\xf0\x7d\x85\xc4\x13\x6f\x20\xc1\x49\x4f\x69\xe3\xd7\x68\xd2\x93\xb2\xd4\x77\xc3\x7f\x1a\xc6\xc7\x67\x2c\xbd\x2b\xcd\x80\x54\x38\x46\x9f\xbd\x2c\xae\x37\x7b\xc4\xe7\xd6\xe0\xd3\xb2\x40\x61\xc1\xe9\x99\x2f\xc5\x34\x7a\xe6\x0c\x6d\x13\x9a\x5b\x2c\x19\x36\xb4\x49\x96\xd5\x2c\x59\x38\xb4\x89\x96\x53\xad\x9e\x09\x55\x0e\xc3\x0d\x6a\xb8\x34\xef\x26\x3d\x93\xab\x38\x20\x65\x5e\xcd\x24\x17\x36\x87\x71\x8f\x14\xf7\x6c\x5e\x0e\x8d\x9d\x9d\x47\x9e\x41\x6f\x2f\x9e\x3c\xde\xb1\x77\xbc\x80\x7d\xc3\xf6\xb1\xdf\xa4\xde\xe5\xc1\xa3\x08\xab\x15\xf7\x31\x43\x37\x74\x36\xba\x0b\x87\x2a\xce\x61\x01\x07\xcc\xe9\x34\xc0\x0c\x7c\xda\x93\x30\xc4\x7a\x27\xe3\x91\x61\x2d\x8c\x00\xf0\x5d\xad\x82\x8d\xf3\x3c\x74\x6d\x9b\x97\xd6\x02\x04\x05\x40\xe8\xe0\x80\xf1\x0b\xb9\xb3\x24\x6a\x86\x2d\xe4\x9e\x65\x4a\xfb\x6c\xcb\x3d\xcb\x94\xa5\xf7\x5c\x5e\x1e\x33\xb2\x36\xe0\x2a\xb6\x68\xcb\x51\x4d\x8b\x86\x97\x08\xb4\xe5\x9f\x5e\x9f\x9f\x69\x1f\x92\xac\x2a\xf0\x5e\x7f\x60\x73\x12\x45\x92\x81\x2c\x38\xa7\x82\xc9\x41\x89\x4e\x83\xdb\xff\xd0\xc3\x52\x43\x18\xfc\x80\x4d\x19\xf3\xfd\x14\x9c\x4a\x7d\x53\x47\xe1\x41\x49\x31\x7d\xf8\x7e\xe4\x2b\x58\x0f\x7f\x1b\xa1\xf0\xae\x0c\xbf\x21\x12\x7e\xd5\x66\xfa\x7d\x8f\xb0\xae\x63\x64\x60\xe0\xd3\x28\xc2\xc4\x4f\xc4\xda\xa9\x5a\x0d\x82\xda\xfb\xe6\xce\xc8\x3b\x55\x3e\xea\xf1\x9d\x4a\xf1\xe2\xb1\xfe\x37\x44\x55\x6f\xd0\x6f\x88\x90\xd0\xeb\xd7\x3d\xbd\xda\xd6\x27\xc3\x78\xe6\x8b\xca\x1c\xdc\x3a\x34\xe6\xc5\xcc\x32\xab\xf8\xf1\xa3\x86\xb1\x82\x7a\x91\xb4\x51\xe3\xd1\x63\x62\x9e\xd7\x98\xc9\x89\xa8\x64\x08\x1d\x9b\xca\x7e\xd2\x42\x51\x70\x8e\x72\x32\x4a\x5e\xdf\x07\xb6\xfe\xa5\x9c\xa0\xd0\x06\xe0\xda\xfd\xb7\x54\x70\xa8\xec\x37\x73\x79\x22\x18\x1a\xa2\x36\x6f\xff\x15\xa3\xd1\x5f\x15\xd9\x7e\xe2\x3b\x16\x33\x14\xc1\x4c\x09\xe3\x5c\x0c\x2c\x23\x86\xce\xf9\x56\xca\x64\xfb\xaf\x43\x44\x46\x7f\xad\xbb\xc7\x10\xed\xac\x8d\x6a\x11\x87\xda\xa9\x9d\xd9\x7f\x3f\x3f\x7b\xb3\xcd\xd1\x66\x21\x88\x62\x66\x46\x69\x42\x2c\x67\x33\x53\x47\x75\x69\x94\x6b\xb1\x13\xde\x1c\x60\x10\x17\x88\x58\x10\x51\x1c\xc7\x0d\xb0\xe0\x78\xa2\x2d\x38\x5a\x28\x1b\xc3\x57\xa7\xef\x47\xbf\xd9\x11\x5e\x8a\xe4\x6b\x4d\xfd\x55\x32\xe9\xa6\xe5\x63\x35\x05\xa1\xa4\x89\xda\x06\x9c\xff\xc8\xde\x81\x1b\x13\x5f\xea\x6c\xb5\x0a\xcc\x0d\x0f\xd8\x80\x4b\x05\xf0\x19\x1b\x55\xdd\x26\xa0\x0e\x66\x66\x11\xd5\x7d\x33\xc1\x29\xd5\xfd\x0e\xfd\x27\x4c\x0a\x52\x6e\xa1\x27\xf1\x46\xb5\x42\x84\x89\xd2\x01\x4d\xb2\xd4\x04\x60\xbf\x73\xcd\x29\xfd\xc4\xa3\x45\xd9\x31\x99\xef\xf0\xce\x9b\x30\x1a\x6c\xfb\xea\x55\x77\xa0\xcb\x44\xf9\x9d\xd0\xee\x5f\x96\xf1\xb4\x7b\x99\x09\x96\x8e\x98\x85\x05\xa2\xed\x69\x37\x96\xbb\x73\x0f\x6d\x0f\x85\xc2\x14\xc1\x84\x56\x77\x4d\x6d\x42\x09\xea\x35\x9b\x27\x2b\x3e\xf3\xba\xfa\xed\x03\x6f\xe1\xea\xbe\xb4\xa1\xb6\x7b\x6a\x4f\x0d\x4b\x7b\x2f\x06\xef\x1d\x7e\xae\x1f\xcc\x5c\x82\x20\x7b\x09\x63\x11\x47\x37\xf9\x6b\xa1\x7d\x2d\x6d\x0e\xc6\x49\x69\x30\xfc\xc7\x5c\x6f\x64\x98\xf9\xcd\x6b\x78\xc7\x4d\xbc\xc2\xd8\x00\x8b\x5a\x7d\xbc\x36\xb3\x26\x8a\x63\x7c\xa0\xa0\x97\x04\xd4\x62\x7c\xf4\xb3\xe2\xb3\xae\x35\xfb\xfc\x0d\x06\xaa\x54\x43\xdf\xd3\x04\x74\xe1\xb5\xa8\x4e\x4b\x4f\xd4\x78\x73\x7e\xd8\xfa\x7f\x29\xe3\x89\xc3\x9c\xe2\x1b\xb3\xa7\xa6\xfa\xfa\x0a\xdc\xf4\x50\xac\x04\x4b\x85\x19\x29\x66\x06\xec\x3b\x76\xef\xa6\xbd\xa1\xb3\xae\xe0\xcc\x98\x18\xe9\x5c\x4b\x3c\x7c\x9b\x41\x5e\x9c\xd6\x8b\xaf\x54\x87\xeb\x4f\x4a\x56\x7c\xc9\xb3\xfd\x33\xe0\xa1\xf5\x4d\x37\x40\x5a\xb0\xaa\x38\x75\x60\xce\x64\xd5\x6d\x03\x21\xc6\x90\x5b\x58\xd1\x84\x33\x97\xc5\x15\xaf\xc6\x6e\x30\x79\x47\xc2\x40\x92\x50\xba\xb1\x8c\x7d\x1e\xf2\x8f\xe0\x09\x1b\x06\xfe\x06\x93\xf6\x41\xe7\x0e\xea\x51\x78\xe4\xa9\x9b\x68\x16\x36\x7f\x22\xfc\x0b\xb0\x39\x53\x6e\x6e\xd6\xdf\x35\x18\xbe\xe7\xf4\x4d\x6c\xff\x70\xb0\x5a\x1d\x14\x43\x04\x88\xe7\xf5\xb8\x2e\x6d\xcc\xe0\xd4\xc1\x21\xe7\x87\x03\xd5\xdd\xce\x81\x3d\x4e\x14\x79\xc8\x6a\x75\x60\xa6\xb1\x7d\x92\xdd\x5c\xb4\x9e\xf4\x35\xae\xbd\x2a\xd0\x77\xc9\x9d\xfa\x34\xed\x1d\xd4\xdc\x8c\x7b\xfe\x81\xee\x1b\x08\xc5\x94\x33\xf3\x9b\xb3\xcc\x1e\xb4\x97\x8a\xab\xb6\x5f\x39\x8b\x84\x3e\x45\x2b\xe6\x9b\xb9\xaf\x9c\xe5\xfa\x88\x5e\x70\xe6\x6c\x5a\x11\x7f\x9c\x40\x0e\xc7\x51\xd5\x3e\x97\xa4\xd6\xc5\x45\xb1\x4d\xdf\xf1\x78\x72\xe7\x4c\xa8\xf5\x12\xc7\x49\x61\x29\x95\x61\xee\xd4\x0f\x4a\x47\x62\xad\x83\xee\x79\xab\x7f\xd2\xdb\xd7\x96\x03\x30\x7f\xc4\xf6\x9d\x6d\x94\xa6\xf4\xe5\xda\x25\xc8\x0c\x7e\x94\xe6\xb2\x81\xfa\xdd\x60\x66\xfe\x18\xe5\xc9\x66\x60\xf4\xae\x53\xc3\x0a\x5a\x71\x39\x44\x68\xd2\xd4\x0f\x06\x4d\x69\xae\x55\x2e\xb4\x28\xd6\x6b\xf1\x36\x4b\x2f\x33\x9e\xe7\x03\x4f\x44\x92\x77\x12\x5d\xac\x47\x9b\x3d\x4b\xa7\xaa\x05\x56\x2b\x5c\x9f\xa0\x00\xb9\xcb\xc5\x5c\x4d\x09\xd0\x97\x35\x27\xd5\x12\xb7\xa5\x89\x67\x12\x5a\x04\xac\xcd\x60\x6f\xbd\x9c\x2e\x58\xeb\xc0\x5e\x50\xc3\xf2\xda\x5a\xc0\x22\x1a\xd7\x14\x2f\xa3\xb7\x47\xed\xa9\xdb\xbd\x9f\x58\xb0\x00\x5b\xde\x49\xdb\xf1\xef\x95\x23\x86\xb1\x83\x08\xb5\xca\x6f\x73\x52\x69\xd3\x25\xd0\x66\x8f\x5a\x53\x8e\x8d\x7a\xc7\x84\x1a\x32\xbb\x6d\x7e\x90\x38\x71\xb3\xc1\xfa\xe1\x31\xe2\x73\x45\xfd\xdc\x8c\xa5\xdf\xcb\x42\x01\xaa\xb8\xa6\xb9\x8a\xf2\x67\xb3\xe4\x52\xf0\xf8\xc7\x74\x99\x6d\x2c\xac\xed\x2a\x19\x98\x33\x3e\xd0\x4f\x15\xde\x19\x27\x0c\x68\x15\xbb\xa4\xc3\xc9\x0f\xfb\xe0\x37\xd9\xd2\xeb\x93\xf3\xf7\xdb\x98\x6e\xaf\xdc\xd3\x12\x75\xb2\x97\x43\x7e\x0e\x33\xc1\xef\x29\xb3\x57\x2a\x63\x40\xf8\xa9\x3c\x53\xb6\xf7\xd3\x5f\xa3\xa6\xec\x87\x4d\x0a\xf4\x20\xd5\x95\xa2\x38\xfb\xa7\x34\xdf\xef\x9f\x9b\x6f\xfb\xa8\xbe\xf5\x34\x52\x76\x0a\xb9\xb6\x65\xde\x94\xae\xab\xeb\xcb\x3c\x4f\xb5\x44\x93\xe4\x71\xe3\x83\x48\xbe\xf0\x2c\x8f\x66\x8d\xf7\xc9\x9c\xbb\xaa\xd4\x0a\xce\xd9\x5b\xfd\xe6\x98\x37\xa2\xc9\x84\xe7\x79\x9a\x55\x85\x46\x3f\xe4\x5c\xeb\x0f\x5b\xf5\x51\x44\x53\x41\x1c\x03\x9c\x6b\xb9\x53\xf5\x75\x67\x15\x90\xc5\xd6\x81\xe8\x4b\x4e\xec\x71\x06\x6a\x80\x8f\x3b\x2b\x50\x39\x8a\xf2\xbf\xeb\xf2\x0a\x1d\x25\xc1\x57\x15\xb1\x5d\x0d\x16\x7b\xf3\xe2\x7b\xd5\x61\x55\xcd\x8f\xb7\x48\x97\x39\x9e\xae\x86\x7b\x33\xda\x73\x86\xdc\x78\xcb\xb5\xf0\xd8\xbc\xf1\x12\xbf\x26\x6e\xd5\x9c\x5f\x25\x53\xc9\x63\xd5\x49\x3f\x5c\xc5\xd0\x77\x18\x20\xcf\x65\x27\xd7\x95\x54\xe4\xea\xd5\x39\x35\x49\x45\x49\xdf\x57\x6d\xa4\x11\xb6\x53\xab\x68\xbf\xb4\xf9\x95\x93\xcc\x85\xc9\xed\x5a\x6d\xad\x73\x2b\x9f\x40\x31\x67\x5a\x85\xbf\x7b\x11\xf9\x36\x38\x60\xbe\x82\xca\x58\xa4\x75\xcd\xd4\xc7\xf1\x66\xb5\xac\xba\xcc\xce\x21\x2b\x95\xf6\xaa\x13\x13\xf2\xd4\x58\x52\xaa\x29\xed\xcc\x1a\xd4\x24\x1a\x71\xbc\x85\x60\x6f\xea\xc4\x57\xae\x36\x5e\xbe\x40\xa5\x33\x61\xb1\x62\xa1\xb8\x04\x23\xe5\xb6\xf6\x74\x28\x46\x60\xf6\xc8\xf3\x78\xef\x1b\xaa\x5a\x62\x63\xed\x99\xd3\xc2\x84\x02\x67\x7c\xb5\x42\xc8\x1a\xdb\xb5\xb8\x75\x0d\x9b\xbb\x70\x0d\x66\x06\xfe\x55\xb5\x2b\x53\xb8\xdc\xef\xf5\xe1\x5a\x3f\x1d\x66\x23\x06\x45\x32\xbf\x88\x85\xab\x80\xe7\x8b\xd7\x1f\x34\x4e\xd3\x19\x8f\x44\x89\xc5\xc5\x4b\x6d\xa7\x45\x30\x49\x65\x61\x44\x81\x69\xe5\xc9\x50\xc5\x03\xf8\xcd\x1e\xbd\x33\xe7\xb1\x65\xcf\x00\x5f\x11\xe3\x83\xa4\x60\xf7\xc3\xa0\x60\xbd\x84\xd7\x63\x49\xb1\x68\x47\xe4\x87\x03\x9a\x19\x7f\x87\x50\x4d\x6e\xfb\xac\x2d\xd4\x1c\x80\x5d\x9a\x7c\x98\x42\x97\x25\xc5\x69\xa5\x8c\xa9\x30\x5f\x2f\xb6\xc8\x18\x15\xfe\x5b\x0c\xdb\x62\x32\x0d\xf9\xc8\x71\x51\x26\xaa\x6b\xc5\x88\x8e\xdd\xf3\x77\x46\x06\x99\xb9\xab\xa0\x82\x84\xd9\x9a\x2e\x14\x2f\xe2\x3b\x3c\xd9\x76\x8e\xbf\x28\x67\x03\x43\xf4\x5b\x52\xba\x32\xfd\xb0\x58\x58\x1f\x18\xce\xde\x9b\x5c\xad\x9a\x62\x20\x43\xbc\xa5\x3e\x26\x0a\xd3\x74\xa7\xa7\xa7\xa7\xab\xd3\xd3\xd5\xc9\xc9\x2a\x8e\xe3\xf8\xf1\x65\xad\xcd\x14\x63\xf2\x05\x84\x72\xb7\x54\x4a\xa0\x8b\x9e\x38\xc1\xf6\x2d\xa8\xc8\x03\x65\x8c\x6c\xed\x76\x26\xcd\x64\x28\xae\x85\x7f\x88\x11\xf0\x77\x0b\xe1\x0c\x25\xb1\x58\x40\xd0\xc9\x94\x98\x08\xdf\x25\xcb\xd6\x97\x6a\xdd\x8c\x9f\x75\x28\x46\xc5\x60\xa6\x64\x90\xba\x22\x61\x5a\x20\xef\x87\xf8\x71\xe2\x00\x89\x72\xf9\x12\x3c\xbe\xd4\x3e\xec\xd7\x34\xc1\x9f\x06\x03\xa4\x9d\xc4\xa0\x10\xa9\xf2\xc8\x6b\x54\x90\x81\xc0\x92\x84\xde\x58\xfd\x90\x3f\x4e\xe0\x1d\x74\x51\x7d\x73\x74\x36\x9f\xb4\x61\x03\xfd\x7e\xf8\x55\x51\x91\xa1\xb0\xe2\x17\x62\xc4\xf4\x31\x6d\x88\x2e\x50\x5b\x85\x0c\x15\xd5\xfa\x1b\xee\x3c\x71\xa7\x68\xb3\xef\x49\x0e\xdf\x95\xbf\x9b\xa7\xcb\x6c\xc2\xed\x52\x49\x37\x93\x48\x1b\xad\x50\xdb\x39\xcf\xb1\xb1\xd0\x3b\xc3\x3a\x6c\x11\xd5\x4e\x4d\xcb\x46\xc9\x6a\xe0\x87\x86\xee\x9d\x68\x14\x96\xe2\x4b\x65\xba\x49\xae\x27\xee\x6a\xf5\x9c\x13\xeb\xdb\x7b\x80\xf4\xd4\x41\x21\xca\x65\x24\xe2\x48\x31\x8d\x68\xe4\x57\x79\x57\xd3\xa5\xf6\xba\x45\x0d\x5e\x8f\xc0\x03\xce\xc3\xba\x05\x59\xcb\x0d\x40\xd4\xb6\x0e\xea\xc4\xe7\xfc\x0f\x77\x66\x5b\x83\x9b\xad\xd4\xf7\x0d\xc6\xf6\x6e\x81\x45\xbf\x26\xc8\xfe\xe2\x6b\x34\x71\xdb\xd9\xd6\xa2\x60\xb9\x5e\xa6\xda\x63\x88\xe7\xf4\xa7\x38\xc6\xfb\x75\xc2\x2b\xfb\x46\x2c\x1b\x8e\x3c\xca\x75\x5a\x97\x90\xab\xbe\x55\x52\xdc\x0e\x0a\x06\x27\xac\xcb\xcd\x6c\x44\xb6\x94\x51\x7b\x6c\x71\x7f\x6b\x1c\x6d\x26\x60\x0d\xb4\xa6\x03\xf5\x10\x55\xea\xd8\x5e\xdc\xdd\xc2\x0c\xd0\xe9\xe9\xa9\x36\x39\xd7\xe9\x35\x19\xc3\xa9\xb3\xb6\x51\x0f\x26\x8d\x08\x19\xa4\xfa\x0e\xb0\xbe\x44\x05\x26\xbf\xc0\x1f\x6c\xec\xbb\xdb\xf9\x9e\x02\xdf\xdd\xed\x0d\xbd\x27\xe3\xb1\xbd\x3a\x6f\xdc\x45\xc7\xbf\x3c\x97\x08\x2d\xb1\x63\x8a\xd9\x4b\xfd\x09\x25\xdc\xc9\x72\x73\x3e\x78\xea\x82\x1b\x53\xa5\xe4\xdb\x13\xb5\xfd\x99\x93\x96\xcc\xd0\xa2\x2e\x18\xda\x68\xa3\xbf\x94\x5c\x86\xd6\x4d\xe1\xed\x75\xea\x19\x7d\x77\xc5\x04\x0c\xec\x55\xb1\x36\xcc\x46\xab\x15\x4e\x58\x2d\x90\x6d\xb4\xda\xda\x0e\xad\xab\xca\x07\x31\xa9\x42\x62\xa1\x68\xb5\xc0\x25\x1c\xd2\x8e\x4f\xb6\x61\x50\x53\x4c\xbe\xe1\xcc\x06\x55\x8b\xd6\x60\xaa\xb6\x6c\x53\xd8\x12\xf3\xbb\x33\xaf\x3d\xf2\xa9\x1d\xb5\x6e\xe5\x81\xaa\x44\x73\x80\x27\x7a\xf2\x22\xdf\xed\x3f\x22\xab\xd5\xcf\xde\x12\x20\x94\x97\x09\x7a\xe1\x13\xb6\x44\xd6\x21\x86\x84\x5b\xeb\xc4\x1b\x99\xd9\x07\x5e\x1e\x18\xaf\xea\x56\xeb\x7b\x5a\xad\x6e\x8f\xff\x33\x88\xa8\xf8\xd8\xdd\xdc\xe4\xb6\xa0\xa4\x48\xdb\xc0\x8b\x07\xfd\x4f\x55\xe4\x54\x9a\xdb\xc0\xd0\x03\xc1\x01\x5c\xe9\xd7\xc0\x4d\xfc\x68\xf7\xff\x57\xd6\x0d\x70\xf1\xe2\x5a\x3c\xb2\x42\x59\xa8\x64\x9a\x64\xe0\xc6\xb1\xfa\x60\x50\xc1\xb6\x2d\x59\x29\xf3\xb1\x04\x42\x7d\x99\x6b\x07\x6c\xe5\x31\xad\x96\xe9\xb1\xf9\x2c\x03\x62\xc3\x43\xae\xdf\x38\x2c\xb3\xe3\xe2\xcb\x41\xc7\xd0\xdd\xcf\xfe\x98\xea\xee\x6b\xb8\xd2\x5e\x95\xe7\xf1\x5c\x1c\xd6\x8d\x05\xaf\xd4\x76\x9a\x88\x6d\x3d\x39\x4d\x44\xa9\xc6\x2a\x8f\xb8\xb5\x4e\xcb\x0e\xd6\xd6\x0a\x89\xa5\x7a\x1f\xcc\x9f\x95\x0a\xfc\x69\x1c\x5a\xa9\x56\x8f\x47\x2b\x83\x57\xde\x40\x3f\xd6\xa7\xcd\x13\xb1\x91\xa2\xf7\xd6\x83\x32\x9f\x66\x5d\xa3\x67\x64\x4b\x49\xc7\x6a\xf9\x2e\xd3\xef\x63\xd7\x36\x41\xdb\xa8\xe6\x61\x7c\xdf\xf5\x9d\x75\x3c\x88\xef\x03\xcf\xfd\x77\xf0\x62\xa5\x26\x4a\x4c\xdc\x3d\x05\x37\x3b\x79\x3f\x6b\x56\xc5\x6e\xb5\xbd\xef\x86\xf4\x3b\x41\xfb\x63\x50\xfd\x21\x2c\xfc\xab\x7d\xb8\x0b\xa8\xef\x2a\xf1\x6f\x43\xe6\xbd\x4c\x72\xa9\x0d\xb7\x15\x6e\x59\xce\x75\x4b\xf6\xfe\x85\x3e\x5d\xce\x66\xd5\x24\xe2\x96\xfa\x06\x17\xed\x2d\xf7\x82\x99\xde\xa8\xc3\x67\xa7\xeb\x12\x6b\x99\x5f\xb7\x28\x6b\x38\xdf\x4f\x9f\xba\x83\x2d\x6c\xf5\x77\xd5\xbd\x95\xb5\xae\x6f\xa0\x8e\x96\xdd\x55\xbd\x22\x6d\xf7\x57\xbe\x8d\x36\x95\x59\xf7\x32\x3a\x3c\xe6\xbd\xa6\x2f\x35\xa9\x0e\x94\x6d\x84\xf0\x81\xcc\xbd\xa3\x29\x96\xdf\xae\x1b\xcf\xad\xec\x7d\xb5\x70\xed\x88\xdd\x51\xba\x54\xb8\x66\x34\xee\x39\x1b\x54\x3b\xbd\xe5\x74\x60\xb3\xdd\xc3\x16\x6f\x6e\xda\x1e\x63\x5c\xaa\x43\xf1\xad\xff\x55\xcb\x1a\xbb\xc1\xdb\x60\x44\x4b\x15\xf8\x4c\xf1\x46\xcd\xb8\xa6\x00\xfb\x3b\xaf\x8e\x74\x2d\x2f\xfc\xd0\xf6\x37\xd9\xa5\xff\x49\xe4\xd4\xb3\xea\x9b\xe0\xd4\xa1\xa9\xf6\xf4\x50\xd3\x93\x7f\x6c\x22\x6c\xeb\x09\xe2\xfb\x01\xab\x32\xb0\xff\x83\xd8\x3b\x4d\xc4\x76\x10\x2d\x28\x75\x98\xb3\x69\x35\x78\x73\x3d\xf8\x6d\x03\x6b\xe5\xe6\x36\x71\xf6\x30\x70\xf4\xcb\x46\xfe\xf6\xb4\x06\x47\x68\x01\x0a\x5c\xbc\x6d\x79\xb5\xc2\x25\xf9\xe4\x2a\xca\x9e\x49\x1c\x98\x13\xae\x75\xb0\x51\x65\xa2\x2d\x77\xff\xb4\xd7\x1b\x88\x01\x5a\xcc\x51\x88\xde\x9e\xa2\x50\x0c\x50\xa4\xbe\x9f\x9d\xa2\x35\x9d\x49\x10\x85\xa6\xb7\xf7\xf8\xa0\xc7\xf2\x6a\x95\xcb\x95\x88\x57\x59\x4c\x1e\x3b\xf7\xf5\x9b\x4f\x4d\xfc\x87\x5e\x40\x05\xeb\x31\xb0\x8a\xfb\x43\x2f\x08\x1e\xf7\x02\x32\x40\xf2\x0a\x85\x60\x52\x79\x80\x72\x89\x42\xed\xf7\x11\x89\x18\x85\x3b\xfa\x33\x8b\x51\xa8\x72\x39\x73\x84\x6d\xb1\x06\x63\xdb\xa0\x73\xe5\xde\xda\x21\x58\xff\xd0\xaf\x93\xb5\x63\xec\x42\x68\x60\x26\x6d\x25\x20\x36\x5d\xae\x48\x45\xdd\x5b\x99\xce\xe4\x2a\x9c\x1a\x5d\xe4\xb9\x60\x56\xee\xaa\x78\xb3\x1d\x6f\xbc\x01\xfd\x22\xe1\xa9\xce\xf3\xfa\xe1\x4b\x9a\xb5\x59\xf6\x28\xad\x58\x7e\x33\x26\x31\x4d\x12\x58\xc7\x74\xb6\x31\x6d\x7e\x6d\x8a\x8f\xd7\x99\xf6\xbd\x14\x15\xa3\xbd\x9e\x7c\xba\x35\xd7\x0b\x32\xc8\xfe\x5b\xf1\xb5\x5f\x68\xf7\x30\x08\x1e\xf1\xc7\xbd\xdd\xfd\xe0\xe8\xa0\xc8\x73\xe6\xe7\xd1\x89\x8f\xf8\x63\x95\xb9\xc8\xf3\xc2\xcf\xb3\xe5\x20\x1f\xe5\xe0\x15\x41\xa1\xe7\x5c\xb0\x17\x02\x6b\x5b\x16\xef\xf5\xb7\xfa\x7c\x6b\xa2\x11\xa1\xa7\xfa\xf3\x0a\x11\xfa\x59\x7f\xc6\x88\xd0\xdf\xf5\xe7\x35\x22\xf4\xab\xfe\x3c\x45\x84\x5e\xe8\xcf\x1b\xdf\x50\xdc\x9b\x07\x00\x54\xd1\x30\x00\x73\xca\x43\x3e\x0a\xdf\x44\x6f\x34\x98\x27\x82\xbd\x11\x25\xed\x4a\x05\xe5\x73\x1d\x5b\x44\xbc\xb3\xd9\xb4\x09\x19\x42\x9f\xe9\x08\x90\x52\x44\x84\xbe\xd6\x41\x35\xa2\x88\xd0\x97\x26\xb7\xb5\x0e\xf7\x93\x0e\x83\x44\x0a\x22\xf4\x83\xf0\x64\x2b\xe9\xcf\x82\xdd\xe6\x79\xb8\xbb\x4b\xf3\x70\x77\x8f\xce\xd5\x9f\xab\xb0\xdf\xa7\x71\xd8\xdf\xa7\xa7\x61\xaf\xb7\xa6\x1f\xeb\x26\xe4\x3f\xbd\xfe\x63\xfe\x34\x20\x1d\xcc\x9f\x04\x64\xb5\x6a\x7b\x26\xcc\x7e\xbd\x53\x59\xa5\x46\xc5\xbe\xa4\xdd\xad\x05\x2f\xd4\xac\x67\x1f\x85\x3b\x55\x14\xa8\x02\x3d\x08\x9a\x15\x89\xda\xa4\x61\xea\xe5\xb6\x56\x0d\xd9\x19\x16\x60\xdf\x59\xb2\x33\x63\xe9\x59\xfc\xc0\xf6\x03\xca\xd5\xdf\x63\x6d\xe2\xec\x0c\xa7\x8f\x7b\x7d\x42\x23\x96\xfe\xc0\x7a\x7d\xba\x64\x19\xcd\x99\xa4\x33\xc6\xe9\x84\x89\x81\xe8\xca\xf4\x65\xf2\x95\xc7\x78\xc7\xf7\x95\xd6\x1d\x04\x6d\xed\x2b\x2d\x44\x88\x4e\x99\x99\x8b\xe7\x56\x37\x4b\xbb\x24\xb3\x0a\x3a\x6f\x83\x13\xad\x82\x13\xb3\xe9\x93\x60\x80\x3a\x48\x95\x5a\xb0\x7f\x56\x60\x6e\x32\x15\x35\x25\x36\xc7\x55\x91\x03\xba\x59\x4d\xbf\xf1\x6a\xf0\x71\x54\xc9\x67\xc9\x45\xdc\x46\x6f\x51\x1b\x27\x83\x45\x3b\x69\xa3\x5f\xc1\x07\x41\x1b\x47\x83\x45\x3b\x6a\xa3\x53\x13\x5c\x0e\xae\xda\xcb\x36\x3a\x31\xc1\x7c\xb5\x9a\xad\x56\x93\x01\x7a\x6f\x23\x06\x37\xed\xbc\x8d\x7e\x34\xc1\xd9\xe0\xa6\x3d\x2b\x4a\x4f\x06\x37\xed\x49\x1b\x9d\x43\x10\xa6\xfb\xb7\xb2\x0d\x47\x0b\xcb\xb7\xbb\xb4\x64\x75\x97\x4c\xfa\x9a\x7e\x13\x6a\x1a\x6e\x91\xc4\x87\x05\x56\x16\x8b\x29\x49\xdf\xce\x6b\x31\xe4\x9b\x45\x9f\x97\xa7\x92\x3f\x22\x5e\x69\x63\x04\xb6\xac\x84\xa7\xd2\xcb\x31\x85\x7e\xa1\x49\xf4\xe2\xad\x28\xb1\x29\x04\x01\xab\xa3\x68\x62\xe1\xd3\xa9\x32\xda\xac\xae\x6d\x2d\x6a\x06\x91\xf0\x69\x05\x3a\xbf\x69\x6b\x34\xb5\xd7\x97\x63\x51\x9c\x8d\x7b\x04\xf2\x3a\x35\xcb\x7b\x0b\x74\x4c\x89\xe8\xa1\x8a\x06\x4e\x66\x5e\x6d\x5b\x6c\x13\xf3\x6a\x61\x18\xb1\x9e\xb2\x31\x11\x90\xde\x66\x8c\x39\x27\x78\x92\x15\xa3\xd2\xce\xb4\x54\xb7\x13\x32\x31\x1b\xd8\xb5\xc0\x92\xd0\xa2\x3e\x3e\x10\xa1\x78\xdc\xeb\x5b\x93\x31\xa5\x3a\x3c\xe9\xf2\xb3\xca\xb0\x12\xca\x8d\x5e\xaf\xd6\xcb\xb5\x20\x3c\x3e\x68\x67\xd6\x8a\x4a\xa1\x9d\x6b\x53\x2d\x54\xbe\x56\xae\x49\xeb\xef\x3e\x52\xc9\x60\xc6\xa5\xa4\x98\xeb\x76\xbc\xdd\x00\x72\xec\xf3\xdd\xb2\x72\xae\xc9\x70\xb8\xbf\x1b\xe8\x1c\x3d\xbe\x63\xab\x28\xd4\xee\xc3\x4d\x75\x31\x00\xe5\x91\x24\xed\xcc\x99\x7a\x91\x57\x59\x7a\x0d\x8a\xa0\x2f\xb2\x2c\xcd\x30\xfa\x20\x3e\x8b\xf4\x5a\x34\x96\x22\x91\x0d\xd4\x56\x3b\xa7\x1e\x5d\xdf\x70\x12\x3b\x17\x3a\xd2\x50\x33\xf6\x5e\xd8\x4c\x7a\xfe\xbe\x35\xe1\x1f\x61\xde\x9e\x9a\xd0\x89\x5a\x4b\x9f\x4d\x40\xab\xe5\xfc\x6e\x0b\xea\xc9\xfc\xd5\x04\x7f\x85\x59\x7c\x01\xa1\x7b\x94\xd9\xaa\xbb\x69\x89\xdd\x31\x3d\x2e\x46\xd8\x1f\xd3\x1f\x7a\xfd\x47\xfd\xbd\xa3\x3e\xdf\x6f\xef\xf4\xf6\x76\xf6\xf9\xfe\xa3\x17\xa5\x41\x57\x64\x1f\x76\x65\x05\x86\x61\x7d\x36\x68\x4c\xe1\xf1\xb2\x66\x2e\xd3\xc8\x9b\x5e\x74\x59\x9a\x9a\x6a\x13\xd9\x20\x4f\x09\xf8\xf8\x8e\xe0\xef\xf2\x29\x0b\x56\xab\xe4\x09\xc4\xc0\xdf\xe5\x13\x15\x83\x93\x36\xd3\x1d\xbb\x14\x6a\x9e\x2e\x49\x3b\x52\xdb\x53\x40\x97\x2c\x20\xb4\xac\xb8\xcd\x92\x1f\xd4\x76\xa8\xb6\xba\x04\x14\x04\xa9\xd3\xfa\x66\xe0\xcc\xa0\xd8\xfa\x9c\xae\x38\x93\x2a\x41\xb0\x33\x2c\x4d\x82\xa6\x3f\xe2\x87\xfe\x2e\x8d\xda\xb0\x6b\xf6\x77\xd5\x96\x7a\x86\xaf\x05\x8e\x08\xa1\xcb\x36\x4b\x69\xd4\x61\x1a\xa2\x14\x34\xf2\xcf\xf0\x12\x36\xce\x25\x6c\x9b\xb9\x56\x46\x8a\xa8\x7d\x1a\x65\x4b\x9a\x1b\x72\x95\x15\x44\x6a\x9b\x59\xa9\x5f\x9c\xf0\xfc\xb7\xad\xe6\x5a\x34\xa9\xa0\x35\xd3\x62\xc8\xdb\x28\x47\x23\x5c\x0c\x67\x09\x47\x27\x30\xd1\x6c\xe8\xb9\xd0\x19\x34\x2e\xde\x41\x48\x23\xe0\x19\x7c\x43\x3f\x5e\xc3\x67\x45\x93\xcd\x41\x72\xe6\x34\x5e\x72\x4c\x1e\x1f\x68\xa8\x4d\xb7\x5f\x42\x49\xdd\xf1\x9f\x74\xe5\xc6\xb6\xcd\x03\x09\xe8\x43\xf8\xa3\x1a\x65\x3a\x5a\x35\x71\x62\x05\x03\x7f\x01\x59\xf7\x68\x9c\x83\x09\xb2\x0f\x02\x67\x8a\x67\x56\x9c\x31\xa1\x49\x11\x06\xed\x80\xa8\x08\x5f\xa9\xf0\xb2\x08\xc7\x2a\x9c\x17\xe1\x53\x15\x9e\x15\xe1\x1b\x15\x9e\xb0\xf4\x09\xfb\x59\x74\xf3\xbc\xd5\x02\xd3\x84\xe9\x68\xb5\x4a\x9f\xa8\x18\x88\x30\x31\xc9\x13\xd6\x53\xe1\x39\x82\xc0\xcf\xa2\x3b\x87\xe0\x1c\xd1\x64\xb4\x5a\x45\x26\xf9\x0a\x41\xe0\x67\xd1\xbd\x82\xe0\x15\xa2\xd1\x68\xb5\x5a\x9a\xe4\x18\x41\xe0\x67\xd1\x8d\x21\x18\x23\xba\x1c\xad\x56\xb9\x49\x3e\x45\x10\xf8\x59\x74\x4f\x21\x78\x8a\x68\x3e\x5a\xad\x66\x26\xf9\x46\x25\x0f\xd1\xcd\x0d\xa2\x33\x27\xd0\x36\x19\xf6\x47\x4c\xd2\xc9\x70\x67\xc4\xda\xfc\x69\x40\x27\xc3\xdd\x11\x13\xb5\x16\x72\xad\x48\x6a\x49\x78\x0f\xcb\xd5\xaa\x47\x9b\x4d\x41\x39\xcd\xc8\xda\x77\x30\x34\x21\x6b\xa3\x64\xc2\x3d\x49\x5b\xae\xe5\x4e\x3d\xc1\x3c\x0c\x54\x8c\x0a\x42\xa8\xf4\xad\x4f\x09\x3d\xcd\x7c\xc5\xfd\x5f\x85\x8e\xa9\x04\x41\xff\x59\x07\x0a\xbb\x22\xdf\xaa\x76\x45\x74\x5d\xb9\x2d\xfc\x16\x23\x2f\xb8\x69\x76\xd9\xb3\x92\x5e\x52\x9a\xb6\x67\xd9\x06\x16\xa9\x4c\x26\x1c\xac\x2e\x4f\xa2\x45\x22\xa3\x59\x4e\x10\xfd\x55\x10\x68\xdb\xd8\x3a\xf9\x15\xa3\x7f\x18\xbb\x7b\x4b\x91\x7c\xd5\xa6\xf8\xbe\x9a\x18\xb3\x17\x18\x37\x2b\x5f\x0b\x83\xb5\xff\x30\x4e\xdf\x07\x9f\xe2\x36\x38\xb9\xb8\xed\xd1\x9d\x35\x19\x3c\xd6\x16\x4b\xff\x81\x6a\x6d\x7f\x16\x2e\xb8\x7a\x7c\xe7\x91\x6f\x68\x1f\xfc\x0a\x6b\x03\xa8\xaa\x99\xbb\x0b\xbf\x50\x0c\x0a\x5c\x1e\x18\xdf\x64\x0c\xf5\xbb\xfd\x9d\x6e\x80\xa8\x64\x5f\x25\xcd\xba\x53\xc1\xa6\x82\x66\x60\x9d\xa5\x46\x71\x56\x62\x64\x4d\xc4\x20\x3a\x1c\x69\x31\x55\x7d\xff\xe4\xbc\x4e\x51\x05\x90\xaa\x22\xaa\x53\x0a\xd7\x55\x80\xc5\x9a\x7b\x6b\x10\xbe\x5d\xac\xa2\x86\x48\x72\x95\x34\xb0\x1f\x98\x84\x6d\xdb\x45\x55\x6c\x29\x27\x2c\x56\xbf\x25\xb5\x74\xcf\x58\x96\xf6\x5e\xc1\x35\x94\x77\x48\x3e\x1a\x41\x71\x77\x14\x55\xf9\x93\x1c\x64\x6d\x73\x9a\xd9\x19\x39\x53\x78\xb3\xb6\xdc\x6f\x68\xd6\x8d\x8d\x69\x6e\xf6\x0b\xa4\xe4\xda\x15\x1f\xbb\xa6\x59\xfd\xeb\xbc\x77\x29\xe5\x44\xc1\x91\xcd\xa9\x5b\xad\x55\x71\x72\xdd\xa9\x77\xfe\x55\x14\xc2\x50\x87\xb7\x66\xa6\x1a\xb0\x13\x0b\xe8\x33\xe9\x30\x71\x87\xc4\x64\x19\x1d\x90\x51\x43\x57\xff\x36\x7f\x4f\xc7\x4e\x13\xa1\x4b\xc7\x7c\x9a\x08\xae\x1f\x5d\xd9\x44\x3a\x6d\x36\x13\xb3\x61\xe8\xc7\x0a\xe5\x7b\x36\xee\x53\x69\x94\xb0\x70\xc6\x72\x6b\xef\x3d\x65\x99\x95\xb5\x55\xe7\xe6\x0b\x9c\x52\x49\x28\x16\xb0\x1c\xde\x60\x49\x00\x43\x5c\x48\xd3\x50\x02\xa2\xdf\x89\x16\xd8\xa6\xb3\xc2\x93\xad\xf1\x5c\xaf\x12\x14\x89\x2b\x42\xa5\xf2\x03\x5d\x72\x33\x21\x2c\x95\x37\x5e\x42\x21\xe4\x48\x27\x84\x8a\x31\xaa\xdb\xa8\x4f\x71\x22\x4b\xc8\xde\x1c\xa8\x3b\xd1\xed\x0d\x97\x50\x54\x78\x96\x7c\xe3\x1f\x44\x22\x73\xf6\x8e\x66\x25\xc2\xff\x4e\x1d\x2b\xaa\xc6\x54\x6c\xbd\x85\xb1\xf8\x0f\x22\x44\x36\x87\xaf\xad\xd0\x6a\xe1\x0f\x82\x71\x50\x75\xab\xd4\xfc\xfe\x2a\xe3\xf9\x55\x3a\xdb\x72\xba\xd3\x95\x37\x19\xfb\x59\x68\x54\xbb\xd6\xe4\x00\xa2\x42\x0c\x3f\x4c\x52\x94\x5b\xa3\x8c\xb0\x45\x33\xd9\xe9\x11\xd5\x22\x34\x59\xb6\x3e\x5a\x6f\xc8\x14\xac\x7d\x62\x49\xf5\xa5\x13\xa8\xff\xd9\x47\xfe\x27\x9d\xfd\x41\x61\xa8\x34\x14\x4f\x3a\xbd\x01\x9a\x45\xb9\xd4\x96\x8d\xc4\x93\x40\x07\x4f\xd4\xf9\x49\x3c\xe9\xe9\xcc\x26\xd4\x1f\x20\xe3\xec\x52\x85\x0e\x74\x48\x17\x2c\xea\x84\x15\x6d\x6f\x11\x34\xbd\xfd\xf1\xfd\xe9\x4f\x7b\x17\x2f\x4f\xdf\xb3\xdb\x93\x67\xef\x5f\xbc\x7f\x7d\xfa\xe2\xe2\xa7\xb3\xe7\xcf\x7e\x0a\x37\xdc\x0c\x20\x5a\xce\x71\x71\xfe\xe2\xf9\xd9\x9b\x93\xf3\xcd\x9c\xa1\xe2\x52\x2a\x99\x4f\xeb\xf3\x81\xdd\x11\xc8\xeb\x27\x23\xaa\x4a\x86\xc8\xb4\x0b\xd5\xb8\xd6\x8a\x26\x20\xfe\xd4\x8b\xd2\xb5\x7d\x7c\xf1\xe2\xbf\x42\x30\x97\xde\x19\x7e\x1c\x7d\xfc\x88\xe8\xe9\xd9\x9b\xf7\x3f\xba\x06\x14\x1e\xd6\x98\xac\x89\x6f\xf9\x15\xf7\x82\x23\x02\xdb\xd4\xc6\x5e\x86\xd4\x8e\xad\x8d\x6f\x20\xeb\x10\x0c\xf7\xc9\xb1\x71\xba\xaa\xe9\x48\xe1\x40\x95\xa2\x8b\x0b\x9e\x9f\xa6\xf1\x72\xc6\x11\xbd\x85\x1d\x19\x9c\x42\x53\x69\x4d\x68\x1a\x0d\x19\xad\x17\xc3\x32\x2c\x70\x00\xac\x24\x0e\xa8\x0a\xf4\x77\xfa\x84\xd8\xbc\x04\xa7\xf6\xd3\x38\x23\x7d\x31\xe3\xa0\xc4\x56\xc4\xbf\xcc\xa2\x4b\x15\x05\x8a\x43\x74\x5b\x7e\xb4\x88\xe4\x15\xa2\xb7\xd3\x64\x36\x0b\x91\x00\xc3\x33\x71\x88\x4e\x83\x46\x70\xd5\xdf\xfd\xd2\xdf\xfd\x31\xf8\x25\xf8\x86\xd6\xe4\xde\x1a\x54\xa9\x5e\xaf\xd1\xdb\xbb\xea\x7f\xe9\x5f\x75\xfa\xdf\xe6\x41\xe7\xf0\xaa\xff\x65\x1f\xbe\xbb\x47\x47\x9d\xbd\xe7\xfb\xdd\xdd\x83\x46\xbf\xd1\x6f\xec\x77\x77\x0f\x1b\xfd\x46\xaf\x9f\xef\xaa\xa8\x5e\xd0\x38\xea\x1e\x1d\x35\x7a\xc1\xf3\xde\x41\x77\xaf\xdf\xe8\xc3\xff\xdc\x77\xaf\x7f\x6e\xbe\x1b\xbd\x9e\xca\xd8\xff\x76\xda\xeb\x37\xfa\xc1\xa4\xb3\xdb\xdd\xed\x37\x82\xce\x61\x67\xa7\xbb\x77\xd8\x39\xec\x1c\xe6\xfa\xa3\x01\xff\x6f\xa8\x40\x43\x05\xf4\x87\x8a\x53\xbd\x21\x14\xc1\xd1\xfd\x6c\x29\x67\x89\xe0\x88\x1c\x17\xe3\x90\xdc\x33\xda\xee\x46\x36\xab\xf7\xa9\xa3\x8f\x21\xa0\x76\xd6\x4d\x72\xad\x7e\x56\xbc\xec\x72\xed\x38\xb7\x8e\x10\x80\x24\x53\x33\xa0\x29\x6b\xf6\x68\x62\xe7\x83\xcc\x6e\x9c\x57\xc5\x88\x2e\x19\x1f\x9e\xdf\xcc\xc7\xe9\xac\x9b\x48\x9e\x45\x32\xcd\x46\x98\x1c\x37\x71\xc6\xc0\x7d\xbe\x5a\xe2\x58\x4d\x94\x54\x80\x2e\x99\x30\xde\xf1\xf5\x85\x00\xa1\x4d\xb9\x5a\x59\x83\x6f\x4d\xc6\x14\xc7\xcc\x14\xc1\x59\x4f\xc0\x04\x7d\x4e\x6e\x53\x05\x42\xc2\xf2\xf5\x34\x11\xd1\x6c\x76\x73\xab\x00\xc8\xb4\xcf\x46\xc6\x96\x5d\xdd\x8f\xd5\xca\x7e\x61\xe2\x72\x26\x53\x9c\x12\x7d\x39\x92\xac\x9d\x1d\xdc\xb5\x31\xea\xe7\xed\x23\xc5\x05\xca\xfb\x9b\x05\x37\x97\x28\xaf\x35\xdb\xd2\x88\xa4\xe4\xf3\x85\x6c\xc8\xb4\x11\x73\xed\x08\x77\x99\xf1\x86\x48\x45\x07\xba\x3c\x9e\x15\xbe\x10\x11\x51\x8b\x56\x74\x63\xb5\xc4\x22\x54\x63\xac\x3b\x5b\x93\x35\xa5\xff\xbe\xf5\xbb\xb5\x80\x99\x4e\x88\xde\x72\xb1\x9c\x6b\xb8\xc3\x66\x40\x2f\xb9\x0c\x37\xc1\x74\xab\x6b\x6d\xed\xff\x03\x09\xe8\xed\xed\x56\xa9\x0f\xb9\xe5\x5d\xfe\x75\x91\x66\x72\xe3\xee\x90\x83\x67\x20\x07\xa8\x9b\x72\xe6\x70\xab\xb5\x2e\xad\x41\x83\x8a\xc1\xc1\xc2\xad\x74\x61\xf4\xab\xec\x06\x5a\x53\x46\xae\x8e\x50\xe6\x0c\x5c\xdb\xf7\x56\xab\xd6\xf1\xf4\x09\xcf\x27\x59\xb2\x90\x69\x36\xb8\x27\x1d\x9a\x08\x6f\xd7\xc7\x99\xca\xb2\x5a\x65\xdd\x9c\xcb\xc1\x36\x3c\x83\x5a\x96\x1c\x8a\x11\xa8\x3b\x39\x85\x76\xb7\x9a\x39\x05\xeb\x48\x77\x0d\xff\xf7\x8e\xf9\xb1\xec\xfe\x9e\xe7\x0c\xed\xef\x46\x7b\x7b\xf1\xde\xc1\xe1\xf4\x70\x6f\x3f\xee\xef\x1d\xc6\x93\x9d\xdd\xbd\x71\x70\xb4\x1b\xf5\xa3\xfe\x78\x07\x51\xd9\xcd\xaf\x38\x97\xf9\x3b\x7e\x99\xe4\x32\xbb\x61\x28\xde\x1d\xc7\xc1\x38\x8a\x26\xe3\xc9\x5e\x7f\x3c\x8e\x77\x0f\xc7\xe3\xf1\x11\x1f\xf7\x77\x77\x76\x77\xf9\x24\x56\x65\xe6\x91\x88\x2e\x79\x96\x33\x34\x3e\xd8\x3f\x1c\x1f\x1c\x1e\xf5\x8e\xf6\x82\xdd\xe9\x38\x3a\x8a\x79\x7f\x12\xec\xec\xed\xee\x4d\xf6\x26\xf1\x4e\xe4\x5a\x38\x5b\xa8\xde\x29\x98\xa6\x93\xbd\x83\x20\xde\x1f\xc7\xfb\xbd\x9d\xc3\x9d\xc3\xde\x51\x1c\x4c\x8f\xf8\xc1\x6e\x70\x30\xd9\xdd\xeb\xc7\xe8\x4f\xc6\x05\xb5\xdb\x01\xb3\x1f\xaf\xb8\x50\x74\x89\x3f\x9f\x45\x79\x0e\xea\xe8\x16\x0b\x4c\x76\xdf\x2d\x67\xfc\xa7\x24\x97\x4c\x76\xcf\x21\xee\x54\xf7\xd5\x85\x1d\xa6\x64\x57\xa6\xcf\xf3\xfc\x17\xd5\x12\x83\xc9\x72\x72\x23\xa2\x79\x32\x39\x97\x37\x8a\x2b\xf5\x76\x4b\xb5\x74\x7b\x7b\x87\x77\x2c\xde\x6a\xe9\x07\x2e\xca\x29\xce\xc8\xe6\xba\x14\x78\x77\xe7\x8e\xb6\x0a\xb0\x1f\xdc\x4a\xba\xd1\x4a\xc2\x04\x3e\xea\xdd\xd1\x4a\x19\x5b\x0f\x6e\x29\xd9\x68\x29\x02\xe4\x1d\xdd\xdb\x94\x19\xa8\x07\xb7\x14\x6d\xb4\xb4\x64\x02\xef\xdc\xd5\x90\x9d\x1c\x0f\x6e\x63\xb9\xd1\x46\xce\x04\xde\xbf\x6b\x26\xe8\x99\xf8\xe0\x16\xf2\x8d\x16\x66\x6a\x64\x76\xef\x68\x61\xcb\x2a\x78\x70\x93\xb3\x8d\x26\x27\x6c\xaa\xb6\x82\xfd\x5d\xe2\xbd\x99\x4f\xfd\x2b\xdc\x32\xdd\x1f\xf0\xf0\xd6\x3e\x55\x70\xfd\x38\x1e\xbb\xe5\x59\x6b\xfa\x8c\x5f\x37\x26\xb6\x55\x75\xd4\xf4\xb8\xa1\x18\xdf\xc7\xfd\x7e\x37\xf9\xd4\x6b\xd6\xeb\xbb\xeb\x94\xb6\xf5\x7b\x5b\x98\xca\x0d\x8e\x45\xe1\x9d\x5b\xb4\xdb\x4e\x2d\x1b\x74\x74\xbb\x05\x46\x99\x1f\x58\xad\x9a\x3d\x75\xf6\xb2\xbe\xc9\x54\x7a\xd3\x5e\x84\xa1\x44\x34\x32\x70\x29\x79\x9d\x25\xd2\xa4\x6d\xdb\xc7\x39\xcd\xba\x9f\xf9\x0d\xcd\x88\xe3\x67\x1c\xdc\x46\x82\xc4\xe2\xb0\xd5\xe2\xd8\x77\xaa\x27\x08\xcd\x20\x8e\x66\x44\xed\x41\xd8\xd2\x8f\xfa\x8e\x93\xdb\xe6\xc6\xed\x42\x13\x97\xbc\x3e\x4b\x42\x6a\x19\xa7\xe7\x91\x10\xa9\x6c\xa8\xed\xb9\x11\x35\x26\x6a\xc6\x35\xa2\xbc\x11\x39\x50\x91\xbd\x23\xb5\xf7\xfc\x99\xa5\xb2\x43\xb7\x63\xaa\x6d\x77\x78\xfb\x99\xdf\x84\xe0\xdb\x8f\xea\xf1\xda\xa2\xa6\x6e\xcb\x53\x75\x7a\x4d\xf5\xde\xd3\x4d\x44\xcc\xbf\x1e\x5b\x8f\xdf\x52\x87\xc1\x29\x81\x62\x2e\x02\xcf\x55\xfb\x6a\x25\x9e\x1a\x93\x0d\x2a\x8f\x35\x76\xcc\x8d\xd9\x1b\x3b\xfc\x5a\xd6\x57\xfa\xe6\x89\x93\x29\x06\xff\xec\xa5\x36\x9f\x3a\x13\x01\xb0\x29\xc8\x6e\xbe\x00\x8d\xf5\x8c\x82\x25\xa0\x35\xd5\xdd\xca\x78\xce\xe5\x46\xc7\x14\x33\x5a\xc1\x48\x51\x60\x9e\x7e\xe1\x0f\x44\x85\xd7\xdd\xe3\x72\x82\x81\x06\x5e\x89\x6d\xd5\xf6\x72\xb9\xae\x72\xff\xc1\xc2\x55\x32\x4d\x66\x92\x67\xb8\x56\x3f\x3f\x92\x32\x9a\x5c\xf1\x78\x4d\xba\xf3\x68\x51\xe4\xf1\x2c\x6c\xbb\xdb\x6c\x70\xd7\xd4\xfd\x3d\x4d\x04\x46\x9f\xd4\xc4\xb0\x10\x01\xf8\x68\x0b\x55\x72\xf6\x4b\x1d\x3c\x7a\x4c\x06\x41\x58\x8a\x1e\xd6\x65\xea\xf4\x2a\xe3\xb5\x5e\x8f\x08\xe5\x6a\x41\x14\x64\x26\xfd\xb7\x10\x19\xaa\x76\xeb\x83\x23\x38\x46\x67\x2c\x25\xad\x56\xe6\xd3\xc9\xac\xa0\x93\x99\x4f\xf3\xea\xb0\xdc\x6a\xf1\x61\x62\x73\x8c\x5a\x2d\xce\x18\xf3\x63\xb4\xdd\xe0\x3f\x99\xb5\xda\x04\x48\xf3\xff\x19\x17\xb1\xa1\x7b\x92\xf2\x6e\xb6\x9c\xf1\xbc\xd5\x92\xdd\x49\x9e\xbf\xd3\xdf\x26\xb2\x3b\x4b\xc4\x67\x5c\x24\xfc\xe9\x40\x1a\x62\x9e\x60\x81\x77\x7a\x04\xdc\x8f\xab\xef\xa3\x3d\x42\x68\x02\xbb\xd6\x0e\xf1\xb7\xad\xe4\xc1\xdb\x56\x4d\xef\xad\x80\x4a\x70\x5c\x43\x8b\xc9\x2d\xe6\x6d\xd6\x23\x4f\x7b\xbc\x17\xb4\x5a\x38\x28\xfc\x64\x12\xdc\xec\x51\x34\xfc\xfb\xf9\xf9\xa8\xf1\x6b\xba\x6c\xcc\x93\xcb\x2b\xd9\xb8\x8a\xbe\xf0\x46\xd4\x98\xf3\x79\x9a\xdd\x34\x66\x3c\xfa\xdc\x6d\x28\x24\x35\x26\xe9\x52\x48\x0e\x86\x86\x22\xd9\xf8\x21\xef\x22\xca\x2d\x5b\x86\x26\x88\x46\xac\x90\xfd\x11\xad\x16\x4e\x98\x70\x13\x7c\x62\xf7\xfb\xb7\x19\x9f\x26\x5f\x57\x2b\x55\xc0\x18\x32\x71\x99\x7e\xcf\xf3\x6e\x12\xb7\x5a\x38\x6a\x6f\xc4\x12\x42\x11\x6a\x27\x6d\x77\x20\x6c\x47\x6d\xbe\xfe\x37\x0d\x9b\x29\x16\xe5\x79\x72\x29\xfc\x4b\x89\x62\x0f\x96\xac\x77\x2c\x9f\xb8\x9b\x7c\x4b\x8c\xa5\xdd\x8b\x05\x73\x69\x43\x59\x98\xb1\xcf\xd4\xa9\x52\x90\x07\x1d\x29\xd5\x36\xda\x6a\x61\x2d\xfc\x3f\xcc\x46\xce\x2c\x19\x5f\xd3\x6d\xdb\xe5\xff\x97\xf9\x04\x9a\xb0\xa5\x5a\x43\x3b\xf0\x74\xac\x3e\x77\x8e\xfc\x35\xb4\xfc\x2e\xd6\x2f\xdf\x82\xc1\xc2\x46\xa2\x36\xc0\x6e\x91\x99\xa8\x91\xfb\x9f\x63\x45\xf4\xfb\xca\x83\x2d\x6c\xa6\x86\xae\xe9\x62\xda\xb1\x79\x35\x8e\xd0\x74\x6d\x0c\x97\x9a\x9d\x91\x35\x7b\xc6\x15\x2a\x5f\xcc\xd2\x1b\x2f\x42\xd1\x47\x2f\x08\x10\xf3\x1c\x9c\xda\xab\xb0\x59\x9b\x2c\xc3\xb7\x6b\x2a\xe8\x2d\x1c\x1f\xb4\xe3\x1d\xfd\xac\xa2\xbf\x4d\xb1\xd0\xaf\x63\xed\x78\x2d\x45\xab\xb9\xf6\x72\x2e\xba\xef\x4c\xd0\xc8\xc8\xeb\x2c\x0a\x7c\x48\x8f\x1c\x17\xee\x37\x4f\xa8\x24\x45\x46\xb0\xee\x98\x50\xed\x94\xcc\x8b\x5e\x64\xe9\x84\xe7\x39\x76\xcb\x27\xf5\x58\x3a\x40\x44\x0d\xf3\x53\x92\xf9\x35\xd8\x32\xfe\xa6\x4a\x08\x33\x3a\xfd\x3a\x88\x2b\x5d\x33\x25\x31\xa1\x4d\x0f\xa9\x46\xd7\xc5\x92\x37\x15\x69\xa2\x60\x53\x22\xd5\x21\x0a\x8c\x17\x64\xcb\x91\xc4\xfc\x7b\x60\xc6\x65\x88\x74\xe1\xcd\x46\x7a\xc6\xac\x1a\x88\xce\xd8\x96\xa2\x38\x7e\x07\x14\xb2\xca\x8c\x6d\x58\x82\xfa\xe7\x92\x2f\xf9\x71\xa9\xce\x56\xab\x99\x59\x9d\x32\x48\x66\xc3\x91\x65\xf5\x2b\x83\x66\xd4\xe8\x7c\xf8\x7d\xe2\xbf\x98\x2d\x2f\x13\x91\x77\x53\x45\x1f\xd5\x50\x2a\xa0\x70\x5a\xe9\xc3\xa0\x34\x2e\x03\x9c\x0d\x32\xcd\x3e\xa7\xc4\x8c\x59\x22\x72\x9e\xc9\x52\x61\x00\xac\x04\x65\x77\x9a\x66\x2f\x14\x8a\x2a\x45\xa8\x37\x2f\x75\x77\x8c\xe5\x2e\x42\x53\x12\xa6\x95\x69\xa1\x10\x9a\xfa\x4c\xa4\xad\xe6\x5e\xae\xd9\x8c\x93\x07\xab\x62\x9c\x6b\xe7\x0c\x06\xaf\xc8\x76\x2b\x07\x6f\x30\x95\x91\xcb\xeb\x86\xae\xb8\x56\x2f\xef\x4a\x9c\x98\x4b\x71\x8d\x56\x5d\x03\xce\xa8\xda\x7f\xa8\x2c\xec\xf0\x0a\xd7\xca\x25\xdf\xda\xa7\x12\xb3\x0e\x03\x7d\x09\xe6\x36\xbd\x59\x3c\xe3\x92\x3f\x04\x25\x5e\x69\xe7\x22\x49\xda\x31\xd3\xa9\xfa\x44\x82\xa5\x5d\x68\x76\x4e\xac\x56\x4d\xe9\x31\x85\x66\xb1\x7a\x8b\xc1\xc2\x80\xfd\x6c\xa4\xc2\xfd\x9f\x4d\x1f\xd6\xc3\xe2\xa4\xe3\xf5\x52\xcd\x87\x7b\xd6\xaa\x07\x8f\x4f\x45\x8a\xb9\x14\xd0\xd2\xb2\x54\xa3\x5f\x53\xa5\x27\xa4\xec\x6a\x34\x23\x94\x63\x5f\x02\xc8\x03\x19\x28\x8e\xdd\x72\x2c\xcd\xaf\x34\xf7\xe0\x33\x19\xd4\xe8\x1f\xa8\x6a\xce\x33\xf9\x7f\xe6\xc9\xb0\x77\xb0\x0f\x8f\x86\xfa\xfb\x00\x18\x08\xfd\x7d\x04\x72\x67\xf0\x7d\xd8\x03\x99\x33\xfd\xbd\x03\xf2\x66\xfa\xfb\x90\xb8\x0b\xa7\xea\x08\xde\x1a\xe2\x14\x0e\x71\x50\x3c\x05\x12\x4c\x68\x79\x75\x42\x38\xaa\x84\x97\x95\x70\x5e\x09\xcf\xbc\xf0\x68\xed\x9f\xc4\x26\xff\x19\x34\xee\x28\x2a\x80\x05\x56\xc8\x84\xdf\x7d\x62\x0f\x00\x1b\x13\xb1\xca\x1a\x3f\x0d\x5a\x2d\x27\x3d\x50\xf0\xc6\xc1\x68\xe0\x07\x42\xc5\x61\x30\xde\x1d\x47\xb9\xbe\x23\xe4\x39\x5c\xa6\x08\x7e\x6d\x82\x85\x32\xd2\xf3\x74\xbe\x48\x05\x17\xea\xa8\x27\xd2\xbf\x45\x39\xa7\x62\x50\x1e\x06\x55\x9b\x65\x4d\x3f\xf3\x9b\x1c\x0b\xd2\xcd\x78\xbc\x9c\x70\xdf\x39\x94\xc7\x85\x6a\x45\x68\x60\xb9\x11\x52\x1c\xf0\x24\x92\x70\xb5\x42\x51\x03\x11\x1b\x01\xdc\xb8\x9a\xdb\xf4\x76\x0d\x96\xdf\xbf\xe3\x99\xf4\xcf\x19\x8f\x8c\xdd\xee\x05\x21\xfa\x3f\xfc\x90\x47\xd3\x7d\x44\x7b\x81\x0a\x4d\xf6\x26\x11\x3f\x42\xb4\x0f\xa1\xa3\x69\x74\x18\x47\x88\xee\x40\xe8\xe0\xe8\x70\x7f\x32\x46\x74\x17\x42\x7b\x93\xfd\xf1\x24\x40\x74\x0f\x42\x3b\xd3\xbd\xde\x78\x0f\xd1\x7d\x1d\x3a\xda\x3d\x8a\xc6\x88\x1e\xe8\x50\xb0\x33\x3d\x9a\x22\x7a\x08\xa1\xfe\xe1\xce\xde\xd1\x0e\xa2\x47\x10\xea\x45\xfd\x9d\x03\x8e\xe8\x33\xdd\xfc\xe1\xe4\x88\x4f\xa7\x88\x3e\xd3\xed\xef\xed\xec\xc7\x53\x95\xaa\x9b\xdc\x89\xf7\x22\x08\xda\x7a\x77\xa7\x53\x8e\x7c\xd4\x65\xff\xa3\xa8\x9b\x4e\xf8\x2e\x9f\x58\xd4\x4d\x0f\xc7\xe3\x38\xb0\xa8\x9b\xee\x1e\x4e\xc7\x3d\x8b\xba\x69\xb0\xdf\x3f\xea\x5b\xd4\xf1\xc9\x6e\x70\x10\x59\xd4\xf1\xa3\x1e\xdf\xdf\xb1\xa8\x8b\x0f\x7b\xe3\xfd\xc0\xa2\x6e\xd2\xef\x1d\xee\x8d\x2d\xea\xa2\xb8\xb7\xbb\x77\x60\x51\x77\x78\x18\xf0\xdd\xa9\x43\xdd\x74\x7a\x18\x28\x9c\x1b\xd4\x4d\xa7\xbb\xc1\x61\xcf\xa1\x6e\xba\x17\x04\xaa\xa8\x41\xdd\x64\xaf\xd7\xdb\xef\xff\x27\x51\x17\xa9\x7f\x0e\x75\x7b\xea\x9f\x45\x1d\x87\xff\x2c\xea\x78\xa0\xfe\x59\xd4\x8d\x63\xf5\xcf\xa2\xee\x88\xab\x7f\x16\x75\x07\x7b\xea\x9f\x45\xdd\x7e\x4f\xfd\xb3\xa8\xdb\xed\xab\x7f\x16\x75\xfd\x9e\xfa\xe7\x50\x17\xef\xa9\x7f\x0e\x75\x11\xfc\x57\xcc\xba\x40\xfd\x73\xa8\x33\xf5\xfe\x07\x51\x37\xe5\x63\x85\x1e\x3b\xec\x93\x38\xee\x3b\xd4\x4d\x8f\xa2\x23\xb7\x60\xf9\xde\xc1\xce\xc1\x8e\x9b\x75\xd3\xbd\x9d\x3d\xb7\x60\xa7\xbb\xbb\x3b\x3b\xfb\x16\x75\x7c\x6f\xe7\x68\xc7\xa1\x2e\xde\xe9\x4f\xfb\x6e\xc1\x4e\xf6\xfb\x87\xfd\x43\x8b\xba\xf1\x41\x6f\xd2\x9b\xf8\xb3\x2e\x3a\x0c\xbc\x59\xb7\xd7\xdf\xeb\x17\xb3\x6e\xda\x3b\xd8\xdd\x75\xa8\x8b\xf7\x82\x20\x08\xfe\x33\xa8\x1b\xcf\xa2\xc9\xe7\x10\xfd\x1f\x05\x00\xbd\xbe\x4a\x24\x07\xf8\xa6\xdf\x05\xcd\x9f\xb3\x29\xca\x6e\x92\xbf\x01\x87\x22\xf0\x69\xe4\x99\xa5\xf1\xc7\x74\x9a\x33\x59\x08\x97\xca\x2e\x8f\x72\x95\xbc\xb1\x93\xee\x6a\x19\x26\xbb\x99\xde\xf2\x28\xe7\xaf\xc5\xd9\x52\x86\x68\xb2\x1c\x27\x93\xce\x98\x7f\x4b\x78\x86\x83\xee\x2e\x6d\x04\xb4\x11\x74\xfb\xb4\xd1\x23\x88\xaa\x8c\x75\xd9\x82\xcd\x6c\xaf\xc5\x96\xca\x7a\x3a\x4f\x7e\x15\x65\x8b\xad\xed\xed\x43\x26\x78\xd5\x37\x9d\x48\xcc\xc3\xe8\x2d\x18\x85\xe0\xb9\x0c\x7b\x7b\x01\xd5\x81\x2c\xec\x07\xe6\x3b\xec\xab\x58\xb0\x0c\x95\xc5\xe1\x4e\x10\xd0\x49\x3a\x5f\xcc\xf8\xd7\x70\xe7\x60\x8f\x72\x21\xb9\xc2\xd8\xf9\x24\xe3\x5c\x84\xfd\xfe\x1e\x9d\xf1\xe8\x4b\x11\xd3\x3b\xda\x83\x41\xb5\x38\x8c\xcc\x23\x69\x8d\x9a\xb9\xdb\xa0\x3d\x55\x2b\x4e\xb4\x07\x67\x55\x87\x1b\x92\xe5\xb1\x37\x54\x35\x15\x6d\x5e\xa8\xac\x8f\xbd\x71\xde\x2c\xd1\xd4\x9e\x4b\x7c\x21\x6f\x42\xd6\xe6\xa9\xf5\x56\xe3\x2b\x4c\xa8\xed\x44\x18\x51\xfd\xca\xb8\xc9\xaf\xff\x41\x36\x69\x88\xa2\xd9\x0c\x8d\xa8\xdc\xac\xa0\x57\x5b\x41\xcf\xaf\xa0\x07\x7c\x96\xf0\xa6\x2a\xcd\x98\x93\xe4\x14\x83\xa8\xeb\xc6\x4f\xd0\xdc\x4d\x63\x3a\x2b\x32\xe5\x83\xa4\x5b\x4c\xda\x9c\x4e\x54\x65\x7c\x16\xdd\xd0\x69\x91\x69\x32\x08\xc2\xc9\x71\x99\x25\x93\x74\x88\x6c\xab\x88\x22\x5d\x33\xa2\x08\x0a\x23\x27\x6f\xbb\x21\x28\x36\xe0\xe1\x90\x8f\x2a\x4f\x39\x35\x73\x81\x97\x38\xb5\xcd\xa1\xcd\x06\x59\xb8\xc4\x19\x29\x65\x9b\xdd\x53\x68\x3a\x98\x86\x4b\x3c\x25\xc5\x23\x11\x45\x64\x4d\x2f\xb9\x7c\xb6\x94\xe9\x8f\x3c\xb9\xbc\x92\x56\x52\x3b\xac\x2a\xde\x38\x81\xa3\xc0\x08\x1c\xf1\xc7\x3b\xfb\xc7\xbe\x46\x9d\x9e\xba\xbd\xe0\x11\xde\x6d\xf7\xf6\xb4\xef\xca\x45\x7a\x8d\x25\xed\xf6\xf7\x48\x5b\x3e\xde\x53\x67\xd2\xef\x38\x46\xe1\xea\x61\xfa\x5f\xa7\x7b\x95\x99\x5b\x33\xf1\x1e\xcc\xe0\xc3\xc4\x8b\xc4\x25\xcf\xd2\x65\x3e\xbb\xf9\x90\xf3\x57\xb3\x74\x1c\xcd\x9e\x9f\x9f\xbb\x79\xd8\x64\xe0\x9a\x97\xa6\x0c\x2e\x85\xe3\x25\x34\xae\x5f\x0f\x9c\x10\x20\x63\x2c\x1d\xa0\xdf\xf3\x1c\x85\x29\x8d\x58\x70\x8c\x96\x42\xf7\x2d\xf6\xdc\x09\x5c\x27\x22\x4e\xaf\x15\x5b\xdf\xbd\xb8\x38\xfd\xf0\xfa\xe2\xd5\x8b\x37\x2f\xde\x3d\x7b\x7f\xf6\xee\xe2\xf9\xd9\x87\x37\xef\x5f\xbc\xbb\xb8\x68\xb3\x1e\xbd\x23\xf9\x69\xbf\xd5\x9a\xa4\x22\x4f\x67\xbc\xcb\xe1\x4a\x77\x88\x4e\x23\x45\xc9\xa2\x59\xe7\xc3\xeb\xb0\x71\xcd\xf5\xbb\x49\xcc\x25\x9f\x48\x1e\x6b\x0f\x01\xf2\x2a\x12\x0d\xc1\x79\xcc\xe3\x86\x75\x80\xd7\x00\x5f\x25\xdc\x5c\x02\x8b\x68\xce\x1b\x97\x5a\x28\x22\xcd\xba\x88\xa2\x5f\xd3\x65\x23\xbf\x4a\x97\xb3\xb8\x91\x8a\xd9\x0d\xa8\xc0\xa4\xa2\x3e\x7f\x23\x15\xa6\xae\x84\x0b\xd9\xc8\x93\x98\xab\x2a\x5e\x4f\x1b\x37\xe9\xb2\x11\xa7\x8d\x54\x5e\xf1\xec\x3a\xc9\x39\x85\x18\x19\x7d\xd6\x1a\x33\x59\x92\x7f\x6e\xc8\x54\xc3\x3c\x49\xc5\x74\x96\x4c\x64\x22\x2e\xbd\x56\xf2\x46\x22\x1a\x05\xe6\xbb\x68\xe4\x3d\x8f\x16\xb7\x41\x1b\x37\xe2\x91\x42\x65\x06\x9f\x3a\x42\xba\x6b\x2b\x55\x2d\xa9\xae\xd7\x72\x32\x45\x9d\x62\x1d\x72\x75\x66\x53\x1b\xd0\x96\x57\xa4\x75\xb5\xae\xc4\x15\x8d\xc8\xdd\x89\x6b\x7b\x8e\x3d\xbe\x63\xd4\x59\x50\x91\x7b\xee\x1f\xfe\x5b\x65\x9e\xff\xbd\x32\x93\xfd\xa0\x77\x2f\xf4\x9e\x0c\x6f\xe9\x42\x49\xcd\x7d\x90\x38\x4d\xe1\x4e\xe9\x84\x67\xc9\x17\x1e\x9f\xcb\x48\xf2\x97\x59\x3a\x57\xb0\xe6\xfa\x42\x6e\xa1\x3e\xf5\x7d\x52\xae\x92\xad\xeb\x1d\xc6\x3d\xea\xe0\xdc\x06\x71\x09\x75\x94\xcc\x79\xa4\x8a\x66\x95\x93\xfd\xa7\x7b\xcf\x74\xfc\x83\xa0\xf2\xd5\xdf\x0c\x28\xc2\x03\x45\x0c\x84\x31\xeb\x36\x4e\x44\x6c\x3d\x58\xfb\xef\xb2\x6a\x5e\xcb\xec\xc6\x6f\x58\x77\xd2\xdc\x7d\x43\x37\x8f\x8b\x78\x6b\x34\x1e\xe2\x99\x34\x0a\xfe\x17\x19\x8f\x26\xf2\xb5\xe2\x7e\x44\x34\x3b\x17\xd1\x22\xbf\x4a\xe5\xcb\x59\x74\x69\x2f\xdc\xb6\xe5\xd1\xad\x5c\x72\x69\x23\xb4\x6e\xd7\x07\xfd\xaa\x23\x68\x56\x08\x1a\x7b\x40\x08\x1f\x88\x6c\x5d\xf4\x28\xf2\xec\xdd\x78\x76\x12\x40\x43\x14\xee\x4b\x93\xfc\x9d\x02\xc3\xdd\xae\x90\x0d\xb5\xee\xe7\x91\xd0\xb4\x69\x91\xce\x6e\xa6\xc9\x6c\x66\xc8\xc6\xc4\x16\xc9\x11\x58\xa4\x28\x74\x4f\x3c\xdf\x2e\x5b\x47\xaa\xd5\xaa\xcb\x2f\xb7\xf5\xbc\x2c\xc5\x2b\x98\xd6\xac\xd2\x3f\x4b\xf8\x29\x83\xe0\x79\x8a\xea\x3a\x40\x3f\x26\xb3\xd9\x69\xba\x14\x72\x20\x18\xda\x8c\x45\xb5\xea\x33\xb2\xfb\xe1\xcd\xf9\xb3\x97\x2f\x2e\x36\x0b\x80\x7a\x25\xda\x9a\x8c\x08\x7d\x00\x40\xef\xf8\x84\x27\x5f\x80\x00\xe4\x83\xa8\x02\x97\x9f\xf8\x3d\xe0\xf9\xe5\x5a\x2d\x1c\xd5\x43\x59\xaa\xfd\x41\xc0\xea\xc1\x18\x2c\x2b\x60\xea\xe8\xef\x01\x50\x97\x68\xb5\xf0\xb2\x1e\x34\x53\x23\xa1\x76\x11\x6b\xd1\x7b\xc5\x6b\xb8\xaf\xa5\x9e\xd9\x39\xe8\x0e\xe5\x8b\x59\x74\xa3\x36\x8b\xd5\x8a\xeb\xbd\x65\xc6\x6a\xb5\xa1\xb6\xce\xc8\x01\xda\x4a\x55\x08\x82\xe7\x8f\xda\x25\x49\xd0\xb1\x5e\x32\xce\x0a\x42\x1e\x4d\x79\x63\xc6\x2f\xa3\xc9\x4d\x63\x96\x4c\xf9\xe4\x66\x32\xe3\x79\xe3\x5a\x2d\x1d\x91\xca\xc6\x98\xc3\xd3\x30\x8f\xc1\xb9\x50\xb1\x8c\x1a\x4b\xc5\x1c\x6b\x39\x44\x1b\xd9\x78\xf6\xf6\x75\xde\xfd\x24\x3e\x09\xd4\xce\xdb\x48\xf1\x07\x79\x03\xb5\x67\x6d\xd4\x18\x2f\x65\x23\x9a\xe5\xa9\xda\xd1\x65\x94\x88\x1c\xf6\xfa\x69\x3a\x9b\xa5\xd7\xaa\x9e\x0d\x08\x42\xd4\xc6\x16\x9d\x03\xf4\x49\x34\x1a\xa8\x2d\xb4\x65\x15\x8b\x5b\x1b\x1d\x95\xa2\x97\x36\x7a\x09\xd1\x48\x81\xf3\xfe\x8a\x37\xa2\x71\xfa\x85\xfb\x5d\x34\x9c\xcc\x98\x37\xf4\x1b\x4d\xdc\x6d\xfc\xc4\xa3\x4c\x68\xfe\x28\x1a\xa7\x4b\x09\xaf\x07\x0d\xe3\x6b\xa9\x71\xc5\x33\x1e\x7e\x12\x57\x52\x2e\xf2\xf0\xf1\xe3\xe9\xb8\x3b\xe7\x8f\x81\x2e\x76\xa2\xfc\x46\x4c\x3a\x0e\x11\x1d\xd7\x4c\xe7\x2a\x4d\x3f\xab\x33\xdf\x96\x05\x7f\x17\xcd\xc1\x75\xd4\x80\x65\xf4\x8e\x35\xc9\xd2\x6d\x2b\x63\x1b\xa9\xba\xdd\x42\x0c\xbd\x46\x4e\x92\xd8\x64\xae\x23\xb7\x6a\x92\x38\x62\xbb\x75\xde\x55\x67\x8f\xbc\x8a\xa4\xe2\x02\x55\x69\xcd\x54\x34\x36\xdb\xc3\xc4\x72\x91\x6e\x33\x00\xb5\x9f\x9a\xc5\x67\x6e\x00\xd4\x51\x6f\xb3\x9e\xe3\xba\xc8\x3b\xbd\x07\x6d\xdf\x12\x07\x77\x65\x08\xc5\xf1\xa4\x62\x83\xd5\x13\x2f\xe1\x6b\xd1\xcd\xb0\x24\xd4\x28\xbf\x58\xac\xd5\xe9\xc0\x44\xa0\x66\x7d\x71\x91\x2f\x17\x8b\x8c\xe7\xf9\x89\x51\x40\x4f\x52\xf1\x51\x4f\x47\x50\x3b\xba\x37\x47\x72\x5f\x8e\x3f\xff\x9a\xec\x92\xcb\xf7\x59\x24\xf2\x44\x9f\x8a\xd4\xac\xac\xd7\xa1\x94\xc9\x9c\xa7\x4b\x49\x33\xc6\xbb\xb9\xbc\x99\x71\x9a\x16\x87\xa7\x6c\x70\xbb\x0e\x33\xc3\x1d\xdd\xba\xdb\x8a\xb4\x2b\x5d\xdd\xf6\x54\xbb\x5a\x6d\xb8\xd1\x6d\x00\xef\x34\x94\xdd\x79\x1a\xf3\x11\x85\x03\x7c\xb9\xac\x8a\x59\xaf\xa9\xec\x66\x7c\x3a\x4b\xaf\x9d\xea\x96\x0d\xd7\x8a\x6d\xe6\x93\x2c\x9d\xcd\xde\xa7\x8b\xfb\x84\xbb\xfe\x37\xb3\xda\xfb\x0f\x55\x4f\x72\xdd\xbe\xe6\xe3\x45\x34\xf9\xfc\xd6\xcc\xd7\xd5\x0a\xf3\xae\xb3\x88\xe0\x9f\xbe\xd7\x94\x77\x17\x91\xbc\xca\xd9\x70\x44\x79\x77\x72\x95\xcc\xe2\x8c\x0b\x28\x60\x03\x60\x13\x78\x9b\x48\x16\x9a\xa5\x51\xcc\xe3\x07\x76\x91\x77\x67\xeb\xad\x08\xe3\x14\x25\x0f\xaf\x28\x51\x15\x6d\xf4\x94\xf5\x08\xe5\xf7\x8d\x75\x55\xb9\x30\x99\x62\xae\x26\xa2\xe1\x02\x9b\xe0\x18\xad\x24\x8a\x75\x02\xdc\x84\xac\x46\x39\xb6\x11\x96\x50\x32\xe7\x98\x80\x04\xb6\x0b\x79\xba\x60\xad\x16\x4a\xa1\xdb\x65\xdd\x69\xa3\xdc\x5e\x97\xea\x0b\xdf\xfd\x11\xfd\x31\xc5\x85\x3f\x28\xbb\xc2\x90\xed\x7b\x0f\x98\xf7\x0c\xf3\xa1\x18\x51\x39\x14\xa3\x22\x65\x5d\x82\x46\x3e\x18\x1a\x55\x7d\xab\xf5\x30\x50\x78\x09\x14\x3b\x1e\x6b\x07\xc2\xbd\x5a\x88\x0f\x1e\x78\x7d\x0e\xb3\x03\x88\x89\x51\xce\x94\xe4\xb6\x74\x37\x53\xbd\xaa\x91\x64\x5d\x39\x5d\xba\x39\x00\x19\x40\x2c\x58\x7f\x99\xab\x2c\x0b\xf3\x78\x0b\xcc\xf4\xae\x3e\xa5\xf7\xf6\xc9\x94\xe6\x75\xa5\x67\xf7\xd4\x3e\x29\xd2\xe3\xba\xf4\xb8\x48\xaf\x85\xfe\xaa\x48\x9f\xd4\xa5\xcf\x8b\xf4\x69\x5d\xfa\xd8\x09\xc9\x0a\x7c\xb0\x43\xb4\x24\xf9\x2e\xa1\x09\xbb\xfd\x9c\x88\x38\x44\x2f\x13\x3e\x8b\x11\x55\x0c\x77\x68\xa2\xb4\x9e\x8f\xa6\xbe\xe8\xe2\x42\xcd\x24\x95\x8c\xd6\xeb\x63\xff\x58\xea\xfb\xc0\xe8\xe6\x7c\xc6\x21\xe5\x9c\xcb\x22\x90\x6f\x17\xf8\x6f\x62\xb5\x5e\xad\x76\xf7\xf9\x22\xe3\x11\x58\xa3\xe6\x5d\x05\x44\xab\xd5\x8c\xb0\x1c\xea\x83\x80\x56\xfa\x05\xa1\xa6\x35\x71\xb7\x97\xeb\x5a\x41\xd2\x1a\xad\x01\xde\xcd\xd3\x39\xaf\x05\xa1\xa9\x1b\xb0\x27\x0e\xc5\xe9\x79\x2d\x92\xd5\x0a\xb2\x48\x9e\xab\xa3\xb6\x73\x4b\x46\xd6\xfe\x0c\xcd\x0b\x2b\xac\x55\x8b\x0e\x02\xce\x97\xcd\x1e\xa1\xc5\x16\xde\x6a\xe1\x0c\xa2\x4a\x68\xaa\x2a\x3c\x28\x06\x54\x8f\x0c\xc0\xa4\x50\xa2\x0e\xfb\x70\xe0\x8f\x93\x4c\x15\xfb\xc2\x73\x67\x66\x5b\x3b\x64\x97\xce\x19\xe5\xb2\x10\xbe\x6a\xf8\x05\x98\x1f\xa8\x1b\x1b\x7d\xd1\xd0\x4c\xbc\xf2\xe9\x6a\x25\x57\x2b\x9c\x82\xd8\xb0\x5c\x13\x9a\xb6\x5a\xc2\x34\xb8\x26\x77\x0c\x70\x93\xaf\xbd\x9b\x99\x99\xcf\xe7\x68\x42\x85\xb3\x6e\x44\x14\xef\x97\xa8\xad\x71\xa9\xfe\xcc\xd8\xd6\xd1\x6a\x70\x23\x37\xb6\x2e\xee\x87\xf4\xfe\x96\x98\xa9\x66\x24\x01\xab\xb7\x4f\x29\x93\x34\x2a\x35\x99\x96\xa6\x2b\xa1\x85\xa0\x90\x15\x28\x06\x2b\xe7\xde\x00\x39\xd7\xea\x66\x31\xc9\xef\x82\xb2\xa8\x87\xe5\x46\x8e\x9a\x8a\xd2\x2a\xa9\x82\xae\x48\x90\x1b\x7f\x61\x96\x04\x7a\x2d\x66\x89\xe0\x76\xcd\x14\x49\xab\x95\x0f\xec\x39\x97\xab\x15\xf4\xa3\xdc\x4d\x45\x29\xd6\x98\xd3\x4a\xef\xd5\x6e\x34\x6b\xb5\x0c\xb3\x3f\x65\x39\xe6\x5b\x1e\x6d\x6e\x81\x48\x98\xc3\x39\x3c\x28\xea\x25\xa1\xd8\x84\x88\xd0\x98\x4d\xaa\x53\xfa\x4b\x9d\xf8\x8e\xbf\x32\xed\xa5\x32\x59\xd3\xe1\x88\x1c\x27\x2c\xb1\x51\xd3\x3f\x52\xc1\x1d\xb3\x31\xae\x8c\x98\x2c\xa8\x00\xfa\x25\xca\x12\xc5\x0c\xe9\xc5\x06\x6b\xdf\x2d\x39\x43\x0a\x5a\x2d\x5c\xc9\xc8\xcb\x19\xb9\xcb\x68\x6b\x28\x08\x09\x2b\x72\x7b\xd4\x65\x4d\xaa\x9a\x4e\xc5\xf3\x98\x6b\x88\x95\x1b\x52\x5b\x1f\x84\x06\x76\x30\xaa\xd5\x52\x3d\xfd\xc2\xd9\x5a\xdf\x93\xde\xb7\x42\x8d\x5f\x60\x76\x89\x27\xe4\x78\xc9\x96\x65\xfc\x5f\xff\x69\xf8\x5f\x6c\xc3\x7f\x43\x56\x31\x55\x04\xef\x40\x91\x3f\x19\xab\x3d\x5f\x13\xa2\xe6\xa4\x18\x2c\xbd\xb7\xae\x26\x16\x6c\x8c\x97\x8a\xfb\xd1\xd4\x2b\xa9\x24\xce\x71\x52\x24\x46\x86\xf1\xc2\x69\x37\x21\x58\x58\x86\x1a\xa7\xdd\x31\x29\x92\xb8\x4a\x52\x45\xb4\xd7\x13\x40\xb8\x23\x25\x13\x05\xac\xcb\x1a\x11\xcc\xad\x79\x3e\x9f\x16\x95\x08\xf5\x5d\xd4\xcc\x51\x67\x74\xb6\xe0\xfa\x90\x77\xe2\xf2\x17\x3b\xe7\x71\x73\x43\x39\x62\x73\x3b\xf2\xf7\x1e\x15\xb9\x5a\x95\x76\xa3\x2d\xb4\xcd\x50\x24\x6f\x93\xf6\xb9\x83\x8d\xa1\xab\x54\x0a\xb2\xca\x49\x65\xdf\xab\xa3\xd9\x45\x33\x7a\xe3\x1b\x04\x95\x7d\xb9\x3b\x8b\x72\xf9\xda\x48\xef\xa2\x8b\x0b\x44\x03\x58\x76\x3e\x59\xd3\xea\x29\x25\x42\x17\x56\xe9\xa7\x6b\xe1\x01\x85\xd5\x94\xc2\x65\x36\x87\x02\x49\x95\x6b\x4d\x36\x6f\x81\x20\xd6\x8c\xd6\x24\x15\x82\x4f\x8a\x41\x2a\xfa\xe1\x06\x1e\xde\x3a\xdd\xab\xab\x5a\xe3\xc5\x63\xed\xb6\xb1\xf8\xcc\x6f\xea\x50\x6e\x59\xe9\xeb\x28\x13\x18\xbd\x53\x2b\x22\x11\x97\x8d\x48\x34\xfe\x6f\x01\x48\xc3\x31\x01\x0d\xfe\x85\x8b\x86\xbc\x4a\x97\x97\x57\x8d\x44\x36\xe2\x94\xe7\x70\xff\x64\xb4\xca\x3e\xf3\x9b\xae\xd6\x35\x8b\x6e\x1a\xd7\x91\x00\x73\x26\x60\xe5\xef\x8a\xab\xc4\xc6\x22\xca\xa2\x39\x97\x3c\x53\x09\xf9\x82\x4f\x92\xe9\x4d\x23\x6a\xe4\x32\xcd\x20\x43\x17\xdc\xb1\xf8\x9c\x63\xec\x6d\x96\xe5\xd5\x41\x67\x78\x38\x1d\x95\xfc\x8a\x2f\x3c\xb7\xe2\xd5\x79\x1c\x10\x5a\xc7\x23\x95\x8e\x98\x75\xec\x52\xb3\x67\x36\xf1\x6d\x5c\x92\xa5\x62\x59\xc1\x6c\xae\x56\xa2\xd5\xaa\x1e\x12\xb6\xb0\x7b\x01\xa1\x67\x58\xd2\x1a\x4a\x67\x7b\xb3\x26\x60\x4c\xa6\x3c\x9b\x84\xd7\xed\x2b\x77\xff\xb6\xb9\x76\x7d\x9c\x49\x2b\xce\x5b\x66\xa8\x9c\x0d\x34\x9f\xa2\xb0\x52\x68\x8b\x8a\x2d\xde\x46\x5c\x2c\x7e\x1d\xc7\x5e\x97\xdc\x6a\x35\x45\xcd\x4a\xac\xac\xa5\x0d\x66\xab\x8e\x4f\x12\x0f\x3a\x44\x34\x16\x58\x52\x6d\x17\xad\xb2\x4f\x88\x52\x16\x41\x9b\x3d\x45\xa5\xf1\xbf\xc6\x54\xe1\x72\x04\xab\x61\xb2\x08\x0c\xaf\x66\xb4\x64\x35\x49\x71\xcf\xe5\x8d\x25\xd9\xbe\xb1\x24\x6a\x63\x49\x2a\x7b\xca\xcd\x1f\x3e\xea\x3c\x94\xc9\x69\xfa\xec\x0b\x10\x26\xf5\xc1\x8a\x32\x05\xbd\xd9\x76\x3c\xaa\x1c\x90\xbe\xdc\xb5\x83\xf0\x12\xb5\x5b\xad\x86\xa3\xa2\xe0\x7c\xfb\x91\xe1\xfb\x4e\x00\x82\xe9\x0b\xd5\xbb\x38\x21\xe8\xd7\x83\xb8\x0d\xcb\x67\x38\x4e\x7f\x4d\x36\x37\xdd\x3f\xe5\x00\xb1\x7d\x45\x54\xa1\x2c\x9d\x17\x0b\x9e\x14\x86\xa5\x30\x5f\x59\x7e\x82\xa5\x29\xbb\xf1\x50\xe9\x65\x64\xfe\x06\xb4\xfd\x94\x98\x7a\xf4\x53\xc0\x29\xb1\x99\xa9\x45\xe2\x4e\x8a\xe6\x98\xc8\xef\x65\x42\x8f\xff\x13\xa7\xa1\x42\x41\x0a\xf3\x6a\x2a\xdd\x90\x93\x81\x75\xa1\x57\x50\x41\xfa\x1c\x4a\xa5\x41\x69\xf6\xb0\xf3\x6b\x6d\x5d\xac\x36\x76\x03\x73\xee\x54\xdb\xbc\xab\x29\x6f\xd1\xea\x2a\x1f\xb0\x6e\xd7\xfe\x68\xa6\xa5\xd1\x4c\xd5\x96\x95\x69\xda\xf6\x47\x58\xe3\x62\x51\x8f\xff\x8c\x45\xfd\x1d\xcb\xed\x0f\xec\x2a\xcd\xba\xb3\x4e\x13\x57\x2f\xab\xca\x5c\x87\xa2\x63\x0f\x18\x8e\x87\x8c\xc2\x5a\x6d\x6a\xe4\x7f\xc3\xaa\xd8\x60\x82\x69\x69\x6c\xea\x6d\x8e\xca\xba\x29\x6b\xe9\xff\x26\xf7\x50\xbd\xe0\xfa\xb7\x5c\xd7\x01\xf3\xfe\xe7\x90\xff\x75\x15\x0b\xff\xea\x8a\xb8\x2c\x3f\xa7\x95\x89\xfc\x77\x1e\xc0\x3d\x2f\x4b\x1b\xbb\x6e\xd3\x3b\xb7\x6d\xce\x12\xef\x22\xc3\x1f\xf3\xc1\x1d\x57\xb4\x7c\x30\xe4\xa3\x70\x38\x0a\x2f\x2b\x27\x23\x0f\x8c\xb3\xf2\x1a\x32\x5b\x92\xb7\x50\x61\xdd\x6c\x2c\x4a\xe9\xdd\xf3\x3e\xec\x76\xbe\xf6\xf6\x3c\x2d\x6e\xc7\x6b\x6f\xef\x93\x7b\x6e\xef\xa3\x7b\x6e\xdf\x97\xf7\xdc\xee\xe7\xde\xed\xfb\xee\x81\x67\xfb\x20\x2d\x9e\xc5\xbc\x83\x87\xc2\x85\x77\x0c\xd1\x18\xb0\xb4\xf2\x76\x5d\xec\xd4\xfe\x59\xa5\xe6\x9e\x40\x94\x2f\xce\xcb\xf7\x0d\xd4\xdc\x04\x7a\x32\x76\x1b\xf2\x73\xfe\x69\x0b\x18\x78\x76\xbb\x26\xb4\xc9\x6b\x0e\x53\x81\x91\xe7\x6a\x06\x0f\x06\x4f\x31\x2b\xf9\xe7\x64\x51\x3d\xbf\xae\x56\x28\x11\x93\xd9\x32\xde\xb8\x4c\xb0\x82\x08\x15\x56\x91\xa6\xe5\xf3\x74\x32\xc5\xbd\x26\x63\x99\xc5\xdc\x86\x68\xc6\x6b\x31\x49\x33\x05\x5b\x43\x3f\x8e\x37\xd2\x69\xc3\xd5\x08\xe2\x18\xea\x5c\xfb\x7f\x51\x3b\x6d\xa3\xe2\x90\xdc\x45\xf6\x98\x95\x0d\x83\x11\x1c\x2b\x13\x43\x88\x50\x32\x55\x8b\x27\xf1\x61\xad\x69\xd5\x58\x04\x35\x2d\xdd\xdb\x50\x04\x0d\x99\x5b\xad\x25\xd3\x2f\x86\x51\xab\x85\xfe\x96\xa6\x33\x1e\x09\x6d\x96\x8f\x31\x16\xc1\x4a\x24\x4b\x66\x0c\xa3\x82\xe1\x29\xc0\xaf\xcf\xed\x9b\x5c\x1b\x70\x3d\xbb\x0f\x9e\xc6\x7c\x99\x83\xb4\x53\xd4\xb0\x6c\x44\x23\xcd\x1a\x51\x63\xac\xe1\x68\xe8\x13\x81\x96\x1e\x74\x13\x06\x2f\x99\x1c\x46\xfe\x04\x24\xdb\x71\xe2\xea\xcd\xf8\x94\x67\x5c\x4c\x78\xdc\x48\x44\x1d\x66\xd6\x6e\xce\xa4\x20\x75\xd6\x5c\x12\xba\xd4\x0c\x4a\x4f\x5f\xf7\x55\x84\x26\x6b\xdf\xa6\x4a\xe4\xa6\xf2\x56\x65\x29\x8e\x22\x6b\x85\x4c\xf3\xb6\xdc\xf5\x3b\x85\x57\x34\xd2\x9e\x01\xbe\x8b\x7e\x93\x70\xc8\x47\xf5\x2f\x5b\xbc\xcc\x15\xdd\x61\x48\xeb\x81\xfd\xdd\xba\xdb\x01\xfa\xbe\x13\xf0\x3b\x01\xba\x87\xc2\x3d\x0d\xb6\x83\xe2\x67\xff\x5e\x90\xb6\x56\x59\xba\x60\x2e\x3f\xe4\x15\xa4\x5d\xed\x41\xdb\xae\xac\xb9\x33\x1e\x20\xc9\xd3\x4e\x6f\x7d\xaf\x3d\xaa\x42\x98\x44\xe0\x7e\xff\xe0\xa1\x52\xe9\x3b\x77\xd9\x80\xfc\x03\x0a\xe1\xfd\x1d\x30\x68\x55\x23\xd1\x52\x56\xfa\x41\x9e\x38\x26\xa2\x65\x4b\x8a\xf7\x29\x4c\xff\x6b\xea\x2b\x57\x91\xb1\x95\x3a\xa7\xb2\x9b\xe4\x2f\x93\xd9\x8c\xc7\x6c\x0c\x81\x67\x71\x9a\x09\x10\x09\xcc\xea\x8d\x9b\x75\x73\x95\x04\xd9\x14\x5d\x5b\x97\xd4\x00\xf3\x0d\x83\xab\x4e\x49\xde\x5a\x1a\xd8\x75\x86\x06\x76\x9d\x99\x81\x03\x67\x64\xe0\xb0\x30\x31\x10\x80\x37\x1b\xf8\xec\x11\x42\xa7\xfa\xb3\x4f\x08\x8d\x9d\xc9\xf3\x85\x8e\x24\x84\x5e\xe9\x2f\xd5\xd0\x0d\x7c\x1e\x11\x42\xbf\x98\x01\x29\x99\x44\x9a\xfb\xd6\x2c\xad\x50\x4b\x73\x43\xb7\xaa\xd5\x02\x7f\x01\x76\x9b\x2b\x1d\xae\xb6\xaa\xfb\x6c\xd3\x33\x6b\xb5\xfc\x90\xef\x79\x66\x8e\x8b\x47\x2d\xe4\x3d\x79\xad\x56\xb2\xd5\x9a\x83\xbc\x13\x20\xf7\x97\x72\x9e\x52\x2c\xdc\x8e\x97\x95\xf8\xcc\xbd\xf8\x2c\xb9\xbc\x92\x7a\xa3\x5f\x44\x33\x2e\x25\xef\x6a\x43\x52\xec\x76\x92\xce\xd2\x2c\x44\x93\x65\x96\x71\x21\x9f\xab\x10\xa2\xe9\x22\x9a\x24\xf2\x26\x94\x83\xee\x6e\x3f\xec\xee\xd1\x42\x70\x2d\xe4\x9e\x14\x5b\x6e\x2c\x84\x62\x64\x4a\x20\x5a\x88\xca\x95\x33\xda\xe8\xae\x51\x8a\x5c\x93\x35\xcd\xd8\xad\x6d\x29\x58\xd3\xb4\x08\xd9\x76\xd7\x34\x01\x1f\xb2\x97\xe3\x08\x1b\x2d\x4e\xda\x08\xba\xbb\x7d\x82\x42\x1d\xdb\xdf\xdb\xa3\x8d\xe2\x4f\xd0\x3d\x20\xd6\xd0\xda\x6d\x96\xa6\x32\xbc\x35\xcb\x2b\x44\x09\xf0\xe1\x9d\xe9\x8c\x7f\x45\x74\x91\x9a\xee\x20\xeb\xe1\x01\xd1\x69\x2a\xe4\xcb\x68\x9e\xcc\x6e\x42\xc0\x4f\x7a\x99\x45\x8b\xab\x9b\x6e\x11\x4f\x35\xb6\x3c\x2c\xf2\xaf\xb2\xbb\xc8\x92\x79\x94\xdd\x40\xf9\xf3\xe4\x1b\x2f\x97\x5e\x7c\x7d\x9f\xbe\xe3\x73\xdc\xdb\x27\x54\x01\xa0\x35\xe2\x42\xd4\xeb\xf6\x0e\x0f\xf6\xf8\x1c\x51\xd4\xfa\x4b\x9c\xe4\x6a\x67\x8e\x51\x78\x5b\xdb\x84\x4d\x57\xb4\x2f\xcd\xe6\xcf\x53\x21\xb3\x74\x16\xde\xa2\x59\x34\xe6\xb3\x46\xbb\xd1\x42\xe1\xed\x3c\xca\x2e\x13\xf1\x3e\x5d\x84\xbd\x7d\xc8\x38\x59\xe6\x3c\x0e\x6f\xd7\xd4\x16\x57\xdf\x4b\x11\xf3\x4c\x01\x12\xde\xa2\x56\x18\x81\x27\x9b\xf0\x76\x9c\x66\x31\xcf\xfe\x96\x4a\x99\xce\x43\xd4\x5f\x7c\x6d\xe4\xa9\xe2\x19\x0a\xdd\x41\x07\x90\xe9\xee\x50\x0e\x50\x1c\x65\x9f\x51\x68\xa6\xd7\x88\xd0\x19\x9f\xca\x30\xa0\x63\x5d\x4d\x40\x27\xa9\x90\x5c\xc8\xf0\xaf\x08\xfd\xd5\x43\x79\x34\xce\xd3\xd9\x52\x72\x44\x33\xc0\x45\xa0\xe7\x97\xea\x59\x88\xf2\x49\x34\xe3\xff\xc0\x01\x41\xf7\xcf\x3a\x57\xec\xe1\xf3\x8e\x1a\x0d\xd4\x72\x2e\x1d\xd9\x35\x1a\xc4\x6b\x42\x17\x69\x22\x24\xcf\x5e\x7c\x51\x6b\xd5\x78\x39\x58\xab\x91\xb2\x58\xb5\x88\xdb\x84\xbc\x47\x74\x4e\x10\x9b\xaa\x45\xf0\xf3\xca\x10\x43\xce\xee\x3c\x4a\x44\x0d\x22\x4c\x75\xe1\x58\xbb\x2d\xaa\x0e\x55\x6f\x73\xa8\x92\xbb\x06\xe2\xd3\xa7\x20\x88\x82\x87\x0c\xc7\x5d\x88\xd7\x30\x74\x74\xfd\x9d\x89\xa6\x1a\x0f\x5f\xfa\x5b\xd1\x1b\x5e\xa5\x5f\x78\x16\x8a\x54\x62\xb7\x26\x88\x0e\x1a\xc4\x9b\x10\xa0\x8c\x6c\x43\xca\x9d\xf3\xd7\x5f\xb3\x64\xed\xaf\xbe\xbb\x70\x1c\xa7\x52\xf2\x12\x92\xd7\x6b\xaa\x87\xf8\x76\x4d\xe7\xcb\x99\x4c\xf4\xa2\x5a\x44\x71\xac\x26\x58\xa1\x5d\xb7\x4f\xd1\xe2\x6b\x23\xf0\xb4\x68\x0f\x54\x0c\x02\xce\x64\x36\xfb\x98\xc4\xf2\x2a\xbc\xbd\x86\x1f\xd4\x0b\x82\x1f\xd0\x9a\x26\x62\xb1\x94\xe1\xad\x22\x29\x8a\x72\x5d\xf1\x2c\x91\x88\xd6\x12\xeb\xef\x68\x90\xea\x7e\xc1\xcc\xf8\x7a\x9e\x7c\x83\x62\x66\x6e\x74\xc6\xe9\x57\x44\xbf\xf0\x4c\x26\x93\x68\xf6\x6c\x96\x5c\x8a\x10\xcd\x93\x38\x56\x8c\xc3\x38\x9a\x7c\xbe\x04\x55\x5c\xeb\xf1\x43\x13\x9b\x30\xa0\x1f\xf9\xf8\x73\x22\xdf\x47\x8b\x1f\x93\xcb\x2b\xa0\x04\x7a\x7a\xeb\xc5\xa9\x4d\xde\x21\xea\xa8\xf0\x78\x96\x4e\x3e\x23\x3a\x4f\x84\xee\x77\x40\x15\x41\x7e\x95\xa5\xd7\x61\x4f\x4d\x80\xb0\x73\x0d\x15\x76\x00\x03\x1d\xf0\xf2\x7b\x95\xce\x62\xb5\x88\x84\xce\x30\x4f\xbf\xd5\xc4\x77\xe6\xf9\x5d\x65\xb6\x27\xc2\xc4\x42\xe1\x6d\xaa\x1d\x7b\xa8\xad\x08\xb5\x42\xe3\x11\x0b\xe6\xc2\xd7\xf3\xab\x28\x4e\xaf\xfd\x79\xea\xc0\xcc\x79\x94\x4d\xae\x3a\x31\x9f\xa4\x46\x71\x3b\xbc\x45\x36\x31\x5a\x2c\x78\x94\x81\xd7\x89\xa2\x30\x90\xec\x61\x1c\xc9\xa8\x93\x5f\x65\x89\xf8\xcc\xa6\xd1\x2c\xe7\xa3\x46\xbb\xf1\x17\x8f\xb8\x03\x49\xbf\x07\x21\xd9\x16\x84\x64\x77\x20\x24\xbb\x0b\x21\x99\x43\xc8\x9d\xed\xa6\x7e\xb6\x8d\xd6\xbd\xd4\x2d\xcd\x94\xcb\xd7\x67\x59\x57\xf6\x45\xcb\x1b\xf4\xd6\x66\x75\x9c\xc2\x0c\x3c\xe1\x22\x2f\x56\x9d\xda\xfc\x76\x6c\x7a\xb1\x26\x33\x9e\xab\x7d\xd9\x4c\x5d\xbb\x60\x02\x93\xf1\xfd\xcd\x82\x87\xb7\x57\xd5\x7d\xd9\x4b\x3d\x87\x41\x56\x03\xab\x3a\x5b\x1a\x55\x45\x4d\xa6\x5a\xae\xb3\x7e\xd8\x8b\x0c\x6b\xff\x69\xfe\xba\xea\xcf\x49\x77\x14\x5e\x35\x80\xac\xc0\x85\x8b\x5e\x65\x34\x61\xbc\x9b\xf1\x7f\x2e\x93\x8c\xc7\x9e\x24\x83\xec\xce\x97\xc9\xcb\x62\xca\xb4\x5a\xd8\xd3\xf2\xf6\x94\x11\x8c\x6b\xc3\x72\x6e\xd7\x26\xa1\xb5\xa5\xb4\xf8\xe4\x46\x29\x4d\x79\xeb\x8b\xa4\xe0\xb7\x6c\xa3\x88\xee\xc5\x96\x32\x09\x98\xc3\xdd\x28\x63\xbb\x4b\x08\xbd\x75\xf4\x59\x18\x8a\x9b\x59\xf2\x93\x52\x9b\x2f\x4c\xd6\x6b\x77\xf0\xb8\x84\x33\xc7\x59\x89\x15\x76\x98\x97\x20\x96\xad\x6f\xb9\x8e\xcb\xa6\xc6\x40\x6b\x46\x12\x8a\x33\x56\xb6\x31\x06\x09\x38\xa0\x13\x2f\x8a\x94\x34\x6d\x04\x21\xa4\x9b\xe4\x06\x7c\x75\x90\x02\x75\xcb\xac\x0b\x93\xc8\x06\xb4\xce\xe9\xad\x65\x22\x9a\xbd\x35\xcd\xba\x57\x91\x88\x67\xfc\xa5\x8a\xab\xba\x67\xb9\xc6\x99\xd5\xa8\xed\x02\x9d\xfe\x2a\x49\x31\x6e\xea\x10\x96\x2e\xd4\x61\x2f\xba\x8c\xf4\x6d\xa8\xbe\x95\xca\x0a\xfd\xe0\xa2\xad\x00\x54\x7a\xa0\xb6\x6e\x2a\xa0\xb9\x56\xab\x12\x51\xc8\x4d\xb9\xf6\x2a\x03\x03\x06\x17\x8b\xf2\xd2\x2b\xb9\x2e\x3a\xf3\xb7\xd9\xb2\x62\x1b\xa4\x0e\xa2\x5e\x09\x22\x55\xc6\x07\x48\x85\x1f\x0e\x8f\x2e\x2d\x8b\x72\x05\x30\xcf\xaf\x22\x71\x59\xf1\x62\x50\x1a\xaa\xd5\x2a\xeb\x4e\xae\xf8\xe4\xf3\x49\xa2\x0e\xcd\x66\xcc\xde\xf1\xa9\x0f\x9e\xae\xc5\x07\x50\xc7\x94\x9a\x7a\xc7\xa7\xaf\x61\xbc\x37\x0e\x61\xc7\x45\xad\x8c\xbb\x6a\x6d\xd4\x40\x75\xb0\x1c\x15\x96\x22\x8c\x4a\xde\x66\x5c\x37\xe3\x53\xb8\x35\xae\x4f\x22\x54\x2a\xaa\x60\xc1\xf1\xf5\x31\x06\x12\x73\x12\xca\xae\xe1\x26\x18\x37\x0e\x22\x2b\x53\xb8\xc9\x9c\xcc\x5f\x29\x51\x01\xe3\x21\x8d\x6f\xf8\x2a\x00\xfa\xd6\xbc\x73\x06\xb7\x5a\x9a\x0c\x7a\x11\xdb\x26\xca\xba\x74\x95\xe2\x04\x95\x1e\x52\xbf\xf0\x96\x8c\x79\xcf\xdd\x3a\x9b\xd2\x56\x2b\x75\xb3\xc9\x7e\x61\x30\x8a\x60\x94\x08\x2a\x3e\xcd\x9e\xeb\x7a\x06\x38\xbb\x57\xb7\x98\xa5\xb4\x3e\x93\x55\x21\x24\x21\xce\xee\xd2\xad\xa4\x59\xbd\xea\x21\xa1\xd9\xda\x5d\x2d\x4d\x7d\x7b\x32\xbc\x6a\x3c\x51\x5a\xf3\xbe\x97\x5c\x3e\xbf\x4a\x66\xb1\x81\x7f\xab\x1d\xce\xdb\x32\x82\xf4\x7b\x9a\x33\x80\xe9\xab\x35\x6a\x35\xee\x2d\xce\x12\xca\xcb\x4d\x9b\x28\x28\x26\x8f\x31\x28\x6b\x16\x5d\x6d\xed\x46\xc7\xf9\x01\xd5\x1b\x03\x0a\xd5\xea\x61\x92\x78\x75\xbb\xe4\x7b\x8c\xac\x6e\x99\x28\xc9\x14\x8f\x3d\x1f\x6d\x96\x2a\x26\x06\x02\xf7\x8d\xb5\x42\x82\x07\x83\x9f\x6d\x33\x12\x13\x62\x49\xda\x8b\xf9\x42\xde\x78\x9f\xd6\xfa\xa9\x2d\x60\xd3\x37\xe2\xb0\xef\xc1\x42\x1d\xf7\xb7\x99\x44\x55\xcb\xa8\x6c\xb6\x41\x74\xa3\xa5\x4c\x9f\x83\x55\x2a\xc9\xe9\xd2\x44\x00\x89\xa7\x39\x13\xd6\x54\x35\x9d\xd9\xef\x37\xd1\x9c\xd3\x09\x13\xa5\xbb\x28\x3a\x65\x58\x14\x4c\x8d\xfb\xfc\x60\x2f\x1f\x08\x5d\x30\xd1\xe5\x22\x76\x37\x88\xf4\x46\x15\xd1\xac\x8f\xe8\xba\x83\x11\xa1\x73\x26\xba\x49\x4c\xc7\xea\x47\x4d\x91\xc2\xb6\xe5\xa5\x8d\x82\xf5\x41\xcf\x18\xbe\x2c\x14\x38\x2f\x07\xb7\xeb\xf0\x92\x78\x40\xbe\x60\x65\x43\xa3\x97\x74\x88\x5c\x2a\x1a\x11\x7a\xae\x20\xb0\xd3\x90\x0a\xcb\x7d\x89\xae\x3b\xde\x11\xfa\x9e\x09\x2d\x99\xf4\x56\x65\xd6\xf4\x81\x0a\xb7\x1b\xc0\x27\x0c\x02\x7c\xe9\x31\xd5\x9f\x80\x42\xf5\xf5\x5f\xfc\xe6\x24\xbd\x16\x84\x9e\x32\x13\xfc\xb0\xa0\x9f\x99\xe8\x7a\x0c\x30\xfd\x9d\x89\x6e\xc6\xa3\xf8\x4c\xcc\x6e\xe8\x57\x15\x48\xaf\x73\x7a\x61\x3e\x4e\xa3\xaf\xf4\x0d\x13\x95\x4b\x58\x7a\xc2\x84\xbe\xd8\x7b\xce\x8c\x3f\x7f\xfa\xae\xd2\x69\x41\x87\xc8\x1f\x62\x44\x91\x1b\x60\x44\x91\x19\x5e\xfb\xa5\x2f\xa5\x91\x3f\xb4\x2a\x68\xb9\x72\xf7\xe9\xc6\x15\x51\xe4\x0f\xaa\x0a\xaa\x11\x45\x14\xb9\x11\x45\x5a\x31\x12\x95\x07\xd3\x46\x68\xfb\x0a\x26\xf0\x8e\x4f\x11\x45\x7a\x18\xd4\x87\x1d\x06\x44\x91\xd0\x90\xe9\x01\x80\x0f\x3d\x00\xf0\x09\x03\x00\x5f\x7a\x00\xf4\xa7\xe9\xa2\x1b\x00\xfb\xfd\x61\x81\x28\xf2\x0f\x1f\x14\x59\xcc\xab\xcf\xf4\x3a\x37\x3f\xa7\xd1\x57\x44\x51\x19\xe7\x88\x22\xd0\x0b\xb7\x2e\x00\x46\x84\x3e\xbb\x8b\x70\xd0\xd7\xec\x7a\xc3\x1c\x8c\xdd\xb8\xe8\x4b\xf6\xba\x58\x35\x3f\xb1\xd7\x66\x3d\x7c\x60\xaf\xed\x64\xfc\x99\xbd\x76\xbc\x31\xfd\xa8\x06\xf7\xaa\x18\xdc\xbc\x9b\xa5\xa9\xa4\x98\xb3\xdb\x35\xad\xda\xc0\xce\x8b\x9a\x5f\x56\x6d\xf0\xaa\x54\xdd\xd4\x4f\x75\x49\x6e\xec\xe8\x4d\x6d\xb2\xde\xa7\x3d\xb3\x2a\x36\xaa\x3e\x77\x81\x8c\x67\x75\x19\xdc\x30\xd3\xf3\xba\x64\x77\x81\x49\x9b\x53\xa2\x76\xb8\x19\xa1\xff\xdc\x40\x04\xcc\x1f\x0a\xaf\xe9\x95\x3a\xe4\x9d\x98\x50\xa9\xee\xdc\x47\xe1\xf4\x86\x9a\x8c\x9d\xdc\x99\x4f\x9f\x0f\x29\xd2\x97\x01\x8a\xc9\xda\x9e\xff\x74\x7b\xef\x8a\x3c\xc5\xd1\x56\x2d\x3e\x91\xc3\x0b\xf4\x07\xa2\xce\x26\x67\x84\xfe\xca\xf4\xf2\x40\xf4\x1b\xdb\x30\xea\xfb\x82\xde\x66\x7c\xaa\xfd\x0a\x94\x99\xd2\x42\xe0\x68\x3c\xc0\xbf\xb2\xf1\x66\x69\xc7\x7b\xd6\x95\xa6\xdf\x74\xcd\x5a\xd5\x85\x84\xe7\xad\x16\xfe\xda\x6a\x35\x2f\x06\xbf\x32\xc0\x53\x94\xf1\x08\x85\x78\xa3\x56\xb3\x74\xc2\x0b\x6a\x73\x3d\xac\x09\xfa\x2b\xfb\xe2\xaa\x21\xb4\xca\x79\x39\x6f\xb2\x71\xf2\x05\xd1\x4a\x9b\x8e\x7a\x85\x1f\xd7\xf4\x1d\xa1\x6f\xb6\x16\xff\xb5\x5a\x14\x45\x59\x12\x75\xdc\xfd\xcf\x4f\xd4\x27\x97\x61\x46\x1d\xb9\x0c\x97\xb4\x68\xe6\x9f\xd4\x27\x92\xe1\xa4\xb8\x73\x7f\x49\x93\x38\x9c\x6b\xad\xcf\xf7\x54\x13\x2c\xbf\xf7\xb0\x83\x58\xf2\xe5\x27\x98\x1d\xc5\x50\x2e\x3f\x45\xef\x25\x8e\x90\x85\x6f\xa9\x21\x64\xe1\x29\xf5\x08\x59\xf8\x99\x5a\x42\x16\xfe\x5e\x9c\x94\x7f\xa6\x6a\x44\xc2\xaf\x54\x11\xae\xf0\xc4\xf0\x06\xcf\xd7\xf4\x1b\x21\x74\xa1\x6d\x93\xcb\x35\x2e\x10\x56\xd8\x3b\x3a\x3e\x03\xb2\xa5\xe6\x3c\x78\xbc\x38\x53\xd4\x0d\x3c\x36\xa2\xd7\x7a\x46\x9e\xd9\x52\x9a\x67\xbd\xad\x6e\x10\x61\xb3\xe7\xdd\x7a\x36\x7b\xde\xd5\x69\xb3\xa7\x21\xd2\x8b\x4e\x55\x6e\xe8\xa2\x69\xae\xc2\x89\x2e\x1c\x7c\x5a\xd7\x1c\x0a\x78\x2c\xed\x03\x4b\xc1\xb1\x05\x58\x83\x1b\x9f\x35\xd0\x62\x68\xe8\x74\x99\xe8\x8e\xad\x09\x3e\xf3\xad\xb5\xbf\xa8\xda\x30\x70\xf7\x0b\x65\x83\x1e\x34\xa5\x09\x8d\xe8\xf2\xd8\x7b\xfb\xd6\x49\x33\x76\xa2\x28\xa5\x48\xaf\x31\xe9\x44\xc7\xb3\x27\xb2\xd5\x9a\x3d\x65\xc1\x20\x63\xb9\xd6\xb8\x4f\x97\x12\xe7\x54\x76\x66\xea\x60\xa0\xaf\x10\xc4\x6a\x85\x97\x8c\x1b\x97\xf9\x09\x4d\x09\x4d\x58\x0a\x69\x84\xac\xb5\xc3\x5d\x2d\x45\xd4\x0b\x02\xeb\x7e\xd0\x63\xfb\x12\xd8\x9b\x68\x5a\x3c\x4b\xd2\xc8\x83\xc3\xfa\x2b\x6c\xb5\x9a\xd6\xf6\x45\x23\x5b\xad\x70\x15\x24\x42\xe8\x0c\x24\x43\xea\x21\xa1\x4b\x77\x5e\x9a\x75\x27\x33\x1e\x95\x7c\xf7\x65\xad\x16\x86\x48\x5b\x61\x46\xa8\xee\x1e\x59\xd3\x59\x77\x3a\x5b\xe6\x57\xd5\xfc\x5b\x5a\xa2\xdb\xeb\x59\x2b\x8e\x74\x9c\x2e\xc5\x84\x33\x41\x3d\xa1\x80\xef\xd2\xaa\x2f\x9e\x68\x6b\xed\x1d\x38\x9b\x18\x89\x68\xf0\x81\x7b\x8f\x0d\xf9\xfa\x0f\xb9\x57\x32\x92\x03\xbb\x81\x7b\x27\xef\xef\xf6\xdc\x43\x79\x7f\xb7\xef\x9e\xca\xfb\xbb\xbb\xee\xb1\xbc\xbf\xbb\x57\x3c\x97\xf7\x8e\xdc\x7b\x79\x7f\xf7\xc0\x3d\x98\xf7\x77\x8f\xfc\x17\xf3\x63\xfb\x5e\x6e\x4d\xfd\x69\xc5\xc4\xea\xf9\x40\xdb\x0a\xab\xea\x40\xc0\xc1\xdb\x9a\xae\xab\x78\x0c\xa6\x82\x66\xe0\x8d\x1a\x9c\x50\x6b\xf3\x92\xdd\x28\x8e\xe1\xa5\xe7\xa7\x24\x97\x5c\xf0\x0c\x23\xc9\x73\xa9\x9d\x5c\x99\x2d\x5a\x30\xb4\x88\xf2\x1c\xde\x61\x33\x76\x5b\x31\x93\x91\xb2\x66\xb0\x5e\x6f\xb5\x4c\x22\x68\x46\x88\x35\x79\x90\x90\x5b\x67\xf0\x86\xa5\x34\x5d\x63\xb2\xc6\x84\x5e\xb1\xdb\x49\xb4\x90\xcb\x0c\xe8\x8c\x69\x2b\x6c\xf6\xbc\x2b\xd9\x92\xc2\x87\xda\x4a\xaf\x4a\xfa\x51\x5f\xca\x86\x7a\x86\x9c\x4a\xf7\x84\x6f\xfc\xa9\x2c\x06\x22\x14\x5d\xd3\x8e\x3a\x95\x97\xf5\x2b\xb4\xe6\x3a\xdf\xc0\x87\x99\xd9\x9c\x7e\xb1\x9d\xa9\xc8\x70\xdb\x82\x5a\xa8\xfd\xbe\xb2\x9b\x62\x00\xde\xdd\x67\x21\xaf\xe9\x6e\x3b\x23\xfd\x05\x52\x38\xba\x36\x08\x17\xba\x0c\xce\x3d\x50\xae\xaf\x14\x92\xe2\x1a\xe1\xc1\x17\x00\x50\xb1\x05\x3a\xc7\xf3\xef\x3a\xe5\xf3\xfa\x4a\xc6\xce\x25\xd4\x03\x6a\x87\x0b\x13\x31\xff\x0e\x18\xc7\x9e\xd3\x98\x52\xca\xf6\x1b\x83\x3f\x68\x71\xd8\x3b\x0f\x08\x26\xbb\x32\xca\x2e\xb9\x04\x6b\x2b\xce\x44\xed\xf1\xa6\xe5\x5d\x01\x17\xf4\x7a\x8d\x0d\xc5\xa8\xaa\x48\x51\x98\xbc\xa1\xdc\x56\xa9\x9f\x1b\x26\x98\xab\xa3\xaf\x49\x55\x27\x18\x48\x45\x23\x27\x46\x64\x1d\x42\x6c\x13\x29\xb5\x0a\x96\xf9\x72\xac\xc1\xc2\x01\xed\x3b\x27\xdf\x62\xc8\x47\x34\x65\x33\x45\x90\x13\xe6\x11\xce\x54\xf5\x29\x59\xad\x4a\xf7\x91\xa9\x2e\x16\x31\x64\x16\x8e\x5f\x35\xee\x1c\x90\xae\x4c\x7f\x4a\xaf\x79\xf6\x3c\xca\x39\x56\x04\xd0\x6f\xb7\x5f\x49\x3e\x5e\xb2\x68\xb0\x2c\x01\x66\x35\x93\x3b\x07\x24\x5c\xd2\x64\x20\xf1\xd2\x5d\xd8\x66\x34\x73\x2e\xb3\x42\x48\xa0\x37\xd8\x51\x8a\x08\xb4\x9b\x8d\x96\x80\xb6\x82\xa9\x2f\xf2\x21\xfa\xbe\x2b\x16\x7b\x35\x54\xdc\xcf\x14\x06\x89\xf4\x35\x9a\x65\xb4\xde\x2e\x33\xee\x31\x59\x97\x65\x26\x4b\x76\xaf\x13\x79\x65\xfd\x75\xd7\xc9\xe3\xdd\x9a\xce\x84\x9c\x9a\xce\x84\x37\x60\xdb\xc5\x93\xca\xba\xbc\x8b\x61\x71\xa2\x69\xa2\xd6\x0e\xe0\xf9\xcd\x7c\x9c\xce\x5a\x2d\x94\xc3\xc7\x46\x4a\x17\xbc\xec\xcb\x34\x1b\xd4\x88\x8a\x39\xbb\xe1\x75\xee\x71\xb8\x6f\xda\x72\xb3\x41\xee\x1b\x32\x65\x8c\xb9\xf8\xa6\xfd\x2e\x2c\xf0\x0c\x2c\x74\xa1\x6b\x91\x94\xac\xa7\x66\x9e\x72\xc4\xc3\x3a\x29\x70\xa5\x7f\x64\x50\x30\x12\x75\xc6\xcf\x01\x97\xeb\xf0\x9e\x4c\xff\x96\x4e\x0b\xfd\x10\xa1\x86\xdd\x6b\xfe\xff\x7f\xed\x84\xed\xed\xd6\x99\xe4\x75\x00\xef\x1d\x68\x03\x3b\xfd\xbd\x43\x45\x64\xd4\xc7\x11\x39\xbe\xd3\x90\x98\x62\xe8\x56\xab\x14\xfe\x26\xf7\x3b\x5f\x75\x82\xa1\x3b\x8a\xef\x2f\xb0\x00\x46\x69\x6b\x1d\xbf\x26\x53\x8c\x9b\x69\xab\xa5\x88\x7d\xba\x5a\x71\xd2\x6a\x15\xa7\x7b\xb3\x43\xc4\xe9\x04\xe8\x7e\xdd\x21\x56\xb5\x03\x2f\x98\x5d\x2b\x9c\xc3\x3c\xe1\x1c\x9b\x26\xd3\x05\x43\x9d\xa3\xa3\xa3\xa3\xc5\xd7\x22\x16\xc4\x47\x18\xda\x0b\xfc\x48\xfd\xa6\x5d\x8d\x4d\xbf\xf0\x0c\x6c\xcc\x21\x6d\x4f\x0e\x51\x07\xd4\x38\x8d\x6f\xd4\x36\xc8\x45\x0c\xaf\x03\x58\x12\x30\x33\x9e\x4e\xa7\x39\x97\x70\x66\xeb\xc8\xae\xb6\xa9\xad\x2f\x84\xca\x45\x35\x83\x62\x8b\x3a\xaf\x82\x6b\x67\x2d\x47\x0b\x6f\xee\x10\x7f\xa8\x1c\x32\xef\x19\x90\xed\x83\x50\xf2\x88\xd1\xac\x7f\x04\xd7\xfb\xe4\x6a\xd5\x34\x4c\xa9\x05\x7c\x33\xa6\x3c\x34\xfe\xa1\x2f\xa3\xdf\x0f\xf5\xbf\xc9\xdf\xd4\x81\x3b\x22\x1c\x16\x07\x84\x83\x9d\xc2\x65\x57\xbf\x5f\x1c\x10\x8a\xf3\x41\x1f\x3c\x79\x4d\x14\x3c\x87\x3b\x5b\x7c\xc3\x83\xeb\x86\xd7\x42\xe2\xf2\xcd\x31\xa7\xc8\x48\x4e\xbc\x03\x79\x3f\xb2\x5a\x05\xb4\x17\x10\xe3\x2d\xde\x5b\xd9\x9e\xc6\xe0\xbf\x6c\x11\xbf\xea\x22\x41\x3b\x02\x35\x8c\x8c\xec\x5e\x25\x31\x3f\x4f\xc6\xb3\x44\x5c\xbe\x49\x63\x9e\x97\x9c\x35\xac\x56\x82\x26\x2a\x93\xbe\x4e\xd1\x96\x5f\x79\x76\x66\xe6\x3f\x8d\x8a\xbc\xc9\x6a\x95\x68\x43\xd5\xd5\x1a\x59\x46\xfd\x3b\x99\x6a\x25\x2c\xd2\xc9\xf3\x34\x8e\x66\x60\x77\xd0\xdd\xe8\x42\xbe\x22\x2a\x8e\x64\x54\x78\x4f\xaf\xde\x6b\xde\xe5\x48\x9d\x96\x6d\x7b\xeb\xa6\x7c\xef\xe1\xe0\x41\xbd\xc9\x98\xf0\x74\x31\x4b\x79\x35\xd2\x7d\x48\xad\xff\x74\x5a\xdb\x69\xf0\xa0\x38\xf1\xa3\x73\x78\x4e\xec\x02\xff\xac\xb2\x58\x65\xab\x4a\x6f\x3d\x61\x7d\x07\x55\x46\x7c\x4e\x48\xa1\x61\x98\x8d\xaa\x60\x08\x33\xb7\x6f\x75\x7c\x08\x2c\xa4\xc1\x71\x22\x2e\xc3\x8a\x3c\x06\xa1\x8b\x8c\x7f\x79\xab\xe7\x63\x1e\x0e\x47\xeb\x92\x8f\xcc\x2d\x83\x55\xb6\x2b\xe1\xb4\xbd\x6c\x3b\x21\xba\x4a\xe2\x98\x0b\xb4\x06\x93\x89\x9a\x5c\x7a\xc9\x55\x02\x4a\xfd\xf5\xe0\x52\xfd\xc8\x35\x2d\x72\x27\xe2\xd2\xee\x5f\x15\x07\x77\xc7\xa2\x54\xc8\x73\xaf\xa6\xf0\xd8\xce\xb4\xf0\x9e\x73\x49\x99\xb2\xca\x9b\x2e\xe9\xfe\x73\xc9\xb3\x9b\x73\x50\x37\x49\xb3\x67\xb3\x19\x46\xdd\xf9\x32\xe9\x4c\x93\xaf\x3c\x46\x8a\x50\x04\xc7\xc9\x93\xd4\x7a\x3b\x4e\xda\xac\x67\x99\xee\x29\x4e\xc1\x2b\x2c\xef\xfa\x08\xd5\xc3\x12\x11\xaa\x12\x6b\xfa\xe5\x81\x18\x59\xf8\xd6\xeb\x07\x1c\x1e\x0c\x92\x86\x7c\x04\xa7\x04\xc5\x5a\xa7\xea\x0c\x5a\x9d\x46\xda\xdb\x26\x29\x56\x8e\x75\x58\x4a\xc5\xf7\x39\xdb\xdf\xb2\x58\x3c\x03\x99\x56\xa1\xbc\xd6\x4a\x6c\xa7\x77\xbc\xcd\xde\x43\x61\x85\xae\xd9\x94\xa0\x29\x80\x05\xcb\xb4\x81\x0c\x2a\xd6\xd8\x81\x5e\x63\x9e\x04\xd6\x85\xdc\x04\x6e\x4d\xac\xe9\x7c\x58\x26\x42\x1d\xa3\x2a\xa8\x01\xf7\xd4\xf6\xd6\xc1\x54\x90\x2f\x66\xc9\x84\xe3\x6c\xb3\x42\xda\x23\xa5\x55\x6f\x72\x4a\x15\x0f\x36\xf2\xca\x14\xc2\xf8\xc4\x7d\xe0\xf2\xf1\xc7\xdb\xac\x96\x9a\x51\x17\xc5\xa8\x8b\x91\x35\xb5\x3b\x14\xa3\x75\x31\xa3\xc5\x77\xcf\xe8\x8c\x05\xc7\xd9\x13\x61\x67\x74\xa6\x66\xb4\x50\x64\xe5\xce\xb9\x5a\x9e\xe4\xe0\xba\x10\x66\x2e\xce\x68\x7a\x37\x25\xcc\xaf\xd2\xeb\x82\x12\xa6\x25\x4a\xb8\x31\x79\x0d\x92\x85\x43\x3e\x4c\x60\x2f\x96\x84\x77\xb5\x15\x65\x49\xf4\x23\x10\x22\xf0\x42\x6f\x87\x68\x58\x19\xab\x4e\x6f\x54\x02\xa2\xf0\xcc\x9a\xbf\x4f\x17\xa7\x2a\xeb\x76\xbf\xa4\xcd\xe6\xe6\xf6\x60\x44\x09\x4c\x6b\x9b\xe9\x9d\xde\x48\x9d\xcc\xeb\x7c\x97\xc6\x7f\x3a\x2f\x5d\xa7\x2a\xc5\xbb\x19\x87\xe7\x0d\x9c\x50\x34\xcf\x3b\xc8\x3a\x96\x32\x47\x86\x03\xed\x3a\xec\xf1\xff\xeb\xcc\xf3\xce\xe3\x3f\xc0\x61\xfe\x2f\x3e\x0e\x1d\xfe\x7b\xfd\xab\xdc\xc1\x69\x16\x97\xd1\x7b\x7d\xc7\x6a\xee\x69\x4e\x33\xdd\xf6\x26\xb7\x88\xe4\x15\xa2\xb7\x71\x88\x4e\x0f\x1a\xbd\x60\xb6\xd7\xd8\x6b\xec\x75\xf6\xbe\xa1\xb5\x62\x4a\x6b\x0e\x67\xdb\x6a\x72\x0c\x28\xe5\x74\x49\xd6\xc7\xf8\xff\xc7\xde\xbb\xb0\xb9\x6d\x5b\x79\xe3\x5f\x85\xc2\x9b\x65\x88\x0a\x96\xa5\x71\xe2\x24\x54\x50\x6d\xe2\x4b\xeb\x36\xbe\xc4\x76\x9a\xed\x6a\xb4\x53\x8e\x08\x8d\x98\xa1\x00\x95\x04\x67\xac\x48\xfc\xee\xff\x07\x07\x17\x82\x14\x35\x9e\xa4\xe9\xbe\xdb\xf7\xbf\xcf\xe3\xc7\x23\x92\x20\x00\x02\x07\x07\x07\xe7\xf2\x3b\x25\x6d\x8b\x4e\x25\xc6\x8d\x11\xea\xdd\xcd\xd5\x8b\xa5\xe0\xc8\xd8\x31\x4a\x8f\x44\xf3\xff\x6b\x79\x61\xef\x0a\x79\x1b\x83\x90\x1e\xf9\xea\xf8\xc9\x23\xec\xc7\xa9\xe5\x7e\x52\x12\xa7\xd1\xe3\xea\xc2\xb8\xe2\x14\xf6\xf7\x2b\x9d\xc9\xc1\xf3\x26\x5e\x52\x36\x52\x03\xd2\xf8\xcc\xac\x28\x6b\x5c\x5c\x52\x13\xd3\x4d\xb6\x94\x35\x2e\x2c\x6b\xe7\xf1\xb7\xa3\xdd\x23\x40\x4b\x6d\x78\xc2\x59\xa4\xf1\x0e\x69\x35\xdd\x76\xea\x70\xfe\x1b\xce\x6d\xc3\xfa\x4f\xd8\xdd\xad\xba\xd3\xde\xeb\x59\x78\x39\x78\x3d\xd4\xe4\xe4\x0b\x3a\x0e\xf7\x0e\x1b\x71\x7b\xf7\xb1\x38\x1d\x1d\xeb\xfc\xbe\x26\x9e\x4b\x53\x8e\x01\x59\x54\xbd\x9d\x36\xb6\xde\xbc\x31\xe4\x6e\x0d\xef\x5d\x93\x82\xad\xe2\x55\x4d\x76\x60\xbe\x3f\xd5\xc9\x65\xfb\x8b\xb2\xa5\xe0\x35\xc6\x75\xde\x52\x05\x9a\x1c\x03\xf9\x2f\x48\x77\xfc\x11\x38\x66\x43\xf6\x47\xcf\xa2\xc2\x20\x19\x8c\x92\xb2\xcc\xae\xf8\xe1\xd0\xb2\x27\x98\x7d\x5b\x12\x4e\x27\xa4\x38\x3a\xdd\x4d\xf9\xd7\xc5\x94\x0f\x87\xd8\x89\xac\x80\xb1\xed\x1d\xf4\xf8\x02\xdf\x13\x6d\x5b\x60\xc8\x3a\x2c\x16\x54\xce\x45\x43\x1d\xac\x3e\x61\xac\xa8\x8f\x90\x1f\x2c\x2c\x95\xa0\xf3\x85\x16\xec\x3f\x06\xfe\x98\xad\x4e\x82\xb3\xb1\x13\x01\xfe\xcf\x45\xc5\xd3\x20\x09\xd0\x90\x8d\x84\x7d\x75\x88\x02\xf7\x1b\x0d\x0d\xbe\xd7\x0c\x41\x12\xb1\x34\xf8\x54\x95\x6d\xe2\xa3\x87\xe8\x53\xa4\x53\x86\x8c\x82\x57\xa2\x79\xb1\x0c\x92\x82\x05\x49\x9e\x8b\x5b\x96\x06\xb7\x6b\xc6\x4d\xee\x93\x24\x58\x19\xbc\x90\x20\x29\x83\x24\x00\x91\x69\x14\xbc\xe6\xf9\xce\x3d\x69\xbd\x3c\x42\x78\x7a\x02\x54\xce\xe2\x8c\x08\x7b\x20\xab\x4f\xb8\xeb\x6b\xb7\x5b\x25\xbe\x8a\x93\xd0\x0f\x7a\x2c\xd0\xd0\x96\x18\xa2\xa6\x3f\xa3\xe0\x6f\xf6\xb7\x22\xf5\xbf\x39\xdc\x83\x6d\x21\x6e\xb2\xd4\x7e\xa1\x5c\xb3\x82\x05\x99\x06\x48\x64\x1f\x92\xa5\xcc\x77\xc1\xc4\x55\xa3\xbe\x84\x53\x31\x1f\x2f\xfc\x00\x73\xa7\xe7\xdb\xd7\x84\x91\xbd\x37\xcb\xf1\xdc\xe0\x6d\xf7\xcd\x2a\x71\x43\x1d\x23\x18\x43\x44\xfc\x30\x7e\x0b\xd5\xfd\xce\xbb\xe7\x95\x68\xea\xee\xa0\xb7\x9c\xc4\xf9\xe6\x75\xbd\xa8\x6b\x0f\xf6\xc0\x07\xb8\xf9\x78\x7c\xfb\x5d\x2b\x3a\xf3\x41\x50\xbe\xc4\x44\xd8\x55\x6c\x02\xf7\xf6\xb5\xb7\xb3\x9c\x04\x20\x41\xb7\x49\xc1\x11\x26\x03\x07\x66\x92\xe2\x08\x87\xe1\x40\xcc\xd9\x02\x97\xb7\x99\x5c\xae\x23\xf7\x8c\xe1\x08\x1f\x0e\x91\x7a\xa6\xd1\xc8\xf0\x7e\x99\x94\xcc\x38\xfe\xc5\x6d\xc0\x79\x86\xa7\x97\x05\x4b\xae\xa7\xd6\x52\xde\x02\xd1\x64\x60\x56\xb9\xf3\xeb\x8f\xc0\xd1\x38\x55\x94\xe7\x0d\x45\xdd\x4e\xd5\xe6\x30\x96\x6c\xa2\x32\x41\xd9\x1c\xb1\x22\xab\xfe\xce\x0a\x04\x52\xb9\x8c\x10\xc2\xa3\x82\xdd\xb0\xa2\x64\x91\x4d\x63\x89\xf0\x22\x42\xab\xec\x92\x15\x25\xc2\xd3\x1e\x1e\x19\x08\xeb\x3b\x7f\x38\xf0\xda\x33\x3f\x43\xca\x84\x63\x63\x7a\x11\x79\x00\x70\x17\x62\x2b\xb3\x4d\x56\x6e\x2e\x72\xb1\x4c\x74\x4e\x8b\xce\xbd\xce\xdc\x19\x1f\x8f\x4e\xde\xbd\xc9\xf8\x2b\x0c\xe0\x17\xbf\xc4\xab\xc1\xf2\x6e\x36\xd2\xf6\x84\xe9\x69\xab\x08\x9f\xf1\x91\xb8\x2c\x59\x71\xa3\x76\xb8\x99\xa4\xfe\x65\x1c\x49\xca\x23\xd4\xdc\x40\x98\xf8\xcf\xa9\xc4\xb1\xa4\xe8\xdf\xff\xdd\x2b\x41\xe4\x2f\x4f\x7b\xd0\x86\x74\xf8\x1c\x8f\x5e\xbb\xfa\xee\x0d\x06\xd1\x3e\xba\xca\xc3\xc1\x20\xed\xf4\xc6\x46\x68\x1c\x9e\xe5\x66\x1b\x4b\xb3\xa2\x38\x29\x28\x32\x58\x2c\xed\x94\x5f\x90\xcd\x29\x0c\xed\x2f\xd0\x97\x2f\x37\x5b\x13\x73\xb5\xdc\x6c\x49\x8f\xb8\xdb\xa8\x04\x48\x61\x83\x12\xe0\xf4\x26\x0d\x93\x60\x73\xb9\xa8\x21\x75\x00\xdb\xc5\x85\xbb\x59\x34\x8a\x2e\x1e\x09\x92\x01\x1a\x4b\xa6\x36\xb6\x4e\xc5\x01\xb3\x39\x26\x55\xd7\xa4\xf8\xd3\xbb\xd7\xaf\xfa\xcd\x4e\xcd\xd3\x48\x52\x7b\x11\x61\x0b\xa4\x3f\xa0\xd4\x80\xe4\xbb\x24\x37\x2e\xa3\x87\xe5\x3a\xe5\x73\xc5\xbf\x54\x8b\x33\x84\x86\x32\x46\x8a\x56\x11\x24\x99\x33\xc6\xdf\xc1\xf1\x5b\xaa\x99\x91\x36\xd2\x66\xab\x9d\xc5\x57\xe5\x24\x51\xef\xb5\x61\x18\x24\xd6\x32\x47\x42\xd1\x1c\x11\x4e\xc7\x53\xfe\xb5\x74\xb2\xc6\x70\x88\x79\x18\x46\xc9\x90\x22\x82\x30\x49\x86\x94\x45\x90\xeb\x03\x12\xf3\xa8\x8e\x58\xac\x95\x21\x5a\xa0\xda\x38\xaf\x78\x1a\xa0\xa6\xbb\xa0\x97\xc9\x3c\x25\x26\x7c\x79\x71\xa2\xcb\xe8\xe2\x02\xe6\xfc\xe2\x02\xe1\x69\xb3\x0b\x2a\x69\xcd\xe6\xa7\x12\x1c\x22\x6a\xf9\x55\xb0\xcc\x8a\x65\x95\x27\x45\xa0\x2d\x7b\x55\xc1\x02\x29\xa0\x46\xa4\x55\xe8\x15\xcd\xac\xda\xeb\xc1\x84\x94\xd4\xd7\xae\x00\x3e\x4a\x21\x23\x11\x86\x42\xf5\x6a\x6a\x46\xc3\x0e\x46\xe9\x0f\x86\xf1\x2e\x53\x42\x96\x3a\x00\x44\x72\x9e\x2f\xf0\x74\xa9\x86\xa8\x3d\x4c\x9d\xcf\xc9\xf1\x10\xc5\x68\xb8\x74\x76\x9b\xcc\xea\x2c\x2a\x32\xc1\x04\xed\xd1\x30\x19\xa2\x1a\xd5\xb5\x0e\xf6\xea\xac\xa8\x91\x62\x9f\x60\xb3\x3a\x1b\x7d\x36\xfa\x12\xfd\x37\xa5\x1c\xff\x95\x58\x23\x63\x67\x1d\x99\x34\xce\x53\x8f\x9c\xef\xd4\x57\xe0\x39\x75\xbc\x70\x0d\xa8\x84\x09\xc4\x76\x81\xd9\x2e\xbc\x59\x2a\x9e\xf4\xa0\x10\xb7\x88\x98\x80\xd2\xcf\xbe\x3c\x15\x54\x6d\x03\x8e\x4d\x58\x2a\x0a\x3f\xd1\x42\x05\x84\xbb\x36\x11\xd7\x26\x9c\xfa\x04\x86\xc7\x31\x3a\xc6\xf8\xb3\xd3\xe8\x18\xe3\x2f\x0d\x38\x81\x8e\xb3\x87\xff\xff\xb1\xc6\xbe\x38\xdd\xd8\xe4\x33\x8c\xea\x9a\xd8\x8f\x8a\xf7\x35\xd1\xcd\xaa\x1f\x2c\x49\x5d\xcc\xed\xe7\x8f\x6b\xb2\x12\x42\xaa\x47\xcd\xad\x0e\x90\xb5\x93\xe4\x9b\xf3\x2e\x2b\x49\xd9\x3a\xfb\xaa\xe3\xee\xb2\x75\xd4\x85\x06\xe1\x9c\x6b\xbb\x41\xb6\x7d\x87\xda\xde\x93\xec\xd2\x3b\xba\xea\xa1\x22\xc8\x4d\xd1\x02\x93\x35\xf8\xea\x5c\xe6\x2c\xbf\xc9\xcf\xf4\x61\xd9\xb3\x51\x14\xc6\x19\x9f\x1f\xbb\xa0\x73\x52\x8c\xd4\x08\x90\x75\x18\xa2\xb5\x81\xfa\x5b\x6b\xfc\x50\x2e\xbb\x6e\xe1\xaa\xb4\x1e\x1e\x28\xaf\x7f\x7e\xf4\x0d\xfd\xe5\xab\xbe\x47\x6e\x28\x52\x4c\x38\x26\xe5\x47\x8f\xdc\xcb\xd3\x47\xe7\x5d\x4d\xb6\x18\x37\xa1\xb7\x2b\x92\xb6\xbd\x57\xd2\x8e\x43\xb0\x1b\xd4\x18\xc9\x02\x19\x8a\x18\x4c\x1a\x32\x19\x4c\xd4\x4b\x6d\xd7\x5f\x37\xca\x71\xd9\xeb\xbf\x0b\x73\xea\x05\xe7\xae\x3c\xff\xdd\xf7\xea\xdd\xb7\xe2\x16\xd5\x38\x4a\x7d\xa5\xe5\xf6\x7f\x0c\x87\x6a\x18\xd4\x17\x8e\x41\x7d\xd9\x30\xa8\xb1\xe7\xde\xd9\xa0\x21\x9d\x39\xe7\xce\xb1\x73\xed\x9c\x34\x60\x48\x8f\x1c\x1a\xd2\x57\x00\x86\x74\x92\x97\xb5\x79\xd7\xbd\x60\x70\x7c\xac\x0a\x83\x29\xf1\x44\xe4\x79\xb2\x2d\x59\x8c\x96\xe6\x97\x7d\xf2\x6e\x9b\x2c\x75\xb8\x3d\xe4\x69\x37\xa3\xb1\x83\x81\xb8\xf9\x98\x9b\x62\x7b\xa9\xba\xf8\xec\xb6\xb5\xc0\x04\x67\xb7\xec\x83\x77\x7b\x32\x76\x42\xb9\x4d\x9c\x64\xf5\x8f\xc4\x49\xc2\xe8\x35\xf0\x1f\x9e\xd7\x97\xb9\x55\xdf\xc3\x65\xec\xa6\xc9\x2b\x6d\xc2\x83\x3c\x5e\xc7\x5b\xbc\xae\x68\xf1\xba\x84\x46\xce\xea\x71\x14\x33\x73\x1f\xfe\x66\xde\x45\x0b\x2f\x7f\xf9\x09\x6e\x50\xdc\xa9\x48\xdb\x7a\x83\xa8\x39\x20\xc7\x35\x49\xb0\x8b\x2b\x58\xf5\xc5\x15\xdc\xb4\x99\xc6\xcd\x1d\x4c\x43\x53\xa9\x43\x3d\xb1\xea\x75\xf5\x52\x8f\xfb\xbf\x9e\x96\xb4\x97\x6b\x6c\x3a\x51\x43\xbb\x2e\xd7\x50\x2c\xe3\xc6\x67\x19\x9b\xff\x5f\xb1\x8c\x5e\x06\xa1\x84\x9b\x07\x4a\x58\xd8\xa2\xff\xf7\xd7\x33\x6c\x39\x7b\xb3\xcb\xc6\xe8\x52\xa4\x3b\xf4\xcf\x5e\xc7\xbf\x78\xf1\x2e\xfe\xa7\xaf\x58\x3d\x6c\x77\xac\x4f\x18\xe6\x5f\xb9\x46\xbf\x85\xca\xff\xdf\x5e\xa7\x2d\xfb\xd0\x57\xd8\xad\xd8\x2f\xbe\x70\x2b\xf6\xec\xf3\xb1\xc3\x3c\x3c\x7b\xfc\x79\x83\x7a\xf8\x95\xea\xc1\x46\xb7\xab\xaa\xb8\x34\x45\x30\x26\x57\xa6\x84\xfa\xdd\x97\x71\xd6\xac\xff\x8f\xe0\xda\x9d\x61\x82\xc2\x38\x4f\x4a\xf9\x00\xe6\x17\x35\x9b\xe0\xb8\xae\x89\x14\x22\xbf\x4c\x7c\xc9\x9e\x6c\x32\xfe\x47\x77\xd1\xf2\xa1\x39\xab\x49\xb9\x4d\x96\xea\x20\xb0\xca\xd9\x87\x18\x4d\x82\x49\x60\x20\xb1\x96\x09\xb8\x36\xeb\x27\xef\x00\x39\x29\x1e\xdb\xe3\xc5\x5b\xe8\xa9\x8e\x91\xd5\x55\x3d\x3a\x33\x20\x31\xdf\xb1\x95\x8c\xbf\xec\x87\xee\x2b\xd9\x52\xf0\x34\x29\x76\xb6\x1e\xd7\x77\xf3\x56\xab\x77\x93\xc7\xb6\xd8\x8b\xa5\xea\x88\x14\xdb\x78\xd2\xc2\xea\x82\x61\x6a\x8e\x85\xed\x9e\x6e\x18\xaf\x5e\x48\xb6\x51\xe7\x9f\xc4\xe8\x8e\x5b\x1f\xf3\x91\x3e\xfa\xdf\x73\xd6\x96\xa6\x6e\xef\x06\xbc\xf9\x1f\xc3\x7d\xef\x85\xe8\xd0\xcf\x3c\x45\xc5\xb5\xca\xd2\x5a\xd8\xde\x24\x57\x9a\x7b\x6e\xd5\x0f\x41\x19\x44\xc6\xbf\x61\x05\x3c\xc8\xe8\xcb\x44\xae\x47\x9b\xe4\x43\x34\x26\xf0\x73\xc9\xb2\x3c\x92\x0f\x05\x7e\x30\xc1\xd3\xe2\xf7\x59\x18\x72\xed\xcd\x9f\xdd\x1f\x2e\x81\x76\x22\x35\xbe\xd1\xd3\xd8\x98\x57\x0b\x2a\x47\xea\x34\xad\x08\xe4\xdb\x4a\x4a\x93\x81\x9a\x24\x54\x3a\xfe\x5f\x41\x92\xf0\xfc\xdd\x36\xe1\xa4\xf4\x13\x86\x93\x1c\xae\xd4\x87\x2e\xa9\x1c\x01\x50\xd8\x53\xbd\xf9\xb2\xf4\xad\xb8\x2d\x49\x6a\x6f\xbf\xf5\x3e\xf5\x8a\xca\x11\x67\x1f\x64\xb7\xcd\x5b\x2a\xdb\x83\xf5\xda\xbb\xe1\x57\xf0\x8c\x4a\x3d\x88\xef\xa8\x6c\x0d\xe2\xfb\xf6\xb5\x09\x41\x20\x6f\xa8\x1c\x69\x6b\x88\x6e\xe8\x25\xed\xc6\x31\xcf\x51\x77\x64\x10\x41\x3d\xe3\xd2\x36\x22\xeb\x31\xe9\x08\xa6\x4b\x1d\xb1\x83\x8e\x47\xc3\xde\xf4\x3e\x05\x11\xd4\x33\x12\x9e\x9d\xd9\x14\xea\x19\x05\x90\x81\xe1\x4f\xd1\xba\x79\xfc\xfd\x88\x20\xef\xeb\xbd\xed\xb7\x1c\xd0\x26\x62\x39\x0c\x91\x84\x44\x00\xe5\xe1\x10\x31\x5a\x1d\x0e\x13\xf6\x08\x93\x53\x5b\x74\x79\x7a\x8b\x4e\xf4\xa6\x6c\x86\x27\x66\x35\x79\x79\xba\x9e\x8d\xf3\x97\x68\xd5\x60\xb8\x70\x7d\xf2\xbd\x23\xab\x7a\x32\xd2\x9c\xb8\xc6\xe4\xbd\x17\xcd\x74\xea\xfd\xcb\xa6\x5d\x27\x2e\x19\x8e\x8d\x88\x5f\xab\xb9\x59\x93\xf4\x7e\x15\xbb\xa8\xdc\xde\x01\x62\x65\xac\x77\xa9\x64\xd4\x6c\x04\x96\x97\xdb\x7b\x24\x53\xec\xda\x5e\x29\xe2\xb0\x4c\xfb\x54\xa3\xdb\xfe\x51\xd4\xa0\x02\xc7\x21\xcd\x4a\x2c\xd0\x2c\xe3\x5d\xe3\x00\xf0\xba\x26\x6f\xd4\x27\x9e\x80\xc6\x3e\xd5\xf4\xba\xbf\x69\xbb\x79\x10\xc5\xa7\x98\xb5\x07\xd4\x90\xbc\xe4\x34\x35\xfc\xf2\x59\x59\x46\xfb\x55\x21\x36\xf1\x98\x52\x9a\xcf\xc6\xf1\xb3\xdf\xbd\x1b\x4e\x88\x14\xb1\x66\xa7\x19\x8f\x72\x12\x3d\x1b\x4e\xf0\xef\xde\x61\x02\x6b\x33\xce\x89\x5a\x38\xf1\xb3\xbb\x3a\xc2\xdb\x5f\x63\xb6\x3f\xd2\xc3\x12\xe2\xc2\x55\xdb\xb3\x94\xe3\x2b\xe2\x2f\xe5\xf8\xd6\xb4\x4d\xbc\x65\x1a\xbf\xab\xf1\x47\x84\xd7\xa3\x30\xf6\xb6\xf0\xda\x65\x5e\xf1\x95\x1b\xc7\x46\xae\x75\x2b\x9d\x1c\xb3\xa6\x1e\x6f\x54\x36\x52\xe3\x0a\x3b\x98\x14\x46\xea\xaf\xb8\xb4\xa6\x37\xe7\xa3\x28\x09\x7a\xd0\x00\x77\x72\x82\x02\xb1\xf2\x90\x3c\x0b\x5c\x93\x2e\xd7\x8b\x91\xba\x08\xb6\xac\x08\x60\x34\x10\x39\x66\x5a\xf1\xfc\x73\x32\x19\x93\xb3\xcf\x17\x5e\xc4\x7b\xda\x2c\xa7\xdb\xae\x5c\xfd\x26\xb9\xca\xb8\xf6\x5c\xf8\x48\xec\xfb\xbf\x90\x1b\xdd\xa3\xf1\xd9\x3f\xd5\x8d\xee\x9f\xdd\xfb\x47\x77\xc5\x44\x3d\x1a\x7f\xe6\x87\xd5\x6c\x9b\x60\x95\x11\x84\x74\xd0\xcc\xbb\xa3\xe8\x38\xcb\x59\x7f\x5a\xa1\x2a\xd2\xbe\x01\xb8\xf6\xde\x90\xe2\x9a\xf1\xf2\xbd\x78\x6e\xde\xa0\x55\xcf\xc3\xb7\xec\xea\xd9\x87\x2d\x4d\x4d\xaf\x39\xbb\x0d\xf4\xad\x68\x8e\xa2\xf3\xf3\xf3\xf3\x11\x46\x04\x45\xf3\xf3\xf3\x87\xa3\x05\x9e\x45\xb3\x38\x9a\xc5\xe7\xe7\x71\x74\x7e\x7e\x3b\xc4\xf0\x3b\x8a\xe0\xcf\xf9\xf9\xe8\x30\xff\x2f\xf5\x37\xc2\x0b\x3c\xc4\xe7\xe7\x18\xcf\x0e\x77\x3e\x8e\xe6\xc3\xdf\xcd\x16\x78\x76\x88\xce\xcf\x7f\x87\x31\x5a\x18\x4b\xfe\x01\x61\x82\xae\xd0\xb1\xeb\x83\xf3\x3f\x26\x05\x9d\x2f\x48\x46\xc7\x24\xa1\x63\x52\x51\x84\x94\x04\x16\x86\x6a\x2a\xf3\x6c\x93\x49\x56\x1c\x0e\xe8\x21\x9a\xea\xb0\xf7\x88\x53\x31\x62\x1f\xd8\x32\x62\x18\x4f\x6d\x36\x67\x3e\x1f\x2f\x48\x4a\xf9\x7c\xb2\x00\x74\x2b\xb0\x22\x4e\xb3\x55\x54\x0d\x29\x1b\x95\x60\x49\x4b\xc8\x56\x9d\x07\xb7\xc3\x95\x8d\xc9\x48\x71\x35\xa4\xe9\x7c\xb2\xd0\xd0\x8d\xaa\xaa\x35\x65\xf3\x64\x41\x76\x94\xcf\xcf\x16\xe4\x86\xf2\xf9\xa3\x05\xd9\x50\x3e\xff\x6c\x41\x2e\x29\x9f\x7f\xbe\x20\x57\x94\xcf\x1f\x2f\xc8\x2d\xe5\xf3\x2f\x16\xd3\x2a\x0c\x23\x13\x82\x5e\x61\xe8\x3e\x36\x07\x02\xdd\xdf\x5d\x18\xea\x1f\xeb\x30\x5c\x0f\x28\xdd\x91\x67\x14\x0d\x11\xa5\xf4\xea\x70\x40\xbf\x83\x1f\xe4\x1d\x45\xb3\xce\xad\xf7\xd0\x83\xc3\x61\x49\xde\xd0\xcd\xe1\x70\x39\x35\x8d\x68\x56\x71\x73\x38\x64\xc3\x21\xd9\x16\x6c\x95\x7d\x88\x77\x87\x03\x42\xc4\x0d\x57\xfc\xde\x84\xa2\x26\x79\xfc\x8e\x14\x6c\xcb\x12\x19\x3f\x23\xdb\xa4\x90\x59\x92\xc7\xaf\x49\x52\x4a\x56\x64\xe5\x75\x3c\x18\x28\x26\x2e\x25\x2b\x78\xfc\x66\x96\x47\x6f\x70\x7c\x3b\x43\xa3\xdf\xa1\x18\xcd\xff\x0b\x0d\xcb\xe8\x3d\x1e\xa2\xc5\x70\x86\x6a\x5c\x5b\xcb\x64\xf2\x35\x73\x4e\xcb\x66\x78\x75\xb8\x70\xa2\x0e\xd9\x80\x93\x68\x06\xa3\x38\x91\xa9\x84\x2f\x45\xca\x7e\x78\xfb\x22\x62\xd8\x79\x15\x3f\x9c\x9f\x3f\x9c\xfd\x9f\xc5\xc3\xab\x1e\x8b\x3d\xfa\x37\x34\x64\xa3\xe5\x3a\x29\x9e\x88\x94\x7d\x23\xa3\x31\x1e\x49\xf1\x4e\xc7\x18\x4f\x1e\xab\x8b\x1f\xb6\x5b\x1b\x85\xec\xe7\xba\xa8\x5a\x1e\x73\xb0\x24\x4c\x72\x01\xeb\x40\x65\x8c\xb8\xcc\x37\xe2\xf6\xc0\x4d\xcc\xf9\x22\x0c\xc1\xb2\xed\xaf\x2b\xf4\x5f\xd1\x2c\x46\x43\xf5\x74\x64\x86\x71\x88\xf0\x27\xc8\xd3\xe3\x3a\x4f\x7c\x22\x9a\x9e\x64\x8a\xc8\x2b\xca\x0f\x87\x7d\x4d\x4a\x1a\x09\xf5\x03\x8f\xb6\x05\x93\x72\x37\x4b\x62\x37\x42\x4f\xbc\xe3\xc9\x78\x9a\x37\xdd\xcc\xad\xad\x79\x49\xd9\x3c\x07\xd7\x3a\x1b\xa4\xde\x98\xfb\x97\x66\x75\x90\x94\x56\xf3\x25\x78\x6b\x41\x49\x6d\x82\x4f\xc1\xbe\xbe\x1c\x59\x52\xc1\xfb\xe5\xc8\x90\x48\x18\x46\xd9\x90\x2e\x47\x9a\xbc\xf0\x74\x29\xb8\xcc\x78\xc5\xea\x3e\x43\xfb\xa7\xcf\x3e\x6c\xc1\x7a\x14\xa0\x4f\x87\xba\x95\xe1\xa7\x28\x90\x22\xb8\x64\x81\x71\x62\xfb\x14\xd7\xd9\x2a\x2a\xa2\x54\x1b\xf5\x07\xcb\x91\xa6\x4a\xfc\xcb\x2a\xe4\x42\x06\xfa\x45\x12\x5c\x56\xea\x37\x40\x34\xa6\xc1\xdf\x3e\x1d\x76\x0c\xea\x29\x1e\xa2\xbf\xe9\x8c\x3d\x4a\x9c\x4a\x5d\x96\xa9\xf6\x37\xdb\x2f\xeb\x75\x21\xb8\xbb\x23\x97\x2c\x60\x9b\xad\xdc\x7d\x8a\x6b\x3b\xaf\x5b\x3a\x9e\x6e\xbf\xb6\x6d\x4d\xb7\x6a\x92\xb2\x55\xb4\xa2\x65\x94\xce\xb7\x0b\x4c\x06\x72\x9e\x2f\x74\xc2\xb6\x15\xfe\xc8\xc7\x27\x79\x7e\xd4\xee\x26\x91\xcb\xb5\xbe\x6b\xe9\xed\x53\xf4\xd1\xb1\x58\xd9\xb1\x18\x52\x18\x8c\xed\xcc\x4e\x6d\xbc\x6c\x98\x2c\x1e\xae\xea\xda\x26\x56\x5a\xd1\xe5\xc8\x72\x89\x59\xb3\x60\x53\x7f\xc1\xfe\x56\xcb\x35\x2e\xa3\xf4\x97\x0d\xcd\xaf\x19\x16\xf4\xe9\x70\x35\xfc\x14\x7d\x0a\xc3\x60\xbf\xdf\x7e\x72\xa0\xee\x39\xd7\x8b\xba\x95\x2c\xa7\x95\xd8\xd2\x7c\x7b\x34\x1f\x0d\x7f\x37\xa3\xff\x35\x88\x3f\xd9\xd7\x11\x9e\x9f\x2f\x0e\xe7\x0f\xcf\xcf\x17\xf8\xe1\x15\x41\xe7\xe7\x9f\x4c\x90\xc7\x84\xf2\x53\x75\xd0\x41\xfc\xc9\xf9\x43\xb5\x87\xf6\xbd\xb6\xec\x64\xfd\xb9\x66\xbb\x92\x4a\xc2\xea\xde\xc0\x51\x36\x2a\x19\xa0\xfe\xdf\xb0\x19\x42\x31\xca\x50\xdd\xb6\xe0\x43\x06\xe2\x48\x62\x48\x25\x25\x0f\x07\x4e\x24\x9d\x2f\x5a\x91\x6d\x5c\x73\x24\x3c\xd2\xe2\x18\xc9\xe8\x00\x22\x1b\x47\x8c\xa7\x24\xd1\x3c\x6b\x3c\xad\x1a\x2e\x54\x35\x1e\x2f\x6c\x5e\xb5\xb8\x50\xc3\x3b\x73\x9c\x0c\x69\x19\xe5\xb8\xd9\x64\x53\x75\x6d\xb9\x0b\xd9\x52\x04\x6c\x34\xf7\x78\x28\x9a\x4a\xbd\x8d\xe4\x98\xe4\x86\x59\x84\x61\xb4\x1d\x9a\xb2\xe9\x70\x3b\x44\xf8\x77\xda\x97\x66\x4b\x73\xb7\xa2\x67\xb9\x65\x62\xb3\x74\x88\x22\x04\xe5\x66\x28\xb6\xaf\xd9\x5b\xea\x5e\x73\x85\xea\x5a\x6f\xfe\x65\xc4\x3b\x62\x07\x26\x3b\x9a\x18\x09\xe2\xc1\xda\xb2\x11\x4a\xe9\xda\xf2\x78\x71\x38\x44\x09\x8d\x76\x33\x5b\x6c\x4c\x9a\x82\x71\x82\x87\xba\xed\xb5\xfa\x4b\x3f\x51\x2d\x43\xaf\xb3\x19\xfa\x04\xc5\x22\x0c\x77\x30\x61\xd1\x8c\x42\x99\xc3\x27\x18\x91\x65\xd4\xda\x65\xd0\x30\x21\xab\x88\x63\x4c\x64\x5f\xd2\x70\xe7\x7b\x7b\x34\xbb\xc4\x4c\x29\x61\x41\xc6\x4b\x99\xf0\xa5\x9a\x11\x5d\xef\xac\x2f\xe6\x8e\x8d\x4a\x51\x15\x4b\x36\x82\x25\x15\x3d\x3c\x8f\xa2\xd9\xe0\x7c\x86\x1f\x5e\x61\x8d\x89\x62\xc9\xe5\x28\x08\x6c\x88\xa5\x2f\xa0\x14\x56\x36\x01\x35\x5f\x23\x9a\xc0\xa5\x93\x4e\x06\x13\x2b\x9e\x00\x30\x90\x96\x4f\x06\x13\x4f\x40\x99\x38\xf9\x44\x03\xd3\xd9\x41\xd7\xab\x03\x92\x77\xe2\xb8\x88\x18\x9e\x75\x45\xf3\xa6\xa7\x90\x41\x6f\x3c\x15\x0d\xe1\x8a\xe1\x10\x5b\xdc\x20\x70\x70\x87\x57\xcc\xb7\x7b\x6d\xf8\xb3\x00\x93\x58\x34\x62\xad\x22\x9b\x66\x56\x4c\xab\x71\xb7\x17\x16\xba\x18\xa4\x7a\x8e\x75\x5e\x74\x9b\x1f\xfd\xf8\x3c\xd1\xc9\xc9\x7a\x74\x38\xb2\xb9\x64\x4f\xba\xee\xb7\xbc\x4d\x55\x15\x06\x2c\x4a\xf6\xa1\x68\xc9\x30\xec\x78\xba\x1d\x79\xe4\x1b\x84\x98\x0c\x22\x00\xa6\x5c\xfb\xbf\x32\x22\xf0\xac\xd0\x03\x97\xe1\x18\x22\x04\xb2\x5a\xbb\xd2\x89\x0e\x54\x74\x13\xaa\xa9\xd8\x79\xc4\x81\x42\xdf\x14\x62\x93\x95\x0c\x63\xaf\x21\x92\x79\x7a\x73\x90\x17\x65\xb1\xdb\x97\x51\x01\x0a\x56\xf0\xb3\xd5\x6e\xbe\x12\xef\x33\x40\x58\x69\x8b\x79\xb6\x34\x6c\x1d\x77\x16\x07\xa6\xce\x46\xa9\xe0\x6c\x26\x5c\xf2\xa7\x58\x4d\x36\x6f\xa5\x41\x93\xee\x61\x8d\x47\x72\xcd\x78\x94\x90\x0a\xd7\x65\x14\x15\xb4\x41\x7f\x92\x87\xc3\x7c\x81\xb1\xee\x26\xa4\x61\xed\xe0\x65\x3b\xe7\x29\x0d\x48\x47\xf7\xa0\x44\x88\xc7\xa4\x64\xbc\x75\x04\xcd\x56\xd1\x24\x14\xf3\xf1\xc2\xec\x7f\xc2\xcb\x54\xa5\x7e\xd7\x44\x16\xbb\x32\x56\xf4\xbc\x6d\x05\x5e\x67\x74\xaf\x5a\x8f\xab\x68\x8c\x09\xbc\x1b\x57\xd1\x04\x13\xfd\x38\xae\xa2\x33\x5c\xf7\x7a\xdb\x5a\x7c\x93\x28\x9b\x77\xe0\x56\x16\x3d\x4e\xd7\x72\x9d\x95\x35\x26\xd9\xd4\x1b\xf9\xec\xd8\xaf\xb6\x3a\xbe\x95\x69\xe0\xb2\xde\x7d\x1d\xfd\x81\x71\xdd\x66\x90\x95\x41\x92\x17\x2c\x49\x77\x81\x3a\xe2\x55\x32\xe3\x57\x23\x13\x7e\x3d\x4d\xa6\x58\xcd\xb1\xaa\x87\x4e\x48\x01\xf9\x0e\xce\xc2\x6c\x3e\x5e\xcc\x8a\x91\xf9\x52\x73\x05\xcd\x1c\x0e\x51\x24\xa8\x7d\x84\xc3\x50\x68\xea\x2d\x30\x19\xe3\x58\x93\x15\x0e\xc3\x41\x24\xa8\x7d\x42\xb2\xf9\x44\x4d\xa5\x22\x0d\xeb\x78\x2a\xa6\xc6\xeb\xbe\xa0\x63\x22\x20\x63\xc2\x5c\x37\x4b\x84\x4d\xfc\x48\xd4\xa5\xf6\xbd\x0f\xc6\x31\xfc\x99\xc4\x82\x66\xc6\xe1\x1e\x6e\x7c\x16\xdb\x03\x94\x36\x23\x0c\x87\x56\x7d\xa1\x1a\x25\xaa\x49\xc0\x44\x83\xc2\x9f\xc7\x4d\xa9\x82\x42\x81\x8c\xce\xc7\x0b\x27\x8a\xeb\x62\x5f\xc4\x19\x4d\x46\xe0\xe8\x22\xb6\x11\x26\xc9\x48\x11\x88\xbe\x68\x8a\x5a\x7f\x7f\x25\x79\x47\x82\x46\x82\xea\x72\xd8\x03\x84\x10\x73\xd1\x84\x9a\xe2\x30\x8c\x1e\x53\x4a\xd5\x57\x1d\x0e\x67\xe6\x17\xc6\xfb\x84\x8e\x9b\xc3\x40\xb6\x8a\x1e\x99\x47\x61\x18\x0d\xc4\xe1\xa0\xfa\xf9\x7b\x01\xd7\xea\xe7\xd7\x62\xfe\x08\xde\xd2\x9f\x02\x9f\xa1\x47\x44\xbd\xfb\xd8\xbd\x6b\x9e\x7f\xad\x48\xbc\x29\xad\xae\x88\x1b\x43\xf5\x86\xf0\x8b\x9e\xb5\x8a\x9e\x2d\x88\x19\x07\xc5\xd3\x33\x13\xe9\x50\xab\x07\xea\xa5\x8f\x8c\x50\x9d\x51\x69\x39\x5b\x62\xf9\x46\x85\xf7\x19\x9d\x3f\x26\xd5\x82\x14\x74\x5c\xaf\x32\x9e\xe4\xf9\x6e\xcf\xa9\xa0\x63\xd5\x9b\xcf\x81\x06\x0c\x45\x67\xcd\x4a\x75\x93\x3a\x5e\xcc\xd4\xed\x58\x5b\xa8\xcd\x04\x8f\xeb\x3a\x9a\x67\xa4\x5a\xe0\x96\x93\x65\xa2\x76\x07\x52\x76\x11\xe2\xcc\xab\xe6\x4f\xc7\x26\x96\x93\x25\x59\x91\x94\x6c\xc9\x1a\x6c\x63\x8e\x19\xe8\x77\x5d\xe9\x1d\xde\x1b\x0a\xde\xe9\xf1\x72\x84\x6a\x71\x22\x69\x39\xb2\xd1\x3d\x2f\x93\x2d\x59\x52\x07\x8b\x6c\x11\xc5\x4b\x97\x60\x1d\xee\x94\x24\xa5\xfb\x9a\x6c\x7b\xa3\x49\xa3\xf5\xdd\xfd\x16\xaa\xc7\x64\x47\x6e\x4e\x75\x38\x73\x1d\xce\xfa\x3b\x2c\x47\xe5\x5a\x54\x79\xfa\x42\xa7\xd1\x8d\x18\x59\xe1\x99\xce\xa3\xc8\xf2\x54\x09\x03\xf3\xcf\x48\x65\x86\x74\x11\xcf\x1f\x91\xb3\x45\x3c\x3f\x5b\x4c\xcd\xca\xb4\x3d\xa5\x99\x92\x9a\x65\xa4\x64\x50\x39\x2a\x58\x59\xe5\xf2\xcf\x0c\xd2\x41\x3e\x2f\xc4\xc6\xd6\xd6\x78\xe3\xab\xe5\xef\x02\x76\xd4\x91\x6e\xa6\xfe\xa3\x22\x2e\xe0\x80\x47\x04\xc6\xc4\xb5\x73\xa6\x16\x9c\xea\x55\x3b\x0b\xb5\xda\x9a\xd6\x54\xe7\xb0\x0d\x60\x49\xae\x69\xde\xce\x64\xdc\x93\x48\xf6\x95\x68\x22\xce\x74\x08\x5b\x3b\x82\xcd\x09\x2d\x3b\xba\x06\x7f\xe1\x27\x82\xa7\x10\xd7\xe4\x15\x22\xfe\x3c\xcb\xe5\x9a\x15\x11\x27\x3b\xb2\x84\xf1\x4a\xa2\x75\x2b\x85\x6a\x33\x78\x9f\x99\x0f\x7a\x14\xdf\x34\x23\x56\x44\x29\xb9\xc1\xc4\xcc\x10\xfd\xac\xcd\xe4\xe6\x67\x8b\x1a\xf2\x91\x93\xf9\x67\xc4\xec\xf6\x23\x58\x60\xdd\xdc\xb2\x5b\x8c\xbb\xf3\xb2\xb3\x6d\x94\x66\x4e\x5e\x26\xea\xbc\x38\x9b\x9f\x75\xee\x44\x29\xe1\xaa\x8b\x67\x24\x35\xcd\xf9\x22\x41\x4b\xf6\xb8\xcf\x82\x12\xa4\x22\x6e\x51\xfd\x6a\xe2\x54\x5b\x4e\x67\xb1\x54\x4d\xd2\x0b\xbd\xa0\x72\xd8\x96\x4a\x91\xdf\xb0\x02\x3c\xa7\xbd\x39\x5a\x51\xd9\xa4\x7f\xd6\xe2\x99\x47\x8c\x44\x60\xb5\xf6\xb2\xf2\x3b\x96\xac\xe2\x4e\x16\x73\xe2\x48\x38\xbe\x8b\x9c\x9b\x54\xb3\x31\x84\x4b\x3d\xb5\xd7\x2f\xf8\x4a\xb4\xdb\x82\xf9\xcb\xa3\x25\xe1\x64\x45\x2a\x92\x1e\xcd\xd5\xb6\xa1\x88\x4e\x46\x75\xad\x65\xda\xaa\x59\xdb\x2e\xe2\x76\x50\xc9\x16\xc3\x64\x46\x8c\x6c\x49\xa1\x67\x30\xe9\xe4\x20\x6e\x9e\x6c\xbb\x73\x5b\x76\x84\x6b\x9f\xbe\x64\xdb\xe6\x27\x5b\x79\x46\x95\xdc\x03\xfd\x8a\xbb\x31\x2e\x33\x5b\x67\x7c\xd4\x0f\x90\xd4\x31\xae\xd9\x08\xbc\x6f\xfe\x9e\xfb\xb2\x9d\x15\xea\x2a\xbc\x77\x7c\xa1\x02\xcc\xdc\xbd\x31\x1f\x94\x14\xc6\xf8\x65\x92\x79\x71\x8f\x11\xc7\xe0\x70\x70\xc5\xe4\x71\x4c\x68\xa9\x9e\x2e\xa9\x35\xe3\x3d\x6f\x38\xb3\x3a\x0d\xaf\x68\xd5\x5a\x03\x24\xa5\x55\x77\x55\x7b\x11\xc3\x0e\x74\x62\xac\xd8\xf5\xde\x63\xf3\xf1\x92\xf8\x34\x19\x0b\xd2\xa6\xda\x38\x23\x7e\x3b\xf1\x8a\x58\x8a\x8d\x19\xe9\x34\x18\xa7\x4e\x14\x4d\xa2\xb2\x43\x93\x64\x8b\x4f\xe1\xc7\xb2\x93\xe6\x9c\x3a\x92\x84\x47\x67\xe3\x7b\x9b\x8c\x3e\x37\x98\x74\x93\x56\xe2\x5f\xe7\x7d\x93\xfd\xcb\xc6\x54\xab\x03\xc3\x5a\xca\x6d\xbc\x37\x59\xe3\xbf\xaf\x58\xb1\x8b\x07\x63\x62\xae\x9f\x7d\x90\x8c\x97\x60\x68\x1c\x4c\x74\x78\x07\x2b\xca\x78\x9f\x2c\x97\x6c\x2b\x63\xf4\xbb\x87\xbf\x03\x5f\x0e\x9d\x6a\x10\x32\x26\x68\x54\xd5\x6c\x09\x36\xc6\x87\x3f\x95\x82\xa3\xda\xc1\x57\xee\x37\x4c\xae\x45\x1a\xa3\x37\xaf\xdf\xbd\x47\x75\x4d\xaa\xa3\xec\x3f\x66\xd0\xdd\xf6\xc4\x6d\x0c\x56\x01\x9c\x8c\xa2\x77\xac\xb8\x61\xc5\x33\x9d\x7f\x02\x78\xdd\x56\xf0\x92\x41\xfa\xa5\x52\x26\xb2\x2a\x9f\x88\x94\x01\x22\x8d\xba\xd0\x45\xc0\xaf\x8f\x14\x35\xe9\x46\x0c\xc2\xf1\x09\x50\x8d\x79\x37\x70\x8a\x59\x71\x4d\x1c\xf7\x0a\xbd\x62\xf2\x56\x14\xd7\x41\xc1\xfe\x5e\xb1\x52\x06\xab\x24\xcb\x59\x3a\x0a\xd0\x50\x0e\x91\x8d\x70\x2e\x59\x91\x25\x79\xf6\x33\x98\x05\x21\x72\x7a\xc3\xca\x32\xb9\x62\xcd\x37\x81\x09\x0f\xea\xa4\xc2\xe5\xfb\x09\x78\x4d\xf2\xe3\x48\x53\x2f\xba\xd0\x71\xa8\x88\x59\xea\x2b\x99\x7c\x63\x09\xe4\xf5\xea\x70\xd8\x5f\x5c\x00\xc1\x5c\x5c\xa8\xe3\x9c\xa7\xa3\x01\xc6\xd4\x05\xfd\x61\x23\x57\x9c\xca\xda\xa7\xe1\x96\x45\x0d\x88\x13\xcb\x0e\x01\x46\x5c\x53\x1e\x57\x94\xc7\x17\xb8\xc6\xd0\xc5\xfa\xc8\x54\xa1\xb5\x27\x7e\x1c\xaf\x05\xd9\x71\xc0\x98\xb2\x66\x50\x8c\x78\xf4\x4e\x0d\x87\xe5\xb3\x4e\xec\x2c\xa4\x56\xf2\x8a\x35\xbf\x89\x9a\xab\x02\xd7\x75\xa4\x18\xde\xf1\xa2\x5d\xfe\xeb\x2e\xda\x55\x2f\xa4\xd5\xbe\x76\xfa\xd6\x42\xf5\x86\xdd\xaf\x03\x8c\x14\x38\x0c\xa5\x8b\x8d\x2c\xf0\xd7\xe3\x30\x8c\xf8\xbc\x58\x50\x36\x2f\x16\x78\xea\x50\xc1\x4f\xe0\x9b\x9a\x66\xae\x98\xf4\x2a\xd7\x27\xfe\xd2\xc6\xc0\x8e\xa1\x6f\x0e\x7c\xa2\xb7\x6c\xc4\xf0\x54\x7c\x5d\xf8\x7a\x34\xaf\x5b\x6a\x6c\x6c\xcf\xe6\x62\x01\x9d\x53\x7f\xb1\xb7\x64\xd2\x76\x7e\x36\xbb\x69\x32\x35\xc0\x6e\xd3\x94\x94\x8d\xaa\x22\x23\xbc\x41\x09\x94\x33\xf4\xd0\x6c\xc0\x28\x96\x00\xb5\xb2\x62\x72\xb9\x86\x00\xb3\x23\x4e\x08\xa8\x2a\x55\xc9\xfe\xf0\xec\xfd\x73\x51\x28\x8e\x99\xb1\x92\xac\xe9\x0a\xbc\xba\xab\x22\x43\x04\xc1\xeb\x80\x8c\xd2\x79\x19\x11\xd4\x7d\x15\x2d\xf0\x74\xd0\x81\xa9\x18\xa8\xb1\xee\xc3\x69\x80\x8a\x5d\x02\xf0\x8a\xeb\x86\x34\x37\xb9\x03\x1f\x53\xc7\xff\x73\x91\xb2\x07\xfa\x0d\x4c\x3c\x5e\x76\xae\xab\xb1\x5c\x6b\x05\x38\x0f\x57\xb9\xb8\x54\xa7\xd2\x20\xe1\x69\xc0\x85\x6e\x19\x5c\x51\xca\x92\xa5\x24\x90\x22\x58\x65\x1f\xe0\x32\x48\xf4\xd3\x60\x25\x8a\x73\xbe\x13\x55\x11\x30\x7e\x93\x15\x02\x52\xe9\x04\x79\x76\xcd\x02\xb5\xcd\x94\xf1\xc3\x87\xb7\xb7\xb7\x23\xbe\xdd\xfc\x04\xae\x0a\x0f\xb7\xc9\xf2\x3a\xb9\x62\x0f\x81\x6b\x8e\xce\xf9\x39\x7f\x2e\x8a\x80\x7d\x48\x36\xdb\x9c\xc5\xe7\x3c\xdb\x6c\x45\x21\x6d\xed\x85\xd8\x04\x9f\x42\xd1\x4f\xa7\xee\xd9\x3e\xd0\xcc\xe0\x8f\x52\x6e\xbf\xcb\xf8\x75\x50\x9b\x82\xc9\x56\xe4\xb9\x78\x90\x67\xfc\xfa\x81\x6a\x5d\xbd\x73\xce\x81\xd5\x04\xea\x66\x40\x3b\x6f\x46\xfb\xa0\x2a\xb2\x38\xf8\xd4\x12\xc3\xa7\x44\xb7\x1c\x9b\x0e\xd4\x78\x8a\x14\x47\xc9\x31\xc9\x0f\x87\x28\xa7\x7a\x36\x80\xac\x76\x9d\x9d\xd4\xdb\x39\xd3\x66\xff\x5b\x6b\xc2\xb2\x1e\x97\xcb\x82\xa5\x8c\xcb\x2c\xc9\xd5\x23\xef\xca\xed\xb4\xeb\x91\xf9\xd5\xc4\x87\x2b\xbe\x36\x4a\x8e\x00\x13\x64\x2f\x57\x60\x6a\xad\x19\xd7\xfc\x08\x2b\xc2\x77\xf5\x1c\x0e\x77\x26\x10\x3c\x1c\x9a\x45\x01\x6a\x65\x8e\x21\xf4\xd2\xaf\x0f\x8e\xea\x8a\x41\xac\x0c\x78\xec\x37\xb7\x49\xc1\x38\x2b\xcd\xc2\x5f\xd3\xa3\x07\xe4\x86\xae\x35\x38\xd1\x86\xae\x6d\x6c\xf1\xf4\x26\x0c\xa3\x74\x8e\xf4\x94\x99\x56\x1f\xe8\x37\x1f\x00\xa4\xd0\x82\xde\x60\xb2\xb9\xa3\x94\xa9\x09\x2d\xe8\x46\x2b\x8b\x2f\xc9\x15\x5d\x46\xfb\x9a\xa4\x64\x65\x07\x11\x93\x5b\x33\x4d\xab\x91\xfa\xe3\xe6\x65\x75\x7a\x5e\x56\xbd\xf3\x72\x55\x93\xd7\xf4\xc4\x1e\x49\xe7\x0b\x52\xd0\xb3\x69\xf1\xf5\xd1\xbe\x51\x0c\x87\x98\xcf\x8b\x07\x67\x0b\x6f\xaf\x28\x16\x53\x0d\xda\x98\x45\x00\x0b\x6e\x3a\x45\xf6\xb6\x31\x69\xfb\xdf\xea\x98\xf4\x3b\x56\x63\xf0\x3f\x56\x1f\x35\xe5\xbd\xe0\x37\xa6\xfa\x84\xb0\xe3\x06\xf4\x13\xd7\x0a\x73\xe3\x55\xab\xa3\x97\xd7\x4c\x18\x46\x89\x7f\x4d\x5b\x4f\x55\x1f\xa0\xaa\x4a\x55\x21\xe5\x16\xbb\x83\x8a\x87\x9e\xe3\xe0\xac\x58\xc3\x52\x97\x80\x4d\xa5\x8f\x08\x25\x90\x19\x20\xb6\x28\xfa\x6a\xbd\x17\x97\xee\x24\x51\xc6\xcb\xba\x09\x70\x3d\x5a\x75\x8a\x54\xbc\x16\x68\x8e\x89\x2b\x05\x52\x2e\x14\x80\x56\xcc\xae\x14\x89\x51\x82\xa3\x15\xc6\x64\x6f\xc9\x22\x21\x97\x22\xdd\xc5\x69\xad\xe8\x3f\x21\x3b\x72\x8b\xc9\x33\xfa\xda\x0d\xe0\x3b\xfa\x1a\x00\x92\xd5\x12\x18\x3c\x1b\x29\x41\x22\xc9\x35\xe9\xbf\xa7\x6d\xe5\x7b\x2f\x73\xfe\xe6\x52\x14\xd2\xa5\x38\xb4\x78\x04\xfb\xa5\xbb\x03\x11\xb4\x50\x2b\xe8\x6f\xb5\x18\x08\xae\x26\xed\x37\xa7\xc7\x6f\x32\xfb\x22\x33\xfd\x02\x51\xe8\x0d\x7d\x3f\x6a\x0a\x91\x97\xf4\xbd\x79\x3a\x8d\x2e\xe9\x1b\x25\x8a\xd8\xcf\xa0\x2f\xc1\xb1\x62\x1b\x86\x03\x33\x1b\x2d\x7c\xa5\x0e\x6a\xa6\x33\xd0\xdf\x89\xaf\x14\x86\x68\x53\xc9\xa4\xb9\xe9\x26\xb7\xd6\x4d\xeb\xe3\x01\x45\x7f\x78\xf6\x1e\x61\x02\x7f\x28\xa5\xf6\xbe\x1e\xd9\xeb\x5e\x46\x07\x6b\xae\xfd\x80\x1b\xd0\xa3\x21\xa2\x68\x78\xec\xf7\x12\x49\x8c\xeb\xa9\x81\x06\xca\x20\xd7\x63\x11\x59\xa4\x20\xa9\x3f\x19\x4f\x65\x9b\x70\xa1\x4c\xeb\x0e\x22\x9d\x22\x20\x31\xc9\x86\x9c\xad\x0c\x64\xa2\x89\xd4\x51\x43\xd0\xd2\x2f\x41\xd0\x5f\xec\xcf\x60\x93\x6c\x91\x3d\x77\x7c\x70\x11\x3b\xcd\x29\x21\xfe\x50\xd7\x45\x84\xdc\xbb\x88\x08\x98\x27\xe9\x11\xbb\xb5\xab\x79\x2d\x66\xd0\xa2\xb7\xe2\x50\xb3\x54\xee\xdb\x26\xf3\xa4\x98\x4c\x33\x59\x63\xb9\xd7\xeb\xd9\xca\x6a\xe8\xff\x20\x3c\x05\xc8\x8d\x5c\xf1\x8b\xc6\x8b\x2b\xf7\xb3\x3c\x44\x63\x92\x9b\x0c\x35\x4b\x0a\xc8\xad\x55\x53\xc3\x0c\xe1\x19\x9a\xa1\x18\x85\x16\xe5\x63\xcf\xd9\xed\x0f\x6f\x5f\xc4\xd5\x70\x39\xe4\xc6\x52\x1a\x22\x3c\x4c\x6a\x75\x9c\x7f\x87\xc9\x4f\xf4\x7a\xa4\xcb\x90\x0f\xf4\xda\x3b\x57\xa9\xe9\xf8\x60\x2d\x2e\x3e\xf4\xd1\x07\x3c\x95\xf4\x27\xed\xa4\xa1\xc6\xe8\x19\xac\x65\x5a\x46\xef\x08\x7a\x93\xec\x72\x91\xa4\xc7\xc3\xd2\xa9\xa1\x6e\xed\xca\x97\x2d\x78\x54\x10\xc5\x5d\xc2\xa4\x48\x92\x67\xc6\xd2\xd7\xa3\x42\x62\xea\xf8\x66\xf7\xd5\xbd\x3d\xd3\xc6\xb2\xc6\x44\x5a\x03\x61\x54\x50\xd6\x07\x3a\xa3\x03\x8a\xa2\x9e\xca\xd5\x57\xf9\x18\x27\x30\x28\x91\xb4\x1f\x55\xd8\xc5\xe3\x7a\xc9\x5b\x67\xec\x37\x6e\x0c\x11\xe1\xfe\x41\x9b\xf7\x1e\xb4\x39\x8c\xdf\x7b\xf6\x41\x1d\xb5\xad\xe2\xac\x60\x30\x5c\x1c\x10\x8e\xee\xf8\x7a\xa8\xe2\xf7\xf4\xd1\x78\x1c\x86\x15\xe8\x02\xd0\x5b\xd3\xa0\x3e\x4a\x57\xcb\x25\x2b\xcb\x55\x95\xc7\xc1\x5b\xeb\x78\xa3\xdf\x0a\xd4\xca\x06\x9d\xb5\xbe\xc6\xa4\xab\x82\x3b\x1c\x8e\x4e\xac\x28\x4d\x64\x82\x7a\x9f\x00\xa4\x55\xa9\x9e\x99\x8e\xe8\xd1\x08\xec\x00\x04\xb7\x49\x19\x6c\xb2\x12\xd0\xda\x56\xa2\xd0\x08\x6d\x4a\x32\xed\xe0\xdb\x14\x78\x56\x9c\x8a\x13\xe8\x6c\x88\x35\x8e\x8b\x0e\x1b\x19\xa2\x4f\x47\x08\xa6\xbf\xc6\xdd\xa1\xf3\x32\x53\x58\x13\x36\xe1\xe0\xfc\x9b\x33\xc9\x22\x4c\x18\xe0\x49\xc9\x8e\x0c\x80\x60\xdb\xd0\x33\x3a\xa0\x46\x37\xac\x4e\x47\x46\x45\x12\x86\xf6\x97\xc6\xf5\x2a\xbd\x1b\x6a\xbc\xc2\xd0\x36\x67\xee\xaa\x56\x2d\x02\x98\x12\x16\xbc\x3d\xef\x32\x0c\x2f\x47\x89\x6a\x2f\xc2\x5a\xc9\xda\xcd\x46\xd5\x0e\x66\xf3\xa9\xa1\x41\xc2\x4a\x23\x89\x47\x46\xc7\x82\x75\x86\xe1\xda\x5b\x51\x00\x90\x1b\x15\xa3\x04\x93\x35\xe5\xd1\x64\xf2\x08\x93\x1d\xe5\xd1\x17\x9f\x61\x72\xa3\x6e\x7c\xf6\x08\x32\xcd\x46\x93\xc9\x19\x26\x97\x74\x2f\x59\x29\x7b\x70\x73\x91\x96\x22\xf5\xa6\xe4\x41\xcf\x11\x0d\x46\x1d\x0f\xc6\x35\xb9\x82\x8d\xf7\x65\xb2\x85\xef\xb8\x3d\x56\xcf\xfc\x0f\xd4\xc3\xfc\x0f\x51\xc0\xbc\xa6\x37\x56\xc3\x4d\x9e\xdd\x79\x48\xb7\x7a\xe0\x32\x56\x92\xbb\x36\x2e\xab\xdf\xde\xe1\xdd\xde\xd5\x01\xd7\xc9\x72\xcd\x48\x46\x35\x90\xcd\x53\xb6\x2a\x49\x02\x31\x19\x2d\x1d\xb2\x63\x6f\x61\x28\x15\x0d\xdf\x16\x99\x64\x4f\x13\x99\x44\x7b\x45\xd6\xc0\x66\x39\xbb\x8d\x7c\x37\x03\xcf\x24\xd0\x52\xf4\x0f\x40\x0b\x5f\xf5\x2b\x67\xda\x14\x7a\x1b\x95\xa4\xc2\xa4\xf4\x54\x30\xba\x65\xf3\x05\x3e\x09\xdd\xd1\xb5\xba\x55\x83\x59\x0c\xd4\x73\xff\xad\xda\x68\x7f\xda\x48\x70\xec\x62\x51\x8c\x2e\x47\x62\x65\xea\xdd\xc3\x9a\x24\x99\x26\xde\x3e\xec\xde\x0e\x33\x63\x78\xc6\xe2\x39\x5b\xe0\x13\x1c\xed\xd8\x3b\x8f\xcd\x58\xec\x8b\xd6\xe0\xea\x72\x92\x1d\xca\x22\xdb\x44\xaa\x84\xde\xdb\xcf\xb9\x3a\x75\x66\x78\xca\xfd\x9d\xb1\x2f\xfe\xa6\x5c\xae\xd9\x26\xb1\x26\xea\xbd\xb9\x8c\x3d\xf4\xc3\xd9\x7c\x11\x4b\x17\x6a\x33\xf7\x10\x24\xe3\xd2\xb7\x58\x21\xf7\x3b\xf8\x77\xcd\x10\x02\xc1\x83\xe7\x2f\x9e\x7d\xf7\x14\xd5\x0b\xe0\x62\x4a\xd0\x37\xdf\xb4\x56\x12\xc0\xdc\x72\x8e\x05\xe1\x46\x64\xc4\x2e\xda\x82\x9b\xc4\x8b\x64\xd9\x9b\x7e\x89\x39\x3b\x5d\x39\xf3\x7e\x47\x38\xf6\xae\x3a\x70\x55\xfa\xa3\xaf\xd4\x29\xdc\x80\xde\x7b\x78\xf7\xa6\x63\x3b\x3d\xd8\x2d\xa7\xae\x68\x33\x62\x38\x9a\x5f\x2e\x48\x63\xce\xbd\x52\x23\xab\x0f\xf6\xbc\x8e\x6c\xf7\x49\x4a\xcd\x4f\xb2\xa5\x51\x4e\x23\x57\xeb\x0a\x47\x29\xd6\x5e\x9c\x6e\xa7\xc2\xe0\x8c\x6b\x1d\x71\x3d\xdf\xdb\x61\x6e\x3c\x16\x27\xf8\x70\x40\xdf\x6b\xa9\xfa\xa6\xc7\xbe\xe5\xf1\x00\x0e\xe0\x7a\x56\x51\x97\xd0\xac\x31\x34\x92\x8a\xf2\x79\xb2\x20\xa5\xce\x42\x96\xd3\x44\xed\x5f\x53\x47\xf6\x6a\x55\x1e\x0e\xee\x77\xe9\x26\xe1\x70\x28\xa7\x3a\x8e\x63\x39\xe7\xa3\x8b\x0b\x35\xf6\x8a\xc1\x1f\x0e\x5b\x70\x2a\x5d\x61\xe3\x36\xba\x9a\x6b\x0f\xf6\x14\x3b\xbf\x3a\xdb\x43\x1b\x0f\x9d\xcf\xaa\x58\xad\xf1\x48\xc2\x28\xcc\xd9\xa2\x9e\xae\x54\x9f\xcd\x39\x72\x85\xed\xd6\x10\x86\xd5\x4c\xcd\x7f\x7c\xb4\xe6\xa6\xa7\x04\x46\x37\xb9\x83\x09\x29\xe8\x60\x32\xbd\x05\x41\x79\x59\x64\x97\x2c\xd2\x2e\x58\xc7\x9e\x73\x42\x67\x22\xa8\xa8\x30\x1b\x36\x20\x67\xc1\x4f\x9d\xd7\x8c\x61\x48\xe9\xee\x2b\x6d\xa6\x05\x1d\x8c\xc9\xeb\xe8\x86\xa4\x24\x23\x39\xe1\xde\x41\x64\xdf\x35\xbe\x25\x47\x52\x1b\xe0\x36\x82\x10\xa0\x3f\x8a\x13\xdd\x72\x5c\x29\x59\x55\xa7\xb9\x72\x62\x88\xfa\x10\x27\x89\x94\xb8\xd6\x65\xe3\x6e\x17\xed\x1b\xad\x98\xa9\xc3\xa1\x55\x95\x84\x64\x91\x60\xf7\x2f\xf5\x96\x8f\x6b\xf2\xee\x7f\x8d\x24\xbf\xd5\x1e\xfd\xbe\x37\xef\x59\x57\xd9\xe8\xdb\xc6\x8f\x48\xd8\x42\x5e\x92\x8c\x24\xe6\x9c\xcb\x01\xe3\xf0\x0e\x3a\x16\x4e\xd2\x54\x27\xc5\x68\x0f\x62\xc2\xf7\xdf\x3d\xd3\x34\xe5\xc8\xda\x9d\x88\x84\x07\xeb\x2b\xc9\x4a\x14\xb7\x49\x91\xc6\xbc\xc6\x78\x96\xd1\xe4\xa8\x29\xed\x8a\xa7\x09\xad\xc0\x86\xfc\x0a\x9f\xfc\x0a\x8f\xfc\x0a\x47\x70\xf6\x59\x6d\xbd\xf9\x22\xe1\xa8\xd7\xef\xbe\xee\xb4\xdf\x25\xae\x0d\x83\xfa\xe0\x2c\x48\xf7\x7b\xac\xa0\x2d\xda\x82\xf6\x7f\xd3\x97\x68\x59\x5d\x7d\x4a\xdf\x92\x4b\x0e\x87\xe3\xf7\xb4\xf4\xee\xfc\xd6\xa0\x3b\xde\x17\x56\xa7\xe6\x83\xd8\xd6\x2a\x77\x48\xf6\x9a\x12\x6a\x04\x2a\xde\x7c\x24\x26\xd9\xd1\x2d\xb3\xdc\xdf\xd0\xe8\xf4\x99\xc1\xaa\xb9\xdd\x91\xc1\xc8\x60\xcd\x89\x36\xcf\xf8\x35\x7d\x1f\xa9\xb3\x4a\xfd\xce\x9c\x19\xee\x92\xa7\xfc\xd0\x08\x58\x78\xaa\x02\x5b\x4c\xbb\x86\x9b\x23\x07\x8f\x1e\x8d\x1f\xab\x3f\x93\xb3\xaf\x7c\x6c\xff\x97\x1e\xd6\x8a\xc6\x89\x7e\x6a\x72\x90\x21\xf2\x0f\xa0\x57\x9f\x02\x9e\xb6\x4e\xae\x2c\x7d\x02\xb2\x88\xde\x6c\xeb\x36\xda\xf5\xb5\x12\xbf\x16\x9e\xa7\xf2\xb5\x45\x44\x77\xf8\xaf\x4e\x2e\x39\x1c\x7a\x20\x71\xd5\xdd\x63\x11\xef\x70\xe8\x55\x6c\x32\x9d\x0a\x93\x7a\x99\x84\x21\xe7\xf0\x11\x04\x2c\x73\xe2\xd2\x75\xc4\xe6\xe3\x85\x15\xf3\x1b\xe4\xdb\x56\x36\x9a\xfe\x3c\x34\xda\x38\x6f\xe1\xba\x33\x96\xdf\x8d\xd2\x4d\x04\xbd\x06\x3e\x8c\xa7\x02\x22\x2c\xfd\x81\xa2\x02\xc8\xa3\x2a\xd7\xb0\x66\xc8\xc7\x50\xc2\xa5\x0e\xef\xf8\x89\xfe\xe6\x33\x0d\xe1\x0c\x76\x6b\xf6\x5c\x78\x4c\xd8\x43\x23\xb6\xce\x17\xbf\x12\xd8\x5c\x8f\x54\x92\x67\x89\xa9\xf4\x24\x85\x35\x72\x13\xaa\x9b\xe3\x8e\x6a\xf9\x8e\x7e\x40\x54\xc5\xa2\xae\x17\x35\xf9\x70\x32\x8f\x9c\x4b\xea\xec\x2d\x49\x59\x24\xbc\x5c\x89\x62\x63\x07\xb3\x37\xdb\x66\x4d\x7a\xdf\x79\x2e\x8a\xef\xd4\x8a\xff\xf8\x2b\x05\x4b\xd2\xef\xb5\xe0\xd6\xb7\xf6\x3b\xe8\xe9\x03\x9b\xf5\x47\xbd\x16\xed\x61\xa6\x62\x6b\xa7\x68\x8c\x12\xbe\x1d\xc3\xe0\x7e\xcb\x6c\xa9\x8f\x71\xdd\xc6\xad\xfb\xd5\xaf\x6f\xdf\xc8\xe6\x6f\x40\xe2\x77\xa7\x5e\xd2\xfc\x04\x4d\xd2\x89\xee\x15\x42\xc8\x17\x69\xcc\x46\x59\x7a\x67\x57\xe1\x48\xda\x1d\x28\x23\x94\xc0\x33\x2d\x09\xbe\x48\x63\xf4\xf6\xf5\xeb\xf7\x17\xdf\xff\xf0\xec\xed\x5f\x91\xf1\xf0\x8a\x99\x16\x51\xef\x31\x5e\xbd\xed\xf6\x8c\x51\x6f\xd3\xf0\x15\xed\x26\xfb\xbf\xfa\x97\x0c\x5c\x6f\x8f\xd4\xe1\xfc\xf8\x4c\x46\x34\x80\xad\x1a\x4a\xaa\xdb\x9f\xb6\xad\x3e\x4d\xec\x6c\x61\xa5\x77\x60\x89\x5a\x3b\xef\xcd\xac\x99\x96\xc2\x9f\x93\xc1\xc4\xf4\xfb\x27\xb7\x17\x97\x78\x6f\x54\xf0\x59\x18\x66\xad\x93\x0d\xba\xb8\xd0\x3b\x81\xea\x2a\x22\x55\xdb\xd5\x25\xda\x37\x65\xe3\xa4\x26\x02\x4f\x9b\xf1\x74\x9e\xc4\xfb\x4c\x75\xc1\x8e\x46\x1c\x49\x5a\x11\x4e\x13\x72\x2f\x36\xd7\x93\x8c\x82\xb4\x1c\x87\x7d\x26\x93\xbe\xdf\x6d\xd9\x1d\x0c\x1b\xbe\xe7\x79\x72\xcd\xa0\x5c\x5d\xff\xa3\xfb\xa0\x54\xfb\x20\x26\x70\x78\xa9\x6a\x6c\xf4\xff\x6e\x04\xe0\x2d\xbb\xbe\x5e\x46\xc2\x94\x14\x40\x0b\x4a\x50\xbe\x30\x49\x18\x5e\x51\x1e\x4d\x1e\x8d\x31\x79\xaa\x8e\x6c\x4f\x7e\x11\x87\x63\xbc\xac\x0a\xf6\x96\x25\xe9\xae\x47\x51\xd3\xe8\xce\x41\x09\x10\x75\xa8\x70\x99\xf0\x6f\x77\xdb\xa4\x2c\x5f\xf0\x4c\x1e\xbf\x3e\x18\xb7\x8b\x43\xb8\xdd\x29\x37\xbb\x51\x29\x45\xc1\xb4\x3a\x61\x94\xa5\xf6\x78\x3a\x28\xc2\xd0\x5f\xcc\xa0\x17\xcd\xd2\xc3\x61\xa0\x9e\x44\x85\x47\x6e\x33\xff\x42\x71\xab\xc3\xc1\xaa\x0c\x5e\xa9\xd5\x85\xfe\x2a\x2a\xc8\x56\xa2\xb3\x9b\xc8\x35\x0b\xca\x4c\x89\x98\x41\xb4\x66\x55\x01\xf4\x8d\x1b\x07\xf4\x8d\x3e\x78\xea\x08\x5b\x70\x25\xf9\xbb\x76\x93\x09\x4c\x26\xb6\xa0\xe2\x90\x04\xa6\x08\x32\x2e\x59\xb1\x4a\x96\x0c\x72\x51\x97\xa3\xe0\x1b\x70\x0c\x08\xf4\xec\x07\xb7\x59\x9e\xdb\x68\x6a\xb5\xf4\x03\x29\x82\x64\xb9\xac\x14\x85\xe4\xbb\x60\x93\x6c\xfd\xf4\x25\xef\x45\xb0\x49\xae\x35\x21\x04\x20\xb8\x06\x57\x22\x48\x6e\x93\x1d\x09\x2a\x20\x10\x16\xfc\xed\x05\x97\x85\x28\xb7\x9a\x9a\x9e\xb7\x8f\xca\x7f\x0b\x92\x32\x48\x99\x96\x5d\x53\x38\x02\xae\x59\x90\x8a\x65\x19\xb7\x9c\x5f\x5a\xde\x0b\xe0\x04\xa3\xca\x3c\x2c\x58\xb2\x94\x0f\x0b\xb6\xcc\xb6\xac\x7c\x68\x3b\xf6\x00\x86\x23\xe3\x57\xa3\xb5\xdc\xe4\x88\x98\xec\x1b\x98\x20\x37\x76\x08\xc7\xd1\xd3\xc3\x21\x6a\x65\xdc\x50\x83\xfe\xa9\x1b\xf3\x26\x6b\x4c\xc6\x5b\x63\xaa\x47\x99\x65\x72\xcd\x8a\x20\x15\xfc\x53\x19\xac\x93\x1b\xfd\xb1\x49\x0a\x0b\x13\x16\xdb\x39\x0f\x02\x59\x54\x2c\xd0\x86\xef\xa0\x64\x52\x55\xd5\x1a\x6f\xa2\xa6\x64\x67\xe6\x5a\x16\x3b\x98\x6c\x11\xc0\x9a\xf2\x73\xda\x48\xa1\x69\x40\xd1\x5d\x70\x9b\xc9\xb5\xa8\x24\xdc\x69\xa8\x68\xa4\xda\x0b\xde\xe4\x2c\x51\x03\x0f\x8e\xef\xbc\xdb\x27\xdb\x95\x84\xab\xb1\x06\xb3\xbe\x57\x83\xce\x36\xa3\xda\x6e\x7f\x7f\xa9\x1a\x4f\x64\xbb\xe7\xd0\xda\x32\xe1\x6d\xea\xd0\x1e\x47\x96\x3e\x90\x3a\x5b\xf9\x03\xfc\x44\x54\x79\xaa\xdd\xa5\x32\x9e\xfa\x4d\x0b\x1e\x58\xd2\x08\x10\x91\xa4\xe8\xbe\xfa\xf4\xd9\x9b\xb7\xcf\x9e\x7c\xf3\xfe\xc5\xeb\x57\xc1\x8f\xdf\xbc\x7d\xf5\xe2\xd5\x1f\xe2\xa3\x99\xb2\x23\xe3\x55\x9c\x95\x81\x3a\x1e\x6d\xb7\xa2\x90\x2c\x0d\x2e\xd9\x3a\xb9\xc9\x44\x01\x43\x00\xc4\x7e\xc9\x02\x6d\xaf\x00\xf2\x5b\x55\x90\x8d\xc0\x38\xc6\x94\x81\x58\xd9\xcf\xd6\x2a\xcb\x51\xa0\x56\xa6\x8e\x76\x01\x57\x2e\x20\x7d\x55\x99\x9a\x5e\x7f\xa8\xd5\x94\xa9\xd9\xe7\xe2\x56\x0d\x84\x59\xdd\x17\x36\x45\xcc\x53\x3a\x18\xe3\x36\x49\x5a\x5e\xf9\xd6\x3b\xba\xb5\xd8\x22\xc3\x7b\x16\x86\x6c\x94\xf9\x2b\x0a\x58\xef\x5b\xd8\xc3\xd5\xce\x65\xb2\x56\x6e\x45\x59\x66\x97\x39\xb0\xff\xf2\x65\xb2\x35\x60\x7d\x26\x9b\x71\xf3\xb6\x7e\x31\xba\xbb\x4e\x23\x43\x65\xa5\xe6\xbd\x83\xb1\xc9\xd9\xe8\x6e\x4c\x4c\x5e\x4d\x60\x9a\xcd\x4f\x7d\x1a\x86\xf3\x65\xfd\x71\xe6\x9a\xad\xa2\x81\x5f\x6d\x4f\x2e\xa5\x36\xf3\x30\x31\xd1\x18\x4c\x8b\xea\x28\x0b\xf3\xbb\x52\x4b\xa4\x5b\x52\x6d\xa8\x11\x46\x2e\x21\xd0\x11\x07\x57\x8d\x5b\x57\x92\xc1\x44\x5f\x7a\x2c\xfa\xb8\x2f\x4f\x12\xae\xe8\xb8\x4d\xf2\xc1\x25\x5b\x26\x8a\xf1\x79\x04\xb8\x35\x9a\x2c\x45\x89\xc6\xfe\x19\x07\xa8\x0b\x09\x51\x60\xe8\x43\x77\x5b\xb0\x3d\xb2\x78\xaa\xbd\x73\x3b\x97\xf6\xdc\x37\x18\x40\x56\x8c\xc6\x01\xd4\xff\x84\xdf\x3f\x98\x74\xf6\xc4\x53\xe4\xd0\xa3\x3c\xdf\xd7\x5e\xba\x9e\x0b\x6d\x2e\x18\xe9\x1d\xa4\xcf\x6f\x0a\xfd\xf0\xea\xc5\xeb\x57\xda\x5c\x6a\x7c\x58\x5e\xbc\x7a\xff\xec\xed\xf3\x6f\x9e\x3c\x6b\xee\x1e\x0e\x91\x34\x81\x56\x0b\xca\xda\xdf\x75\xda\xe6\xc1\xc1\xf2\x8b\xc1\xc8\xaf\x96\x0b\x8f\xbe\xf8\x1c\x63\xf2\x0d\x18\x2c\xc7\x98\xbc\x50\xa2\xc6\x17\x98\x3c\x07\x18\xa8\x2f\xf0\xe8\xb6\x48\xb6\xe4\xbb\x93\xa2\x86\xd6\x13\x9a\x4c\x7e\x20\x5e\x6a\x6a\xbe\x66\x3b\xb8\xea\x13\x45\x72\x21\xae\xab\x6d\xab\x4a\xa3\xc7\x64\x90\xe3\x9a\x8e\xa7\xf2\xd8\x91\x4d\x0e\x87\x98\xcd\xa5\xef\xc6\xe6\xa6\xce\x68\x4d\xa0\x5e\x7b\xca\x6f\xcf\x96\xf7\xac\x67\x82\x7c\xf5\x0d\xeb\x4f\x37\xac\xe3\x5b\x5e\x17\x4f\xb4\x8a\x13\xf2\x9a\x81\x8e\x40\xcd\x03\x7c\x6e\x6f\x92\xa5\x56\x27\xbc\x0a\xa8\xef\x93\x70\xd3\xa4\xe4\xb6\x43\xa9\x6a\x6d\x0f\xad\xb6\x04\x63\x52\x68\xe5\x7a\x24\x9d\x62\xbf\x38\x1c\xc0\x64\x15\x49\xa2\x03\x06\x18\x26\x85\x61\x87\x3f\x7c\x2c\xc4\x9e\x7c\x7f\x62\x6e\x8f\x4d\xa5\x7d\x1f\x38\xf5\x06\xb0\x49\x4e\xce\x4c\xb6\x5a\xb6\x65\x3c\xa5\xcf\xfb\x48\x51\x9b\xf7\xe7\x6c\x51\x13\xc0\x05\x17\xa5\x45\x32\x53\x42\xd1\x93\x64\xb9\x66\x7f\x66\xbb\x1e\xc3\x79\xc0\xea\x1a\xf7\x9e\xe1\x85\xee\xe0\x89\x50\x6f\x68\xef\x68\x3e\xfa\x0e\xed\x5e\xdf\x5d\x5e\x73\xd7\x59\xff\xfd\x92\x75\x0f\xd2\x52\x9d\xb9\xbc\xf2\xea\x1c\xed\x5d\x52\xe9\x0f\xcc\x28\xcd\x20\x6c\xa8\x4b\x26\x29\xcb\x99\x4f\x21\x0c\xef\x7f\x68\xb4\x8d\xfa\xa4\x09\x59\xa2\x75\xc1\xc0\x6f\xe1\x3e\xf5\x2f\x73\x96\xb4\xb2\x90\x99\xa3\xa0\x86\x72\x81\x79\xed\x6a\x0e\xe0\xd1\xa9\x85\xc3\x66\xd1\x3d\x54\x66\x60\x09\x89\x38\x61\xda\x12\x41\x5a\x58\x0d\xf6\x0b\xfa\x5f\xfd\xc1\x06\x0e\x70\xf0\x9e\xd1\x9f\x1d\x41\x20\x5b\x7c\xdf\x6a\x20\x65\xb8\x79\xd3\x1c\xb3\xeb\xc8\xd3\xa0\xfe\xd8\xb1\x41\x7c\xaf\x4a\xa9\x8f\xfc\x3b\xe5\xd1\xe7\x63\x4c\xfe\xda\x13\xd2\xf1\xd7\x7f\xdd\x90\x8e\x9f\xfb\x96\x33\xf9\xcb\x31\xbb\xb0\x60\x47\xe4\xdb\xd3\x8c\x42\xb3\x2a\xb3\x66\xdf\x0a\x21\x2d\x07\xd8\x32\x88\x39\xd8\xfd\x99\xed\x5e\x26\xd7\xac\x28\x2d\x1f\xeb\x5b\xc0\x2b\x1d\xa0\xd0\x97\x61\x24\xe8\xaf\x4d\x8d\x46\xc4\x8c\xfe\xbd\xe7\xb1\xb1\x36\xb3\xdb\xe0\x0f\xd1\x51\x1f\x09\xc3\xf8\x44\x2f\x8d\xb1\xdb\xf0\xd0\x3f\x9c\xfa\x70\x58\xf1\xa7\x3e\x5d\x1b\x68\xcd\x82\x87\x02\xf6\xdb\x49\x77\xb7\xa2\x4d\x99\x97\xe0\x76\x1a\x75\x4b\x60\xff\x1d\xc3\xe6\xee\x7a\x49\x17\x69\xbd\xd5\x4e\x2a\x79\xe7\xdb\xed\xa2\xbd\xcc\xd6\x7b\xf3\x23\xfb\xa9\xbf\x90\xc1\x6b\x14\x5e\x85\x99\xe3\xd8\x6a\x05\xec\x5d\x35\xee\x5c\x0b\x73\x94\xd2\x9f\x8f\x25\xc7\xd6\x3c\xa9\x23\x94\x92\x23\x75\x96\xf9\x26\x31\x9a\xf6\x8e\x73\xe9\xd1\x20\xeb\xa2\xd9\x2a\x6b\xdb\x92\x66\x46\x3f\xe3\xa9\x97\xcd\xd1\xae\x26\xee\xca\xb7\x4b\x0b\x4c\x44\x93\x9d\x51\xf7\xcd\x96\x70\x4c\x89\x64\x75\xdd\x27\x7b\xdc\x4d\xda\xfe\xb4\x9d\x10\x5e\x7c\xed\xfa\x3f\x52\x4f\x87\x10\xfa\x1c\x5c\xbc\x00\x6e\x2d\xd4\xb5\xe4\xac\xfb\xbb\x66\xdf\x9d\x22\xd6\x6f\xc7\x28\x9d\x39\x65\x64\x30\x06\xd9\xea\xe8\x6b\xfe\x6a\xb2\xb1\x3a\x0d\x21\xe4\x35\xee\x93\xf2\x78\xef\x38\x1f\x39\x17\xf5\x08\x8d\x71\x0f\x5a\xa2\x85\xbc\xa4\x6c\xd6\xcd\xcc\xea\x3e\x66\x76\x72\xf5\x40\x64\x4b\xcf\xcc\xc4\xec\x97\x08\xa8\x0c\x24\x7a\xbf\xc3\x7c\x07\x43\x84\x5b\x33\xe3\xf3\x21\x53\x30\xfa\x8b\xd9\x3c\x31\x39\x55\xc4\xa5\x46\xec\xeb\x51\x57\xa6\x6a\xad\x71\xc2\x69\xef\x8e\x47\xdb\xf2\x00\x20\xdc\x1b\x94\xd2\x82\xf6\xd8\xf4\x0c\x41\x7c\x32\xd7\xbf\x00\xe1\x8a\x64\x54\x4c\xb3\xaf\xf9\x74\x38\x34\x2e\x63\x09\x95\xf3\x6c\x41\x2a\x0d\x6a\x5a\xd2\xc6\x37\xee\x78\xd6\xaa\x69\x19\x86\x45\x18\x0e\xc6\x03\x4a\x8b\x79\xb2\x80\xe3\x92\x18\x0e\x17\x34\x71\x0c\xcd\x76\x8a\x0a\x22\x75\x5a\x44\x5c\xab\xee\x2a\x11\xbb\x75\x82\xe2\x9e\xd8\xea\xc6\x3f\x32\x92\xcc\x6f\x36\x03\xfc\x63\x05\x0a\xa7\xe5\xf8\xa4\x6f\xf7\x9e\xfa\xa3\xfe\xf7\xd1\x09\x29\x48\x4f\xd0\x27\x4a\x1a\xed\xab\xe3\xef\x23\x25\x46\xf6\xcb\x4f\x3a\x31\x6f\x8d\x49\xdf\x3a\x50\xa2\xae\xb3\x65\x50\x58\xc4\x70\x38\xf8\x53\x8f\xdc\xf4\xa7\x7f\x5d\xb9\xe9\x3f\xee\x7d\x5c\x52\xbb\xd6\x77\xc7\x07\xa4\xb6\xac\x30\x6d\xce\x7e\x40\x76\x1a\x28\x8a\xbd\x93\xa2\xd0\x76\x01\x22\xbc\xbb\xde\x0e\x30\xe5\x6a\x9e\x61\x1b\x84\x96\xbe\x75\xf4\x75\x54\x45\xff\x01\xac\xb0\x63\xa0\x76\x89\xfd\xc9\x43\x97\xe5\x3f\xda\x8a\x56\x40\x72\x0c\x61\x80\x3f\x60\xcb\xf4\x91\x40\x32\x2f\xa8\xca\xa0\x85\xf4\xf9\xc6\x66\xab\x48\x68\x25\x92\x0f\xe4\xf7\xbd\xb3\xdb\xf7\xae\xa2\xe6\x7b\x9d\xa0\x18\x49\xec\x6f\xae\x91\xc4\xc4\xd4\x4b\x12\xd2\xd1\x11\x65\x98\x14\xa3\x2c\x85\x34\xb7\xad\x61\xf2\x77\xd5\xde\x81\x12\xbf\x6c\xa0\xda\x70\x11\x47\xe3\xa5\x9a\x35\x8e\x71\x7a\x1c\xfc\x01\xfc\x4d\x06\x45\x18\xb7\xca\x1e\xb1\x41\x8f\xd0\x71\x8b\x44\x74\xe7\xa8\x3b\x7c\xa2\x33\xaf\xcd\x68\xf6\x49\x87\xce\xce\xfd\xbc\x10\x1b\x20\xc4\xd3\xe7\xec\x6c\xb5\x82\xa2\xdf\x5c\x25\xea\xbb\xa1\x74\xf4\x27\xb3\xd7\xeb\x92\x6f\x34\x96\xe2\xd3\x44\x26\xf1\x60\x52\x63\x6c\x3c\x99\x3a\xc7\xe6\xbe\x9a\x7a\xf7\x52\xfd\xcd\xbc\x45\xd5\x9e\x0d\x9d\xaa\x5a\xd9\x4d\x26\xaa\x52\xab\xf4\x80\xae\x8f\xba\x42\x92\x26\x9e\x3b\x3b\x1c\x32\x88\x34\xd2\xa6\x54\x52\x36\x8f\xaa\x99\x6f\xd6\x8a\x2b\x1d\xec\xdd\x1e\x6d\x8b\x84\x6e\xf2\x8e\xf2\x55\x76\x45\x56\xd4\xb9\xc1\x5e\x63\x25\x14\xdb\x58\xf6\xe8\xed\x28\xc1\x6a\x7c\xdc\xf3\x25\x8e\x56\x98\x14\x9a\xd7\xa4\x74\x0f\xdf\x17\x4b\xa2\x0d\xd5\x6a\x0e\x74\xd1\x78\x19\x86\xcb\x51\xf7\xae\x76\x9c\x21\x40\x5e\x6f\x99\xf6\xae\x28\x75\xd1\xf6\xbd\xc3\x61\x5f\xd7\xc4\x68\xc3\x8f\xb8\x8c\x35\x60\x72\xe2\x08\x3e\xde\xab\x89\x89\x51\x96\x22\x92\xa5\x71\x49\xae\xac\xb9\x34\x1e\x8c\x89\xb3\x08\x23\x6b\x36\x6d\x21\xb8\xa4\x5d\x04\x97\xe2\x08\xa7\x25\xaf\x31\x59\xd3\xed\xc8\x68\x86\xc3\xd0\xfd\x74\x58\x70\x96\xa3\xaf\xc3\x70\x90\xf8\x05\xfa\x36\x38\x08\x83\x1f\x49\x91\x6b\x58\xfd\x5e\xbd\xf5\xa7\xc6\xfc\xb2\xca\x58\xae\x61\xab\xe0\xd7\xab\x64\xc3\x86\x28\x10\x3c\xd0\xa2\xc8\xb1\x92\x9a\x99\x6c\x64\x04\x46\xfb\x0c\x0f\xd1\x08\x29\x41\x57\x58\xd8\xca\xe8\x1b\x35\xaf\x82\x6c\x6d\xa4\x4b\x18\x46\xf6\x37\x15\x58\x2d\x06\xf0\x35\xb0\xf7\x1a\x87\xba\xc1\xba\x73\xe2\x38\xde\x02\x4e\xb3\x74\xde\x62\x51\x45\x97\xa5\x8b\x63\x96\x9e\x1d\x13\x70\x6b\x2d\xcc\xfe\x1c\x67\xce\x05\x40\x7b\x71\x4b\xec\xf2\x50\x47\xbb\x11\x83\x1b\x39\x35\x14\x23\x89\x0f\xe4\xe3\x4a\x5d\xe2\xa8\xc4\x6d\x9a\x28\xba\x34\x21\x8e\x68\x22\xa9\x5b\xf2\x58\x0f\x97\x8f\xf6\x2d\xf3\x7c\xd5\xe1\xd8\x8e\x78\x39\xf1\x78\xb5\xa2\xb5\xfe\x31\x3e\x75\x2a\x6b\x49\xc9\xbf\x64\x5b\x50\x82\x6f\x0b\xc1\x2e\xa1\x6d\x9e\x0d\xce\xd7\x9d\x39\x29\xa9\x25\x0f\xb5\x46\x73\x3a\x5f\x90\x25\x4d\x3c\x4b\x0d\xb0\x6b\xb2\xa2\xb0\xae\x5b\xae\x1b\x6d\xa3\xbb\x2a\x17\x86\x66\x49\x5a\xff\xf6\x56\xfe\x64\xf3\x69\x8d\xbe\xdc\x2d\xbf\xa8\xb4\xbf\xa9\xfb\x75\x38\xcc\x17\x24\x92\xcd\x0d\x0c\xae\x6e\x56\xbc\x22\xee\x75\x8c\x89\x8d\xf1\x72\x21\x8e\x3e\xbc\xda\x29\x59\x96\xab\x6d\xd4\x05\x48\x30\x1c\x31\x52\x61\xdc\xdc\x7b\xa1\xd8\x23\xc3\x36\xea\x24\x85\xa0\x54\x98\x3a\x0d\x0c\xb6\x24\x2b\xc2\x88\xc0\x78\xda\xeb\x3a\x53\x86\x61\xae\x9d\xf3\x22\x1d\x29\x30\x77\xf5\x66\xaa\xde\x05\x2d\x09\xc7\xda\xa7\x63\xaf\xc3\xcd\xcc\x98\xf9\x5d\x60\xd0\x85\x6d\x0b\x28\x6f\x4b\xb3\xdf\x00\x28\x4f\x23\x41\x6c\x4f\xa3\xe4\xdd\xd0\xa3\xcd\x3d\x2a\xc8\x8e\x24\xa0\x66\xb9\xd1\xe3\xb2\xa1\xf2\x1e\x4b\x65\x7b\x6a\xa9\x14\xad\xa5\x22\x6a\x3c\xf5\x4c\xb3\x94\xd2\x9b\x30\xdc\x78\x64\xb2\xa1\xb0\xbf\x6f\xc8\xde\xda\xf4\xdc\xd3\x53\x96\x2b\x2b\x10\x38\xe6\xac\x71\xb5\x20\x67\x91\x99\x9f\x34\xda\x60\x5c\xd7\x7e\x4c\x60\x2b\x5a\x7b\x2a\x8f\x69\x48\x7a\x20\xc5\x01\x38\xb8\xfb\x08\xbf\xfa\x7c\xc9\xfb\xce\x97\x3c\x0c\xad\xd2\x3b\x2b\x4d\x60\xf3\x65\xce\xc2\x70\xd0\x73\x37\x02\x5e\x2e\x29\x53\x2d\x14\xb8\xad\xfb\xe6\x77\xe1\x14\xf3\xb9\x80\x10\x91\x3f\x36\x07\x96\xe6\x2c\xac\x1e\x0d\x28\x4d\x20\x97\x83\x58\x50\x16\x31\x16\x25\xa4\xc0\x24\x53\xad\x18\x37\x23\x03\x67\x0c\x61\x8b\x06\xa9\x19\xd7\x91\x85\x1e\x24\x39\x26\x65\x2f\x63\x83\xd5\xd1\x03\x7f\x6c\xb2\xc8\x1c\x6f\x0a\x1d\x54\xc0\xe4\xe8\x5d\x1d\x7b\xe3\x85\xd8\xb8\xa0\x9b\xc6\xa5\x93\x54\x94\x4f\xa3\xe2\x70\x48\x30\xc4\x94\xb9\x15\x74\x89\xa3\x8a\x14\x24\xc1\x16\xdf\xa1\x59\x65\x27\x90\x6b\xa2\x12\x70\xdc\x0d\x54\xae\x2f\xc8\x84\xe1\xb1\x0e\x42\x5a\xec\xf7\x6e\xe1\xb9\x84\x19\xc8\x6d\x86\x8a\x7c\xce\x17\xd3\xa5\x62\x76\x74\x19\x31\x52\x90\xfd\x15\x93\x77\xd9\xab\xdc\x27\x5c\x63\xf0\x71\x13\x47\x12\x18\x1c\xdd\xac\x34\xc4\x3c\xee\x5c\x2b\x01\x1b\xd7\xf5\x29\x34\x07\x1b\x74\x64\x79\x7f\x49\xec\x82\x9a\xef\x35\xc9\xc6\x8c\x38\xf9\x24\xae\x88\xb7\x7c\x26\xf5\xa2\x9e\xba\xbe\xad\xd4\x66\x0b\x1f\x55\x8e\x7e\x2a\x85\xd3\x80\xba\x9a\x6b\x43\x3d\x3e\x6b\x71\x6f\x27\x58\x6b\x47\x33\x2b\xa4\xa8\xa1\xf0\xf9\x24\x6f\xe1\x34\x3a\x6e\x7d\xa9\xdf\x6b\x74\x28\x6d\x1d\x5d\x62\x25\xa1\x99\x09\x47\xd9\x5c\x66\x9c\x3d\xfb\xc0\x96\x5a\x2e\x2f\xa3\xa4\x7d\x96\xab\x2e\xdf\x99\xe4\xef\x46\xa3\x42\x6c\x15\x6a\x41\xc4\xbc\x0f\xd3\xd1\x96\x98\x25\xf1\x3d\x5b\x39\xcd\x20\xf9\x29\x06\xe9\xba\xe1\xf3\xc9\xa2\xc6\x38\x8e\xfe\xd3\xeb\x25\x26\x49\xd7\x56\x77\xd4\x9b\xdf\xc6\x6e\xae\x99\xa2\xaf\xda\xed\xb7\x7b\xfb\xbb\x3b\xc0\xef\xcf\x17\xad\x0d\x9c\x7b\x1b\x78\xdd\xc8\xa8\x4c\x63\x12\xdb\xaf\xb6\x54\xc9\x4f\xc8\xa9\x9d\x79\x3b\xe1\x3a\x08\xb2\x94\xd0\x9d\x76\x4c\x3b\x6b\xb9\x37\x34\x9d\x15\x54\x1c\x75\x56\x78\x9d\xed\x0a\x1b\xb6\xe7\x92\xfe\x5a\xd0\xcd\x2c\x2a\x4e\x12\xa2\xfe\x0e\x1c\x77\x50\x45\xfd\x57\x4e\x53\x55\x57\x78\x74\x54\xd5\x26\x27\x6e\xc8\x49\x6d\x7a\x44\xaa\xd9\xb0\xc3\x2e\xea\xae\xb5\x53\x97\x32\x07\x1e\xbf\x76\x77\x18\x79\x31\x4a\x95\x94\x7e\x2c\x92\xbc\x34\x30\x04\xee\x2d\x70\xde\x5a\x89\xc2\x9e\x7c\x14\x33\xdd\x6d\x59\x80\x86\x72\x64\x19\xd9\x10\x05\x7a\x10\x59\xea\xe1\x17\x34\x67\x28\x4f\xa2\x69\xe2\x45\xfe\xec\x3b\x98\x2a\x12\xf8\xe3\xfd\xf3\x05\x30\xd6\xf2\x6c\xb7\x1a\xfc\xbe\xad\x9c\xf9\x60\x74\x4c\x43\xbe\x31\x7a\x1c\x8a\x6c\xf3\x61\xe0\x58\x0b\x23\x2e\x6a\x83\x29\xd1\x15\x3a\xe8\x5b\xed\x7f\x85\x33\x05\xf1\x3c\x28\xfe\x1b\x3c\x1c\xee\xe9\xd2\xd0\xf2\x5f\xf8\xa8\xa7\x42\xab\xb8\xfe\xe6\xfb\x78\x1f\xc0\x47\xf7\x8c\xc9\xc7\x1d\x11\xbc\x31\x3b\x1c\xfa\x6b\x50\xa4\x0f\x0c\x8f\xfd\x6f\xf0\xe6\x6f\x15\xbc\x59\xb0\x1e\xbd\x7e\xc1\xfe\x75\x15\xfb\x82\x9d\x4e\x7a\xad\xcf\xf2\x0d\x13\x61\x77\x61\x31\x34\xb6\x63\x18\x3f\xf4\x63\x91\x49\x8b\x69\xd3\x1c\x6d\x99\xc3\x12\x81\x47\x9a\x40\xb3\x53\xfc\xa3\xdf\xa7\xbf\x89\x1e\x78\x2f\x4e\x6b\x3b\x3d\x35\x8f\x11\x85\x9c\x0a\x54\x34\x5a\x9b\x62\xf6\x63\x84\xe3\xa2\xa5\xc2\xd7\xda\xfb\xae\xb4\x0a\x7a\xce\x13\x0a\xcc\x96\xee\x05\xba\xa7\xa5\x16\xd3\xbf\x3b\xc3\x76\x38\x49\x4d\x88\x47\x2c\x89\x56\x61\x0a\x2f\xa2\x26\x3b\x56\x67\x26\x5d\xed\x8f\xed\x06\x44\x59\x1c\xc7\xd1\xb4\xfa\xd2\x3b\x56\xba\x89\xee\x60\xd9\x7e\xc1\xe0\x18\xfb\x82\xaf\xef\x52\x23\xa7\xd5\xbf\xcd\xc8\x95\x7d\x23\x77\xb7\xea\xd7\x69\xbe\xd6\x38\x2a\xb4\x63\xc2\xd1\x70\xfa\x62\x82\x1b\xd4\x66\x00\xf5\xe8\xca\x76\x00\xca\xb2\x2d\x3f\x98\x53\x5a\x6c\xd4\xc4\x09\xd9\x16\x62\xc9\xca\x92\xa5\x4f\x35\x64\x80\x37\xe8\x77\x68\x9c\x97\x98\x54\xf8\x78\x4e\xca\x93\xca\x3c\x5f\xfd\xa7\x0e\xc1\xa7\xe6\x2e\x6f\xa2\x7f\x57\xd6\xcb\xa2\xef\x44\xaf\x98\x91\x60\x11\x82\xf5\xe3\x3c\xef\xf5\x58\x04\x52\x18\x7f\x7f\x27\x6d\xc4\xe7\x3c\x40\x43\x1f\x1d\x44\x36\x99\x0d\xb9\x85\x49\x1e\x52\x74\xce\x95\x44\x62\xae\x35\xf0\xd4\xf2\x5a\x63\x4e\x2d\xaf\x09\xaf\xa3\x15\x51\x3c\xf0\x98\xbc\x7a\xe6\xe6\x2e\x8d\xa0\x4f\x60\x9a\xec\x44\x57\x4f\x98\x35\xda\x58\xa2\xce\xc9\x0d\x79\x55\x34\x33\x94\x58\xd2\xcc\xd7\x16\xba\x0c\x3b\x1f\xd3\x9d\x1d\x69\xcd\x92\x93\x5a\x33\x41\xdb\x3a\x2f\x80\xc6\xd0\x8a\x89\x5e\x9d\x59\x85\xa5\x89\xed\x52\x02\x5e\x77\xed\x17\x26\x78\xaa\xd2\x27\xd3\x98\x39\x8a\xcc\x6a\x9d\x56\x6d\x10\x31\x4f\x25\xa0\xd8\x6d\x73\xe5\xb2\x75\xb6\x6e\x9e\x70\x40\x09\x2c\xde\x14\x4a\xd9\x4a\x47\x1c\xb7\xc0\x96\x30\x0e\xc3\xec\xd4\x8a\x74\x1a\x9e\xe8\x42\xc9\xc2\xf8\x70\x68\x07\x55\x58\x41\xd8\x4a\xb1\x62\x88\xd4\x7e\x75\xa4\xf8\xe7\x56\xe3\x6f\x60\xe8\x32\x7e\x15\x8d\xc9\x64\x3c\xc6\xbe\xda\x30\x3f\xad\x36\xcc\x5b\x6a\xc3\x9c\x46\xa5\x01\x03\xf9\x07\x95\x87\x60\x81\x30\x70\x78\x03\x68\xf8\x8e\xb1\xc8\xdb\x1a\x46\x9b\xaa\xb6\xab\xdc\x40\x25\xcb\x57\xa8\xd1\x66\x18\x09\x10\x70\x5b\x35\xbf\x51\x1d\x94\x0c\x8e\x38\x2b\x88\xda\xef\x18\x9e\xb4\x8d\xe9\x64\x4f\xa2\x15\xc9\x4f\x2b\x3b\x53\xeb\x04\xe1\xe6\xcc\x53\x44\x0e\x28\xdd\x36\x93\xa8\xa1\x02\x90\x0b\x87\x71\xe5\x3a\x91\x61\x6a\x8a\xaf\x84\xfa\x5f\xf0\x01\xc2\x64\x49\x07\x83\x6d\xbd\x54\x87\x86\x7b\x70\xe4\x16\x23\xce\xdb\xab\xdb\xad\x07\x8f\xfe\xeb\x1a\x93\xaa\x2f\x28\xd5\x5b\x49\xfd\xa1\xa0\xda\x2c\xa3\x8a\xc1\xae\x7d\x63\x2c\x05\x8e\xb9\x94\x1e\x2f\xc9\xbd\x14\x38\x25\x64\xc8\x39\xda\xaa\x56\xb4\x34\x0c\x26\x6d\x26\xf9\x27\x1c\x65\x24\xc7\x9a\x54\xda\xc7\x46\x23\x1c\x25\xf8\x28\xe0\x3e\x31\x5c\x64\x4b\x2b\x45\x71\xc3\x74\x6a\x7c\xdd\xcd\xbe\x03\xa5\xe0\x40\x1b\x25\x64\x4b\xda\x15\x93\xd2\x5b\x23\x6b\x5b\x03\xd9\x19\x82\x4d\x58\xb4\xc6\x87\x43\xb4\xa6\xe8\x13\x34\x5c\x63\x62\xb2\xc4\xde\xd0\x65\x64\x14\xdc\x61\x98\xb0\xe8\xe6\x78\x79\x7c\xfa\xe2\x69\xd9\x1c\x4a\x2f\x77\x41\x77\x08\xac\x77\xe1\x25\xbb\xca\x38\x44\x47\x41\x44\x18\xfa\x04\x05\xcb\x75\x52\x24\x4b\xc9\x8a\xd1\xa7\x78\x1a\xdd\x1c\x0e\xc7\x90\x06\x37\x61\xa8\x84\x83\x1b\x25\x87\xae\xe9\x8d\xea\xf1\x04\xd7\x15\x8b\xd6\x24\x23\xee\xdb\xf5\x9e\x6b\x1d\x58\x4f\xd3\x93\x21\x95\xb5\x95\x95\x92\x36\x61\x65\xfd\x3b\x7c\x69\x5c\x70\x36\x34\xf1\x94\x8a\x53\x7e\xb4\x6a\xd7\xcd\x82\xdd\xd4\x64\xa7\xdf\xba\xa4\x51\x41\x57\x60\x3c\xaa\x14\xa3\x2c\xe6\x29\xb0\xfc\x4b\xad\x13\xf7\xf5\x04\x97\x66\x8a\xaf\xa8\xc3\x43\xba\x74\x67\x7f\x72\xdb\xdc\xdd\x90\xd7\xf4\x2a\x0c\x6f\xc3\xb0\x79\xae\x6e\xab\x7a\x77\x61\x38\xb8\x1c\x39\x13\x71\x18\x0e\x5e\x1f\xf3\x34\x18\x0f\x1d\x2d\x19\xeb\x00\xbd\x26\xf5\x43\x90\x48\xc9\x36\x5b\xc9\x52\x2f\x0c\xd0\x19\x64\x61\x02\xb9\x08\xb6\x85\xb8\xc9\x52\x96\x06\x59\x0a\xb1\x88\x4d\x68\xa0\x4d\xd6\x66\xc2\x3e\x4b\xf5\x72\x96\x42\xd6\xfc\xe1\xe5\x28\x4b\x87\x08\xa4\x09\x08\x5a\xd3\x95\x8e\x82\xf7\xea\x6d\x6f\xec\x75\xb0\xdf\x6d\x52\x7a\x01\x89\x97\x0c\x3a\x23\x19\x0f\xb2\x32\x56\xe2\x85\x2f\x85\x64\x3a\x78\xe9\x2a\x0c\x07\xb7\xff\xd4\xef\x75\x41\x55\x1f\xff\x6a\xbf\x8a\x26\xca\x50\x8f\x83\xa7\xd2\xd1\xa3\xc1\x3c\xc5\x4f\x96\xba\xb1\xfa\xad\xc6\xa6\x45\x12\xd1\xeb\xd9\xee\x70\x58\x59\x6f\x5b\xd5\x52\x93\xa5\xb2\x31\xe0\x64\xab\x48\xaa\xa3\x6d\x13\x93\x66\xad\x16\x26\x72\x46\x5b\x57\x0a\xeb\x6f\xac\xed\x10\x83\x49\xcb\x83\x4e\xf4\x18\x66\x9c\xf0\x29\xe6\x72\xa1\x84\xb0\xb9\x5c\x4c\xfd\x95\xa0\x0e\xed\x09\x8b\xb8\xea\x58\x7b\x8d\x54\xd8\x19\x87\xb4\xa5\x9f\x13\x75\x4b\x97\x25\x15\x80\x09\x60\xc0\x24\xd2\xbe\x73\x85\xfd\x48\xd3\xdd\x8a\x2a\x46\x50\x83\x11\xc5\x13\x12\xa0\xaa\x8a\x64\x0e\xd5\x24\x99\x16\xc6\x5d\xb9\x72\xb1\xd5\xe3\x1a\x86\x8a\x40\x53\x2b\x8c\x4d\x9e\x60\x6e\x8e\xb4\x49\x9f\x5a\x2c\x99\x19\xef\x0d\x48\xa8\x42\xd4\xff\x71\x52\xc7\xc9\xb4\xcd\x15\xda\x5f\xa4\x78\x04\x56\x13\xa4\x7a\x50\x11\xdd\xe3\x82\x44\x91\x04\xd3\x69\xba\xa0\x9c\x48\xdc\xf5\x34\x3d\xda\x08\x4e\x9a\x9d\xda\x81\x5a\x6d\x5b\x21\x31\x69\x19\xfb\x50\x60\x8c\xc9\x0c\x76\x8f\xec\x2e\x4c\x18\xd1\xb3\x2b\x31\x92\x40\x1f\xcc\x34\xe8\x9d\xa7\x38\xda\x32\xad\x85\xf9\xf8\x49\xc4\xf0\x54\xc3\x4d\x29\xc1\x5d\xed\x03\x16\x2b\x4e\x6d\x79\x9c\x14\x47\xdb\x81\xf8\xf8\x5e\x90\x38\xec\x89\x0e\x06\x8a\x63\xff\x85\x8b\xb2\x69\x38\x7d\x72\xc2\xd0\x44\xaa\x9e\x98\x98\x84\x79\xbe\xdc\x9f\x80\xf4\x3c\x1f\x2f\xbc\xb4\x64\xcc\x0f\x3f\xe5\xad\x08\x50\x3e\x67\x0b\x3d\x1f\x73\xb6\x70\xea\x55\x89\x7f\x4f\xc7\x4d\x5c\x26\x3c\x03\x1d\xaa\x34\xe6\x4a\x75\x87\x7a\x31\x99\x13\xd0\xab\x96\x7d\xca\xa6\xf2\x5f\x58\xd9\x94\xdf\x5f\x51\xbc\xaf\x5b\x7a\x61\x8b\xc8\xb2\x14\x45\xaa\xc9\x85\xee\xeb\x7e\x1f\x3c\x55\xa4\x25\x2b\x32\x1d\x4e\xec\xb9\xa4\xb6\x2a\x6a\x29\x6f\x3a\x2d\x90\x8e\xe6\xf7\x0e\x55\x74\x09\x8b\xbe\x09\x55\x3b\xaa\xee\x38\x2a\xf2\xa4\x8e\xda\x7f\xad\xab\x1f\xb5\x1e\xfc\x7e\x99\x39\x5b\xc4\xbf\x58\xb9\xad\x83\x7d\x06\x06\xf6\xa6\xa7\x4a\x2a\x3f\x1e\xa1\xd7\xfb\xde\xbd\xf4\xdf\x5a\x0f\x0d\x9c\xed\xbe\xc1\x6c\x3e\x72\xb1\xdb\x25\x6a\xdc\x4f\x1b\xf7\xd3\xa0\x43\xb7\xa2\xbe\x2a\xf4\x7c\x32\x5f\x91\xbe\xfc\x5f\x45\xfa\x6f\xa6\x48\x5f\xf5\xf1\xb6\xd5\xbf\x30\x6f\x4b\x19\x3d\x02\xf5\x54\xdf\xfb\xe4\x58\x59\xd8\xd1\x47\xf9\x3b\x92\x07\x30\x3c\xd0\x50\x30\xd8\x8b\xa1\x6f\x84\xd0\x18\x0d\xd5\xc3\x69\xbb\xf4\xc5\x9d\xc5\x2f\xb2\xb4\xf6\xa4\x83\x9a\xf8\xc8\x23\x83\xb1\xd9\x58\x9f\x24\x70\xf8\x8f\x07\x63\x83\x23\x7e\xd2\x40\x20\x3d\xa6\xad\xa1\xb3\x2c\xa2\x6c\x2f\x4e\x20\x1f\x35\x38\x4b\x74\xbe\x20\x7c\x74\x0b\xc3\xa4\x83\x23\x21\x59\xa9\x93\xb2\x2d\xea\xd1\x93\x56\x00\x61\xdb\x19\x5c\x47\x1a\x10\x3e\x2a\xb3\x9c\xf1\x25\xfb\xb6\x10\x49\xba\x4c\x4a\x00\x76\xe5\xc6\x9f\x98\xae\x60\x19\xa7\x60\x1d\xb6\x37\x47\xcb\xaa\x94\x62\xf3\xd6\x42\xff\x86\x61\x07\xd4\xa5\xf3\x5c\x63\xb5\x5c\x32\xc6\x83\x82\x69\x95\x92\x14\x41\x5b\x81\x33\xb2\x30\x2a\xd5\x36\x4d\x24\xd3\xe8\x2f\xba\xb9\x20\x29\x83\x5b\xe6\x90\x43\x52\xb6\x2d\x98\x3a\xca\xf0\xab\xa0\xdb\x90\x01\xb3\xe1\xec\x83\x0c\x36\xc9\x4f\xa2\xb0\xa8\x22\x23\xe4\x77\xbf\xd5\x32\x3d\xf5\x59\xc7\x6f\x9c\xfc\xde\xd6\xe3\x7f\xe2\xe7\xb6\xdb\xf9\x07\xbf\xb6\x55\x99\x7a\xc1\xa3\xe7\xa6\x98\x77\x93\x70\x2d\x4d\xb8\x67\x2d\x8a\x9f\x41\xfc\xb3\x51\xd4\x11\x03\xf7\xf1\x16\xf2\xf3\x00\xa9\xfd\x47\xd4\xa6\x3f\x6c\xcb\x80\xa5\x4b\x97\xc9\x98\x45\x0b\x21\xea\xd8\xb5\x49\x76\x97\x0d\x5d\xfe\xa8\xc8\xdd\x53\xbd\x1f\x3f\xbc\x33\x12\x83\x7f\x24\x12\x03\xd4\xa4\xcc\x5b\x64\x61\x58\x78\x57\xce\x37\x1c\x43\xa2\x99\xb6\xab\x3f\x76\xd1\x31\x6a\x80\x5a\x91\x18\xb3\xa2\x37\x04\xc3\x1a\xd8\x8e\xdc\xbd\x9b\x74\x2c\xd8\xaa\x41\x6b\x4c\xb8\xe5\x3c\x4b\xd6\x87\x0c\x5a\x9e\x0a\x96\x60\x61\xe8\x24\x02\x17\xab\x6f\x42\x7e\xea\x56\x25\xec\x83\x2c\x92\x4e\xc8\x9e\x0f\xd6\xae\xc5\xca\xc1\x04\x13\x5b\x67\xdf\xd8\x78\xd6\x0a\xff\xf9\x49\x60\x11\xf0\x3d\xc0\x1d\x08\x4d\xbd\x79\x99\x8d\xc2\x28\x16\xe7\xbe\x70\xe8\xe4\xc8\x08\x2f\x2c\x5a\xba\xc4\x4d\x80\x5e\x4f\xb9\xba\x33\x62\x9d\x10\x56\xd8\x46\x74\x14\x46\x18\x36\x5c\xd9\x55\xa4\x51\x6b\x74\x01\x7c\x74\x46\x94\xb4\x4d\x37\xfd\xc3\x33\x33\x3a\x6c\xe3\x15\x06\xc3\x1d\x0d\xc6\x18\x37\xb2\x67\x4b\x96\xf6\x16\x50\x4f\x68\x4c\xe4\xe2\x35\x8c\x3b\xbc\x7a\xe5\x08\x90\xd2\xd2\xd9\x47\xa1\x15\x4d\x04\xca\x29\xeb\x9a\x15\x69\xd4\xaa\x5f\xf5\x41\x02\x91\xf6\x82\x88\x8f\x82\x61\xf4\xcb\x7e\x45\x75\x67\x52\xe0\xec\x7a\x2c\x62\x7a\x3c\xe2\x2e\xdb\xb0\xd3\x58\x3b\x5f\x32\x63\x29\xeb\xff\xf0\xc6\x68\xfc\x91\x71\x33\xa3\xec\xce\x25\x47\xd2\x88\x3f\x34\xc7\xfa\xf0\x5f\x3b\x9e\x56\x2c\xbf\x6c\x31\x38\x56\x76\x29\x39\xcd\x56\x7d\xc0\xfb\xff\x6c\x7a\xec\x8f\xbf\xfa\x6d\x48\xf2\x28\x78\xab\x2f\x8a\xea\x63\xe4\xf6\xeb\x09\xf9\x1e\x84\xda\xc1\xd2\xea\xc3\x2f\xd0\x9a\x79\x3d\x67\x6a\x0f\x55\x4c\xd7\xf7\x5e\x72\xcf\x1a\x70\x91\x0e\x3f\xbe\xc9\x96\x5d\x30\xd1\x8e\x96\x17\x8a\x80\x37\xa3\xce\x87\x09\x68\x85\xea\x83\x58\x1a\x08\x1e\xbc\xe0\x2f\xd9\x46\x14\xbb\x00\xb6\x3b\x74\xc4\x02\x5b\xe7\xda\x63\x27\xaf\xf6\xd9\xee\x98\x0e\x49\x0f\xfa\x63\xbb\x81\x8d\xb8\x61\xaf\x1b\x99\xf5\xa4\x51\xbb\x4b\x9e\xab\x2c\x97\xac\xe8\x3b\xb7\xca\x51\x96\x2a\x49\xbd\x36\x50\xa0\x5d\x89\xb8\x1f\xbf\x45\x9f\x4b\x9b\x9e\xbc\x57\x24\x99\x98\x02\x9a\x40\xf5\x15\x81\x03\xc3\x7d\x97\xde\x96\x15\x8a\xae\xbd\xda\x4e\x7c\xe2\x91\x84\x3d\xed\xbd\x4b\x07\x63\x62\x74\x2d\x44\x5a\x24\xa7\x1e\xe1\xfc\x9e\xdd\xbb\xe3\xab\x7b\x13\xd3\x35\xb1\xc6\x3d\x1d\x33\x62\x59\xfb\x3d\x0f\xf7\x26\x57\x14\x6c\x9a\x8c\x24\xae\x8f\x98\x0a\xe9\x2a\xc3\x0b\xaa\xa5\xc9\xa9\x11\x2a\xd5\xf1\xe5\x78\x44\x75\xbe\x28\x28\x50\x1c\x4f\xba\x56\x02\xee\xb3\x34\x96\xc4\x9b\xc6\x98\x69\x28\xd4\xc2\xce\x64\xdf\x09\xe7\x5e\x63\x78\x37\xc0\x73\xb6\xd2\x9f\xe9\x89\xc8\xad\x69\xef\x3d\x8d\xd9\x8c\x28\x96\xa2\xd5\x44\x37\xb9\x4f\x20\x21\x0a\xb9\xe3\x6d\x8d\x4d\x23\x3f\x5a\x46\x12\x09\xc1\x1b\x0d\xa2\x74\x57\xfe\xf9\x6f\x45\x94\xee\x36\xfe\x8f\x23\x4a\x9f\xd8\x5c\xee\x87\x97\xfc\x6b\x90\xa6\x8f\x44\x95\xdf\x06\x69\xfa\x57\x6d\x92\xbd\xfd\xf9\x07\x10\xa8\xff\x79\x43\xda\xed\x69\x77\xc5\x9d\x50\x69\x3a\x60\xca\xee\xd2\x3d\x75\xc2\x70\x91\xbb\xad\x8d\xb7\x0f\x16\x8c\xf5\x9d\x1c\x01\x45\x23\x0c\x7b\x9f\x19\x40\x34\x88\x80\x6a\x7f\x4c\xdf\x11\xb4\x1d\x06\xa1\x4e\x9e\x97\xc9\xf2\x3a\x72\x51\xeb\xf7\x5b\x3f\x1f\x11\x6f\x54\x4f\xdb\x77\x22\xec\x13\xac\x2f\xfe\x01\xdc\x8d\xac\xa3\x0f\x98\xac\x19\x8d\x78\x34\xf9\x02\x13\x1e\x7d\xf6\x15\xc6\x64\xf7\xbf\x1a\xd9\xdf\x4c\x23\x7b\xd3\xa7\x91\xbd\xf9\x17\xd6\xc8\x6e\x18\x9d\x23\x93\x4e\x04\x11\x93\x30\xde\xcb\xa2\x8c\x08\x32\xe9\x97\xbd\x44\xf2\x7e\x7a\x6a\x55\x1c\x10\x7c\xdf\xc9\x44\x32\x44\x90\xe0\xc6\xa1\x19\xb5\x95\x52\xf6\x06\x5a\x90\xcb\x5f\xa8\x2e\x85\xc4\x62\x7b\x3f\x83\x98\xb1\x83\xe0\x23\x31\xd2\xe9\x1d\x20\x89\xeb\x86\x79\xd1\x1b\x35\x9e\x72\xc7\x42\xc2\xb0\xad\xdd\xd3\x60\xc4\xdf\x0a\x51\x6a\x37\x04\xc0\xa4\x4a\xf2\xec\x67\x96\x6a\x5f\x07\x1f\xec\xd8\x66\x64\x0e\x90\xcb\xfe\x1a\x20\xac\x31\x01\x05\x95\x36\x3d\x0b\xc9\xa8\x84\xec\xfe\x09\x6d\xa5\xc7\xd6\xc9\xb1\x4d\x7a\xeb\x92\x4a\x93\xdf\x3f\xb7\xbf\x5c\xe2\x6f\xf5\x5a\x33\xb6\x64\x65\xb1\xd0\xdc\x98\x92\x94\xca\x91\x19\x70\xb2\xb6\x8f\xd5\x78\xad\xc3\x70\x75\xec\x32\xf2\x82\x2f\xc5\x66\x9b\xc8\xec\x32\x67\x5a\xd1\x68\xf4\x91\x95\xce\xf9\x31\x0a\x5e\xac\x8c\x57\x48\xc6\xaf\x82\xbf\x41\x91\xbf\x05\x72\xcd\xb8\x2b\xa8\x01\xb9\x1b\x57\x19\xc3\x0d\xf4\x28\xfd\xad\xdd\xbf\xbf\xc1\x63\x96\xa4\x23\x84\xa7\x6b\x70\xc6\x5a\xc1\x89\x74\xcb\xa2\x7d\xc7\xb9\x6f\x55\xe3\x58\x3f\xb2\x91\xcb\x83\xc1\x32\x0c\x9f\x45\x37\xa0\x9d\x5e\x12\xfd\x42\xbc\xae\xd5\x36\x44\xdf\x47\x69\x7b\x9d\xd9\x33\x71\x2b\xc7\x11\x78\xd3\xfa\x29\x82\xa6\x32\x0c\xe5\x91\xaa\xca\x21\x69\x59\xcf\x5e\xca\x46\xb9\xd0\xae\x34\x25\xb8\xe1\x6e\x13\xe9\xd4\x92\x96\x72\x72\x71\x15\xa1\xf9\x1f\x74\x7b\xda\x11\x67\x11\x07\x2f\x75\x1d\x8a\x38\xe4\x10\x91\xe0\x3b\x53\x0f\x50\x8b\xba\xf1\x26\x91\x6b\x75\x01\x19\x5d\x78\x43\x88\xba\xba\x57\xba\xb3\xae\x3a\x34\xe4\x10\xaf\x45\x07\x03\x11\x86\xc7\xf9\xf6\x3b\x32\xfa\x9d\x69\x7f\xbb\x87\x39\x76\x3a\x93\xab\xd0\x09\x12\xdb\x8f\xf1\xbe\xa0\x4a\xae\x3d\x4a\x07\xc5\xbd\x74\x50\xdc\xa6\x83\xe2\x7e\x3a\x28\xee\xa5\x83\xe2\x9d\xb4\x4e\xb0\xe9\xda\xbc\x6c\x9d\xb7\x5a\x07\xea\x22\x0c\x8b\x9e\xa4\x4c\xe4\x12\xf4\xca\xdb\x68\x5f\x15\x59\x9c\x1d\x0e\xe8\xa1\x41\xb4\x47\x04\x16\x54\x5c\x12\x7f\x61\xc5\xf9\xe1\xa0\x28\xca\x4b\x5f\x9f\x1c\x0e\xa8\x4c\x36\xec\x81\x28\xb2\xab\x8c\x23\x97\x5a\xbf\x02\x64\x13\x4c\xae\x68\x31\x4a\x46\xab\x42\x6c\xa2\xf9\x0d\xd9\x90\x1d\xb9\x5c\x9c\x66\x3e\x83\x01\xab\x1b\x0f\x72\x3f\x85\xac\x25\x62\x92\x67\xfc\x3a\xbe\xaa\x3b\x49\x3a\x77\x4d\xec\xc7\xda\x25\x17\xc5\x53\x39\x4a\xe8\x25\xab\x09\x21\xdd\xf0\x47\x54\x95\x2c\x28\x65\x91\x2d\x25\xb2\x6a\xf5\xe8\xf1\x67\x98\x88\xde\x2c\x8f\xef\x76\x9b\x4b\x91\x87\xa1\xfe\xab\x44\x27\x92\x51\x31\x6b\x2e\x23\x04\xd8\xff\x23\xa6\x95\x0c\x08\xc7\x8f\xc7\x93\xf1\x23\x92\xf4\x96\x52\xfc\x30\xc9\x4d\xa1\xc7\xa4\xea\x2d\x64\x25\x48\x53\xec\x0b\x52\xf6\x16\xd3\x1f\x71\xb1\x11\x29\x33\x25\xbf\x24\x79\x7f\xab\x85\x58\x65\x39\x2b\x74\xb1\xc9\x67\x64\x79\xaa\x98\x62\x51\xa6\xd8\xf8\x2b\xb2\xea\x2d\x66\x5c\x62\x4c\x65\x63\x92\x9e\x2a\xb5\xac\x8a\x82\x71\xbf\x87\x93\x09\xd9\xf6\x7f\xb2\xce\x3c\x76\x51\xb0\x95\x29\x79\x46\xd6\xfd\x5f\x5d\x95\x5b\xc6\x4b\x5b\xe1\x23\xb2\xeb\x2d\xb6\x61\x1b\x61\x8a\x7c\x4e\x6e\x7a\x8b\xe4\xc9\xcf\x3b\x53\xe4\x31\xd9\xdc\x67\xf6\x33\xc9\x8a\x44\x8a\xa2\xf1\xea\xb9\x6c\x43\xf5\x75\x45\x95\x07\x13\xc2\x29\xb2\xf9\x23\xa0\xd9\x9f\xca\x91\x28\xae\x74\xd6\x08\x58\xb8\x0f\x52\xb6\x14\x29\x2b\x20\x47\xc4\x2c\xe3\x20\xee\x72\x49\xd1\x90\x91\x82\x8e\xa7\xc5\xd7\x72\x5a\x0c\x87\x98\x0f\x29\x0a\x93\xe2\xaa\x9c\x2f\xfa\x13\xe2\x37\xf2\x4f\x31\x9c\x2c\xf0\x74\xd0\x87\x19\x40\x12\x93\x6f\x76\x60\xf4\xfb\xc6\xaf\x82\x34\x52\x04\x66\xd4\x85\xa7\xf2\x6c\x95\xb1\x34\x60\x1f\x96\x4c\x27\x6c\x10\x4b\x98\xd5\x74\xea\xd2\x6a\x70\xc1\x1f\x6c\x6c\xc1\x94\xdd\x04\x8c\xdf\x64\x85\xe0\xe0\xf5\x6d\xbd\x1a\x57\x55\x9e\x9b\xbc\x1c\x66\xcb\x80\x54\x05\x49\xaa\xdd\xce\x93\x3c\x58\xb3\x7c\xbb\xaa\xf2\x40\x49\x17\x19\xbf\x2a\xd5\x06\xe8\x9c\x95\x4b\x3a\xf7\xfa\xbf\x20\x39\x1d\x4f\x23\xdb\x4d\xe9\x4c\x38\x0f\xff\xad\x7c\x78\x45\x7a\xbc\x68\xe6\xf9\x70\xb8\xa8\x31\xc6\x26\x41\xfa\x0b\x3b\xca\xc1\x5f\x32\x91\xc3\x6e\x83\x6a\xbd\xf9\xc3\x01\x6e\xc3\xca\xf7\xe2\x8d\xd8\xd2\x09\x61\x75\x1d\x0d\x26\xa4\x19\x8b\xb7\x6a\x16\xcd\xb7\xfc\x1f\x34\x64\x43\x34\x0d\x6e\xb2\x32\x93\xc1\xbf\x95\xed\xef\xb5\x5f\x2a\x8a\xfb\x0f\x56\x33\x50\xe5\x47\x47\x28\x40\x4a\xd0\xd7\xbe\xc2\xfb\xac\x7c\x29\x2a\x2e\x59\x1a\x1f\x7d\xff\x60\x52\x13\xc6\xff\x5e\xb1\x8a\x3d\x17\xc5\x92\xfd\x00\xd6\x55\xbf\x9c\x7b\xfe\x56\x8f\x24\x88\x4f\xbd\x05\xde\x31\x79\xfc\xb0\x26\xb7\x74\x5f\x37\xab\xe2\xb5\x65\xb6\xd6\x35\x7d\x5b\x5a\x67\x2b\xc3\x3c\x2c\x96\x6f\xc1\x56\x25\xbd\xd5\xbf\xb5\xd1\xb7\xa0\xfc\x70\xb8\x6a\xfc\xe2\x9e\xa9\x06\xdc\xd5\xbb\x7f\xbc\xe6\xd7\xde\xa1\x00\x12\x3c\x2c\xa5\x5b\x43\x74\x5f\x93\xd7\x6d\x27\x27\xf8\xda\x8e\x42\xc6\x3a\x78\x0e\xfc\xb8\xe7\x86\x7f\x0c\x8e\xf1\x4e\x59\x18\x5e\x46\xe8\xcb\xcf\x11\x6e\xf5\x68\xd4\x19\x55\xbd\xe5\x41\xd6\x7a\xdb\x34\xc2\xed\x2e\xad\x9a\x19\x3c\x56\x69\x74\xaa\xf5\x66\xdb\xd6\x8c\xbc\xf7\x55\xd5\xcf\xbc\x23\x9c\xd7\x0c\xec\x8c\xef\xe9\x3b\xff\x80\xa7\xa4\xe2\xe9\xfb\xd6\x81\xf1\x1d\x29\xa2\xf7\x7e\xf7\x30\x79\x3f\xca\xca\x37\x3a\x3b\x92\x3f\xb0\x46\x59\xfa\x86\xee\xcd\xae\xa0\x53\xd6\x99\x8b\xa7\x59\xb9\xb5\xde\x2d\xe0\x44\xf2\xf2\xa3\x50\xfb\xd7\x74\x7f\xcd\x76\xda\xc3\x64\xa5\xfe\x5c\x5c\x40\x14\x8c\xfe\x25\xaa\x62\x09\xb0\x36\x0d\x51\xfe\xd4\x06\x40\x30\x6c\x4f\xa8\x29\x4f\x74\xb2\x85\x8a\xda\x2c\x87\x7a\xd2\x24\x9c\x30\x0b\x75\xba\x74\xee\x30\x8a\xd9\xac\x00\x4d\x05\x7e\x61\xe2\x3d\xb9\x66\x3b\x70\x4c\x45\x68\x08\x17\x98\x48\xfc\xd2\x9e\x34\x0b\x1c\x86\x83\xeb\xee\xe1\x1d\xbc\x94\xc5\xbc\x50\xe7\xcf\x62\x61\xe1\x58\x8e\xb6\x91\x33\xd5\x29\x75\x3e\x2b\xb1\xf0\xd2\x18\xb8\x48\xa6\xc9\xd7\x65\xb3\x0d\xe5\x3a\xde\x1e\x00\xbf\xe8\x78\xba\xfc\xba\x9c\x2e\x87\x43\x9c\xcf\x97\x3e\x6e\xc5\x72\x78\xb6\x98\x7a\x95\xe5\xb5\x46\x7f\x71\x42\x94\xea\x63\xd9\x8c\x40\x49\x3b\x4f\xdc\x86\xa1\xba\x6f\xbf\xa2\x84\xaf\x30\x28\x10\x9f\x7c\xa2\x97\x41\x9c\x81\xa3\x6c\xcc\x88\x9a\xb1\x04\x26\xac\x22\xb0\x78\x63\x41\x2e\xc4\x2d\x67\x45\xfc\x66\x64\x68\xc1\x4b\x72\xf9\xc1\x73\x99\xbd\x0b\x4b\x58\xf5\xda\x36\x46\x29\xcd\x80\x27\x5e\xd0\x87\xe7\x0f\x87\x0f\xaf\xc8\x2b\x3a\x5f\x34\x64\xf0\xb4\x71\x83\xce\x56\xd1\x2b\x33\xc2\xd6\x27\xfa\x95\xc6\xda\x68\x02\xff\x0c\x64\x1c\x23\x42\xcd\xe8\x9b\x82\xad\xb2\x0f\x54\x12\x31\x52\x15\x52\xde\x20\x40\xd2\x02\x7e\x57\x5c\xd2\x31\x11\x1d\x20\x0c\xf8\x72\xfd\x72\x2c\x61\x83\xf2\x5d\x8b\x09\xbc\x16\x8f\xbd\x2f\x7f\xa2\x15\x65\xa6\x75\xa0\x4e\xe6\x75\xc0\xdc\xd0\x7d\xd0\xbf\x6d\x37\xdc\xa5\xee\xc9\x64\xfc\xfb\x57\x2e\xcc\xef\x95\xc5\x58\x68\x1a\x7a\x6b\x57\x45\x0b\x97\x83\xcd\xc6\x47\x91\x00\xc4\x00\x29\x55\x0e\xe5\xa7\x03\xf2\x55\x85\xa1\x4b\x3c\xaa\x13\x7a\x47\xba\x3b\x96\xac\x8d\x33\xb3\x41\xfe\xc0\xa5\x62\x0a\x40\xc1\xe5\x6d\x66\xf2\xd3\x2e\x93\x92\x59\x3c\xa1\x18\x2e\x4c\x30\x50\x0c\xa5\x2f\x0b\x96\x5c\x4f\xe1\xbe\xa1\x87\xd8\xbc\x2b\x1d\x01\xe8\x4a\x82\x0c\x5e\x0f\x12\x78\x11\x50\x7f\x5c\x56\xf1\x22\x12\x8a\xc3\x22\xd0\x6a\xa1\x11\x1a\x7e\x13\x49\x32\xc6\x31\xc7\x04\x7a\x58\xd2\xb1\x12\xdb\xdc\xf3\x98\x0f\x51\x8c\x48\x17\xa4\x04\x37\x0b\x6e\x3c\xcd\xbf\xb6\x00\xc8\xd3\x7c\x38\xb4\xf8\x46\x7c\xf8\x8d\xe2\x14\xf3\x7c\x41\x72\x3c\x2d\x87\x94\x45\x15\x59\xc2\x58\xd6\x76\xed\x2e\xad\x86\x4d\x1e\x0e\xc7\x1b\x8b\x01\x48\xe9\x11\x4e\xa3\x25\xdd\x84\xa1\x9c\x6f\x16\x87\x83\x9c\xa3\x7f\xff\x77\x2b\x9d\xa2\x05\x9e\x2d\x35\x7b\xed\x93\x69\x97\xd0\x6f\x49\x97\x86\x33\x61\x90\xa6\x06\xc0\xd1\x20\x55\x32\xc6\xa3\x54\x70\x36\xc5\xba\xbf\xb4\x32\xf1\x6f\xe6\x73\x88\xfa\x3e\xf8\x04\x98\x3c\x6f\x61\x56\xb0\xc9\x3d\x9a\x20\x82\xe6\x26\x8c\x45\x73\xf1\x85\x7a\x1a\x15\xc0\x18\xf1\x0c\xf9\x11\x31\xd7\x6c\x57\x06\x7b\x1b\xa9\xe2\xb4\x54\x5a\x47\x44\x02\x84\x87\xa8\x46\x71\x41\x50\x83\x3b\x5f\xd6\x11\x23\x08\x69\xf8\x2d\x47\xa5\xdf\xf8\x27\xfb\x8f\x70\x0b\xb3\x27\xab\xd6\x66\xc7\x5a\x8d\x3d\xa2\x28\x46\x74\x8c\x08\x8a\xd5\x8f\x33\x64\x95\xa9\xe8\x13\x34\x8c\x10\x1a\x82\x51\xcf\x88\x9c\x73\x1a\x2f\x7c\xa1\xd3\x73\xba\x9e\xb3\x45\x8d\xeb\x08\xda\xc1\xb1\x74\xd9\x1f\xa2\x47\x8f\xbd\x8e\xbf\xb0\x4a\x60\x75\xc7\xa0\x5b\xbb\xe0\x42\x69\x97\xf2\x70\xe8\xbd\xf2\xbc\xbd\x95\x39\xa7\x0e\x41\x3d\x26\x31\x65\xf4\xe3\x75\x92\x23\x68\x96\xef\x00\x87\x8b\xf7\x7d\x10\xab\x71\xec\xc4\x99\x48\x31\x67\xf0\x7e\xea\x53\xad\x1c\xf3\x7e\xb0\xca\xc1\x06\x20\x61\x03\x50\x9d\x5e\x99\x4d\x80\x69\x49\xce\x6e\x05\x6c\xa4\x7f\x00\x4c\x96\x18\x46\x03\xa6\x73\x03\x81\x26\xea\x9a\xed\x34\x52\x3c\xdb\xcd\x10\x8a\x61\x3a\x60\x80\xdd\x94\x5c\x10\xf4\x49\xf8\x50\x51\x8e\xfa\x8f\x63\x4c\x0a\x87\x2d\xd3\x8c\xe1\x77\xcd\xa9\xc8\x02\xc4\x21\x34\xd5\x9f\xc7\xc3\x30\xca\xa8\xaa\x9a\x9f\xa8\x96\x28\xbe\xf9\x9c\x48\xfa\x34\x92\x24\x83\x4a\x30\x79\x12\x49\x2d\x8e\xff\x40\xf7\x4f\xcc\xbe\x1a\xef\x37\xc9\x36\xee\x2a\x21\x1c\x1b\x74\x91\x35\xd6\xc5\xaf\xc9\x9c\x6c\x26\x02\xb2\x40\x11\x0e\x59\x88\x8c\xe1\xe6\x5e\xd5\xa9\x0e\xbe\x80\x0e\xea\xdc\xc0\xb6\x1e\xd3\x4d\xb3\xe7\xf4\xcc\xb2\x7a\xf1\xf8\x08\xa5\xc5\x32\x03\x02\x23\x05\x90\x4b\x0f\x64\x73\xbb\xfb\x06\x9f\xb5\x9f\x94\x88\xac\x89\xe0\x79\x2f\xcc\xdb\x07\x48\x44\x72\x19\xa1\xc9\x67\x8f\x10\x56\x67\x30\xa2\xcd\x0e\x6f\xd9\xea\xf8\x7c\xd3\x12\x29\xeb\x9a\x38\xa9\x33\x7e\x4d\x94\x28\xda\x5c\xbf\x33\xd5\x58\x98\xa7\xfb\xd8\x59\x75\x32\x97\x88\xd1\x86\xa6\x57\xe4\x62\x99\xe4\xcb\x2a\x57\x55\xad\x13\x7e\xc5\xd2\x6f\x33\x59\xc6\x92\x5c\x98\xae\x68\x4c\x29\xd6\xbe\x3e\x53\x37\xe4\xba\x60\x49\xfa\x44\xef\xf8\xe4\x8d\x51\xb9\x68\x76\xfd\x44\xf0\xb2\xda\x58\x21\x18\x8f\xec\x53\xaf\xe9\x25\xb9\xb0\x72\x03\x24\x3d\xb0\xaf\x50\x56\xdb\xf4\xed\xad\x31\x62\xc7\x2b\x72\x4b\x0a\xc6\x55\x9b\x6a\x58\xf3\xe4\xe7\xbe\x19\x68\x4a\xdf\x90\x0b\x25\xea\xab\xae\x97\x32\x91\x55\x19\x3f\x98\x90\x0b\x1b\x93\xad\x07\x7c\xc3\x36\xa2\x77\x2c\x9b\x6a\x76\x56\x04\x04\x7d\x7a\x61\x83\xd9\x1b\x08\x30\x59\xd7\xc4\xda\x6a\xe3\x8a\xbc\x03\xe5\xd6\x4b\x91\xb2\xb8\x24\xef\x8c\xce\x27\x5e\x9b\xf9\x7b\xa6\x95\x6d\xf1\x4f\x64\x99\x0b\xee\x2e\xbb\xeb\xc2\xc5\xaf\x59\xec\x55\x88\x65\x83\x5d\xea\xec\xf1\x17\x88\x18\xc5\xb9\x45\x6e\x21\x09\x2d\x20\x3c\x43\xb3\x23\x0c\x11\xdf\xd7\x6c\x07\xe1\xde\x8a\x5b\xe5\xd4\xb2\x26\xff\x90\xb0\x3f\x3a\x1c\x94\xfa\x17\xc9\xa9\x93\x6a\x7b\x0e\x0a\x55\x73\x50\x30\xc0\x01\x16\x20\x56\x14\x11\xd8\xb4\x34\xd3\x54\xd2\xad\x89\x94\x69\xc4\xef\x30\x8c\x96\xb4\xe7\x7e\xeb\xcc\x21\x7a\xcf\x1c\x60\xf3\x4a\xe6\x62\xd1\xc0\xae\xc8\xb9\x58\x58\x0f\xcf\x01\xa5\xcb\xd9\x72\x2e\x16\x31\x98\xc4\x6a\x73\xf2\x88\x44\xcf\xb1\x04\xe3\xa4\xff\x38\x22\xf0\x7e\x69\x8e\x21\x02\x4f\xad\xa0\xb4\xa2\xe3\xe9\xea\x6b\x31\x5d\x0d\x87\x78\x39\x5f\xf9\xc7\x91\x95\x3a\x8e\x78\x95\x2d\xeb\x8f\x6f\x24\x15\x6c\x24\xa5\xd9\x44\x12\xbb\x7d\xe4\x8e\x5b\x3c\x4f\x14\xe9\xf6\xf1\xa9\x9f\x8c\xba\x1c\x84\x65\xdc\x41\x19\x62\x8a\x35\x65\xe5\x5f\x92\x3c\x4b\x2d\x69\x7d\x20\xc6\x8b\x3c\x46\x93\xc7\xa3\x2f\x46\x63\x44\x2a\x5e\xca\xe4\x32\x67\x17\x4f\x9c\xaa\x13\xe8\x35\x6d\x9e\xbc\x31\x8a\xd7\x38\x27\x17\x17\xef\x9e\x3d\x79\xfb\xec\xfd\x05\xa4\x1f\x7c\xf5\xcd\x77\xef\x2e\x9e\xbe\xbe\x78\xf5\xfa\xfd\xc5\x0f\xef\x9e\x5d\xbc\x7e\x7b\xf1\xd7\xd7\x3f\x5c\xfc\xf8\xe2\xbb\xef\x2e\xbe\x7d\x76\xf1\xfc\xc5\xdb\x67\x4f\xe3\xbd\x3e\x43\xeb\xaa\x5f\xeb\x53\x12\xd1\x16\xd3\xb8\xa8\x6b\xf2\x3d\xdd\x9b\xa9\x8f\x7f\xa8\xc9\x8f\xf4\xfb\x30\xfc\xe1\x70\xf8\x7e\xca\x46\xec\xc3\x56\x14\xb2\xa4\x3f\x5a\xda\x38\x1c\x7e\xac\xef\xa7\x0a\x1f\x63\x22\x8c\x46\x3c\xa3\x3c\x9a\x7c\xf6\x95\x1f\xc4\xf8\xbf\xea\xce\xff\x55\x77\xfe\xdf\x55\x77\x16\x87\x43\x12\xa1\xb3\xb3\x2f\x90\x8b\x21\x9e\x98\xfc\x35\x24\x57\xbf\xcd\x89\x78\x45\xf7\xc6\xce\xdb\x5a\xfe\x15\x1d\x8c\x15\x3f\xaf\xeb\x16\x0e\x77\x8b\x62\x72\xb2\x84\x82\xae\xde\x53\x94\x45\x4a\x0b\x74\xab\xc5\x68\x4f\x71\x98\x67\x4b\x63\xc5\x72\x74\x4a\x1e\x69\x1c\x2a\xe9\xe0\x3e\x73\x8b\xcd\xb4\x34\xfa\x3b\xd3\xe3\x68\x89\xeb\xda\x94\x5a\xf9\xde\x07\x1a\xfa\x03\xfa\xb4\x6e\x69\x5c\x77\x11\x90\xf7\xd6\x9d\x49\x99\xda\x3f\xd6\x96\xdd\xad\xe7\x6c\x41\x38\xdd\x7a\xc6\x7d\xb5\x83\x3d\x98\x7c\xcd\x61\x38\xbf\x7a\xac\x36\x43\x32\xd8\xcc\xf9\xc2\x55\x01\x6a\x1f\x69\xdd\x15\x9f\xdd\xa8\x2e\xe8\xd2\xb0\x75\x92\x0d\xf8\x9c\x40\x3e\x22\xa6\x1e\x42\xb6\x54\xab\x48\x31\xcb\x2c\xa3\x7c\x5e\x2c\x48\x45\x25\x29\x69\x31\xbd\xec\xee\x45\x25\x0e\x43\x55\xe3\x57\x88\x94\x98\x5c\xce\xcb\x05\xcd\xa6\x7a\x48\xb3\xd1\x76\x9d\x94\x2c\x7d\xcb\xae\xb2\x52\x6a\x73\xfb\x2b\x45\xaa\x06\x41\xd8\xed\x92\x39\xce\xfb\xb6\xb8\x9b\x28\x9f\x8b\x05\x4c\xd2\x54\xd0\xc1\xd8\x1c\xb8\x47\x45\xa7\xbe\x59\x74\x13\x1d\xdf\x85\xf7\x88\x80\x14\xc3\x82\x0e\x26\x53\xa1\x3f\xfd\x4b\x44\x0a\xc2\x70\xed\xe9\x6a\x6e\x2c\x3f\xbd\x82\x24\x95\x49\x84\x26\xe3\x31\x8c\xd0\x95\x4e\x53\x79\x0b\x7f\xbc\x41\x9a\xf3\x85\x49\x2b\xc9\xf8\x32\x63\x65\xad\x81\x45\xe6\x0b\x72\x49\xf7\x35\xb9\x52\xff\xdd\x82\x2e\x5a\xcf\xf5\x33\xfd\xe7\x5d\x07\xae\xf5\x7d\xf7\x18\xa8\x48\xef\x70\x40\x15\xbf\xe6\xe2\x96\x3f\x80\x06\xd1\x94\x59\x19\xe4\x7d\x52\x5c\x31\x49\xdf\x45\x1c\xf7\x93\xf4\x8a\x6c\xc9\x1a\x08\x29\xed\x77\x7f\x31\xcc\xb4\xd2\x4d\xee\x68\x39\xf5\x96\x89\x1e\x60\xf5\xf9\x5f\x7d\x89\x30\xd9\x59\x71\x26\x3f\x1c\xa2\x5c\x2d\xbb\x25\xdd\xe1\xba\x8e\x0a\x22\x0d\xfb\x55\x63\xd4\xed\x1d\xd4\xe4\x3e\xf1\xcd\x11\xf2\x28\x88\xe5\x49\x84\x1e\x8d\x11\x26\x56\x5b\x25\xe3\xa3\x73\xec\x11\xa4\x6c\xc4\x7c\xf8\x5a\xf0\x16\x65\x38\x36\x77\x23\x7d\x75\xf4\xd2\x9c\x79\xa1\x34\xf1\x9c\x11\xe9\x85\xec\xbf\xb4\xe3\xdf\x83\x6f\x6a\x7d\xec\xd4\xf3\x18\x50\x51\x9b\x70\x2b\x35\x76\xd7\x9d\xb9\xfc\xc9\xc6\xdb\x34\xbe\x15\x17\xa9\xd1\x8a\x7f\x97\x95\x92\x71\x66\x9c\x33\xdc\xed\x17\xc6\x91\xa4\x3c\xc6\x60\xf0\x94\x53\x66\x4f\x75\x3a\xc0\x01\x1b\x65\xa5\x5a\x28\xc9\x15\x10\xfb\x3b\x29\xb6\x5b\x96\x46\x18\x76\x5d\x20\x29\xb5\x62\x39\x28\x72\x35\xea\x79\x18\x5a\x4a\x9b\xf6\xf5\xca\xaa\x1c\x8f\x3b\x66\x9f\x64\xe5\x1b\x25\x3c\xa9\xf2\x32\xc2\x87\x03\xf3\x8d\x08\xa3\x82\x41\xd0\x1f\x38\xfb\xab\x1e\x7f\xa0\xfb\x8c\xff\xc4\x0c\xcb\x79\x93\x57\x57\x19\x7f\x5d\xa8\x03\x8b\xcf\xc8\xb7\x66\xa5\x4d\x10\x26\xdb\xbb\xf8\x2f\xc3\x64\x17\xe1\x9a\x1c\xd5\x59\x7e\xbb\x03\x24\xef\x23\xe9\x90\x70\xb5\xe0\x41\x4b\x06\x52\x38\x86\x38\xa8\x0e\x8b\x91\x2e\xdf\x22\x9b\xcb\xc5\x74\x7d\xfc\x3c\x0c\xd7\x73\xb9\xa0\x94\x16\x87\x43\xa4\x7e\x9a\x1e\x9f\x21\x45\x7b\xf0\xac\x50\x4d\x8d\x71\xcd\xc3\x50\xf5\xd1\x63\xe8\x17\xbe\x13\x3a\xe0\xe5\x49\xf6\x4a\xa4\xe0\xaa\xe4\xd0\x21\x9a\x58\xab\x82\xbe\x36\xb9\x1e\x5d\xf2\x70\xfd\x90\xd3\x42\x75\x8f\x39\x3d\xa9\xd1\xb1\x0a\xfe\x24\xcf\x96\xd7\x46\xc9\x6a\xae\x9e\x24\x5b\x59\x15\xcc\xdd\x7c\x2a\xaa\xcb\x9c\xb5\x0b\x7a\xf7\xba\xc5\x5f\x8a\xaa\x64\x4f\xc5\x2d\x3f\xbe\xd3\x5b\xf4\xa5\xb8\xe9\xb9\xd3\x5b\xf4\x87\x6d\xf7\xda\x15\x8b\x0a\x3a\x28\x46\x69\x06\x39\x8f\x53\x7c\x38\xa8\x1b\x11\xba\xac\xa4\xd4\x7a\xcf\x88\x19\xd6\x88\x0f\x07\x94\xf1\x6d\x05\x7a\x41\xc5\x28\x35\xd6\x87\xbd\x52\x87\xea\xa4\x60\x09\x5c\x63\x4c\x18\x1d\x14\x5a\xe3\x1c\xb0\xa9\x15\xb4\x19\x1d\x4c\x9c\xfb\xb8\x3e\xb9\x46\xbc\xdf\xf8\xc7\x61\xbe\xcf\x1e\x4d\x10\x91\xc4\xde\xc3\x2d\xa5\xe5\x2b\xb3\xea\x1b\xd5\x64\x74\x4d\xdf\x44\xd7\x44\xb7\x7f\x4d\xae\xcd\x12\x0a\xc3\x48\x71\x9b\x9f\x30\xb9\xd6\x1b\xe6\xe7\x08\x93\xdc\x02\x71\x31\xba\x6c\xc9\x3e\x1a\x40\xf9\x29\x7d\x99\xc8\xf5\xa8\x48\x78\x2a\x36\x11\x6e\xa9\x1f\x0d\xfe\xf2\x19\x26\x4f\x28\xba\xb8\x00\x51\xfd\x05\x97\xac\xe0\x49\x6e\x97\xef\x27\x68\xf8\x94\xbc\x75\x8f\x61\xe5\xfc\x11\xb2\x83\x16\xa5\x7a\x36\xf5\x75\xaf\x9a\x79\xcd\x9f\x2c\x9c\x06\x6a\xfe\x64\x01\x6b\x68\x3a\x80\x9f\x16\x20\x5b\x1d\xfe\xb9\x54\xa4\xdc\xa2\x53\x46\xfd\x47\x76\x84\x3f\x37\xd3\xa7\xea\x1d\xc9\xe4\xea\x70\x78\x0c\xca\x3f\x99\x5c\xcd\x58\xdc\xde\x2a\x5e\x78\xde\x44\xf6\x9d\xc3\xe1\xf3\x81\x29\x1f\x86\x8f\xed\x4f\x3d\x6d\xac\xa5\x4f\x85\xee\x7d\x6e\x2b\xf7\xda\x69\x42\xdf\x9b\x35\xa8\xb6\x9f\x47\xa8\xad\x4c\x6c\x54\x5b\xf3\xb7\x0b\x9d\x06\xaa\x79\xfe\x83\x7a\x9e\x8a\x3d\x73\xb9\xaf\xea\xdb\x75\x96\xb3\x88\x85\xa1\xeb\x61\xe3\xfe\xd4\x7d\xfd\x7b\xa7\xd0\x90\x54\x31\x06\x3e\xb2\xac\xf6\x89\x8e\xd9\x3a\x21\x29\xcd\xe5\x02\xab\xc3\x3e\xef\xe3\xda\x6f\x7a\x6f\xeb\x88\xf6\x1e\x56\xde\x2a\xee\x6e\x93\x96\x4e\xf5\x47\x4b\x07\x1a\x51\xf2\x3e\x5d\xf4\x8f\x93\x6c\x74\x21\x41\x08\x50\xd5\x13\x9d\x66\x64\x8a\xb9\xdb\xa0\x25\xfd\x21\x92\x5a\x9b\x20\xa9\xf5\x4c\x9d\x8e\xbf\x96\x0f\x1e\x4c\xf1\xf7\x11\x9f\xcb\x05\x41\x4b\xcd\x17\x52\xd0\xee\xe8\xa2\xe3\xa9\xfc\x9a\xfb\x10\xfe\xb6\xec\x65\x75\xa9\x78\x06\x02\x81\xce\x7d\xc5\xdf\xed\x68\xb3\x30\xe4\x61\x78\x34\xd8\x5d\x51\x11\xb4\x84\xbd\xd3\xd2\x2d\xf9\xdf\x3a\x19\x7f\x05\x13\x62\xcf\x4c\x1c\xf7\xff\xef\x51\x67\xe8\xb5\x5a\xa4\xa9\xeb\x67\x55\x97\x62\x40\x3f\x6a\xe9\xe5\x2f\x8a\xc3\xf6\x25\xd1\xb8\xcd\x78\x2a\x6e\x0f\x87\x81\xfe\xe1\xd0\x7e\x8f\xef\x8c\x5a\x9a\x3c\x4f\xc7\xf0\xad\xbf\xf3\xed\x9d\x1f\x3b\x9f\xb3\x91\x14\xdf\x89\x5b\x56\x3c\x51\xd2\x02\x56\x22\x75\xeb\x06\xe1\x73\xf4\x23\xbb\xbc\xce\x24\x1a\xb2\x05\x45\xb7\xe6\xb7\x54\x0f\x5e\x8a\x9f\xf5\xdd\x8d\xfa\x21\x09\x87\xef\xf8\x03\xdd\x27\x3c\xdb\xc0\x50\x30\x9e\xc6\xdf\x46\xe8\x1b\x7b\x8d\x48\xf3\xfb\x19\x4f\x11\x26\xae\xa8\xb6\xb4\x65\x82\x9f\x7c\xe1\x85\x2d\xe1\xbf\x56\xca\xa4\x90\x27\x5f\x79\xa7\x9e\x22\xac\x43\xb6\x32\xaf\x47\xef\xdd\x0d\x44\xbc\x0b\xe8\x53\x4d\x3e\x51\xe7\x84\x3f\xb5\x0e\x83\xff\x61\x96\xe1\x27\x73\xe6\xd8\xb1\xfa\x0d\xe2\xc1\x1f\xbc\x9b\xda\xe8\xa0\x96\x9a\xba\xdb\x48\x3c\x5c\x49\x3c\xbc\x4f\xa2\x81\xc7\x7f\xf2\x2b\xa5\xbc\x41\x98\x0a\x58\xfd\x97\x30\x8c\xfe\x44\xfb\x27\x39\x42\x69\x76\x83\xf0\xa8\x94\xbb\x9c\xf9\xa3\x0b\xe7\x14\xc0\x85\xd4\xd4\x63\x93\xf1\xff\x61\xe4\xcf\x4e\x73\x41\x8e\x9f\xbb\x29\xb9\xb3\x14\xcc\x40\x73\x89\x5b\xe3\xd9\xed\x85\x7b\xbd\x35\x23\xde\x95\x56\x40\xfc\x27\xfd\x8f\x08\xf9\xfd\x44\x98\xfc\xb9\x75\x2f\xf3\x88\xe1\x8f\xad\x27\xa5\x99\x73\xc6\xd4\xed\x56\x3b\x8a\x12\x18\x45\xc9\xa5\x28\x00\x3d\x73\x9b\x27\x3b\xfb\x57\xed\xfa\xd5\xd5\x3a\x48\x8d\x17\xfa\x12\x6c\x10\x01\xdb\x6c\x25\xa8\xaf\xf8\xb2\xd8\x01\x94\xa1\x3a\x61\xa6\x46\x79\x93\x8b\x24\x65\x29\x20\x31\xe8\x9f\x1b\x26\x13\x77\x09\x3d\x09\xb6\x49\x55\xb2\x00\x9a\x52\xff\x65\xfc\x2a\xd8\x16\xe2\xaa\x60\x65\x19\x14\x89\x64\xa6\xa1\x92\xb1\x6b\x96\xc2\x1f\xc8\x5e\x21\x93\x3c\x57\xd7\xa0\xa6\x4f\x03\x99\x6d\x98\x41\xf0\xb8\x11\x79\xb5\xb1\xaf\xdd\x26\x00\x2b\x8d\x46\xe5\x36\xcf\x24\x84\x00\x10\xae\x03\x4c\x48\x61\xfe\x0a\xd6\xcd\x49\xc2\xb4\x6a\x43\x38\x79\x41\x68\xb2\x05\x26\x4d\x0b\x06\xa9\x5e\x4d\x42\x64\x41\x11\xd8\xaa\xd5\x34\x72\x36\xe3\x06\xba\x35\xe6\x6c\xa4\xa4\x3b\x30\xfb\x70\x9d\x14\xce\x6c\x07\x8a\xe6\x19\x1d\x4f\xd9\xd7\x45\x18\x02\x60\x1a\xa5\x42\x2d\x06\x36\x1c\x5a\x2c\xc3\xe2\x01\x33\x3b\xc9\x64\x2a\xbf\xa6\x89\x2a\x58\x3c\x90\xba\x68\xf6\x40\x2e\x60\x53\x71\x3e\x23\x8c\x0a\x23\x5e\x31\x32\xf9\x5a\xce\x26\x0f\xa4\xb1\x76\x78\x1c\x35\x61\x7e\x42\x0e\x77\xbb\x62\xbe\xd7\x9e\xbb\x5d\xb2\xc6\x6b\xa5\x1d\xf5\xa2\x03\xa8\x7c\xfe\x6e\xfd\xe1\x3c\x86\x6e\x7d\xe2\x78\x22\xb3\x1b\x06\x84\x4e\x39\x61\xb4\x1b\x00\x34\x02\x11\x70\x95\x2c\x19\x3e\x3a\xef\x80\xd5\x20\x92\x94\xcd\xc5\x42\x83\x85\x41\xd4\x4c\xc4\x71\x8c\x74\x4b\x6a\x1b\x10\x1a\x46\x4c\xdf\xa0\x45\x6c\xcb\x71\x3f\xba\x06\x8a\x64\xe5\x53\x6b\xb6\x00\x3d\x05\x4b\xa9\x11\x83\x79\x63\xd0\x30\x4f\x66\xc7\xb7\xe2\xc1\x84\x52\xca\x8d\x34\x05\xe6\x35\x3c\x4b\x58\x5c\x99\xaf\xef\x3b\xe3\x52\xf3\xb0\x19\xd7\x9c\xb5\xbc\x81\x74\x78\x2e\x9c\x10\x85\xc8\x3b\xae\x41\x9d\x87\x2d\x3f\x21\x3d\x90\xea\xb4\x29\x88\xad\xd0\x39\x01\x41\x98\x81\x2a\xe1\xda\x6a\x3a\x00\xb8\x23\xfb\x56\x96\x5a\x55\x52\xeb\x38\xbf\xf8\x4a\xb1\x86\x51\xca\xec\xfc\x44\x98\x4c\xc6\xbf\xef\xed\xa5\x81\x33\xf0\xfa\xd7\xf5\xf4\x59\xe9\xa6\x9a\x22\x74\xbe\x20\x10\x78\xab\x2e\x58\x4a\x73\x06\x79\x7c\xe0\x30\x4e\x97\xac\x16\x51\xe9\xa1\x9d\x91\xfd\x56\x8f\xbd\x99\x36\xdf\x0c\xab\xa9\xb0\x3b\x9d\xc6\xe5\xcf\x90\x99\x47\x7b\x53\x40\x4d\x19\xb5\xeb\x9b\x75\x6f\x44\x38\xb6\x9a\x2c\xdf\xa3\xd2\x9f\x71\xa8\xc6\xbb\x6e\x62\x62\x7b\xa8\x2b\x61\xb8\x26\xa5\x14\x5b\x8f\x30\xe2\xde\x38\xcb\x9e\xbe\x76\xde\x9b\x1d\xdd\x39\xd5\xdb\xa5\x9a\xd5\xfc\x5b\x10\x34\xa1\x26\xff\x86\x3a\xfb\xdf\x41\xae\xd0\xe3\xad\xd6\x9c\x1c\x0d\xb7\xaf\x53\xa1\x09\xab\x89\x7f\x43\x2d\x83\x86\x6c\x8e\xbe\x92\xc8\x3b\x96\xbe\x66\x89\x26\xd8\x50\x2d\x5f\xb5\xc7\x2b\x96\x7c\xc4\x42\x8e\xd9\x4c\x0f\x37\xd2\x8e\x07\x27\xbf\xf1\xd4\x6c\xd9\x75\xdc\x23\xfc\xb6\xef\xb7\xd5\x50\x75\x8d\x49\xc9\x9a\x8f\xa1\x1a\x77\x55\x77\x02\x3a\xda\xf2\x3b\xd5\x3a\xc7\x63\x8f\x02\xe3\xee\xa0\x97\x8a\x3a\xb8\xe8\xb7\xf4\x79\xa1\x34\x55\xc0\x44\x42\xfe\x37\x5d\x7d\xb6\x61\xef\x64\xb2\xd9\xf6\x39\x34\xb0\x91\x7b\x7c\x38\x3c\x4d\x24\x1b\x71\x71\x1b\x01\xc0\x5b\x87\xaf\x41\x5d\x59\xf9\xbe\xa8\x4a\x7b\x59\xab\x4f\x62\x1f\x24\xe3\xe9\xe9\xb4\x2a\xcd\x42\xf7\x3e\xa3\x38\x11\xc5\x78\xe3\x72\x80\x4d\xfd\x50\xcf\xa2\xe3\x00\x9c\x81\xd3\xaf\xcb\x4e\x2a\xa2\x8c\x70\xdf\xd7\xd7\xbb\xa0\xad\x47\x2d\x27\x61\x4e\xb8\x37\x21\x02\x50\x6c\x9b\x1b\x04\xea\x31\x5f\x57\x98\x1f\x64\xc5\x22\x8e\x09\xaf\xd5\x8f\xd2\x98\xe9\x53\x46\xdd\x38\xe8\xb0\x6d\xe3\x27\x41\xb6\x27\x9f\xac\x19\x9d\x7f\x45\x26\x8f\xc8\xd9\x17\xe4\xd1\xd9\x82\xec\x18\xfd\x4b\x18\x22\xb0\x22\xf6\x8a\x7d\xe4\xc6\x08\x20\xaa\x98\x15\x63\x5f\x8a\x14\x44\x0a\x7b\x1d\x86\xd1\x0d\x6b\x84\x5c\xbf\x98\x01\x09\xd7\xcd\xbc\x67\x1f\x64\xa7\xfe\x30\x1c\xdc\x30\x72\x09\xcf\xa3\xc1\x8e\x1d\x0e\x37\x2c\x0c\xbf\xfc\x5a\xfd\x3f\x99\xfc\x9e\xde\x30\x4c\xae\x18\xd5\x9a\x1a\x08\x9f\x7a\xb2\x4e\x8a\x27\x22\x65\xd1\xa3\x33\x4c\x6e\x19\xdd\x5f\xb2\x95\x28\xd8\x0b\xbe\xad\x64\xbc\x3f\x71\xac\x8e\xf7\xe6\x6c\x1b\x23\xc1\xbf\x6d\x5e\x40\xc4\x9e\x8f\x3b\x0f\xac\x3a\x4d\x51\x64\x63\x98\x88\xe7\x68\xd9\x0c\x95\x92\x4a\x09\xba\x66\xbb\xad\x12\x08\x11\x01\x8d\x99\xa9\x16\x6d\x93\x52\x32\xb4\xa8\x89\xf7\xc2\x33\x9e\xde\xaf\x87\x4f\x5a\xef\xb4\x3b\xd9\x7e\x76\xa2\x9f\xe8\x32\x07\xa8\x38\xbf\xaf\xc1\x35\xdb\xa5\xe2\x96\x07\xb6\xc7\xea\x47\xb5\x0d\x36\xa2\x2a\x99\x7a\xe0\x0b\xa2\xad\x7e\xc3\x51\xec\x17\xf7\x5c\x1f\xe0\x4e\xf5\x1d\x9e\xde\xb7\xf7\x5a\x1a\xff\xd5\xfd\x37\x01\x1e\xbf\xf4\x03\x4c\x54\xc0\xa9\x2f\xd0\x8f\xef\xfb\x09\xe6\x00\xf0\x8b\xbe\xa1\x26\xaf\x19\xa8\xde\x5d\xf0\x87\xc9\x3c\x67\x94\xd7\xcc\x28\xaf\xa1\x0e\x14\xdb\xb8\xe5\x01\xa5\xeb\x26\x6e\x19\x3c\x6a\x9e\xc0\x52\xb4\x85\xa1\x21\x53\x3c\x38\x3b\xfb\xca\x3a\xe1\xa8\x52\xae\x90\x26\x6a\xad\x65\x6e\xba\xa7\xaf\xd5\xc7\xd9\x0a\x06\x63\xa7\x0c\x76\x82\xba\x17\xa0\xc2\xee\xf0\x59\x07\x4d\x74\xca\x64\x92\xe5\x58\xb1\x97\x44\x26\x8a\x33\xb0\x99\x06\x9c\xd0\x4c\x0b\x22\x2f\x60\x18\x20\x60\x82\xd1\x7d\x63\x38\x8c\x6f\x19\x69\xd9\x63\xe3\xae\x1d\xef\xc8\xfe\xda\x64\x42\xd9\x31\xcc\xe2\xee\x50\x76\x89\x0e\xc5\x82\xde\x42\xaa\xcc\x16\xe1\x3a\x3d\x78\xf7\x25\xc5\x13\x8e\x5e\x79\xc6\xd3\x93\x2f\x68\xba\x38\x7e\x47\x53\x97\x7d\xad\xb6\x5f\xa0\x8d\x8a\xef\xd9\x0c\x48\x01\xb0\x0e\x7a\x5a\xc3\xb1\x9b\x66\x0d\xca\x77\x76\xf6\x15\x1c\x0f\xcc\x24\xf7\xbc\x05\x9f\xd5\x1c\xda\x66\xd1\x25\x0b\x43\x74\x2d\x94\xf4\xc6\x21\x96\x19\x04\xb6\xf7\xec\x70\x10\x03\xda\xf7\xf2\x4c\xd0\xee\xfd\x67\x3c\x0d\xc3\xf7\x0c\xdc\x47\xd5\xc1\x15\xc7\x51\xc1\x9a\x33\x69\xc4\x19\x2d\xf0\xc9\x63\xe9\x7b\x10\x08\x31\x11\x34\xf5\xe4\x72\x70\x56\x87\x03\x45\x36\xd3\xe9\x6e\x69\x66\xdc\x70\x69\x94\xd1\x77\x6a\xa7\x84\x61\x31\xcf\x30\xf9\x39\x12\x58\x9d\x71\x71\x9c\x69\xf1\x2b\x62\x74\xc3\x66\x6d\x07\xbd\xd3\x74\x00\x53\x6a\xc6\xe5\x1d\x40\xe6\x77\x96\x88\x79\xf6\xe8\x0c\xd6\xd1\xed\x3a\x5b\xae\x8d\x25\x44\x2d\xdf\x31\xb9\xb2\x4b\xaf\xd9\x1f\x62\x87\x98\x21\x35\x0e\x33\xa5\xf4\x8a\x85\xe1\x6b\x63\x43\x61\x9d\x35\xa5\x05\xb0\x1a\xa6\xbc\xe3\x59\x98\xad\xa2\xf7\x56\x17\xd0\xed\xb6\xb6\xe4\x0c\x76\x2c\x0c\x0d\xeb\x98\x45\x0c\x66\x82\x08\x46\x0b\x46\xad\xba\x01\x16\x18\x61\xda\x9f\x79\xda\x19\x0b\xbd\x95\xf9\x3d\xe9\x8e\x00\xa0\x62\xca\xd1\x52\x16\xf9\x9f\xc1\x33\x79\x94\x40\x9e\x5e\xf5\x6b\xc3\x64\xf2\x67\xb6\xc3\xea\xb7\x29\x10\x86\xb6\x80\x3e\x66\x8e\x96\xeb\xa4\x08\xc3\xc9\xd7\xfa\x97\x3d\x68\x3a\x2f\x34\x75\x13\x30\x1c\xf4\xe0\xda\x07\x7d\x42\x81\x2d\x52\x1f\xf5\xf6\xc4\x8c\x7a\x64\x2e\x0d\x99\x1b\x07\x4c\x0d\x3c\x75\x7a\x1e\xf0\x4c\x9d\xff\xb7\x3e\x69\xde\xb2\x91\x27\x8d\x18\x3a\xc5\x16\x5d\xfd\xe7\x48\x62\x1c\x9b\x90\x14\xe3\x8a\x99\xcd\xb4\x04\x0e\x8e\x9f\x59\x3c\xcf\x88\x5c\xd4\x35\x79\x69\xe6\xe5\xda\xfc\xfd\xa9\xab\x06\xfa\xc0\xac\x6d\x81\x3e\x83\x5c\x5a\x7d\x16\xb7\x97\x4c\x9b\xdc\xbe\x1c\x23\x0b\xcc\xfe\x3a\xf2\x0c\x37\x78\xfa\x92\xf9\xd7\xc4\x38\x13\x4a\x5f\xfd\x7f\x01\x2d\x5d\xb3\xd9\x4f\xea\x9f\x3d\x47\xc7\x3f\x31\x3a\x67\x8b\xf8\x9a\x51\xcf\x70\xf4\xca\x28\xa7\xae\x99\x3d\x3f\x5e\xab\xc3\xd5\x4f\x60\xa6\xfd\x49\x5d\xe9\xcf\xf9\xa0\xe1\x45\x71\xa3\x6d\x72\xd1\x22\x6c\x38\xc4\x1f\x58\x24\xe7\x6c\xe1\xf7\xe2\x69\x3b\xe7\x2a\x60\x92\x37\xd1\x41\xac\x13\xb5\xa3\x61\x5b\xbc\xa8\x1e\xc8\x72\xa8\x7a\xf4\x4d\x7b\x43\x7d\xc1\xdc\x22\xfa\xa6\x71\x16\x57\x6b\x5c\x15\x1c\xfb\x79\xf2\x4c\x0f\xea\x55\xc6\x93\x3c\xdf\xed\xa1\x26\x62\x4d\x95\xd7\xc6\x48\x35\xa0\xf4\x27\x88\x03\x50\x4d\x12\x35\x1e\xc6\x8a\xff\x9c\xd1\xfd\x52\xe4\xa2\x88\x07\x63\x02\xe2\x88\xf9\xab\x0e\x42\xea\x37\xb2\x17\x0f\x80\x0a\x91\xba\xc7\x36\x49\x96\xab\x1f\x1b\xc1\xe5\x5a\xfd\xd0\xe1\x3f\xea\xd7\x36\x29\xcb\x5b\x51\xa4\x10\xf2\x97\xf0\x2b\xa8\xa4\x64\x49\xb1\x84\x82\x92\xe5\xfa\xcf\x07\x09\x7f\x4d\x2b\x55\x01\xb7\x6f\x19\xbb\x6e\x87\x03\x7e\xc7\x3c\x5f\x8b\x30\x54\x07\xb2\x94\x69\x73\x48\xf3\xbb\x6d\x60\xb0\x51\x20\xce\x86\x2c\x67\x83\xc1\x73\x36\xd7\x54\xb4\x88\x5b\x16\x64\xe9\x59\xff\x3c\x99\x40\x1b\xa3\xe1\xd8\x79\x38\xb0\x51\x59\x2c\x8d\x72\xfc\x70\xd0\x07\x04\x3c\x5a\x8a\xa2\x60\xe5\x56\xf0\x34\xe3\x57\x3f\x94\x56\x7b\x0e\xb1\x16\xec\xd4\x53\x4c\x1e\xe9\x84\x6c\x22\x65\x4a\x54\x98\xf9\xe6\x54\xdf\xd6\xf9\xbd\x5d\x48\x83\xbf\xb4\x33\xba\x48\x1a\x31\x8a\x04\x47\x43\x86\xbd\xb3\x8e\x0f\xc9\x16\xc9\xbb\x35\xfb\x78\x54\x32\xf9\x8d\x94\x45\x76\x59\x49\x45\x3e\x48\xbf\x3c\x45\x98\xc8\xde\x00\x7b\x20\x7b\xe2\x8d\xd5\x8f\xfe\xb4\xc0\xb8\x4e\xbd\x81\xb3\xf3\xa2\xa4\xa7\xc6\x92\xdf\x9e\xa5\x30\x8c\xd0\x72\xcd\x96\xd7\x97\xe2\x03\x32\x61\x55\x45\x92\x66\x02\x2e\xbc\x45\xf2\x77\xa3\x10\xbb\x80\xcd\xf8\x7d\x91\x2c\xaf\x59\x71\x38\x44\x9d\x3b\x3d\xf0\x85\xd0\xc9\x99\x6e\x85\xa5\x28\x36\x1b\x3c\x71\x60\x3b\x57\x4c\x7a\xba\xd3\xa7\xac\x5c\x16\xd9\x56\xaa\xc5\xdf\xd2\xb9\x34\xca\x35\x89\x09\x84\x47\x31\x93\x21\x7f\xd0\xe3\x6f\xd2\xca\xcc\xdf\x72\x33\xe8\x1b\x59\xae\x3a\x71\xea\x51\xc9\xa4\x15\x14\xa1\x1c\xc9\x28\xdc\xec\x40\x0e\xeb\xc6\x9a\x24\x11\x44\x92\xbd\x83\xbf\x81\xc4\xf7\x6a\xb3\xef\xd3\x9f\x08\x0f\xa9\xbd\x26\x25\xeb\x44\x9a\xc0\xa7\x92\xcc\x83\xf9\x60\x90\xad\xed\x8e\x76\x19\xaf\x36\x26\xdd\x3e\x1f\x35\x17\x35\x26\xfb\x2b\x66\xe2\x2d\x8e\xfb\x51\x40\xe3\x9d\xa7\xae\x07\x5a\x1f\x08\xf3\x9c\xf1\x2b\xff\xf5\x2e\x0d\x00\x17\x37\x06\x21\x35\x47\x75\xad\x36\xc5\x96\xb9\xd5\xad\x2b\xd6\x5d\x57\x9d\xca\x34\x8c\x5b\x93\xb8\xc5\x00\x4d\x8e\xec\x67\x44\x9a\x16\xa6\x0d\x58\x75\x54\x18\x92\x63\x23\x43\x73\x33\x24\x8b\x8a\xa1\x18\xad\x92\xbc\x64\x28\xb6\x09\xbf\x95\xa8\x57\x60\x9d\x54\x2c\x02\x5c\x32\x93\x76\x07\x93\xc1\x58\xeb\x7d\x7e\x66\xb4\x18\xfd\x72\x6f\x74\xf2\x17\x46\x1f\xfe\x57\x34\xfa\x1d\x9e\x9f\x9f\x9f\x3f\x5c\x3c\x24\xdf\xb2\xfb\x22\xa6\xfc\x81\xd1\x6f\xd9\x3d\x30\x53\x3e\x39\x51\xae\x83\x9a\xf2\xa7\x13\xc5\x8e\x70\x53\xfe\xe3\x44\xc1\x3e\xe4\x94\xff\x3c\xd5\x76\x17\x3b\xe5\xcf\xa7\x0b\xb6\xd1\x53\xfe\x78\xa2\x60\x17\x3f\x85\xc9\x93\xe5\x7a\x11\x54\xe4\x89\xf2\x7d\x18\x2a\xfc\x44\xd9\x23\x14\x95\xe2\x44\xc1\x16\x8e\x8a\x38\x51\xa8\x85\xa4\x92\xf5\x73\xfa\x8f\x42\xa9\x24\xd2\xd3\x97\x36\x81\x3b\x3d\x58\x0b\xa7\x43\x62\x19\xcd\x64\x18\xb2\x79\x26\x17\x87\x03\xeb\x06\xc5\x76\x3d\x86\x2a\xe9\xb9\x5f\x75\xb3\x5c\x65\xab\xa8\xef\x33\x1a\xa1\x09\x14\xdd\x79\x02\x3e\x84\x6a\x2b\xe7\xf0\xd7\xbd\x6b\x82\x98\xfb\xde\xec\x9c\x37\x02\x66\xa5\x6d\xd4\x8e\x24\x41\x20\xc8\x07\x7f\x62\xf6\xb1\x8d\x8f\x32\x0f\x3e\x71\x0f\xde\xe8\x05\xa2\x6f\xff\x67\x73\xdb\xd2\xae\x7e\xf0\x1f\xee\x41\x13\x5d\x65\x1e\x71\xd7\x05\x1b\x6b\x85\x6a\xf5\x15\xc7\x71\xb4\xd8\x76\xbe\x1b\x70\xfd\x47\xe6\x7d\x85\x22\x70\x17\x9b\x66\xda\xf8\xf3\x51\x01\x1b\xdf\x66\x0a\x48\x19\x5b\x86\xa9\x23\xd4\x9c\xec\xa1\x4e\x8d\xfe\x68\x4b\x33\xda\x08\x91\xce\x3c\x44\x08\x28\x65\x86\x9e\xbb\x60\xb8\x08\x70\xc5\x30\x8a\xbd\x7b\x48\x9f\x50\x83\xc2\x1d\x74\x14\x31\x68\x2f\x41\xfd\x44\xc8\x18\x4e\x1b\x13\x90\x30\x4c\xec\xdb\x8c\x8d\xfc\xd0\x37\xec\xbd\xdb\x3a\x81\x79\x96\x5b\xd9\x88\x0d\x08\x4d\x53\xb1\x77\xae\x98\xda\xe9\x4b\x0f\xde\x23\x1d\xad\xfe\x99\xfe\xf3\x58\xff\xf9\x42\xff\x99\x8c\xf5\xdf\xaf\x62\xbd\x53\x20\x74\xe4\x95\x68\x1d\xc0\x2f\x52\x76\x59\x5d\x41\xa8\x10\x04\x03\xeb\xeb\x77\x80\x86\x41\x32\xea\x7d\x23\x37\x66\xf7\x30\x8c\xb8\xba\x5f\xe8\xfb\x6a\xeb\xc9\x48\x46\x11\x22\x62\x96\x51\x14\x44\x89\x0c\xd0\x50\x8c\x14\x1d\x81\x44\x6c\x83\x4f\xfe\xc2\x08\x42\x18\x92\xc0\x88\x51\x9e\x71\xf6\x0a\x24\x75\x18\x68\x1d\x3f\x8b\x82\x48\x0b\x89\x90\x11\x14\xb0\xdc\x30\xc2\x84\x53\x74\xce\x83\x20\xd0\xf9\x7d\xa3\xe2\x70\x40\x3f\x18\xc3\x19\x1e\x66\xb5\x1c\x82\x69\xba\xeb\x27\xd7\x98\x5a\x61\x13\xcb\x25\x7d\xf8\x5f\xf3\xf8\x9b\x07\xff\x79\x91\x3c\xf8\xf9\xbc\x1a\x8f\x9f\x8c\x1f\xa8\x3f\x4f\x1f\xc3\xff\x5f\xc2\xc5\x73\xb8\x78\x0e\x17\x67\xcf\x9f\x9f\x57\xe3\x47\x5f\x40\xb1\x47\x5f\x3c\x85\xff\x9f\x3f\x38\xaf\x26\xcf\xd5\x93\xb3\xf1\xf8\xc9\x03\xf8\xf3\x54\xfd\x0f\xc5\xce\x26\x5f\xaa\x27\x4f\xc6\x70\xf1\xfc\xd9\xf3\xf3\xea\xd1\x78\x3c\x79\x70\x5e\x3d\xfd\x42\xbd\xf3\xfc\x2b\x78\xf2\xfc\xe9\x13\x75\xf1\xf4\x39\x5c\x3c\x7f\xfe\x74\xf1\x3f\xb5\x63\xe7\x0f\x46\xe3\x07\x5f\xa9\xa6\xbf\xfd\x42\x35\x33\xd6\x6d\x3e\x86\x66\x1e\x3d\x87\x66\x3e\x1b\x2f\x7e\xf7\xc9\x43\xb2\x94\x1f\x45\x60\x59\x01\x5c\x4e\x2a\x5b\xbe\x47\x5b\xe9\xc7\x55\x6b\x20\xe8\xe5\x92\x6d\x65\xf9\xad\x86\x86\x28\xe9\x99\x16\xca\x1f\xe9\x3f\x9f\xa9\x3f\xda\xd6\x97\xd8\x93\x83\x22\x34\x5a\xf4\xdc\x2c\xb7\x60\x42\xd2\x4f\x36\x55\x29\x7f\x28\x9d\x98\x48\x39\x71\xa0\x40\xea\x1a\x2a\x61\x0d\x22\x34\xd5\x94\xb3\x86\xfe\x22\x1b\x68\x18\xa4\xea\x28\x59\x88\xaa\xcc\x77\xef\x98\x7c\xc1\x39\x2b\xfe\xf8\xfe\xe5\x77\x81\x59\x5a\x20\x3e\xd9\x8b\x27\x5a\xf8\x0a\x32\x57\xaa\xac\xb6\xa0\x12\x32\x2a\xbc\x67\x69\x06\x81\x7f\x3f\xea\x98\x25\xf7\xf8\x8f\xbb\x54\xeb\xdf\xdd\x03\xb9\xcb\x99\xaf\xfb\xee\x05\x69\x5f\x4b\x30\xbe\xb2\x5b\x3d\xac\x63\x32\x98\x10\x66\x82\xb0\x31\x99\xcf\x91\x1e\xda\x27\xeb\xa4\x28\x99\x44\xc4\x5c\x3f\x58\x9a\x1b\x0b\x32\x47\xcb\x3c\x29\x4b\x35\x16\x80\x3b\x9a\x94\x25\xdc\x5d\xcb\x4d\xfe\x1c\x30\x47\x57\x6a\x6f\x84\x3b\x72\xfb\xec\xef\x55\x76\x83\x08\xfc\x7e\xc0\xe0\x62\xb1\xe8\xed\x99\xe1\xd3\xf3\xf1\x62\xba\x96\x73\xe9\x3a\x29\xc9\x04\x3a\x39\x9f\x2c\x9a\x7e\xa2\x65\x7b\x74\x10\x41\x69\x91\x5c\x5d\x99\xdf\xe5\x96\xe5\x39\x0c\x2d\x22\xe6\x24\xd5\xdf\x68\x67\x38\xce\xa0\xa5\xae\x0f\xa0\x6b\x34\xa9\xa4\x78\xcb\x6e\x58\x51\xaa\x46\xd8\x07\xed\xdc\xfc\x96\x69\x6c\xa0\xf2\xad\xfa\x3e\xf0\x13\x45\x2b\xb1\xac\x4a\xd3\x19\x35\x5d\xac\xb8\x61\xdf\xe4\xdb\x75\xf2\x4b\xfa\xe1\x5a\x46\x49\x9e\x8b\xdb\xe7\x55\x9e\xbf\x5b\x16\x8c\xf1\x20\x29\x77\x7c\x19\xa8\xee\x3c\x57\x0d\xc1\xaf\x37\xe0\xcd\x25\xb8\x2c\x44\x5e\x5a\xf2\x0a\x20\xb1\x7a\x60\x5d\xd9\x83\x95\x28\x36\xaf\x04\x84\xa1\x26\x92\x05\xeb\x2c\x4d\x19\x0f\x72\x21\xb6\x01\x17\x2f\x45\x5a\xe5\x2c\xe0\xcd\x73\xb1\x65\x1c\xdc\xb6\xca\x17\x5c\x31\xe4\xa0\x60\x49\xfa\x9a\xe7\xbb\xa0\x30\xdf\x1a\x14\x7a\x3c\xd2\xa0\x5c\x8a\x2d\x78\x70\x25\x9b\x9c\x95\x65\x90\x49\xb6\x79\xa7\xee\xfd\x52\x9a\x7c\x74\xf7\x24\xd8\x23\x32\x41\x9b\x2a\x97\xd9\x16\xc6\x78\x53\x49\xb8\xa5\xdd\xef\x59\x7a\xbf\x61\x7e\x44\x06\x63\x9f\xfa\xad\xa7\xaf\xa2\x26\x71\xcb\x73\x91\xdc\xb3\xa2\xcf\x3a\xcb\x08\x2d\x05\xc0\xf6\x16\xe2\x56\xfd\x29\xb3\x9f\x35\x55\x26\xfc\x7e\xf5\x3d\xee\xd6\x57\x88\xdb\x77\xea\x6d\x82\xb4\x49\xe5\x5e\xb5\x7c\x7e\xc7\x40\x6a\x78\x57\x49\x1f\xce\xcf\x1f\xc4\x8b\x68\x9e\x3c\xf8\x79\x81\x1f\x5e\x35\x5c\xf7\x46\xb6\x1c\xd0\x27\x8b\x91\x14\x3f\x6c\xb7\xb6\x9e\x46\x1c\xd9\xc8\xae\xa1\x68\x7d\x04\x28\x2d\xf1\x0c\xd6\xb4\xd6\x8d\x5b\x85\x9f\x98\x01\xd6\x13\xb0\xd2\x78\xa0\xe4\x86\x33\x2f\xaa\x28\x42\x5a\xbd\x32\x1f\x2f\x0e\x07\xf4\xda\xfe\x06\x65\x8c\x16\x9f\xe7\x13\xf5\xe4\x95\xfd\x8d\x31\x3e\x1c\xa2\x63\xeb\x95\x07\x10\x04\x91\x6c\xc7\x2e\xc6\xb2\x0d\x90\xdd\x7a\x4d\x1f\x7c\xc7\x60\xfa\x01\x79\xc6\x9d\xc4\x6d\xf8\x8b\xa9\xc3\x68\xfa\x9d\x80\xaf\xcd\x7c\x25\x9c\x4d\x3c\x43\x9f\x36\xfe\x19\x4c\x23\x7b\x1b\x64\x26\xd3\xd8\x6c\xc0\xbb\xfb\x5b\x0c\x76\xbd\x07\x4a\x0c\xd5\xca\x3e\x7f\x46\x8d\x63\xe0\x98\x7c\x8e\x71\x18\xa2\xa4\xc8\x74\x49\x86\x7b\x8c\x8a\xee\xf3\x1a\x5d\x41\xb6\x8a\x8a\x76\x6a\x58\xd3\x11\x2b\x96\x9b\xef\xb6\x52\xa5\x29\x2a\xa7\x46\xbc\xb4\xaf\xaa\xe1\xd4\xf7\x3e\xb7\x02\x70\x56\xbe\x4a\x5e\x59\x6b\x4f\xf0\xb8\x7b\xfb\x70\x98\xfc\xde\x26\x4e\x18\x4c\x6a\xc0\x84\x12\x3a\xcb\x32\x37\x18\x19\x85\x3e\xfe\x80\x1b\xe0\xb1\x0f\xcc\x60\xb0\x34\x41\x70\xa9\x24\x0c\x1f\x0e\xee\x7a\xa5\xae\xc3\x30\xca\xe5\x48\x32\x10\x98\x67\x29\x2c\x8e\xc1\x38\x8e\x56\xe6\x17\x19\x4c\x30\xae\x41\x0d\x66\x29\x84\xcf\x6c\x3e\x95\x46\xe7\x28\x71\xcc\xda\x5a\x48\x49\x00\xc7\x05\xc7\xa2\x2b\x31\xcc\xd8\x5c\xb4\xc4\x85\x45\x03\x76\xfe\x68\x60\x89\x3d\x0c\x11\x8a\x79\x1c\x49\x2a\xda\xc2\x08\x29\xba\x77\x40\x3c\x21\x77\xf7\x2e\xe2\xf4\x91\x86\x53\x10\x36\x28\x49\x89\x40\x22\x0c\x07\x63\x0d\x38\x85\x62\xd5\x61\x52\xcc\xda\x1f\xf2\xea\x1d\x44\x4e\xf2\x9e\x0f\xe4\x18\xfb\xaa\xa8\x4b\xe0\x06\x6d\x8a\xb7\xb6\x2d\x47\xcc\x2d\x70\xad\x16\xa2\xd6\x31\x06\x57\xb3\x0c\x63\x77\x86\x6d\x93\x2b\x42\x9e\xed\xe2\x4a\xb6\x32\xa8\x58\x9d\x55\xe3\x46\xb4\xaf\x89\x24\xfb\xb6\x50\x65\x5c\x64\x89\x2f\x77\xd9\x7b\x37\xfe\x85\xa9\xcd\x98\x40\xf9\x8c\xc7\x6c\x74\x71\x5b\x24\x8a\xdd\xfd\x7f\xdc\xfd\x0b\x73\xdb\xb6\x12\x3f\x0c\x7f\x15\x8b\xd3\xe1\x00\xaf\x61\x55\xb2\x93\x34\xa5\x82\x68\xd2\x5c\x4e\x73\x9a\x8b\x1b\x3b\x4d\x5b\xff\x3d\x19\x5a\x82\x6c\x34\x34\xa0\x82\xa0\x1d\xd7\xd2\x77\x7f\x07\x8b\x0b\x01\x8a\x72\x92\x73\xce\x33\xcf\x7f\x9e\x4c\xc6\x22\x01\x10\xf7\xcb\xee\x62\xf7\xb7\x80\x98\x38\x74\x50\xe4\x2e\xe3\x75\xd4\x33\xd7\x49\xcd\x9c\x39\xe9\x30\x2e\xd2\x74\x7f\x1a\x42\x94\xf3\xec\x1d\x1a\x32\x0d\x4f\x6d\x52\x57\xd8\x44\xd0\x33\xed\x91\x41\xac\x4c\x6e\xaa\xfd\x6d\x2f\x26\x9d\x9a\xd2\xdb\xb4\xaa\x85\x22\x2e\xc0\x36\xdf\x62\xc4\x29\x59\x81\xae\x46\x22\xd4\xf6\xb6\xbe\xad\x64\x1b\x42\xa6\x9d\xaa\x16\x49\x55\xa2\x31\x7a\xeb\x7a\xc2\xc6\x23\xdd\x7e\x82\xf3\x1c\x4e\x89\xf6\xec\xd6\x66\xed\x45\x88\x9c\xee\x53\x97\x85\x93\x5f\x9e\x69\xa4\xbd\x10\x52\xb9\xda\xb4\x1b\x94\xc0\x7e\xae\x51\x4a\xd5\x14\xc1\x54\x37\x2b\x0b\xb8\x6b\xf8\x6c\xb5\x72\x0f\x26\x35\xa8\x4a\xc2\x1b\x85\xd5\x5b\x84\x38\x78\xef\x46\x07\xe4\x91\xac\x6e\xce\x2e\x39\x08\x2c\x0c\x63\x09\xee\x9c\xe0\x05\xc7\xe0\x3e\x9b\x0b\xd3\xd1\x9d\x78\xb2\x71\x1a\xfa\x98\xe9\x31\x34\xd7\x5e\x18\x0a\x5c\x6c\x26\x8c\x27\x4d\x86\xf3\x3c\xfe\x00\x7a\x27\x4e\x80\xbd\xf1\x72\xe8\x77\x0f\x4b\xd6\x9d\x52\xd0\xd6\x34\x88\x0e\x06\xdd\x54\xd1\xf8\x1c\xe9\x08\x17\x6a\x6b\x7b\x56\xab\x2f\xb5\xc0\xdb\xb7\xb6\x63\x39\x08\xfd\x3b\xa0\x54\xe5\xb9\xeb\xdf\x01\x74\x76\x84\x6f\x73\x65\x95\x73\xdd\xd9\xe4\xa7\x85\x1b\x82\x89\x06\xd9\x7b\xff\x9a\xb5\x2b\x4e\xac\x56\x3a\x9e\x18\x61\xb0\xb5\xd5\x87\x6e\x6b\x49\xf5\x1a\x04\x3e\x08\x60\xeb\xed\xcd\x10\x62\x0e\xf6\x22\x8b\x52\x87\x9e\xeb\x86\xf4\x24\x19\xdc\xbd\xa1\x10\x28\x51\xb4\x05\xc5\x37\xaf\xc7\xa1\xf3\xa3\x09\x0f\x9e\x49\x00\x9c\xc6\xbb\x8f\x19\x96\x33\xd0\xa3\xb5\x02\x70\x2b\xe9\x74\xc7\x9a\x39\x37\x92\x26\x7e\xa1\xb7\x8a\x34\x79\xbc\x42\xba\xd9\x08\x8c\xd7\xc0\x23\x0a\xbd\x77\xc1\xf8\xf9\x85\xde\x29\x2b\x7e\x0e\x70\x1c\x7b\x67\x65\xcd\x80\x6d\x28\x55\x79\xc6\x67\x7b\x86\xfb\xd8\xf1\x81\x7b\xf5\x05\x5f\xe8\x9d\x59\xb9\xf4\x1f\xce\x2a\xbe\xdc\x5b\x96\xfa\xc2\x3e\x29\xc3\x8c\xc0\x7d\xef\x1e\x17\x9a\xa9\xa5\xc3\x19\xe9\x0b\xdb\xb3\x30\xf0\xb5\x8b\x73\x12\x76\xf7\x66\x25\x7f\x86\x47\x9e\xcb\x4b\x2e\xca\xb8\x66\x4c\x18\xc6\x68\xef\xac\x9c\x7d\x3a\x57\xb2\x11\xf3\x9d\x05\xaf\xaa\x3d\xb9\x2c\x67\x5c\xdf\xd8\x17\xa8\xc8\xa2\x92\x72\xbe\x07\x19\xba\xe7\x90\x46\x0a\xbd\xb7\x28\x2f\x79\xe5\x9e\x0d\xb9\xdf\x3e\xed\x95\xf3\xbf\x9a\x5a\xbb\x00\xad\x98\x9e\x5d\xf8\x97\x9b\xca\x25\xf4\x60\x2a\xf0\x72\x6d\xbb\xe3\xbc\xba\x59\x5e\xec\x99\xe9\xe0\x1e\xa5\xe2\x4c\x68\xdb\xde\x0b\xa9\xf8\x3f\x52\xe8\xb2\xea\x89\xbc\x62\x4a\xf3\x59\x59\xed\x40\xaa\xbd\x72\x7e\xb5\xf7\xd9\x3d\x5b\x6c\xfd\xbd\xcf\x3b\xfc\xb2\x3c\x67\x51\xd7\x54\x4c\x6b\xa6\xf6\x0c\xbd\x01\xaf\xa6\x0a\x5c\x9c\xbb\x16\x5f\x96\xea\x13\x53\x7b\x4c\xcc\xfd\xe3\x25\x0f\x8f\x56\xb5\x50\x5e\x31\x05\xe3\xea\x55\x44\xda\x10\x7d\xc1\x67\x9f\x84\x61\x0a\x97\x25\x17\x7a\x4f\xaa\x39\x53\x3b\xcb\x52\xc8\x9a\xed\x8d\x77\x96\x12\xc6\xd2\x82\x4b\xd4\x3b\xa1\x4e\x30\xc4\x42\xef\xd4\x17\xe5\x32\xae\x6a\xad\xe5\xd2\xd5\x0b\x1e\xfd\x40\x18\x02\xe3\x13\x73\x96\x4c\x6d\x35\xd2\xe0\xb6\x2e\xb5\x56\xf2\x13\xdb\x9b\x97\xf5\x45\xa9\x54\x79\x13\x07\xc8\xc5\xa2\x66\xda\x87\x98\x46\xcc\xca\x65\xfc\xfa\x97\xe4\xc2\xbf\x5f\x72\x6d\x1a\x7a\xc9\xc3\x07\x51\x8d\xcc\xeb\x35\x9f\xeb\x8b\x1d\xcd\x3e\xeb\xbd\x52\xcc\x2e\xa4\xb2\xcf\x73\x36\x93\x56\x86\x63\xdf\xdb\x16\x1a\xea\xa8\xd3\x99\x6d\x50\xdb\x82\x46\xf0\x99\x9c\xb3\xbd\x33\x3e\xe7\xe1\x05\x14\x19\xcc\x9b\xae\xf7\x96\xa6\x57\x2f\x77\xae\xf6\xca\x6a\x79\x51\x9e\x31\xcd\x67\x3b\x57\x7b\x17\xa5\x38\x37\xa5\x5c\xed\xf1\x39\x93\xe0\xa6\x01\xc2\x2f\x4b\x7d\xc1\x2e\x4b\x3b\x75\xae\xd8\x4c\x4b\xb5\xc7\x16\x0b\x36\xd3\x3b\x66\x46\xc1\x3c\xba\xb1\x8f\x61\x1a\xc5\x6f\x37\x3b\xd7\x52\xcd\xc3\x14\xba\x56\x60\x9b\xb5\x77\x29\xe7\x6c\xe7\xf3\x65\x25\xea\xe2\x73\xc5\xc5\xa7\x9d\xcf\x6e\xc1\x7f\x51\x30\xd0\x8a\xee\xad\x80\xf8\x46\x93\x2b\x8d\xfb\xc5\x43\xad\xb0\x04\x0a\x29\xca\x99\x6e\x4a\xcd\x76\xdc\x9b\x9a\x29\x59\xf9\xb7\x0b\xc5\x16\xee\x31\x0a\xad\x2f\xe4\xb5\x7b\xd4\x5c\x87\x60\x73\x52\xfd\x6f\x6b\x0a\xc2\xb0\xe2\xfb\xef\xaf\xaf\xaf\x87\xd7\x07\x00\x66\x35\xfe\xf1\xc7\x1f\xbf\x87\xf2\x32\xcb\xf0\x7f\xbe\xac\x0a\xb3\x49\x65\x04\x1e\xab\x52\x9c\xbb\x47\xe0\x08\xb6\x08\x00\xfe\xdb\x6a\xfc\xfe\xfa\x95\xa9\xca\xc3\xef\x85\x67\x3d\xa0\x3a\x17\x7a\xa8\xcb\xb3\x97\x62\xce\x3e\xfb\x5c\x32\x1f\x90\xd9\xec\xcc\x3b\xb7\xef\x22\xe0\xf3\x1e\x6a\x7a\x6b\x0d\xf5\xbe\x52\x71\x18\xd2\x76\xb4\x85\x21\xec\x6e\x15\x61\x6b\x0b\x38\xab\xf8\xec\xd3\x0e\x48\xde\x76\x40\x93\x23\xd6\x14\x6e\x96\x3b\x56\x36\x14\x6c\x1b\x53\x35\xe1\x56\xf0\xf1\x5a\xa7\x9a\x50\x08\x2c\x01\x5a\x05\xb5\x43\x50\xa6\x13\xe7\xcc\x9a\x65\x61\x6c\x45\xc1\x99\xcb\x95\x7c\x04\x3b\x83\x7f\x10\xc3\x0e\x34\xe1\x93\x53\x57\xfb\x4b\x77\x15\xd0\x80\xa9\x7a\x93\x98\x54\x7d\xf4\x17\x88\x7f\x30\xf4\x02\x31\x1c\x7c\x20\xc7\x2a\x62\x3a\x68\x5c\xf9\x52\x69\x74\xd7\x68\x85\xd2\xcf\x74\xa2\xa5\xf5\x54\x23\x7c\xfb\x49\xe7\x39\xfa\xa4\x41\x5f\x78\x76\x01\xea\xbe\x28\x93\xc2\xf3\xab\xbe\x05\xef\x34\x36\x95\x75\xf5\x8e\x75\xc0\xa0\x72\x8e\xdc\x03\x6a\x2a\x66\x75\xf3\xfc\xa3\x46\x7f\x19\x6e\xfa\x25\x43\x9f\x35\x61\xf4\xb5\x79\x27\x8c\x80\xb6\x52\xcc\x4e\x3e\x69\x49\x1a\x18\x2f\xc8\x6c\x8a\x4c\x25\xa1\x9b\x08\xfa\xa4\xa9\xc6\x86\x15\xfe\x42\x45\xb1\x9d\x03\x4e\x47\xd7\x64\x10\xc1\x37\xf8\xbe\xcc\xba\x43\xef\xee\x81\xad\xd2\x77\xfb\x12\xb4\x7d\x7d\x57\xda\x06\x45\xa8\x0e\x71\xcf\x03\x86\x49\x27\x75\x9c\xf8\x55\x94\x38\xc1\x08\xe9\x19\x33\xfb\xe9\x6f\x79\x8e\x9e\x69\xfa\x2b\xf3\x1f\x18\xd2\x73\xd0\x6b\x14\xb2\x5a\xfd\xf8\xa8\xdf\x5a\xc4\x2e\xbd\xf7\x3a\x51\xf2\x3e\xd4\xe4\x23\xaf\x41\xa5\x12\x7a\xf3\xc8\xfb\xd1\x2a\x9e\xe9\xaf\x54\xff\xd6\xd3\x17\x48\xe3\xc2\xd9\xb4\xf0\x16\xe0\xd2\x3d\x34\x54\x46\x0a\x6f\x72\x9b\xc2\x5b\x3b\x1c\x80\xef\x1c\xe3\xa7\x34\x79\x9e\x19\xb2\x2d\x0b\x52\xc1\x29\xa7\x6f\x74\xf1\x8a\x21\x89\xa7\xcf\xf4\x94\xd3\x57\xba\x40\x9c\xbe\xd4\xa4\xa4\x4f\x34\x2e\x50\x5c\x68\xa2\xc1\xd5\xdc\xad\xc1\x25\x37\x98\x5d\x27\x3a\x81\x6b\xc6\x17\x1a\x13\x6e\x35\xae\x61\x08\xc3\x22\x7c\xad\x11\x87\x3e\x99\x94\x79\x5e\x22\x46\x24\xd1\x98\xc4\x33\x10\x31\x2a\x53\xca\x1a\x1b\x4a\xbd\x65\xba\xf3\x3c\xa2\xe2\xbd\x38\xe8\x58\x23\x49\x7c\x38\x91\x8e\xbb\x59\xaf\xc9\xaf\x3a\x36\x43\xba\xe2\xec\xba\x70\x7a\x43\xba\xe4\x95\x37\x49\xfa\xa0\xe9\xed\x93\x4a\x17\x99\xd5\x08\xce\xc8\x53\x5b\x5c\x91\x39\x6d\xe1\x8c\xbc\x66\xba\x2c\x32\xa7\x48\x9c\x91\x23\x43\x7b\x17\x19\x90\xe0\x26\x20\xda\xff\xfe\xd6\x1d\xa7\xba\xb1\xe9\x62\xd0\x27\x3e\x67\x66\xb6\xf1\x05\x77\xad\x9c\x6e\x06\x21\x86\x8b\xc1\x00\x31\xfa\x01\x54\xf2\xf2\x7c\x30\x00\xfc\xea\x56\xbf\x49\xb7\x5a\x55\x7f\xdb\x5d\xeb\x1f\x4d\x47\xe4\x37\xf3\xe7\x27\x70\x1e\xfb\x2f\xf8\xfb\x9d\xa6\xbf\xea\xd0\x0b\x35\xdc\x81\xfc\x6e\x3b\xc2\xbe\xfc\xe1\xec\xe7\xc0\x51\xdb\xef\xf1\x8b\x8b\x59\x96\xe7\xec\xf7\xf6\xd1\xa7\xb7\xbd\xe3\x72\x72\x7d\x61\xdf\x6c\x4f\xda\x67\xd7\x6b\xf6\xa5\xdb\xca\xe2\x0f\x4d\x2c\x30\x90\x37\xe8\x33\xcf\xce\xa0\x4f\xb1\xaa\xd4\x6c\xde\xb5\x09\x8c\x8d\xf8\x92\x24\xc0\x97\x2e\x94\xbc\x8c\xb8\xb8\x48\xa1\x73\x6a\x16\x93\x87\x0f\x4d\x12\xe2\x35\xb9\x94\x57\xf0\xf8\x7b\x52\x8e\x59\x6e\x21\x06\x2c\x43\x5a\x6d\x93\x10\xee\x94\xca\xfe\x09\xe3\xfb\x8f\x21\x22\x5c\x3f\x93\x9f\xf4\xd4\x5a\xaf\x98\xf4\x4e\x3b\xd2\xaa\x83\xba\x14\x7b\xba\x18\x15\xe8\x27\xf0\xab\x3c\x8a\x6a\xf2\xc7\xd6\x9a\xfc\xb1\xa5\x26\x7f\xb8\x9a\xfc\x16\x6a\xf2\x5b\x5b\x93\x3f\xc8\xbf\xbe\x50\x93\x3f\x6c\x4d\xfe\xe5\x6b\xb2\xc6\xe4\xdf\x9a\x7e\xd7\x4e\x1d\xc7\x69\xbc\x74\x36\x91\x40\x97\xdb\x47\x4b\x91\xba\x19\xa2\x58\x5d\x37\x2a\xd8\x78\x8a\x73\xeb\xa2\xec\x30\x0d\xe7\x95\x9f\x6a\xe6\xd1\x4d\x29\x7d\xcd\x6b\x9f\x8d\x2d\xec\x38\x58\x8b\xf2\xfa\x50\xf1\xcb\x52\xdd\xf8\x75\xfb\xbb\xa6\xb7\xd0\x9e\xe7\x26\x61\x71\xdb\x85\x51\x29\x3c\x36\x15\xc4\x67\x5d\x3b\x3a\xf8\x54\x82\xa9\x9c\x7d\xbc\x62\x2a\x3b\x35\xfd\xdf\xd4\xec\x15\x2b\xaf\xd8\x1d\x59\x42\xfc\x57\x67\xe9\xda\x72\x47\x3d\x0f\xa3\x14\x1b\xd9\xba\xcf\x6d\xc6\xfe\x25\xcd\xfa\x8e\xfa\x1e\x46\x29\xbe\x25\xeb\x35\xf9\x33\x3d\x05\x7f\xff\xda\xb3\x2e\x6a\xbc\x3b\xb3\xe3\x9c\x4d\x10\xe1\xb4\xed\xac\x4e\x1a\x17\x62\x8e\x3a\x09\xe8\x3c\x9d\x35\x2e\x92\x95\xbb\x5a\x0d\x78\x9e\x0f\x64\x57\x55\x4c\x52\x35\xb4\x87\x2d\xc8\x37\x55\x01\x21\x89\xc8\x07\x4f\x65\x10\xc8\x70\x76\xbd\x5a\x49\xa7\xa1\xfd\x01\xbe\x0b\x67\xf5\x14\x71\xaa\x89\xa6\x80\x71\xb4\x51\x99\xb0\xa5\xe0\xe9\x13\x73\xc2\x03\xd1\xe7\xed\x7c\x38\x68\x38\x77\xb1\xe1\xa2\x43\xdf\x3d\xd4\xfe\xa1\xf2\xe6\x61\x1b\xdd\x93\xf6\xe9\x14\x95\xf4\x3b\x4d\x1a\xfa\xbb\x1e\xb6\x13\x96\xd4\xe1\x1d\x66\x12\xa9\x5c\x37\x67\xb8\x88\xfb\xd7\x22\x9b\x25\xa3\x32\xb0\x12\xaf\x92\xfe\xdb\xe5\x1a\x4f\x2c\x9b\x6f\x3c\x8b\x4d\xce\xee\x3d\xf3\x60\xd9\x56\x5a\xc6\xa7\xb2\x78\x81\x38\xb6\x83\xe0\x44\xaa\x10\xa6\x41\x19\xb6\x8c\x98\x81\x86\x70\x67\xa0\x02\x4c\x40\xb5\x9b\x55\x76\x96\x7a\x8d\x7c\x3a\x23\x9d\x3d\x9e\x4a\x82\x44\x92\x49\x1d\xac\x5c\x7c\x26\xcc\xae\x22\xe1\x33\x91\xa4\x33\x6e\x74\x46\x14\xd5\x86\x48\x51\x98\x15\x16\xb8\x94\x9a\x36\x19\x82\x4c\x53\x3e\x29\x27\x25\x7d\x8f\x4a\x8c\xab\xdd\x5d\x30\xbf\x2f\xa9\x19\x24\x39\xa9\x27\x35\x7d\x8f\x6a\x8c\x4b\x17\x31\x19\x3d\xaa\xf6\xca\x09\xb6\x50\x58\xa4\xda\xdb\xf3\xc1\xe5\x5e\x35\xc1\x92\xbe\x47\x12\x93\xd2\x07\x9b\x78\x2b\x06\x36\xf4\x8b\x95\xaa\xca\x61\x59\x81\x2e\x84\x66\xd8\xeb\x91\xb9\xec\xec\xe7\x6b\x1d\xc1\x79\x7a\x36\x08\xea\x6c\xa6\xe5\xc9\xe9\x84\xe7\x39\x1f\xc0\x95\x95\xbf\x89\x43\x15\xe5\x51\xb6\xab\x15\xdc\x18\xe3\x09\xd6\xd6\x7e\x86\x63\xc2\xe9\x7b\x33\x4c\x26\x23\x0e\x6e\x02\xf2\x5c\x6d\x64\xa2\x7a\x33\xe1\x36\x13\x85\x89\xa2\xef\x91\xb2\x99\xa4\xb8\x96\x00\x5e\xf9\x37\x02\xe8\xca\x18\xd6\xcb\x25\xe5\x2d\x58\x98\x32\x5d\xf2\x37\xe2\x90\xb2\x05\x0b\x13\x5e\xc1\xec\x84\x11\x61\x76\xa3\x5f\xbe\xa8\x00\xd5\x52\x61\x3f\xeb\xd4\x58\x07\x4c\x43\x46\x76\x8e\x83\x44\x7c\xb5\x1a\x7f\x6f\x42\xc7\xdf\xeb\x82\xd9\xe5\xa0\x07\x89\x8d\x08\x6b\xad\xdb\x5c\x6e\xc9\xa5\x6f\x8f\x16\x6c\xb8\x6c\xed\x55\x92\xd5\x21\x5a\xa7\xea\xe8\xa9\x43\x60\xb8\xac\x49\x7d\xaf\xc0\xa5\x8d\xeb\xaf\x01\xa5\x1d\xeb\x34\x07\x8c\x69\x7b\x5f\xc4\xbd\xcf\x17\x68\xf0\x8b\xf6\xd0\xf3\x80\x1f\xba\x5a\x0d\x4c\x63\x4e\xcc\xcb\x29\xd1\xf6\x17\xb7\x39\x6d\xe2\xdf\xe8\x58\x32\x32\x01\xdc\xcd\x76\x46\xc0\x94\xd6\x4e\x31\xd0\xac\x81\xf0\x0c\xc8\xd9\x7c\x81\x4c\x67\xa3\xfd\x5c\x0f\xad\x24\xec\xb8\x3c\x0f\xdc\x80\xad\x77\xf4\x79\x9b\x1c\xb5\x39\xe1\xbe\x2f\xbd\x66\xe7\x81\xbd\x66\x2b\xcf\xa7\xfb\xc5\x41\x84\xb7\x00\x75\x06\x63\x48\x01\x3e\x51\x4a\x94\x8d\x1f\x3e\x8c\xf1\x01\x95\x27\xaa\x06\x88\xf5\xd8\x93\x44\x8d\x4c\x8c\x03\xa0\x44\x53\x3b\x93\x36\xca\x98\x8c\x5b\xbf\x09\x2c\xa0\xeb\x0b\xca\xcc\x3e\x33\x99\xb4\xa6\x1d\x36\x1b\xf0\x58\x1a\x2d\xfb\xc2\x9f\x5a\x03\x69\xce\x33\xbb\x0b\xc0\x06\x6a\xf1\xf7\x29\xa5\xdc\x3e\xb5\x68\x43\x86\x77\x83\xa0\x49\x63\x77\x94\x86\x52\xda\xe2\x90\x0a\xb3\xed\x40\xe5\x9b\xf8\xb6\xcd\x86\xeb\x49\x43\x9b\x61\xcd\xcf\x2a\x2e\xce\xd7\xa1\x77\x60\x9e\xb9\x29\x60\xe6\x99\x1b\x01\x41\x25\x51\x94\xdb\x31\x6d\x3c\x12\xab\x85\x45\xf7\x75\xa8\x6d\x1d\x6a\xa8\x83\xc5\xf4\xf6\x9f\x41\x63\xd6\x2e\x52\xb9\x48\x65\x36\xe5\x10\x59\xd3\x3a\xd4\xc6\xf4\x42\x63\x9b\x59\xfb\x56\xf7\x67\xcf\x4d\x2e\xdb\xb2\xe7\xa6\xfc\x9e\xec\x1b\x40\xf2\x19\x3f\xfc\x31\xc3\xeb\xb5\x68\x87\xc0\xde\x9f\x01\x56\xf2\x28\x0b\xaa\xc3\x07\x60\x7b\x0c\x60\x95\x61\xa8\x45\x6b\xae\xe8\x91\x92\xad\x72\x41\xa1\xd7\xb1\xc8\x29\x6c\xd3\x7e\xf1\x4c\x02\xa4\xa5\x6e\x21\x2d\x75\x0c\x69\xa9\x27\xce\x18\xd5\x8c\xb4\xfb\x75\xa3\x00\x5b\xbd\x0b\x0a\xab\x0b\x38\x1c\x37\x5b\x2c\xb2\xa7\xf6\x0d\x75\xf0\x9e\x7e\x19\xad\x56\xfe\x89\x76\xf5\xea\xdb\xb5\xb6\x0e\x5f\x87\x42\xfd\x84\x35\x89\x7c\x17\x26\x7a\xd5\x30\xb1\x45\xcc\x66\x07\x2c\x35\x20\x40\x2d\x72\x61\x55\x2e\x6b\x36\x3f\xe6\x3e\x60\x59\xb3\x66\x1e\x78\x31\x47\xcf\x97\x49\x36\xb3\x8a\x2f\xcf\x64\xa9\xe6\xcf\x4a\x5d\xf6\x30\x7f\x59\x92\xc0\x5b\xed\xa7\x5f\x39\x84\xc3\x24\xd0\xb0\x35\x8d\x88\x39\xe2\x94\xcd\xb4\x95\x69\x8f\x92\x3a\xd9\x16\x3c\x46\x81\xaf\x83\xb3\xfa\xb5\xc5\x8f\x3c\xb6\xad\x0f\xc6\x79\x3e\x3e\x70\x7e\x6b\x18\x1d\x1f\xe0\x82\x51\x4d\xc6\xa3\x20\xec\x18\x1f\x60\x72\xb0\xff\xc8\x9c\x18\x90\x90\x4d\x59\x31\xb2\xfa\xd4\x82\xde\x3e\xaf\x67\x45\xf6\xbc\x9e\x95\x4b\x96\x91\xa3\x65\x39\x63\x67\xa5\x2a\xb2\x9d\x8c\xbc\x62\x0b\x5d\x64\x4f\x94\x92\xd7\xe6\x31\x23\xef\x97\xee\xf5\xfd\x32\x23\xef\x80\x19\xb3\xef\xf0\x9c\x91\x67\xf2\x5a\xb8\x10\xc0\x03\x26\xcf\x58\x55\x64\xcf\xc0\x7e\x2a\x23\x1f\xb8\x28\xb2\xb7\x47\x19\x79\xcd\x44\x53\x78\x6b\x00\xf3\x92\x91\x27\xcb\x65\xdd\x09\x3a\x9a\x29\x59\x55\x45\x66\x7f\x5f\xc9\xd9\xa7\x8c\xbc\x96\xff\x1c\x2a\x2e\x40\x9d\xd4\x70\xfb\xd9\x7b\xc1\xc1\x37\xf5\x82\xb3\x79\xb6\x26\x33\x41\x6f\x1f\x16\xd9\x4f\xe5\xec\x93\x95\x8c\x93\x1f\x8b\xec\xb8\x3c\xcb\xc8\x78\xbf\xc8\x9e\x56\xac\x54\x19\x19\x1f\x14\x99\x63\x81\xc6\x0f\x8a\x0c\xc4\x2c\x19\x19\xff\x60\xcb\x57\xb2\xca\xc8\xf8\x61\x91\x3d\xa9\x4c\xe8\x8f\x45\x76\x58\x1a\xda\x96\xec\x8f\x8a\xec\x69\xb9\xac\x6d\x4d\xf6\x7f\x68\x3b\xed\x60\x1f\xba\xeb\xe0\xc0\xa4\x3d\x67\xa6\x73\x0e\xee\xd9\x67\xdb\x0d\x07\xf7\x4d\x89\xf3\x8c\x1c\x3c\x28\xb2\x9f\xe5\xa5\xf9\xe6\x87\xa4\x67\x0f\x1e\x46\x3d\x7b\xf0\x63\xda\xad\xf7\x46\x49\xa7\xde\xbb\x5f\x64\x2f\x45\xcd\x94\x89\x7a\xd0\xf6\xef\xd8\xb4\xf1\xc5\xd8\x3c\x1c\x14\xd9\x8b\x7d\xf3\x70\xaf\xc8\x5e\x1c\x98\x87\xfb\x45\xf6\xe2\x9e\x79\x78\x50\x64\x2f\xee\x9b\x87\x1f\x8a\xec\xc5\x03\xf3\xf0\xb0\xc8\x5e\xfc\x60\x1e\x7e\x2c\xb2\x17\x0f\x4d\x57\x8d\x8a\xec\xc5\x8f\xe6\x61\x6c\x32\x1c\x99\x27\xc8\xda\xe4\xbd\x6f\xf2\x1e\x9b\xcc\xef\xdd\x2b\xb2\x37\xcd\xa5\xed\x8f\xb1\xa9\x55\x3c\x54\xfb\xfb\xf7\x8a\xec\x35\xd3\x65\xb6\x26\x8b\x64\x25\x7c\x62\x37\x5d\xa1\x83\x75\xe5\xe5\xe6\x7f\x25\x4e\xe0\xfd\x74\xb5\x82\x5f\x20\x84\x92\x81\x1e\x44\xfc\x8e\x57\x4e\x6b\xcd\xf4\x5b\x99\x03\xcc\x76\xc4\x28\xac\x2e\x3c\x75\xa3\x5e\xf4\x19\xd4\xb3\x0e\x96\x84\x97\x3d\xb6\xe2\x67\x9b\xe5\xcc\x55\xce\x7c\x74\x0a\x36\x0c\x51\xbd\x8a\x2c\x5b\x13\xef\x0f\xff\x3f\x17\x5f\x29\xb6\x64\xa5\x13\x50\x58\x53\xfd\xed\x62\x2d\xbf\x09\xf4\xed\x5d\x3d\x3d\x02\x3d\x51\x8c\xd6\xc4\x35\x61\xcb\x67\x5f\xec\x86\xd0\x07\x26\x2f\x80\x22\xf8\xa6\x0a\x7c\x73\x19\x6b\x4c\xe6\x22\x96\x12\xcd\x4b\x5d\x02\x88\xe7\x22\xf8\xcd\x22\xcb\x64\x9a\x69\xd9\xcc\x2e\x3c\x6a\x97\xe5\xd1\x8e\xe3\x20\x2b\xe1\x9f\x27\x61\x5b\x87\xe4\x8e\x61\xec\x19\x95\x35\x26\x17\xc9\x31\x13\x5f\xc1\x7c\xcb\x61\x75\x93\xb6\x99\x55\xba\xfc\xbd\xaf\xa3\x6d\x4c\x00\x95\xb1\xe9\xb2\xeb\x0b\xc6\xaa\x67\x51\xd4\x1e\x1b\x46\x61\x66\xe8\x20\xe9\x1f\x5b\xb3\xfc\x23\xc9\xf2\x8f\x38\xcb\x3f\x7a\xb2\x4c\x12\xf4\xc4\x87\x12\xff\xf4\x12\xf2\x4a\x97\xe0\x3c\xc9\xb5\xf7\x4a\xd0\x93\x13\x0b\x7e\x9a\x11\xf7\x7b\x4a\x4e\xfe\x24\x2d\x76\xaa\xd9\x47\x4f\xc9\xc9\x2f\x51\x50\x8b\xba\x7b\x4a\x4e\x7e\x8e\x22\x2c\x34\x13\x98\x43\x58\x04\xd5\xcc\xf0\x7e\xe2\xd0\x3c\x45\xa1\x4e\xed\xa0\x8d\x3c\x76\x01\x26\xcd\x5c\x95\xe7\xce\x72\x21\xbc\x3b\xd6\x1f\x9e\xed\x9e\x12\x62\x3e\x73\xed\x23\xcc\xa3\x0f\x77\x12\x07\x78\xb6\x32\x32\x1f\x03\x72\x11\x1b\xf1\xf6\xca\xe7\x94\x00\xbc\x9a\x58\x17\xe0\x2e\x5f\x4d\x1a\x87\xfa\x9a\x91\xf0\x04\xa1\x1e\x03\xd6\x84\x87\x67\x1b\x33\x77\xa1\x73\x1f\xa2\x14\x98\x82\xd8\x5f\x13\x72\x2e\xb5\x13\xb7\xb4\x4a\xf6\xe7\x52\x3b\xd9\x9e\xbf\xdf\x35\x29\x41\xed\x9e\xd8\x1f\xff\x6e\x51\x66\x5d\x28\xb3\x04\x53\x1b\xe7\x61\x67\x43\xfc\x6b\x1f\xe0\xd3\x58\xad\x79\x1b\xdd\x8e\x5c\x25\xeb\xcd\x4a\x99\xc0\x9e\x5a\xb5\x72\x67\x27\x1a\x05\x57\x03\x21\x26\x92\x99\xbe\x6d\x74\x14\x6e\x87\xc0\x46\xf8\x31\x70\x40\xb8\x19\x09\x4f\x10\x6a\x0b\x75\x65\xb8\xb7\x50\x4a\x9f\x9c\xd3\x97\x14\x8b\xc1\xda\xc8\x50\x9a\x83\xdb\x05\x53\x14\xf7\x68\xc2\x6b\x38\x51\x33\xe2\x1f\x20\xcc\xe2\xef\x82\x25\x85\x7d\x82\x50\x8b\xc6\x6b\xad\x0f\xe0\x09\x42\x2d\x36\xaf\x09\x75\x4f\x26\xb4\x45\xea\xcd\x08\xbc\x38\x08\x30\x88\x93\xe7\xe7\x60\xae\xe1\x1e\x6c\x58\x33\xbb\x70\x6d\x86\x67\xdf\x62\xc6\x48\x04\x5f\xec\x96\x66\xe6\x01\x7f\x49\x78\x82\x50\xb3\x0d\x98\x30\xf8\x3d\x3d\x25\x97\x82\xde\xae\xc9\x99\x48\x0c\xc9\xce\x45\xe2\x01\xe3\x64\x74\x4a\x94\x85\xa7\x40\x80\xee\x3f\x3e\xc5\x27\xa3\x8e\x9d\xc3\xae\x73\xfc\x81\xc6\x18\x4f\x34\xfd\xb2\x1a\x83\x6a\xb5\x17\xd4\x6e\xb6\x0d\x03\x4f\x9c\x12\x5e\x03\x60\xa1\xd5\xda\x2b\xf4\x9a\x5c\x0a\xeb\xdb\xe7\x4c\x80\x17\xa4\xf5\xc9\x89\xbd\x58\x74\xf7\x8b\x6e\x53\x99\x41\x43\xdd\x83\xb5\xc6\xe2\x60\xe6\x64\x7f\x6d\x88\xac\xad\x6d\x96\xf9\x3d\xf5\xd6\x52\x9f\xf5\x25\x10\xbf\xfe\x0d\x48\x61\x1b\xbb\x84\xdd\xcb\xfc\xc0\x3b\xcc\xb1\x99\x9b\x5c\x65\xf3\xd9\x17\x51\x36\x9f\x9f\x86\x52\xe6\x67\x95\x0f\x9f\x47\x4e\x3d\xda\x7d\x6c\x1e\x76\xb1\x79\x08\xf5\xeb\xd0\x3c\xb7\xeb\x70\xae\xe4\x12\x02\xe5\x12\xde\xad\x4e\x80\xb3\xa2\x82\x10\xee\x20\x01\xed\xaf\x0d\xb9\x2a\x2b\x3e\x87\x30\xfb\x64\x42\xfd\xd9\x0f\x98\x82\x40\xd2\xba\x50\x8f\x2f\x68\x7d\xd9\xba\x15\x60\xa9\x02\x08\x7c\xbf\x6c\xd7\xac\xcb\xe1\x32\xf8\x1e\x09\x31\x90\xfa\xd2\x79\x0f\x81\xb5\x05\xb8\x4e\x01\xaa\x10\x42\x80\xa2\x77\xbf\x7e\xb5\xbb\xa5\x1e\xaf\xd6\x30\x96\x4b\xbf\xd9\x84\x21\x75\x21\xae\x1e\xee\x2d\xd4\xc4\xbd\x43\x5d\xdc\xb3\xab\x4d\x8b\xa7\x9d\x11\x78\x89\xf6\x74\xab\x57\x4b\xdc\xaf\x5f\xeb\xce\x68\x0a\x1e\xec\x9a\x06\x5d\x5c\xe2\x1f\xc2\x0a\x0d\xb5\x85\xb7\xa8\xae\x96\x14\x82\xc1\x86\x47\x3f\xda\xf0\xe2\x87\x1b\x5e\xda\xf1\x8e\x21\xbc\x33\xe2\x5e\x7d\x5d\xfb\x35\x9b\x60\xed\x0e\x46\x18\x0e\xf2\x3b\x52\x8c\xbd\x6d\xd3\xb5\x48\xae\x7e\x2e\x45\xba\xe0\x8e\xe5\xf2\x15\xbb\x62\xd5\x73\x9f\xa4\xef\x76\x36\xe8\x1f\x23\x46\xcf\x84\xbb\xc4\x06\xde\x77\x98\x64\xb6\xfe\xca\x6b\x25\xc8\xc3\x4a\xc9\x12\x01\xc6\x26\x16\x61\x0b\x0a\x66\x8a\xab\x05\x12\xa9\x54\x26\x85\x21\x8c\x11\x0c\x19\x5d\x88\xd8\xa9\xb9\xc5\x19\xb4\xa6\x49\xb0\x9c\x0a\x46\x9b\x24\x85\x5d\xc5\xa6\xac\x7d\xb0\x72\xb2\x37\xd8\x9b\xc5\x85\x8d\xc0\xe6\x16\xd6\x7f\x3f\xbe\x61\x7b\x5e\x46\xef\xcd\x32\x7e\x33\x67\x59\xfc\x7a\x15\xec\x46\xe2\xfd\xaa\x60\xf4\x3b\x1d\xd7\x17\xc8\xa5\x22\x3c\x02\x12\x59\xf4\xa6\x43\x2e\x81\x68\x6a\x5f\x2d\xad\xd4\xbe\x47\x65\xb6\xdb\x93\x7f\x97\xd0\x9d\xf3\xa4\xb3\xe2\xc5\x50\xb4\x21\x6d\x25\xda\xf3\x2c\x7a\x77\xf9\x32\xba\x8c\x33\xdb\xf9\xd3\x5a\xe1\xff\x62\x7f\x7e\x2e\x18\x95\x49\x3c\x63\x05\xa3\x17\x49\xf9\xee\xac\x2e\x18\xfd\x35\xe9\x14\x7b\xf2\x15\x8c\xde\xa4\x63\x6b\xf6\x74\xd7\xa7\xa1\xb7\x1d\x18\x1d\xa3\x65\x92\x76\x93\x42\xb3\xc9\x7b\xa8\x24\x97\x4f\xb2\x91\x25\x61\xd1\x44\x88\xc9\x9a\x24\xa4\x1d\xfe\x98\x7e\x49\x42\xec\x84\xfe\xb7\x6f\x69\xeb\x31\xa9\x0e\xfe\x7c\xfe\x41\x9a\xf6\x41\x1b\x62\xa2\xd7\x6b\xf2\x56\xd0\x6b\x31\xbc\x7b\xe5\x93\xe7\xe0\x17\xa6\x35\x76\x48\xe4\x65\x89\xfb\x18\x3d\x99\xcb\x5b\xeb\x2e\xeb\x96\x0d\x01\x3b\x5a\x4b\x55\xdb\xcb\x24\x81\x9d\xb4\x16\x6c\x1c\xdc\x9d\x86\x98\xa8\x70\x3d\xa0\x82\x44\xda\x5a\x3e\x28\x7a\x00\x52\xea\xe0\x3f\x48\xc5\x82\x59\x29\x74\xc9\x05\x53\x2f\xc5\x42\x62\x27\x22\xed\x29\x93\x08\xfa\x04\x29\xec\x40\x0d\x84\xbd\x9e\x12\x74\x34\x11\x8f\xe2\xd4\xee\x56\x45\xec\xee\xe2\x5b\xb8\x1d\xf0\x31\x27\xe2\xd4\x79\x2c\x7e\xcf\xc0\xfa\x20\x28\xfb\xe0\x09\x38\x00\x74\xdd\x65\x7a\x2a\x08\x83\x39\x4d\x52\x92\xd2\x5e\x16\x37\x74\x34\x69\x1e\x5d\xfa\xc2\x1a\x53\x98\x95\xb2\x5f\x9e\x34\xa7\x93\x1a\xfc\x18\xd7\xa9\xfb\x47\xb0\x40\xe3\x44\x02\xe0\x64\x49\x0f\x51\x49\x6a\x8c\xd7\x6f\x50\xe9\x50\xdf\x8e\x05\x1d\x8c\xda\xd1\x39\x6c\x6f\xb5\x06\x9b\x17\xd3\x82\xa2\xb7\x66\xf8\xa6\x9f\x44\xf1\x97\xc0\xa9\x4b\x5e\x3d\x2c\xe7\x73\x28\xd5\x23\x7c\x23\x46\x44\x6a\x89\xf4\xfa\x7f\x9f\x7d\xec\xa3\xe1\x93\xcb\xfe\x29\x43\x7f\x09\x62\xc1\xf0\x7c\xdc\x5f\x11\x1a\xa5\xf0\x54\xea\x7b\xe6\xef\xcf\xdc\x8d\xa6\x19\x6e\x81\xf1\x6a\xe5\xd5\xc5\x22\xd8\x2e\x2b\x94\x07\x30\x04\x73\x62\xac\x56\xc1\x8e\xf2\xb9\x48\x5c\x0f\x28\xfa\x5c\x78\x77\x03\xc9\x08\x53\x46\x54\x0a\xc8\x4e\x54\xb4\x04\x00\x47\x43\xd9\x6b\x5c\x46\x6f\xe3\x2f\x0b\x46\xa2\xef\x0a\x4d\xda\xaf\x0a\x41\xc2\x74\x2b\x4e\x4e\xd7\x00\x09\xf8\x92\xa1\x23\x70\x5d\xe8\xc1\x00\xd3\xa9\xe6\xfd\xfc\x25\xfe\x25\x6c\x50\x5c\x1d\x1b\xd2\x9d\xe6\x74\x44\xc6\xa3\xc7\xa1\xcd\x79\xfe\x5c\x04\xe7\x05\xce\x21\x20\xf0\x07\x1f\x05\x1d\x91\x37\x82\x66\xd6\x1d\x59\xc0\x7d\x7f\xf9\x2c\xdb\x45\x59\xb6\x9b\x38\x3b\x6b\x1d\x9c\xb5\x93\xf1\x59\x4c\x2d\x7c\xe1\x6e\xd7\xb9\x0e\x24\x6f\x60\x60\xd8\xc9\x1b\x71\x4a\x3f\x8a\xdd\x5d\xf2\x59\x9c\xc0\xdb\x29\xbd\x5d\xe3\xf6\x2d\xc2\x66\x0c\xfa\x53\x3d\xc6\xcb\x86\x73\x59\xad\x50\x2f\x8e\x9b\xd7\x0b\x9d\xfa\x07\xef\x34\x24\x25\x26\x22\x84\x46\x96\x5a\x11\xad\x56\x6c\x78\x26\xe7\x37\xce\xa7\x6c\x74\x1f\x6d\x83\x23\xd5\x60\xe1\xfd\x38\x4f\x00\xee\x70\xc1\x55\xad\x9f\xc2\x5d\x0f\x66\x34\x79\xdf\x54\x68\x7e\x12\x33\x66\x44\x51\xc8\x2c\xf8\x51\x51\xf6\x26\xe8\x80\x9a\xbd\xd2\x83\x11\x5a\xfb\x6c\xca\x76\x55\x8c\x77\xeb\x9d\xb6\xb0\x47\x54\xe7\xb9\x78\x1c\x44\xb9\xb7\xe6\xbb\x42\x11\x6b\xd7\x51\xe8\x3d\xb6\x9e\x30\x2a\xd6\x4e\x77\xc2\x97\xa1\x86\x82\x7d\xd6\x47\xf6\x9a\x08\xdf\x9a\x0d\x3b\x0a\x08\x48\xc2\x26\x3c\xf6\x2c\xe7\x81\x85\xa1\xe6\x2a\xc6\xdc\x7c\x29\x50\x7b\xe1\xc9\xa8\x53\xc8\xd1\xf4\xa9\x40\x78\xa2\x63\x1f\x1d\x6c\xf8\xf3\xf1\xeb\x57\x2f\x5f\xa8\xf2\xd2\xf7\xfe\x04\xdf\x9a\xa1\x61\xd4\x01\x7c\x09\x1d\x6c\xbd\x22\xad\x1f\x37\x36\x02\xdf\xda\xd3\x07\x32\x67\x41\x27\x38\xdc\x04\x46\x9a\x01\x2f\xc4\x7f\x0a\x54\xb9\xa3\xf3\x3c\xd2\x66\x86\x37\x40\x1e\x8b\x85\xad\x16\x41\x33\x09\xd2\xac\x4a\xde\x1b\x95\xbe\x7b\x24\xce\x36\x10\x77\xdc\x27\x6a\xf3\xae\xbc\xde\x79\x07\xfe\xc3\xc2\xd0\xbd\x12\xf4\x6e\x88\xfd\xf1\xf8\x71\x3f\xc4\x3e\x79\x2f\xe8\xad\xd5\x4a\xfe\x3a\x4b\x85\x23\xab\xc1\x9c\x58\x2a\xd8\xb0\x2f\x80\x99\x07\xba\x76\xc7\xd1\xae\xce\x60\x21\x35\x55\x08\xc4\xf4\x8e\x23\x9b\xef\x36\x5e\x20\xbf\x3a\xec\xa5\x0f\xee\xf7\x6f\xf7\xfb\x87\x48\x8c\x00\xfe\x11\xa9\x15\x75\x50\x2f\xd3\xd3\xb6\x3f\x8a\x1f\xe1\x52\x37\xa0\x7e\xea\x42\xa7\x5a\x67\x7e\x2a\xfc\x21\xbc\x42\xc8\xaf\x62\xb5\xfa\x55\x0c\xa8\x99\x79\x02\x3b\xe0\xe6\x56\xe9\xde\x32\x7e\x5c\x20\x41\x7f\x15\x38\xcf\x5f\xd8\x54\xf4\xd6\x7a\x2f\x13\xc3\x34\x25\x61\x62\x1e\x07\x3e\x17\xf3\x75\x21\xe8\xad\x35\x9d\x02\xf0\x51\x24\x28\x12\x69\xad\xf2\xbc\x13\x90\x6a\xc6\x79\x24\xd4\x73\xa6\x8f\x7c\xc6\x66\x4f\x6f\x33\x25\xf6\xf1\xad\xdd\x21\xc4\x30\x7e\x25\x30\x48\x50\xb4\x61\x3e\xdd\xb3\x0d\x0d\x1f\x44\x6f\x6b\xf2\xb7\xc8\x73\x26\xd0\xdf\x82\x84\x0e\x31\x83\x42\xba\xd6\x24\xef\x7d\x43\xc9\x07\x4b\x0f\x78\x73\x12\xa7\x23\xdf\x2a\x92\xfd\x2a\x9c\x51\x09\x76\x0e\xf3\x52\x06\xf7\xbd\xf8\x3a\x26\x94\xf0\x8e\x5e\x61\x3a\xf0\xed\x0e\x3b\x55\x45\x47\xdd\xd0\x52\xad\x92\x0e\x38\xc6\xb7\xac\xb8\xe5\xf4\x99\x40\x1c\x13\x49\xaf\x87\x7e\xfa\x07\x12\xb1\xa4\xa3\x49\xf9\x28\x38\xc5\x2a\x3d\x2d\xd8\x50\x79\x52\x5a\x26\x98\x77\xad\x85\x1b\x50\x86\x3c\x69\x4e\xf1\x2d\x37\x13\xd7\xef\xb7\x6b\x4e\x07\xa3\xb5\x29\x78\xcd\x17\xa8\x97\x77\xe6\x1d\xfb\x04\xcf\x4b\x3b\x9e\x17\xbd\x62\x88\xe3\x68\x0b\xe1\x1b\x5b\x48\x9e\xa3\x5f\x05\xe5\x66\x0d\x69\xbf\x80\xf0\x26\x27\xfd\xb7\xa0\x1f\xcc\x3c\xb6\x4a\x6c\x51\x74\xc4\x00\xff\x01\x24\x6b\xc2\x86\x45\xfc\x6c\x0f\x3b\x1c\xf8\xd8\xb0\xb4\xe8\x60\x4c\xfe\x11\x08\x6c\x0d\x2c\xe3\xd7\xd9\x00\x0c\xbf\xfe\x4a\xe0\xa8\x90\x5e\x71\x80\xe7\x92\x6c\x56\x89\xe2\x43\x24\x19\xfd\x49\x74\xb4\xcd\x24\xba\xf5\x70\x56\x8e\x66\x58\x13\x8d\x09\xd2\x3d\xaa\x46\x2d\xae\xa8\x1a\x3e\x75\x1f\x05\x09\x0d\x23\xf1\x07\xd6\x7c\x1b\xdc\x5b\xee\x52\x86\xd7\x86\x49\xf3\xea\x22\x8a\x59\xd0\x79\x16\x5e\xc1\x36\xbb\x3d\xb5\xfe\x95\x82\xb3\x18\xaa\x42\x2e\x4d\x4c\x6d\xaa\x6e\x31\xc3\xbc\x23\x33\x3a\x9a\xc8\x56\x97\x4c\xee\xee\x62\x7d\x92\x7d\x97\xed\x8a\x13\x79\x7a\x0a\xfc\x44\xc4\x25\x45\xbc\x91\xa4\x9b\x26\xec\xdf\x65\xbb\xec\x44\x9c\x7a\x24\x02\x78\xf6\x38\x43\x4e\xdd\x30\x09\xa3\x12\x13\x99\xe7\xca\x87\xbb\x7d\xe8\xc8\x47\x1b\x86\x00\xf4\x5f\x6c\x1d\xb2\x6c\xf7\x4c\x1b\x46\xce\x91\xb3\xb6\xee\x2c\xae\xbb\x75\x84\x2b\x5d\x15\x62\x2d\x29\x08\xad\xdb\x9c\xc1\x0b\x3a\xb2\x45\xcb\xde\xa2\xf1\xc4\xdb\xd0\xaf\x56\x36\x8d\xc3\x86\x5a\xad\xbc\x2b\xb6\xb5\x4f\xe1\x00\x5f\xa3\x7a\xb7\xa3\xf1\x9d\xd8\xf0\xa3\x0e\x40\x03\xfd\xd8\x67\xd6\xc3\xf0\x38\xc3\xc4\x43\x75\x24\x00\x1c\x7d\x08\x1d\x61\xfe\x7d\xc1\x58\x3d\x06\xe3\xf8\x77\xe7\x80\x83\x42\x26\xce\x08\x1e\x60\x65\x3a\x40\x1c\x09\x56\x85\x9b\x84\x01\x8b\xc7\x7a\x5b\xfe\x71\x3f\xc3\xa4\xeb\x0b\x3d\xcf\xd1\xf8\x31\xf5\xf4\xa6\xf5\xe3\x7f\x00\x90\xd4\x80\x51\x44\x60\xee\xc6\xe5\x66\x19\xde\x8e\xd5\x61\xdb\x0d\xb3\x20\xea\xe1\xdf\x93\xc6\xa4\x60\x18\x9b\xe0\x0f\x93\x50\x67\x64\x27\x95\xc0\x83\x80\x77\x10\x81\x5b\x88\x16\x25\x22\xfe\x1e\x9c\xba\xa6\x36\xff\x3d\x06\xff\xc2\x61\x4c\x0c\xa8\xea\x45\x03\x88\xfd\xd0\xfd\x99\x8a\x51\x5a\x22\x7d\x62\xcd\x5a\xb6\x8f\x68\x54\x5b\x8d\xd7\x9f\x87\xfd\xae\xdb\x51\xf6\xce\x82\x96\x33\x15\x45\xed\x1c\xf1\xcb\x65\xc5\xe2\x90\xe7\x41\x0b\x3c\x0e\xb5\xe2\xe6\xe4\x4b\x98\xe8\x71\x48\xe4\xcc\x28\x0a\x8e\x69\x2f\x4c\xde\xd2\x57\xe4\x39\x7d\x49\x8e\xe8\x0b\xd2\x53\x55\xe7\x11\x1e\xdd\x6e\xd4\xab\xb8\x16\xa4\xb7\x6a\xc5\x9f\x9a\x6c\xd4\xae\x78\xaf\xc9\x46\x05\x8b\xdf\x04\xe9\xaf\x63\x71\xc8\x9c\x1c\xfc\x17\x41\x6f\x2f\xf4\x65\x55\x6c\xb5\x3a\x36\xb1\x19\xb9\x2c\xf5\xc5\xd6\x54\x0f\xbf\x37\xac\x30\xfc\x79\xfd\x2a\x23\xf5\xd5\x79\x5f\xc2\xfd\xd1\x68\xf4\x7d\x7d\x75\x1e\x5b\x93\xfd\x2c\x22\xe0\x20\x7f\x28\x9b\x34\x1e\xe5\xe7\x8e\x6c\xdc\xb9\x5a\xea\x8b\x3b\x52\x6f\xd4\xae\x0b\x23\x74\x67\xb3\xa3\xe5\x06\xe2\x1a\xdd\x81\x0b\x36\xbc\xc9\x9d\x19\x80\xca\xdb\xcf\xc2\x50\x1e\x77\x35\xc5\xea\xcb\x65\x66\xa8\xf8\xb9\x78\xdb\x42\xe0\x4e\xef\xce\xbe\xb0\x26\xc4\x5a\x11\xe1\xb9\x4c\xa2\x14\x45\x3a\xc6\x90\x77\x42\x23\x0b\x1d\x02\xba\x69\xef\xdf\xbd\x1c\x50\xfa\x8b\x18\xd6\x57\xe7\x60\x61\xe9\xb6\x61\x6b\x76\x65\x56\x9b\x0b\xa0\x7a\x12\x8e\x22\x24\x14\x15\x6a\xb5\xfa\x02\x1e\x7f\xfb\x6d\xf6\xa8\xbe\x3a\x7f\x0c\x50\xb8\x8f\xbe\x87\x47\x73\x86\xa9\x98\xd7\xef\x08\x02\x1c\x48\x0e\xbc\xa2\x38\x0e\x7b\x55\xea\x34\xb9\xd9\x20\xc4\xdc\x26\x8f\xe3\x0c\xcf\xd3\x2b\xf1\x78\x7d\xf4\x64\xb9\xcc\x73\xf8\x19\xb2\xcf\x6c\xf6\x5e\xd4\xe5\x82\xbd\x92\xb3\xb2\x7a\xe1\x3a\x6c\xba\x49\x19\xdf\x99\x1e\x6d\x62\xc0\x6b\x3b\x57\xd6\x78\x5d\x68\x15\xc9\x83\xa4\x0a\xa3\xd1\xde\x33\xc7\x6d\xe2\x0b\x24\xf2\x1c\x54\x58\x87\x55\xe9\x42\xf3\xfc\x00\x2e\x5e\x82\x6c\x23\xba\x7e\x42\x36\xf8\x37\xbf\x1b\x26\x3b\xa9\xc3\x1f\xe5\x2a\xf2\x39\x1d\x14\x56\x9e\xca\x46\x80\xdf\x8a\x33\x80\xdb\x78\x79\x59\x9e\xb3\xb7\x8d\x36\xbc\x4a\x1a\x78\x54\xf1\x19\xeb\x84\x7d\x00\xcb\x38\x08\xfb\xfc\xa2\x62\x9f\xa3\xc7\x7f\x29\xd9\x2c\xdd\xfb\x5b\x35\xe7\xa2\xac\x42\xd0\x4c\x56\xcd\x65\x5b\xb2\x7d\xad\xcd\xe3\xc2\x65\xb2\xb0\x39\x5c\xfb\xe7\x43\xc0\xb7\xb8\x62\xfe\xfd\xe8\x42\x71\xf1\xc9\xbf\xbd\x61\xe7\x65\x1c\x0b\x1b\x3f\xb8\x08\x50\x7c\xfe\x44\xb1\xd2\x3f\xbf\xb3\x39\xba\xc7\xe7\x62\x1e\xbd\x1d\x2d\x4b\x11\xbf\x02\xd3\xe9\xde\x9f\x42\x0d\xd3\xb7\xe8\x6b\x1b\x10\x67\xe0\x42\x7c\x1e\x0b\x29\xf4\x07\x6b\x3a\x38\x18\x91\x8a\x0b\xf6\xb4\x2a\x2f\x97\xfe\xe5\xe7\x10\xe5\x10\x41\xe0\xd1\x37\x42\xaa\xe5\x45\x69\xbb\x47\x97\x67\x47\xfc\x1f\x68\xe7\x35\x9f\xcb\x6b\x08\xfc\x07\x00\x16\xe0\x49\xca\x4b\x28\x8e\x57\xd5\xdb\x36\x27\xc0\xa1\x89\xde\x6b\x2d\x97\xc9\xab\x92\x9f\xd8\x33\x8f\x6f\x92\x06\x39\x49\x58\x08\x7b\x1d\x40\x4c\xda\xb0\x8d\xbc\xfc\xb4\x58\x93\x52\xd1\xe0\x1a\x9d\x64\x97\x75\x46\xc0\x1f\x3a\xc9\xde\x66\xd1\x55\x4a\xa3\x3a\x5e\x65\x1c\xe9\xb1\x5a\x05\xd4\xb8\x04\x85\x31\x73\x7b\x62\x56\x88\x3e\x01\xb7\x5e\xad\x46\x56\x14\xc4\x55\x97\x4c\x37\x0c\x1c\x57\x27\xec\x74\x8a\xb2\x6c\x57\xe3\xa1\x56\xfc\x12\xe1\x42\xef\x66\xcb\xcf\x59\x84\x9e\xed\x96\x68\x30\x71\xd8\x31\x7b\x22\x65\xce\x85\xb8\xc6\x7d\x08\x57\x22\x20\x57\x59\x20\x48\xef\x18\x2e\xdb\xdb\x33\x24\x2d\x6d\x14\x12\x44\x9f\x88\x53\xc3\xae\x65\x8b\x4a\x96\xb0\xbb\x3b\xd2\x6f\x56\xd7\x2f\x20\x08\x7b\x04\xbe\x36\x63\x22\x71\x61\xb8\x04\x2a\xd7\xeb\xd8\x68\x86\xab\x7e\xa0\x91\x52\x6d\x06\x03\xf7\xa3\x77\xad\xd6\xf6\x13\x8d\x46\x78\x53\x87\xa5\x39\xb3\xf0\x7b\x68\x8c\x09\x57\x27\xfa\x94\x42\x67\xad\xfd\x75\x79\xa5\x0c\xcf\x67\x18\x54\xae\xd9\x25\x0c\xf1\x6d\xe9\x16\xd8\x59\x59\xdb\xfd\x41\xb9\x45\x6d\xfd\xea\x9c\x31\x58\x27\x17\x10\xca\x2f\xcf\xe1\x07\x5c\x48\x0e\x46\xe4\x13\xbb\x39\x67\xc2\xad\x03\x58\xcf\x97\x4c\x97\xd6\xe9\x8e\x2a\x61\x32\x5b\xd4\x5c\x98\xfd\xaa\x9c\x41\x9a\x6b\x28\x22\x56\x5e\x9f\xb9\xe1\x32\xbc\x48\x65\x6a\x1c\xa8\xf3\x96\x62\xf7\x6e\x83\xb6\x72\x1f\xce\xce\xe5\xe0\x87\x8c\x00\xc4\x38\xf9\x22\xb7\xb2\x51\x06\xe4\xf0\x60\x94\x61\xb2\x09\x60\x7f\x47\x3e\xd9\xc7\x8f\x70\x8e\x73\xb1\x3d\x15\x70\x0f\x0f\xc6\x19\x6e\xeb\x05\x73\x31\xcf\x7b\x6c\xb0\x7c\x94\xf9\x64\x3f\x33\x8d\x89\xfd\x31\xb7\xc7\xcf\x9e\x05\x99\x6f\x27\x6a\xe6\x65\xfe\x9b\x6e\x04\xf4\x90\xd7\x5d\x1d\x84\x52\x08\xe9\xd0\xa4\x3e\x5f\x56\xe1\x5a\x3e\x02\xd7\x0a\x4a\x05\x80\x7e\x35\xdb\x78\xdf\xab\xd5\x6c\x23\xac\x51\x7c\x23\x6c\x21\xd5\x65\xa9\x37\x82\x0d\x31\xe3\x85\x25\xbc\xae\xb9\x38\xdf\x03\xa4\xab\x00\x9a\x3a\xee\xe2\x9b\x8e\x22\x6a\x6e\xae\x62\xe6\xe9\x99\x40\x8c\xfe\x98\x78\x33\x5a\xad\xc6\xe3\x8e\x7b\xa3\xa2\x83\xa8\x86\x27\x9a\x5e\x9f\xe8\xd3\x20\x56\xe8\x31\x10\xf4\xe0\x18\x27\xca\xca\xb4\xc4\xa6\x93\xf3\xd5\x6a\x00\xbe\xca\x3d\x15\x2c\x3d\x15\xec\xae\xf2\x5f\x0b\x14\x74\xf1\x58\x22\x71\x72\xc2\xab\x48\xfa\x64\xd2\x3a\xed\x28\x86\x89\x79\xb3\x2a\x62\xe0\xf1\xd6\x3c\x82\x61\x91\x15\x45\x76\x65\x50\xf1\x35\xbd\x55\x0d\x2b\x7e\x65\xe0\x84\xfd\xb5\x40\xb2\x53\xb4\x57\xaa\x72\xd0\x9d\x56\x1b\xc8\xbe\x58\x0d\xa2\x22\xbd\x92\x87\xf9\xa6\xdb\x09\x67\xb2\x3d\xb4\xd9\xae\x4d\xeb\xa9\x19\x9d\x76\x78\x96\xca\x7b\x13\xbb\x70\x9e\x70\x6e\x54\x07\x1d\xe7\x4a\xf5\x7a\x15\xb4\xda\x29\xae\x2a\xf6\x22\xa2\x88\x04\x64\x5e\xeb\xc2\xdf\x1c\xf8\xb9\x31\xd0\xc3\x00\x97\xdd\x42\xce\xb6\x20\xc6\x09\xf1\x9f\x5c\x3c\x80\x2d\x24\xc8\x99\xfc\x9b\x90\xd6\xf9\x92\x7f\xef\x59\x50\xed\xd6\x14\x63\xf6\xf5\xc4\x7e\xcb\x66\x12\xc0\x0f\xbf\x90\x62\x6b\x82\xa1\xdd\x8d\xa0\xdf\xcf\x54\xaf\x4f\x95\x9a\xe9\x63\x7e\xc9\x64\xa3\xa7\xed\xa3\x17\xc9\x9c\xf7\x7f\x33\xab\x58\xa9\xfc\x57\xf1\x8b\xfb\xae\x1d\xd3\x6b\xe5\x6f\x09\xc1\xf5\x56\x74\xb5\xc6\xf2\x7c\x3c\x88\x97\x63\x9e\x1f\x24\xef\xf6\x1a\x31\xfe\x64\xf3\x1e\xf1\x6d\x92\x7d\xcc\x86\xfc\x17\xb9\x0b\x76\xbd\x73\xc4\x34\x9c\x92\xcf\x15\x3d\x39\x25\x47\x8a\xee\x45\xb7\x2a\xc7\x50\xea\xe8\xf1\x91\xf5\xf4\xe5\x2d\xea\x9e\xab\x93\x23\x75\x4a\xec\x8f\x9d\xe3\x47\x6a\x6f\x2f\xda\xae\x0f\xdd\xa4\x7b\xae\x4e\x76\x77\x4d\xa2\xf0\x31\x69\xb3\xb1\x24\xfe\x6b\x45\x6f\xd7\xe4\x93\xa2\xb7\x2e\xbc\x78\xad\xd6\xe4\xaf\xe8\x7d\x30\x5e\x93\xcf\x8a\xbe\x8e\xdc\xdf\x7c\x4c\xf6\x40\x7b\xad\xe6\x5d\x05\xc1\xa5\x81\xdd\xb1\x02\xb8\x8d\x9a\x78\xa7\x1f\x41\x0d\x05\xd0\xa1\xf3\x5c\x0d\x3f\xda\x2b\x72\xd0\xa3\x11\x65\xf5\x9a\x5d\x4a\xfe\x0f\x9b\xbf\x17\x97\x65\xfd\x89\x59\x16\xcd\x99\x58\xc5\x88\x01\x5b\x3f\x7c\xbd\xf1\xd9\xc4\x5f\x4f\x38\x39\xae\x34\x84\x99\xc0\xdc\x6c\x1e\xfa\x44\x9e\x06\x21\x73\x9e\x83\xba\x6e\xe4\x83\xf1\x9b\x6a\x67\x3a\xf7\xab\x2b\x45\x39\x26\x3c\x42\xde\x52\x1d\x87\x42\x83\x60\x2f\xd7\x7e\x03\x5d\x8b\xf3\x3c\x68\x0f\x46\x33\xf4\x19\x64\x70\xac\xd0\x5f\x0a\x93\x63\x85\x3e\xc5\x12\xb3\xa7\x77\x45\xbe\x0b\xa4\xf4\x27\xe5\x27\xc7\x80\xd2\xd7\xce\xe6\xf3\xc1\xc3\x0c\x93\x43\xf3\x0d\xd1\xf0\xf0\x97\x4a\xdc\x37\x3e\x09\x9f\xf7\x8e\x31\xf3\xa4\x4e\xdc\x06\xd2\xe7\x10\x53\x0d\xcf\x99\x8e\xbb\x28\xdc\xc6\xb4\xda\x41\x66\xe4\x14\xdd\x48\x89\x30\x86\x28\x66\x2d\x58\x47\x0f\x33\xd2\x68\xc0\x01\x0f\xee\x5a\x08\xc7\x09\xa6\x33\x5c\x5a\xb4\xb7\xe9\x2a\x16\x29\xb6\x0d\x50\xc1\xa7\x4f\x9e\xeb\xad\x83\xcb\xd4\x79\x3a\xb8\xab\xd5\x6b\x65\xd6\x4c\xdb\xa1\xdd\x1e\xfc\x2b\xc4\x60\x12\xdb\x94\xbf\xb8\xa3\x37\x95\x6d\xdd\x83\x1f\x0d\x9d\x39\x45\x9a\xba\xae\xff\xac\x30\xd9\xbe\x1c\x36\x2a\x47\x35\x49\x66\x42\xa8\x1a\x2e\x5c\x78\x18\x64\xb8\xfb\x76\xc7\xe8\xfb\xee\x31\xfa\x6b\x3c\x65\x13\x96\x21\xd2\xfa\x40\x1a\xb7\x6a\x04\xf1\x39\xfd\x41\xb5\x42\x12\xeb\xf6\xa4\x3c\xf7\x1e\x50\x3e\xb1\xe0\x20\xc5\x19\xd6\x5a\xbc\x28\x6b\xf0\x0d\x8f\xde\x08\x17\xd2\xf8\x1e\xa2\x91\xff\x14\xf3\xe4\x5c\xb6\xb5\x5a\x3f\x10\x0a\x84\x04\x1d\x11\x97\xcf\x22\x8a\x5a\x32\xf0\x54\x69\x48\xac\xda\x3b\x7a\xb1\x9b\xbd\xed\xba\x67\xfe\xe2\xfd\xc6\x16\x70\xe9\x3a\xd9\x0a\xdd\x21\xc8\x5a\x28\xfc\xda\xb0\x86\xa5\x69\x6c\xa6\x6d\x59\x97\xa6\xc2\xce\x6f\x4c\xb0\xe3\xf7\xd5\xaa\xca\x5a\x3f\x87\x40\xda\x56\x22\x0e\x30\x07\x8a\x7b\x6f\xb3\x84\xfe\x79\xfe\x79\xc9\xad\x9c\xc6\x9c\x95\xae\x23\xd2\x30\x57\x48\x30\xf0\xb6\x10\x1a\x2d\x4e\x57\x34\x34\x7e\x09\xb2\xeb\x78\xc4\x22\xa4\xad\x68\x12\x0c\x00\x31\x80\xb5\x7a\x4a\x86\x40\x65\x43\x5e\xbf\x33\x13\x13\x9c\xb3\x0b\xd0\x1b\x69\xd5\x06\x3a\xe7\x48\x8b\x2c\x90\x70\xf5\x54\x4c\x11\x12\xd4\xd4\xcb\x4c\x13\x62\x36\xda\x4f\xec\x86\x30\xe8\x44\x8c\x93\x81\x66\xf1\x1b\xb1\x2e\x06\xdc\x11\x15\xdb\xa7\xc7\x2b\x8b\x44\xc6\xee\x94\x11\x16\xf7\x0c\x2e\x90\xe8\xce\x0b\x91\x0c\x98\xd8\x18\x0c\x91\x8c\x97\x0b\x8a\x86\xd4\x6a\xce\x89\xde\xf1\x62\x7d\xa1\xa6\xc4\x6e\x32\xd6\x4d\x61\x57\x87\xfb\x9e\x88\xce\xc4\x63\xe9\x7b\x14\x6f\x27\x2f\x4b\xdf\x89\x48\x66\x32\x8b\xdf\x7c\xfb\x36\x17\x05\xdb\x12\x61\x3a\xde\x2d\x64\xe6\x9f\x88\x13\x76\x78\x5e\x12\x80\x68\x16\x00\x31\xba\x20\xa2\x9d\x23\xbf\xa9\xd6\x49\x13\xe1\xfe\xaa\x7f\x1f\xe8\x07\xca\x48\xbf\xdf\x3b\x98\x96\x79\x8e\x1a\x3a\x8e\xf1\xd6\x37\xdd\xdc\x35\xf4\xbe\x8d\x6f\x3d\x9d\x39\x7f\x14\xc1\x93\xdd\xce\x4f\x0a\x89\x40\x59\x9b\x4a\x10\xef\x78\x22\x38\xc3\xdb\xf9\x97\x42\x82\x1c\xac\xe2\xc8\xe0\xc1\xce\x46\xee\x27\x91\xc1\xef\x1d\x62\x66\x5e\x8f\xf7\x89\x20\x9a\xdc\x5b\xc9\xce\x6c\xfe\xd3\xfb\x7d\xb6\x4f\x9d\x59\xc0\x09\xeb\xb8\xc4\x73\xd9\x1d\x40\x76\xdd\xcc\x80\xfc\xd3\xe1\xa9\x27\x33\xcf\x74\xf5\xbb\xd3\x0b\x8c\xc2\x76\xc7\x7a\xbf\xb0\xa2\xa1\xe3\x51\xe2\x51\x7f\xe7\x67\x13\xf8\x63\x1a\xa6\xb5\x49\x38\x4e\x03\x15\x04\xde\x4b\x03\x25\x04\x3e\x70\xae\x0d\x82\xea\x06\xc8\x5d\x46\x99\xbb\x73\x34\x4c\xb6\xaf\x26\xc9\x02\x4a\x05\xd2\xa6\x3b\x9a\xde\xde\xf0\x78\xf7\x66\x13\xde\xec\x8b\x48\xa9\xed\xa7\x8d\xfd\xd0\xf6\xf2\x0f\x84\x11\x38\x37\xbb\x5f\x8b\x44\xb9\x60\x73\x37\x85\xaf\x1f\xba\xaf\x89\x06\xd1\x1f\x1a\xe7\x1a\x4f\x7f\x67\x05\x83\xa1\x89\xea\x19\x06\xad\x67\xcc\x92\x92\xbe\x53\x1b\xf8\xb2\x7f\x2b\xf4\xc0\x21\x18\x7f\xb1\xa2\xff\xee\x7e\x0e\x7d\x77\x8f\xf8\x31\x0f\x4b\x60\xda\x3e\x16\x27\xa7\x6e\x2f\xee\xcd\x5d\x47\xfb\xed\x6d\xa2\x77\x5e\x74\xf4\xd0\x89\xdb\x62\xbd\x9a\x87\xc3\xb5\xbb\x5c\xda\x8e\xb0\xb6\xe9\x6c\x98\x06\xac\xe3\x51\xfa\xdd\x9d\x25\x6c\x38\xe7\xf3\xe7\x4a\x49\x45\x03\x8a\x10\x1b\xb2\x52\x55\x9c\xd5\xfa\xd0\x16\x63\xea\x37\x19\x39\xc7\x27\x3d\x71\x70\x89\xa2\x3b\x61\xba\x10\x8f\xf4\x96\xf4\xba\xe8\xf9\xe2\x31\x80\x5b\xf4\xe5\x84\xc9\xcf\x0a\x69\x12\xe3\xf3\xfe\xd9\x57\x7f\x12\xbe\xe6\x60\xf6\x6d\x32\xa5\x49\xae\x21\x9c\x8e\xf0\x5d\xad\x25\xaa\xaf\x4d\x13\x01\x62\xf1\xfe\x36\x29\x17\xb7\x59\xff\x51\xa1\x0a\xe5\xc1\x3b\x7a\xe2\xc1\x78\xa0\xcd\xd4\xba\xe9\x9c\xdb\x7a\x46\x15\x49\xc3\xbb\xc3\x91\xc4\xf6\x7f\xb3\x31\x24\xdd\x58\x95\x0c\x41\x27\xb6\x67\x10\x7e\xe9\x10\x24\x7d\xd3\xc6\x93\x26\x90\xb5\x36\x6d\x05\xaa\xa7\xb7\x0a\xd8\x25\x62\x89\xdf\xf0\x9f\x55\xaa\x4c\xb2\xad\x9f\x74\x6f\x3f\xc9\xe8\x8b\x78\x80\x79\x48\xdf\x4e\x0a\x98\xe3\x48\xd2\x11\x38\xc5\x92\x05\x37\x87\xe2\xc8\x4a\x97\xd4\x23\x38\x22\x25\x55\x98\x38\x53\x34\x89\xf3\x5c\x3c\xb6\xf8\x2b\x02\x13\x6d\x29\x9b\x64\x55\x1f\xcb\x0f\x52\x7d\x7a\x2b\xa8\xdc\xdc\x35\xed\x95\x32\x93\x89\x6a\xa8\x96\x2d\x85\x78\x7b\x56\xd6\xcc\xe2\x0d\x30\x02\xa4\x82\xb5\xe1\x75\xa8\x11\x65\xfa\x6e\x69\x09\xa7\x07\xdb\x4d\xd8\x17\x1e\x51\x5d\x6d\xc2\xf8\x3d\xc9\xb1\x9b\xb0\x27\x3c\xe2\x57\xc4\x96\x66\x0c\xc3\x73\xd2\x20\x47\x09\xd9\xb7\xb8\x65\xf6\x76\xd6\x85\xff\x5f\xd5\x42\x15\xb7\x30\x1d\xd9\x82\x11\x5d\x9e\x17\x23\xb2\x2c\x6f\x2a\x59\x3a\x90\xd3\x59\x59\x55\x67\xe5\xec\x93\x7d\x33\x53\xa5\x7d\xea\x2f\x42\xca\xd6\x91\x4f\xb8\xa9\xb6\xed\x9b\x26\x3d\x96\x44\x51\x5d\xa0\xf8\x1d\x66\x25\x9c\x86\x71\x9a\x68\x15\x73\xb9\x8d\xad\x68\xcd\x5d\x22\x0e\x3b\x26\x6d\x2d\x2c\xa3\x53\xec\x02\x5d\xa4\x4e\x0a\x6a\xe6\x73\x4a\x2b\x63\xab\x75\xd7\x97\x57\x4a\x36\xbb\x4c\xa7\xc2\x3b\x1e\xfb\x9a\xcc\xbb\xd9\x98\x34\xa2\x5b\x81\xa2\x9b\x91\x90\x48\x5a\xc0\x4d\xeb\xaf\x0b\x75\x73\x11\x12\x29\xa7\xb2\x67\xe1\x16\x15\xd4\x48\x4a\x64\x88\x12\xff\xa5\x8a\xba\xb8\x75\x98\x16\x0f\x1b\x72\x5f\x10\x29\x91\x04\x21\x42\x1b\xb2\x6d\x7c\xca\xce\xf8\x44\xf5\x9a\xb4\xd6\x48\xa2\x75\x4d\xf6\x85\x2e\x2a\x1a\x93\xa1\xc0\x78\xb8\xb9\x6e\xa6\x9e\x59\x49\x42\xa9\xe8\x49\x6a\xe6\x59\x5f\xb8\x9f\x6f\xfd\xdf\x44\xed\x6a\xb6\xce\xbb\x54\xb0\x27\xf2\x1c\x70\xd1\xe2\x76\xd9\x63\xa2\x3b\x44\x1a\x27\x07\x47\x2d\x03\x2f\xc4\x49\x19\x6e\x30\x44\xe4\x9c\x79\xec\xb5\x93\x36\xf9\x22\xb3\xa9\x0f\xdd\x0a\x06\xf7\xfc\x65\x55\xa1\xd2\xe4\x85\x0b\x47\x6b\x1f\x14\x2c\xe2\x6d\xf7\xf6\x47\xf7\x7e\xcc\xa3\x90\xd5\x83\x7b\x36\xdd\xa8\x88\x0c\xc7\x78\x9f\xec\xfe\xce\xc2\xb0\xf7\xc0\x44\x29\xf5\x90\x7e\xb1\x70\xce\xa4\xb2\x05\xed\x17\xe6\x38\x19\x79\xf5\x62\xd5\xf6\x45\x25\x63\xe7\xbd\xee\xd0\x09\x56\x84\x48\x53\x37\x1a\x38\xda\xa1\x5b\x6b\x42\x52\x53\x9d\x6e\xd1\x94\x7b\xfd\xd5\xda\x81\x12\xce\x68\x57\x72\x32\x99\x3d\x92\x53\xdf\xee\x12\xcc\x0a\x6b\xc2\x69\x85\x49\xf3\x68\x06\xec\xe6\xcc\x2c\x80\x8a\xc2\x40\x8d\x48\x4d\x2a\x20\xfc\x3d\x0d\x5d\x0f\xfd\x9e\x09\x54\x49\xdb\xaf\xf4\x60\x9f\x6c\x0a\x75\x5c\x41\x3a\x92\x1d\x4c\x75\x2a\x0b\x8a\xc5\x0a\x75\x81\xe2\xf7\x38\xbb\x9a\xa4\x29\x31\xc6\xa4\xa6\xb6\xc4\xb5\xe9\x35\x0b\x51\xdb\xf6\x4a\x3a\xcb\xbb\x3d\xb3\xd8\xec\x99\x45\xd4\x33\xa6\x2b\x66\xb4\x26\x51\x47\x99\x4e\x32\xbd\xb4\x80\x5e\x5a\xfc\x3f\xd6\x4b\xe9\x11\x37\xed\xb4\x26\xe9\xb5\x4e\x60\xe8\xbd\x34\xbc\xaf\x17\xbb\x5f\x26\xbd\x19\x35\x5a\xc7\x1b\xa0\x13\xfa\xb8\x1e\x9a\xea\xbe\xcd\x04\xcc\x39\xba\x2d\x6e\x33\x8c\xba\x17\x26\x9d\x6e\xa7\xb6\xe1\x58\x93\x03\xb4\x24\xbd\x23\x09\xa8\xc1\x1d\xb2\xad\x21\x9d\x0d\x95\x46\xc2\xc0\x99\xf4\x5c\x61\xb8\x24\xec\xc9\xb6\xf5\x32\x1a\xb7\xb9\xd3\x05\x6e\x1f\xed\xfb\x9e\x24\x5d\xd5\xd7\x37\x78\x4b\x7b\xb6\xf6\x23\x26\x0b\x89\x92\xd5\x42\x44\xc8\xa4\x6f\xf9\x58\xfa\x29\x7c\x93\x0e\x72\xf4\xed\xd7\x4c\xa6\x54\xa0\xba\x90\xad\x66\x90\x5f\x4a\x6c\xd2\x9e\x13\x7e\xba\x27\x3e\x52\x6f\xdb\x70\x1a\xcc\x84\x15\xd5\x93\xbe\xbb\x13\xe1\xf0\x39\xc7\x99\xa9\xa8\xb0\xbb\xad\xc2\x6b\x7f\xf7\x68\xab\x15\x5f\x93\xcb\xf8\x5a\xda\xe9\xcc\x33\xaf\x39\xa3\x49\xad\x0d\x61\x57\x83\xf3\x10\x7b\x9b\x2e\xdb\x1b\x41\x68\x1d\xb9\xb1\xb4\x12\xb9\x72\xbf\x97\xb2\x73\x41\x70\x26\x7b\x6e\x09\x3f\xba\x6b\xc2\xc9\xa1\x42\x17\x92\x88\xe1\x47\x97\xab\x55\x36\xef\x06\xc4\xb0\xc3\xe7\xb2\xbd\xa4\xb9\x90\xfe\xfe\x64\x72\x6c\x32\xc2\xa4\x93\xff\xf6\x6c\xae\x21\x9b\x1b\x49\x99\xa9\xb2\xaf\xfd\x36\xd1\x65\x67\x28\xdf\x26\xfd\xb6\x73\x29\x2d\x40\xf2\x60\x6c\xad\x1a\x46\xce\xb8\xa1\xe7\x6e\x3e\xcf\xc7\xa3\x1f\x0e\x7e\xb8\x37\x7e\xb8\x7f\x60\x8d\x24\xd0\xa5\xa9\x83\xa6\x6d\x38\x26\xda\xca\x49\x0c\x2d\xcd\x88\x3c\x03\xf7\xde\xf3\x9f\xb8\xae\x0b\xdd\x52\xd8\x6b\xbf\x27\x5c\xb5\x7b\xee\x8d\x84\x29\xb0\x0f\xc6\x02\x37\x72\x5b\x6b\xae\x24\xd5\xb8\xb8\x32\xed\x76\xcb\x11\x8c\x07\xe2\xbe\x82\xe1\x7e\x2e\xe9\xed\x9a\x1c\x45\x83\xfe\x5c\xae\xc9\x71\xe7\xfd\x30\x7d\x8f\x5c\x1d\xc9\xd8\x15\x05\xa5\xf4\xb9\xad\xde\xf8\x87\x7b\x59\x62\x7a\xf3\xc9\xf5\xe7\xa1\x42\x87\xd2\x5d\x8f\x1d\x4b\xc2\xe0\xe1\x48\x92\xe7\xd2\x4b\x35\x5a\xc3\x41\xaf\x51\x24\x1c\xc9\xf3\xa3\x45\xb9\x18\x8f\x0b\x6d\x0d\x2e\xbc\x9e\x71\x40\x9f\xd7\x89\x02\x73\xc1\x94\x35\xad\xcf\x32\xdc\xc1\x7f\xd0\x94\x29\xa4\x0d\xf5\xf9\x10\x48\x4f\x1d\x59\xe3\x16\x1a\x27\xd9\x58\x7a\x98\x08\x8b\x82\x0b\x7e\x62\xd6\xc7\xa6\xd2\xbe\xee\x89\x09\xbe\x74\x37\xb0\x26\xfa\xd8\xb4\x11\x7e\x0e\x65\x94\xe6\x33\xa4\x79\x2d\xd1\x61\x98\xdc\xd8\xb9\xad\x78\x2d\xd1\x51\x1b\x48\x04\x54\xd3\x4d\x79\x3c\xd1\xce\xa6\xa2\xd3\x77\x22\xd6\xe0\xfa\x68\x2b\x20\x23\x5c\x5e\xb3\x3f\x27\x35\x8a\x92\xbf\x91\xad\xf6\x77\x64\xc1\x01\x77\x07\x38\xd1\x70\xd4\xd4\x1a\xde\x60\x62\x36\x9b\x24\x5d\xa0\xf1\xf4\x89\x38\x35\x87\xc1\x89\x38\xa5\xec\x44\x9c\xb6\x46\xbf\xd6\xa3\x94\xa4\xff\xb0\xa1\xbd\x25\xb2\xb5\x7b\x7b\x2d\x98\x22\x4f\x25\x45\x82\x5d\xef\xa8\x61\x7b\x79\x34\x54\x6c\x51\xb7\x13\xed\x9d\x6c\xa5\xab\x81\x65\x30\xcc\x83\x61\x41\xba\x97\x1a\x38\xa6\x3b\xc5\x54\x17\xce\x64\x08\x9c\xdd\xa6\x27\xa0\xf0\xc4\x48\x97\x45\xc3\xd6\x65\x77\xf7\x10\x35\x8c\x62\x74\x1a\xbb\xbb\xd3\x27\x92\xde\xf2\xfa\xb5\x6c\x84\x66\xf3\x1e\x1c\xa0\x81\xbd\x30\x4b\x6f\x6e\x5f\xf0\x33\xa6\x70\x9e\x3b\xb4\x05\x86\xd7\x84\x89\xbf\x4d\xd9\x47\x4c\x5b\xa9\x43\xaa\x67\x8e\x6f\xb7\x64\xe2\x8e\x8c\xd7\x25\x32\x5c\xa4\x92\x48\xd1\x5f\x38\x52\x84\x61\x3c\x91\x9e\x38\xa7\x9a\x04\x7d\x02\x11\x24\xfc\x66\x3a\xc9\xe8\x00\xc2\xe4\x5f\x1c\x61\x02\x9c\xb5\xc4\x44\x97\x88\x11\xd5\xd6\xec\x9d\x75\x0b\xf7\x3f\xac\x9d\x2e\xcf\xe9\x98\xfc\x6f\x6b\xf9\x42\xaa\x99\x43\x8d\x2b\x52\x23\x87\xbb\xaa\x28\x6c\x15\x95\xa9\xa2\x30\x55\x14\x50\x45\x40\x57\xa1\xfb\x6d\xb5\x74\xab\x47\x05\xb3\x21\x54\x4b\xc7\xd5\x52\xae\x5a\x22\x71\x0d\xf7\x52\xc6\x97\x5c\x86\xb5\xbb\x8b\x8b\x4b\x34\x54\xea\x0b\xd9\x54\xf3\xb0\x40\x82\x34\xa5\x37\x1c\x59\xc6\xb1\x18\x44\x68\x12\xab\x55\xfc\x36\xe4\xf5\x61\xa3\x58\x7a\x65\xbb\x5a\xa1\x01\xb3\x86\x9e\xab\x95\x79\x92\x84\xc7\xbb\xc5\x0b\x99\x6a\x2d\x0c\xc6\x44\xd2\xd7\x0a\x44\x92\x91\x5a\x90\x87\x86\xde\xb8\x59\xe2\xa1\xeb\xf8\x94\xd3\x67\x61\x93\x7a\xc6\xeb\x65\xa9\x67\x17\x4c\x0d\x15\x2b\x83\xb6\x07\xc7\x05\x92\xf4\x8d\x42\x1a\x4f\x3f\xab\x22\xd2\xb2\xe0\x66\xbd\xb6\x2b\x37\x29\x3d\xd1\x9c\x51\x78\x0a\x4a\x4c\x12\x17\xaf\x15\x58\x48\xb2\xeb\x1d\x8d\x04\xe1\x3d\x7b\x81\xa7\x6c\xa1\xd7\xa3\x4c\x5c\xc8\xd4\xfd\x3a\xd0\x56\xb7\x5b\x28\xfa\x44\x12\x16\x2b\x27\x10\xdd\x37\xc7\x28\x23\xff\xad\xe2\x91\xfc\x56\xc5\xa3\x88\x1a\x7a\x15\x6d\xa0\xcc\xb7\xa8\xf7\x56\xd5\x74\xa6\x9b\x0f\x1f\x78\x55\xbd\x63\x33\xc6\xaf\xc0\x3f\x7d\x9d\xe7\x77\x44\xc2\xb4\xd9\x92\xe3\xfb\x37\x47\x4f\x5e\x3c\xff\x78\x67\xc6\x5f\x4a\x63\xf3\x77\x35\xb7\xe4\xd8\x13\x39\xec\xd9\x98\x90\xf6\xa9\x9c\x4b\xcf\xd0\x09\xef\x65\x17\x50\x2d\xd6\xbb\xb1\x7e\xf7\x6b\x2a\x88\xb4\xa1\x1b\x97\xe5\x12\x4e\x25\xfa\x54\x4e\xac\xf4\x21\x9d\xf5\x77\xcf\x77\xe9\xd3\x7e\xdd\xbc\xe7\xbd\xf3\xbe\xcd\x04\x66\x35\x0f\x1a\xdf\x14\xf1\x8d\xf3\x0b\x81\xe8\x84\x13\x41\xa4\xe9\xb9\x2d\x8d\xea\x1d\x32\x64\xda\x76\xce\xf4\x33\xa6\xf8\x95\x4b\xf8\x42\xc9\x4b\x7b\xde\xe7\x39\x72\xe7\x31\x37\x67\xea\xb7\x64\xbc\xb3\x3d\xdb\xd5\xaa\x2f\xbd\x04\xc0\x05\x51\x2e\xeb\x0b\xa9\xad\xa9\xa2\x17\x53\xf6\x31\x48\xb2\x77\x1a\xc1\xc9\x9c\xe7\xfd\x1f\x6c\xa6\x04\x43\x66\x79\xc7\x12\xe9\xfb\x28\xcf\xfb\x42\x51\x7f\x2f\xdc\x59\xcd\x3b\x22\x11\x26\x86\x08\x94\x7e\x8b\xda\xb2\x00\xa4\x1f\x13\xd2\x4a\x23\xfe\xab\x39\xb2\xad\x15\xa1\x86\xcf\xf8\xdc\xd5\x3e\x95\xe4\xdc\xb3\x04\xd2\xaf\x92\x26\x06\xd0\xed\x89\xf8\x41\x46\x8e\xe1\x5b\x85\x48\x50\x12\xc1\xfd\x43\xd6\x6b\xd7\xe0\xf0\x7c\x86\x1f\x41\x01\x1f\x88\x44\xf7\xec\xe8\x0f\xa7\x49\x6c\x48\x89\x71\xe2\xd2\x62\xff\xe1\x8f\x99\x39\xf6\x23\xa5\x21\x4c\x9c\x0e\xde\xbd\x1f\x40\xa3\xde\xf9\xf4\xca\x76\xbb\x12\xde\x88\x16\x30\x15\x8e\xeb\x1b\x4f\x79\x88\x82\x9f\xe1\x47\xab\x9c\xf2\x8e\x2d\x40\x0e\x0f\x81\x05\xea\x85\x45\x50\x96\x06\x36\x24\xfc\x53\x09\x72\x63\x1b\x02\x28\x4f\xfe\x6a\x65\x3a\x07\x80\xfd\x1d\x7d\x22\x4f\x0b\xf3\x87\xb2\x35\x8e\x4b\x01\xfe\xc4\xab\xc4\x24\x9d\x08\x6d\xbf\x07\xee\x3c\x6c\x4f\x41\x9b\xf7\x7f\x1c\x99\x36\xaf\x37\x95\xa3\xff\x76\xbc\x42\xab\xdc\x3e\xf0\x58\x3b\x90\xd9\xc1\x38\x23\xd9\x89\x1d\x19\x87\x65\x75\x6a\xba\x61\x03\xd6\x4a\x4b\x07\x72\x6f\xfd\xf2\xe0\xa9\x1b\xce\x9d\x6b\xae\x2f\x76\x3e\xb1\x9b\x7a\xe7\x36\xdb\x4d\x3d\x00\x0d\xff\x92\x5c\xa0\x8c\xec\x64\x78\x37\x5b\x67\x85\x06\xed\x8f\x56\x3f\x0d\xd8\x9e\xf6\x32\x12\xf9\x29\xc5\x3c\xad\x12\xcb\x80\xbc\x70\x46\x4d\x1d\x60\x93\x17\xe7\xa4\xe2\x53\x81\x8b\xbb\xe4\x48\xbd\x1a\x61\xad\x54\xfd\x61\x7c\xab\x88\x3c\xe8\xc4\x80\x6d\x38\x47\x09\xb5\x99\x60\x6d\x0f\x39\x45\x55\x70\x62\x12\x03\x6e\xb4\x77\x78\xad\xa0\x89\x01\x49\xf3\xba\x5c\x06\x58\x86\x09\x0e\x73\xf2\x13\xbb\xb1\xf6\x62\x48\x3b\xed\x8d\xc2\xbf\x5a\x65\x2c\xd0\x4b\xd1\xdd\xc2\xa2\x41\x97\x1b\xba\x26\x4e\x99\x0f\x07\x05\xcb\xa0\xea\xe5\x24\x2c\xd1\x05\x1d\x4a\x15\x62\x5c\xa9\x54\x11\x36\x8d\xa9\xb7\xd6\x9d\xd2\x14\x99\xb6\x43\x2a\xfc\x48\x4c\x51\xe4\x35\x89\xee\x13\x81\x0b\x55\x6c\x86\x45\x5a\x64\x4d\x0c\x31\x16\x24\xa9\x51\x09\x20\xab\x8c\xbe\x4f\xef\x5d\x36\x15\x22\x5d\x06\xab\xd5\x83\x81\x77\xb4\x64\x56\xeb\x77\xca\xb0\x07\xa0\x97\x08\x7e\xd7\x9c\x9e\xaa\xe9\x18\x58\xcd\x12\x59\xcf\xce\x51\x78\x74\xa5\xd1\x5b\x8c\xdd\x4e\x74\xa2\x13\x04\xfb\xd4\xcd\x92\x4d\x11\x52\x36\x4f\x4b\xa3\x40\xce\x0b\x1a\x36\x4f\xa2\xda\x92\x94\xa9\x81\xa2\xbf\x29\x24\xbc\x36\xa4\x19\x7a\xf7\x25\x71\x52\xb0\xa8\xe6\x5b\xf3\x89\xa4\xc3\x77\x74\xcc\xbd\x41\xf0\xe6\xa3\xb7\xc1\x4f\xc2\x86\x9b\x84\xa4\x89\x53\x7d\x1f\x48\x9d\x06\x41\xa7\xff\xfb\x6b\x3a\x3d\xb2\x8d\x39\x39\xdd\x36\x02\x8b\xf6\x7e\xad\xa7\x45\x3f\x24\x43\xfd\x53\x5c\xaa\x21\xb9\xbe\x6d\xb0\xe7\xd1\xf9\xd6\x63\xe8\xd3\x6b\xdf\x83\x83\x66\xd6\x77\x0a\x8c\x51\x7d\xf9\x69\x29\x93\x5e\xf5\xbd\xe8\x4c\x0a\x37\x87\xba\xab\xbf\xf7\xaf\xa0\x97\x28\xcc\x4c\xb1\x1a\x72\xc4\x6d\x12\x3d\x33\x45\xc4\x33\xc5\xa9\x99\x11\xd1\xd6\x45\xd8\x6b\xbc\xef\x42\xb6\x30\x5a\x5b\xea\xbd\xe6\x0b\xf4\xab\x04\xbd\xfd\x52\xa3\xe0\x55\xce\xf6\x75\xfb\x8d\x25\x5e\x92\x06\xbb\x23\x68\xdd\xbb\x29\x2e\xbb\xc4\xbd\xef\x86\x29\xb4\x2b\x78\x18\xdb\x1c\x85\x5e\x2b\xab\x04\xc0\x18\xf4\x6a\xe0\xda\xc6\xee\x11\x59\xb6\x0b\xc8\x4a\xbd\x23\x10\x09\x2e\xa2\xbb\xdb\x6d\x23\xb0\x03\xeb\x13\xa8\x01\xa7\xc5\x4c\xe9\xbf\xd9\xd4\x4d\x51\x3b\x16\xad\x5a\xaa\x32\xac\x6c\xbb\x81\xd8\x46\xa5\x7d\x1f\x65\x38\x4b\x13\xba\x8e\x17\xb6\xe3\x53\x44\xe8\xb6\x85\xed\xe2\x80\x01\xb0\x9d\x2e\xb6\x74\xfa\x45\x7c\x3b\xdb\xdb\xb9\xaa\xaf\x73\x83\x37\xb6\xda\x0c\xb8\xc5\xdf\x85\x7a\x39\x81\xed\xae\xc9\xaf\xbf\x77\x55\xe8\x5d\x15\x7a\x57\x6d\xef\xdd\x90\xb9\xd7\x74\x30\x67\xa2\x28\xe0\xd7\x97\xa7\x92\x7e\xd7\x84\x11\xd5\xed\x77\x49\xec\x17\x45\x65\xe3\x4d\xf5\x3a\xdd\x3e\x8b\x9b\x72\x57\x69\x44\x62\x37\x12\xca\x8e\x84\x0a\x23\xb1\xe8\xeb\x0e\x45\x64\x3b\x14\xba\x8b\xc2\x15\x86\xe2\x06\x49\x52\x92\x86\xd4\xad\x6d\x7a\x65\x8f\x64\x77\xeb\xbb\xa0\x25\xb9\xa1\x25\x1d\x91\xab\x56\xfd\x65\x40\xe9\x22\xcf\x6f\x1e\x35\xde\x28\xf5\x66\x77\x17\xdf\x2e\xec\x19\xfc\xf8\x66\x8a\xae\xe8\x82\x58\xe3\x09\x5c\x5c\xd1\x45\xa0\x15\x4c\xfe\x97\x74\x89\x24\x59\x90\xe6\xe4\xe6\x94\xd4\x31\xcc\xec\x65\xd0\xfe\x59\xe4\x39\x5a\xd0\x2b\x8f\x6d\xcc\xf2\x7c\x11\x0e\xe6\xcb\xf8\x60\xd6\x26\x2b\x4c\x4a\xca\xd1\x25\x29\xc9\x4d\x74\x8b\x5a\xd1\xcb\x62\x16\xc8\x8c\x4b\x32\xa3\x97\x64\x41\xaf\x4c\x2f\xde\x80\xaf\xf6\xc4\x1f\xe4\x8e\xb0\x39\x55\x51\x7d\x16\xee\x5a\xae\xd3\x50\xb4\xa0\x73\x24\x7d\xfd\x2d\x82\x30\x47\x8b\x8d\xe2\x17\x51\xf1\x0b\x32\xa3\x8b\x20\xda\xae\xe0\x5e\x7d\x41\x15\x94\xb9\x91\xff\x15\xbd\x40\x0b\x22\xc9\x4d\x5c\x46\xab\x61\x7d\x15\x77\xc0\x62\x68\x89\x79\x5f\xe7\x2b\x98\x3d\x37\x05\xfc\xda\x8e\xb9\xda\xa8\xd9\x55\x54\xb3\x2b\x32\x33\x1d\xdd\xd2\x3f\x8b\x5e\x08\x00\x4f\x8d\x59\xe3\x5a\x4c\xa2\x39\x74\x65\x3a\x83\xd4\xa4\xf2\xaa\x11\xa5\x46\x35\xee\xbd\x8b\x9c\xd9\x9b\x9e\xfb\xa3\xcc\xd7\x07\xd5\x74\x66\x69\xfa\xda\x7b\x86\xbc\x3f\xce\x70\x50\xd7\x58\x50\x37\x11\x6f\x68\x43\xae\x68\x43\x47\xe4\xd2\x06\x9c\xb9\x5b\x75\x14\xc0\xc5\x6e\xf2\x7c\x70\x36\x9c\x4b\xc1\x26\x57\xbb\xbb\x51\x02\x7c\x7b\xe3\xe6\xe6\xd5\x14\x5d\xd2\x1b\x72\xe3\xe6\xe6\x25\xbd\x49\xe6\xe6\x39\xcc\xcd\x1b\x72\x66\x91\xa0\x48\x15\x4f\xcf\x73\x7c\x7b\xb3\x5a\xa1\x1b\x7a\x19\xcd\xcb\x9b\x30\x2f\xcf\xbb\xf3\xf2\x06\x93\x86\x72\x74\x4e\x1a\x72\x15\xba\x7f\x31\x9d\xd1\xf3\x22\xac\x08\x7a\x4e\x16\xf4\x9c\xdc\xd0\x4b\x33\x2f\x6d\xe5\xe3\x19\x79\x83\xc9\x2c\xaa\xc2\x8d\x9b\x91\x5b\x9a\xe9\xe9\xe3\x33\x98\xa0\x6d\x23\xac\xb9\x03\x47\x67\x1b\x55\x39\x8b\xaa\x72\x46\x16\xf4\x2c\xcc\x84\x19\xcc\xd1\x1b\x98\xa3\x37\xf8\xcb\x25\x5e\xa0\x1b\x22\xc9\x55\xa7\xd4\x76\xd6\x9e\xc5\xdd\x73\xd3\x99\xb5\x67\x30\x6b\xaf\x8a\x33\x3b\x6b\xbf\xb5\xae\x90\xe3\xd7\xcc\xda\xd9\xba\x6b\x93\x06\xf4\x99\xd9\xfe\xec\xd6\x77\xa7\x3c\x2e\xcf\x79\xbb\xe9\x87\x71\xe7\xe0\xd2\xad\x02\xc5\x0b\xde\x39\x02\xbc\x8f\xe7\x3b\xb3\x35\xe3\x3b\xf3\x56\x13\xbc\xe7\x54\x72\x78\xc1\x33\x5b\x14\xa9\xa8\xf2\x33\xbe\xb2\x08\xc2\x95\x3b\xbc\x67\xf0\xf6\x03\xa5\xb4\x02\x52\x34\xaa\x6e\x51\x75\x98\x04\x1b\x87\x6f\x4d\x17\x54\xbe\x5f\x31\x01\x9e\xa1\x22\xd1\x97\xd3\x6e\xa3\x0a\xbe\xc9\x50\x54\x84\x27\x8c\x00\xa3\x2a\x58\x63\x40\x09\x7e\xc9\x68\x78\x21\x15\xad\x5a\xd7\xa5\x51\x59\x86\x0b\xf9\x49\xa1\x6e\x91\x9e\xbe\xab\x09\x74\x41\x4c\xe0\x31\x0a\xcc\x4b\x6d\x48\x52\x9b\x93\x4d\x43\x78\x0f\x49\x9a\xd4\xd9\x10\xe6\xa4\x8e\x73\xaa\xc3\x29\xd9\x20\xd6\x9e\xd5\xae\xff\x2b\x37\xd4\x2d\xeb\x6d\xd1\x9b\x6d\xdf\x57\xf0\x76\x8f\x3a\x6c\xfd\x3c\xdf\x8a\xab\x1f\x80\x40\x43\x48\x9a\x38\xe5\x62\x20\x75\x1a\x64\x07\x4d\x75\x06\x4d\x11\xbe\x95\x8f\xe9\x0e\x87\x8a\x87\x23\x15\x1e\xac\x91\x32\x64\x38\x4f\xbb\xac\xcd\x27\xee\xa1\x75\x2f\xf1\xc6\xfb\x88\x37\xee\x77\x35\x4e\xb3\x6c\x97\x7b\xf1\xa2\xca\xf3\x07\xbe\xcb\xa6\x68\x4b\xb3\x36\x87\xdb\xb6\xc1\x24\xf8\xee\x8e\xaa\x62\x02\xc3\x68\xc9\x26\x1e\xe8\xa5\x9b\xb0\xe8\x4d\x54\xa9\xa3\xa8\xab\x24\x6a\x96\xe7\x40\xc7\x72\x4c\xfa\x40\xd0\xcd\x1a\x1e\x54\xad\xb9\x53\xac\x68\xe9\x34\x21\xe1\x38\xdb\xcf\x08\xaa\x3d\xc0\xf4\x70\xce\xeb\x65\x55\x02\x3e\xdf\x6a\x55\x83\xd6\xc0\x6a\x95\x85\xeb\xb4\xd6\x89\xae\x6d\xa3\xd5\xb0\xf9\x47\xd2\x3f\x24\x1a\x8c\x30\xf9\xcd\x3e\x8d\x31\xf9\xc9\x69\xa7\xfc\xcb\xfd\x7e\x97\xea\xd6\xff\x3b\xd1\xb0\xf9\x5b\xa1\xfb\x24\xa8\xc4\x91\x11\x9e\x88\x64\x3f\xc8\x9e\x3d\x7f\xf5\xfc\xf8\xf9\xb3\xcc\x5b\x45\xc6\x01\xf1\x3d\x55\xcc\xbf\xc5\x82\xab\xd6\x14\x28\x52\x48\x44\x6c\x8b\xce\xa1\x20\xac\x23\x34\x63\x89\xd0\x2c\x8d\x8d\x0c\x79\x64\x0a\xcf\x11\xf5\xf9\xfd\x22\xd6\x25\xea\xc8\x5c\x91\xa6\xa0\x85\x13\x01\xb1\x88\x14\x6a\x3c\xc4\x6e\xa2\x90\x5b\x0e\x47\x5b\x98\xd8\xb8\x2f\x06\x23\xb7\x47\x3c\x28\x36\x8a\xcb\x2c\x64\x78\x6c\x1d\xba\x5a\x1d\x24\x75\xb8\x33\xdf\x0e\xca\xcc\x38\x12\x0c\xfe\x29\x1d\x32\xff\x77\xd2\x8b\x7d\xff\x25\x27\x31\xfa\x9b\x05\x4d\x76\x9d\xe5\xfc\x75\x6b\x7a\xad\xac\x0f\x87\x10\xe1\x4f\xcf\x58\xf8\xbe\x6f\xe7\x91\x85\x74\xfd\x49\x52\x86\x27\xff\x96\xe8\x27\x69\x98\x39\xf3\x6a\xa6\xdb\x5b\x85\xb4\xd3\x6b\xef\xfd\xd6\xa4\x8b\xea\xfb\x8b\x8c\x01\x32\x6c\xa1\x41\xd5\x2d\xcf\xef\x5b\x89\xb0\xd9\x32\x0f\xfc\xa3\x45\xc6\x70\x49\x21\xbb\xd6\x40\xc6\xb7\x9e\x0d\x28\xfd\x49\xb6\x4e\xd8\x4d\x2b\xbf\x0b\x30\xcd\x50\x28\xd4\x67\x44\x9c\xad\x97\xf6\x73\x83\x2f\x50\x28\x74\xb5\xca\x2e\x58\x69\xd1\xfc\xf2\x3c\x3b\x93\xf3\x1b\xf7\x3c\xb8\x74\x82\x85\xd8\x36\x16\x83\x82\x0b\x74\xb8\x9e\x60\xb7\xc6\x08\xf4\xad\x0e\xe4\x88\x2d\xfb\x5f\x92\xfe\x24\xa7\xd7\x2a\x1e\x5c\xcb\x52\x27\x56\xfd\x8c\x23\x7c\x0b\x69\xa3\x65\x6c\xf1\x17\x79\xaf\xea\x4b\xbb\xc4\x05\x8f\xec\xe4\x9d\x8d\x6f\x90\xf1\xff\x06\x12\x26\x58\xf1\x86\x95\xff\x47\x42\x63\x9c\x01\x70\x22\xa8\x53\x3c\xe6\xc7\x05\xdc\xa3\x88\xb9\xbb\x04\xe1\xf6\x96\xc2\x37\xed\x5a\x22\x0d\x17\x1f\xb0\x2f\x13\x1d\x0f\xff\x98\xb8\x0a\x29\x50\xb0\xb0\x65\x45\x52\x61\x9e\x1a\xeb\xb6\x54\xad\x93\xb7\x97\x4e\x70\x39\xe9\xea\x37\xb4\xfc\x43\xb9\x5a\xfd\xa1\x50\x19\x74\x75\x06\x94\x96\x89\x5e\x91\x47\xe5\x02\xd1\xe1\xe5\xb2\x54\x2c\x4a\x2a\x92\xa4\x53\x84\x58\x2c\xf1\xb4\x5c\xb3\xbb\xa7\x87\xf3\x84\x3b\x6a\x01\x7a\x80\xb0\xc8\xa5\xb8\x37\xa8\xc6\x05\xd2\x56\x1d\xe5\xbe\xb7\x18\x2d\x09\xb7\x0d\x2d\x5d\x43\xc3\x86\x5e\x06\x03\x6c\xf9\x88\x83\xd9\x45\xd9\x31\xbc\x76\x96\x0d\x03\xab\xa6\xe4\x5b\x80\xa7\xa2\x60\x02\x23\x49\x14\xce\x73\x30\x82\xa6\xee\xf2\x08\x4f\xe7\xb6\x30\x8e\x13\x19\xb7\x19\x0c\x2b\x76\x2f\x83\xc0\xf6\x8e\x56\x44\xd2\xf7\xce\x20\xa5\xfb\x1a\xcb\x73\xa8\x3a\x13\xa8\x6b\x33\xbe\x51\xb5\xa8\x66\x0d\x8f\x44\xa7\x91\xa9\x07\x4f\x4d\xdd\xcc\x34\x0b\x53\xa2\x15\x87\x85\x21\x65\xae\x04\x90\x91\xa5\x32\xf9\x15\x1d\xef\x3f\x8c\xad\x2d\x92\x29\x6d\xe7\xf1\x1b\xb3\xfd\xa5\x77\xe3\x93\x40\x93\x7c\x34\x6b\x9d\x63\x62\xe7\xb7\xb8\x7b\x7e\x8b\xde\xf9\x5d\xf3\x8e\x58\x0b\x0a\xf4\xa5\x0f\x46\x93\x97\xed\xb6\x09\x40\xf3\x7c\x81\x5c\x71\xfe\xc6\xa1\xdd\x27\xda\x26\x23\xd6\x01\x63\x20\x7a\x33\x20\xde\x84\x31\x79\x21\xdd\x1d\x0a\x79\xef\x9e\x4c\x85\x95\xa9\x83\xb7\x77\xef\xae\xbc\xa8\x6c\xd2\x50\x9d\x0e\xee\xa4\x74\x5a\x0e\xcd\xc4\x3a\x56\x2a\xbd\x4a\x01\xa9\x9c\x8c\x7e\xbb\x3e\x43\x15\x46\xb2\x9a\x56\x5f\xd6\x63\xa8\x70\x51\xd9\xd1\xa8\xfa\x46\xcc\x33\x54\x62\xab\x4a\x00\x59\xf4\xc3\x45\xf5\xab\x0a\x94\xdb\x54\x05\x26\x8b\x7e\x65\x81\xf2\x2b\xf4\x52\xfa\xbf\xdb\xfa\xc1\x6a\x85\x1a\x43\x0a\xaf\x56\xb5\xe9\x25\x9c\xe7\xaf\xcc\xb0\x99\xfd\xa3\xc2\xc4\x5a\xaf\x98\x56\xcf\xa3\x71\x81\x36\x4f\xcc\x48\xd8\xcb\xf7\x39\xa4\x58\x52\xbd\x61\x30\x35\xa0\x74\x69\xef\xec\x35\x59\x12\x45\x4a\x33\x17\xea\x6e\x56\x98\xb8\x2a\xcc\x07\x94\xd6\xab\x55\x8b\x41\xb3\x5a\x31\x39\x45\xbd\x5d\x6a\x75\x3a\xcc\x04\x9b\x99\xc9\xd6\x93\x29\x6a\x28\x93\xab\xd5\x4b\x9b\xaa\x21\x8a\xcc\x41\x50\x84\xa7\xe8\x9b\xfa\xf7\x0e\x65\x8c\xb2\x5f\x19\xa3\x7f\xb0\xfb\x32\xed\x0b\xdd\xa2\x82\x71\x67\xe5\xee\x88\x44\x5b\x94\x21\xca\x5e\x65\x08\x9d\x2a\x43\xe0\xe2\x4b\x8d\xd9\xfe\x2d\xe9\xac\x64\xc0\x33\x48\x35\xd8\x6a\x4c\xfc\xf2\x56\xc4\x4f\xa7\x9a\x84\x25\x4e\x2b\xa2\x68\xf3\x5f\x55\x42\xd1\xc1\xd8\x6d\x7c\x5f\xd8\x69\x42\x55\xb4\x97\x09\x24\x77\x9b\xd3\xa6\x78\x23\xfd\xc5\x53\x63\x66\x5c\xbb\x13\x6d\xec\x3c\xa8\xb3\x37\xe1\xff\xed\x46\x44\x50\xef\x46\x83\xee\xda\x9b\xf0\x37\x6e\x42\xf8\xff\xa6\x3d\x68\x73\x7d\x93\x39\x6d\x27\x8c\x27\x5c\x3a\x7b\x10\xde\xd8\x7b\x36\xb6\xb1\xb0\xf7\x98\xa2\xe7\xff\xd9\xde\xd3\x93\x29\x9a\x75\xf7\x9e\x9a\xcc\xff\x83\xbd\xc7\xdb\x2b\x7d\x45\x8f\x7a\x2d\xb3\xaf\xd9\x7d\x7c\xb6\xbd\xc1\x48\x41\x55\xbf\x61\x13\x6a\xb3\xdb\x1e\xeb\x72\xfd\x9a\xbd\x28\x32\xd2\x4a\xd7\xf2\x37\xcd\xdf\xee\xf7\xfb\xf7\x1f\xa4\xdb\x59\x6f\x4f\x86\xe2\x57\xab\x06\x98\xe8\x64\x8b\xc8\xf3\x3a\x09\x84\xd1\x5e\xad\xee\xa8\xe8\xe0\xcb\x15\xfd\xcf\x4b\x32\x4d\xfa\x8a\x5d\x76\xde\xb7\xcb\xce\x3b\xbb\xec\xec\xff\x8b\x7d\x03\x9b\x7f\xb8\xf8\x8a\x38\x01\x12\xdb\xb7\x54\x1d\xbe\xc3\xf1\x06\x13\xe7\xd4\xc9\x6c\x2c\x0f\xee\xe5\x51\xee\x20\xa0\x1b\xa8\x3c\x1f\x94\x9e\xe5\x97\x79\xfe\x42\xc1\x62\x1f\x8c\x31\x09\xec\xc7\x44\x25\x67\x8e\xe6\x2d\xca\xe5\xc4\x02\x46\x95\xfd\x8b\xbb\x77\x1f\x07\xf4\x15\xef\x38\xd5\xf2\xc9\x91\x9f\xba\x0e\xbb\x10\x88\xf8\x72\xea\x1d\x0e\xd1\x94\x11\x07\x24\x9b\xc0\x4c\xd8\x48\x08\x6c\x0c\xe7\x58\x38\x86\xa3\xb1\x69\xd2\x29\xe5\x44\xc6\x24\x6a\xf6\xa8\x87\x2d\x99\xf1\x7e\xf8\x42\xed\x65\x53\xee\xc0\x9b\xbe\x53\x68\x44\xba\xa1\x1b\x01\x20\xc1\x72\x93\x16\x17\xe1\x31\xcf\xdd\xe7\xfe\x38\x36\x43\x60\x0d\xb8\x3a\x4e\x65\x23\x85\x1a\x9e\x5a\x06\x38\xae\x5b\x52\x9d\x88\xcd\xc0\x52\x20\xa5\x7b\x9d\x87\xea\xee\x94\xc0\xb7\xbc\x35\x87\x2c\xe9\x60\xec\x99\xad\x5b\xcd\x2f\xd9\xfc\x6d\xa3\x9f\x58\x23\x39\x6b\x4c\x30\x8c\x42\x47\x6b\x52\xd2\xc1\x28\x66\xa5\x72\xba\xf7\xe0\xfe\x24\xe6\x95\xf8\x02\x95\xc1\x9f\xd8\x70\xe1\x2d\x33\x19\xa8\xfb\x58\xf1\xc1\xc8\x69\xcf\x7a\xd8\x26\x8b\x42\xd7\x3a\x98\x6a\x0d\x06\x92\x16\x4d\xdd\xb0\xd9\xbf\x85\x7b\x33\x8b\xe7\x27\x85\xcc\xd1\xe5\x14\x5b\x22\xbd\x39\x45\x90\xa0\x2c\x08\xbc\xc3\xdd\x8b\xb6\x8d\x16\x54\xd1\x56\x04\x24\xdb\x9b\x14\xe1\x40\xcf\x82\xbc\x36\xad\x08\x6a\xac\x59\x93\xad\x40\x00\x64\x2b\xa7\x48\x44\x6d\x26\x92\xfe\xa3\x90\x22\x2a\x19\xa9\x9e\x66\xa3\xf2\xdb\x5a\x0c\xae\x89\x67\xd6\x3f\x05\x72\xb5\xa6\x25\x36\x3d\x21\x43\xd3\xff\xb1\xb0\x5d\x4d\xc7\xce\xca\xf0\xed\xd2\x37\xf5\x79\x17\xd6\x50\x6c\xf6\x14\x2e\x4c\x2f\xc1\x9a\x53\x5e\x32\x13\x77\x14\x2e\x0c\xff\xe2\x62\xca\x29\x2a\xe3\x1e\x40\x72\x73\xd8\xb1\xab\x70\xb3\xd9\x11\xf2\x3f\x1a\x7f\x14\x37\xfb\x27\x90\xe6\xb4\x3a\x4e\x89\xe4\xf5\x9b\x9b\xae\xa8\xb0\x4d\x6f\x3a\x8d\x4e\x90\xb9\xfa\x00\x4f\x3b\xfb\x10\x0f\xbb\x97\x20\x11\x06\xc3\x9c\x6f\x2a\x69\x5b\x82\xe0\x1b\x01\x02\xc3\x9e\x96\xb6\xeb\x51\xea\x2c\x3e\x29\xc4\x7d\xd0\x22\x93\x39\xc5\x82\x83\x80\xc2\xef\x91\x67\xb1\xf3\x87\xf6\x8f\x6a\xd1\x68\x49\x2a\xb6\xdf\x30\x8a\xc7\x51\x83\x43\xd7\x06\xfd\xe0\xb0\x42\xad\x0c\xdb\x2f\x20\x10\xe8\x45\x13\x98\x7d\xb1\x14\x1c\x65\x9d\x68\xcb\x06\xdf\xaa\xdd\xad\x7e\xb9\xb1\xa1\x76\x80\x18\x92\x4e\xea\x9c\xe8\xc0\x6b\xc5\x35\xca\xf3\x41\x4b\x89\xe7\xb9\x7a\x24\x22\xd5\xc0\xf6\xde\xe5\xa0\x98\x71\xa4\x31\x61\x1c\xc5\x58\xee\x3b\xf7\x8b\xcf\x12\xe9\x24\x68\x5c\xbc\xf1\x6a\x83\x38\xcf\x41\x1c\x16\x47\xdf\x2b\x3e\xc9\xd6\x0e\xa7\xc7\x1f\x79\x92\xd7\xa8\x38\xb3\xa9\x93\x56\x38\x67\x65\x49\xca\x83\xa2\x6d\x77\x97\x4b\x70\x5d\x39\x0a\x36\x61\xed\x2a\x4c\xa7\x1b\xce\x73\xf5\x98\x8a\x69\x38\xb4\x8a\xf6\xae\x27\x4c\x75\x3c\x0d\x6a\xd1\x45\x3c\x52\x21\xc1\x3a\x74\xe0\x26\xec\x6a\xd4\xa7\xfb\x85\x4a\x19\x5f\xf2\x5f\xc9\x03\x59\x67\x64\x9d\x6d\x02\x30\xb7\xb1\x68\x2d\x08\x24\x25\x55\xce\x4a\x32\x25\x68\x36\xa5\x7b\x32\x30\xd5\xb2\xdf\x90\x41\x3a\x22\xc9\x9b\xc6\x01\x46\x50\xab\xe2\x00\x7e\x4f\xac\x3d\xe7\x1b\x85\xd4\x5d\xe2\xd2\xee\xbe\xe3\xcb\xdd\x30\xbd\x73\x21\x53\x19\x99\xde\x39\x4a\x4f\x6d\x65\xcd\x27\x7d\x95\x6f\xf2\x1c\x98\x4c\x45\x1a\xc2\x30\x91\xb1\xf9\x5e\xbc\x4b\x9a\xad\xb7\xcf\x7c\x4f\x5b\x01\xac\x22\x0c\x30\x22\x68\xc5\xed\x81\x61\x82\x06\x23\xb0\x84\xb2\x0d\xb4\x7d\x30\x22\x22\x24\x90\xf6\x0b\x37\x23\xc3\xde\xeb\xa6\xf4\x03\x8f\x48\x2a\xff\x97\xf3\x84\x77\x29\x2f\xd6\x63\x61\x02\xc6\xb0\x75\x53\xe9\xe0\xbc\x63\xf8\xd1\xf4\x44\x53\x77\x50\x86\x7c\x65\xf7\xfd\x65\xb8\xbe\x50\xf2\x7a\x47\xb7\x06\xf5\xf0\x1e\x3e\xa7\x23\x82\xc0\x48\x9f\x0d\x3f\xce\xb4\x54\x18\x61\x3c\xd4\x17\x4c\x24\x3e\x67\xac\x81\xb5\xfb\x04\x0c\x5c\x82\x4b\x41\xd2\x66\x35\x26\xa1\x9a\x54\xe3\x35\xb9\x2b\x87\xf6\xab\xfd\xf4\x2b\x1c\xbf\x12\xbd\x5e\x23\x58\x11\x16\x34\x18\xc8\x54\x33\x68\x71\x0f\xf1\x45\x2f\xe7\x1f\xb6\x19\x80\x9e\x9d\x8e\x8b\x91\x59\x6a\x2d\x52\x7b\x84\x9d\x6a\xb2\x80\x6b\xd2\xb0\x44\x4c\x36\x01\xee\x7c\x3c\xb6\xb8\xe9\x94\xaa\x36\xec\x9e\xdf\x66\xf6\xd7\x88\x99\x51\x7c\xe3\x94\x16\x1a\xef\xbc\xcd\x39\xff\xd8\x19\x15\x0d\x6d\xc2\x14\x03\x1b\xae\xce\x06\xdd\xd0\xfa\xae\x78\x93\x40\xdd\x95\xe0\x5e\xd1\x50\x19\x25\x30\x55\x71\x4a\x39\xd8\xd0\x2e\x5d\x50\x85\x12\x65\x07\xa3\x07\xce\x43\x4e\x50\x2d\xf1\x40\x52\x1e\xd9\xc9\x89\x03\x37\x59\x83\x26\x5c\x38\xd2\xae\x11\x84\x9a\xca\xe2\x8d\x44\x70\xf5\x21\xf0\x24\x9d\x9a\xdb\x73\xac\xbf\x2d\xc7\x83\xa0\xc8\xcb\xa3\x9b\x1c\x38\x4a\x52\x21\x18\x18\x4e\xed\x83\xdf\x26\x7f\x70\xc8\x8d\xd3\x68\x2a\x7d\x91\x0e\x98\xcf\xee\x1e\x9d\x2a\xda\x4b\x5d\x20\x0e\x3b\x19\xf8\xaf\xb1\x45\x90\x33\x47\x32\x89\x8f\xa7\x02\xca\x6c\x79\x61\x24\x69\xe0\x6e\x02\x84\x9b\xa7\xfd\xf3\x5c\x0e\x2f\x6e\xe6\xca\x54\x2c\xcf\x91\xbb\xf7\xdf\x7a\x38\x93\x9f\x24\xd5\x44\x52\xb8\x72\xc7\x44\x4e\x3b\xb2\x80\x40\x34\xb5\x5c\x89\xb2\x75\x0a\xb7\xc6\xc2\x52\x11\xd1\xbe\x87\x89\xf6\xd4\x84\xeb\xe7\xcf\xf1\x8d\x19\xcb\xf3\x3f\xdd\x85\xf4\xb6\xf1\xe4\xbe\xbb\xd9\xb4\x43\xf0\xd8\x2e\x36\x9c\x5c\xa0\x7e\x2f\x15\x8c\xee\xb4\xb1\x68\x4b\xad\xde\x1f\x44\xf0\xcd\x4b\xc7\x07\x98\x38\x49\x05\x19\x5b\xcc\x01\x4f\xf3\x43\xef\xf1\xf9\x9c\x59\x83\xa4\xf4\xb4\x1f\x3b\xb7\xbb\x6d\xe3\x9b\x64\xbb\x0f\xcd\x4e\x14\x4b\xe2\x06\x8b\xa0\xc2\x3f\x0e\x53\x30\x90\x26\x9e\x9c\x72\xe1\x5f\xa0\xaa\xa0\xf3\x36\x26\x18\xe8\x10\x6c\x8a\x25\x14\x50\x3e\xd1\x80\xf9\x03\xca\xef\x0f\x5f\x5c\x60\xea\xdb\x16\xd8\x0f\xa1\x07\xec\x77\xdd\xaa\x76\x6a\xf0\xd0\xe1\xbd\xec\xdf\xf9\x59\xcc\xef\x74\x5a\x30\x2a\x58\x01\x6a\x7d\xae\x01\x01\x34\xa8\x67\xf3\xd9\xb8\xbd\x00\x8a\x94\x53\xe9\x5d\xe6\xba\x09\xd4\xd8\xb3\xb3\xa6\x8d\xf3\x0d\xec\xe5\x17\x9c\x1a\xb2\x9b\xe7\x39\x1a\xd9\x6b\xb7\xf1\xf7\x26\x60\xfc\x3d\xc7\x56\x1a\x5e\xe7\x39\x07\x61\xc5\xa8\x18\xf5\x4b\x95\xd5\xf0\xe3\xac\xac\x66\x4d\x55\x6a\x66\xfd\xb7\x02\x24\xd0\x74\x4b\x38\xaa\x09\xc7\x45\x84\x2a\x64\xd5\x83\x9a\xd6\xfd\x35\x8d\x16\x44\xc2\x02\xe0\xdb\x68\x2b\x69\xbd\xa4\x03\xfd\x02\x4c\x94\xdb\xd6\x9a\x30\x8b\xf3\x1c\x35\x2d\xc7\xe9\x19\xa4\x66\x92\xd8\xed\x9a\x5e\xd9\xc2\xf8\xe1\xb9\x34\x29\xeb\x20\x24\x05\x7d\x41\xa0\xd5\xeb\x61\x0c\x80\x94\x73\xdb\x8c\x31\xe8\xf5\x03\x1d\x6d\xd5\x79\x95\x44\x02\x4f\x2a\x07\xc7\xc1\x25\x6a\x48\x85\xd7\x5d\xc1\xc1\x23\x01\x35\xed\x42\x54\xb7\x36\xd0\x15\x6d\x22\x7b\xc3\x3c\xaf\xfa\x32\xe8\x06\x52\xd1\x6a\xb1\xcf\x68\xd3\x51\x7c\x9a\x39\xcd\x5d\x3a\x6b\x73\x26\xb3\x2d\x8c\x6e\x6f\x78\x8b\x43\x53\x99\x1a\xf5\x7e\x09\xd5\xea\xfd\xd6\x4a\x81\xac\x6a\xd8\x17\xb3\xc1\x0e\x87\x71\x4b\x5e\xeb\x19\x9d\xb9\xe6\xad\xd7\xa6\xaf\x2c\x1b\x1d\x60\xef\xae\x2f\x78\xc5\x7c\x29\xb5\x93\x3f\x55\x74\x3c\xf2\xc3\x95\xe7\x4d\x7b\xdf\xa7\x83\x6a\x9c\xcb\x28\x62\x5b\x2b\x5c\xf9\x09\xd5\x4c\xc2\xcc\xab\x68\xd3\x55\x88\x06\x77\x40\xb7\x55\x04\x0b\xbf\x8e\xe6\x5c\xd3\x6a\x1f\x63\x7c\x1b\xe6\xa8\xcf\x9b\x98\x0c\xed\x47\x55\x08\x5c\x37\xb4\x5a\xaf\xdd\x76\x22\xd3\x1d\xc4\xcf\xf8\x75\x4a\xf9\xfe\xe8\x37\x21\xe9\x77\x43\x45\x51\x97\xc8\xc6\x6d\x56\x5e\xb9\x4a\x21\x49\xdf\x4a\x24\x09\x1f\x36\xa2\xd6\xe5\x59\xc5\x3e\xc6\xd3\x1d\x6f\x57\xbc\xda\xd8\xcf\xc2\x29\x00\x64\x61\xa8\x48\xa7\x0e\xc4\x29\x67\x49\x4b\x3d\xca\x94\x64\xb3\x39\x85\x23\x98\xfb\x2d\xb5\x27\xa7\xf8\x83\x1f\xbe\x7c\x18\x7c\xe1\x0c\xf8\x6f\x98\x99\x84\xad\x9c\x22\x46\x07\x23\x02\x2c\x25\x2e\x18\x1d\x8c\x5d\x67\xbf\xb0\x14\x96\xc4\x9e\x53\x03\xbe\xab\xc3\xa7\x19\xee\x2d\xa6\x58\xc7\xf7\x1f\x64\xb1\xcf\xf4\x0b\x10\xb1\xa7\x18\x06\xa0\xc1\x77\xc3\x3d\x05\x7e\x15\x9e\x2e\xc3\xd3\x99\x7f\x9a\xdc\xf0\x8e\x63\xe5\x80\xa2\x15\x18\x40\xaf\x0d\x65\xe7\xf7\x7d\xea\xd0\x08\x56\xab\x07\xfe\xb1\xe3\xb9\x38\x86\x26\x08\x6a\x3f\xf7\x5a\x14\x83\x56\x4f\xce\xca\xc1\xdc\x83\x5f\x0b\x02\xc0\xcb\xdc\x4c\x92\x42\x73\xd1\x30\x58\x42\xb0\xb2\xec\x76\x10\x0c\xd1\xa1\x0a\x41\xec\x15\x69\xf6\x79\xf1\xd8\x6a\x15\x04\x65\xad\x9f\xae\x89\x08\xf1\xeb\xf0\x79\x28\xdf\xaf\xc5\x48\x6e\xb6\x5e\x9b\x7e\x0c\x3d\x85\x6f\xd7\xa6\x37\x53\x48\x29\x6b\x9e\x6b\x2f\x00\x3a\x04\x1f\x68\x7b\x5b\x13\x40\x2b\x0d\x88\x68\x22\xcf\xcc\x76\xc0\xd4\xdc\xdc\x72\x68\x72\xde\xf3\x5f\x49\xcf\x35\x6a\x48\x69\xd6\x2a\x3c\x29\x93\xf2\xe4\x34\x76\x65\xe8\x9c\xf7\x15\x25\xfd\x49\xf8\xb4\xf0\xd4\x93\xd6\x3b\x11\x2c\x2d\x5c\x5a\x49\x1c\xe6\xa2\x9d\x1d\x6b\x10\x7e\x5b\xe8\xdb\x6e\x44\x37\xa7\xd6\x03\x61\x49\xbf\x0b\xe5\x7e\xb7\x59\xae\x9f\xcd\xfd\x37\x81\x52\x3c\xad\xf8\xec\x53\xbf\x44\x47\xb5\xd1\xa8\x19\x4a\x31\x33\xcf\x74\xa9\xf0\x7a\xa6\x2c\x14\x41\x43\x85\x9f\xd9\x96\xee\x11\x1e\xb6\x00\x50\xe1\x4a\x0c\x57\x77\x9b\xee\x6e\xf3\xbc\xec\x0b\xb4\x33\xb5\x3c\x11\xa7\xd8\xda\x1b\xdc\x54\x2c\x6b\x61\xba\x2b\x88\x82\xec\x1b\x93\xbd\x39\x23\x3a\xb9\x34\x86\x14\xa9\x57\x2b\x64\x71\x30\xea\x93\xe6\x94\x1a\x7e\xd3\x2c\x8b\x6c\x8b\xdb\xc2\xcc\xd2\xf3\x99\xdf\x9d\xfd\x7b\xdd\x2c\x97\x8a\xd5\xb5\xf3\x86\xfd\x7c\xce\x61\x83\xfe\x50\x2a\xe1\xd0\x32\xe2\x54\x3f\x03\x03\xc5\xa5\xe8\xc4\x07\xb7\x90\x2e\x00\x9d\x6f\xb6\x7c\xca\x56\x2b\x64\xc6\x0c\x17\x88\x19\x06\xed\xe4\x14\x0f\x97\x4d\x7d\x81\xfc\x15\x40\xdb\xa7\xca\xdb\xde\x29\xd3\x17\x70\x02\xba\x6e\x9b\x9a\xde\xf1\xbe\x14\x7b\x3b\x7d\x66\xcf\x7e\x77\x3a\xce\xbc\xbe\x65\x85\xbb\xdd\x6d\xb2\xb5\x7b\x93\xeb\xe8\x41\x4f\x4f\xaf\x56\xb3\x3c\x9f\xf5\x85\xf7\x8c\x40\x3b\x6a\x33\xdc\xf3\x4d\x9e\x57\x27\xcd\xa9\xa1\x96\x4e\x9a\xd3\xcd\x21\x34\xa1\x4e\x80\x66\x62\x42\x77\x11\xe6\xbb\xa9\x06\xf4\xdd\xd9\xe4\xce\x81\xb6\x4e\xa4\x66\x74\x36\x9d\x39\x5f\x95\xbe\xbb\x2a\x5a\x4d\xab\x4e\x98\xeb\xa5\x3c\x07\x2a\x0e\xdc\x21\xa4\x43\x93\x65\xbb\x33\x8c\x8b\x76\xe2\x40\xfe\x60\x7a\xd9\xba\xed\x4c\x4c\x22\x37\x7d\x4e\xcf\xa0\x29\x3d\xf9\x16\xff\x9b\xf9\xd7\x3b\xdd\x50\x68\xda\x5c\x21\x40\x69\x62\xab\x95\xab\xb7\xed\xd8\x9e\x89\x38\xc3\x78\x5d\x6f\xf4\x82\x9b\x35\xa4\xc6\x84\x53\x46\x50\x22\x0d\xa1\x86\x91\xbe\xe0\x00\x1f\x6b\x0e\xc1\xee\x06\x8e\x6f\x85\xb5\x0c\xb2\x69\xac\x61\x66\x2f\x90\xf8\xce\x07\x56\x7e\x3a\x62\x7a\xea\x7e\x8b\x23\xa6\x23\xbf\x9f\x1d\xfd\x62\x0b\x60\x4b\x9c\x3a\xc0\xec\x53\x84\xe4\x2f\x5a\xcc\x40\x45\x6b\x30\x73\x27\x6d\x58\xa3\x9d\x92\xb8\x25\xf5\xac\x7d\x63\x4b\x9c\x58\x8f\xbe\x96\x8c\xd5\x28\x00\x6f\xaa\x9b\xdb\x99\x14\xb5\xac\xd8\x90\x29\x25\x55\xeb\xee\x4e\xe2\xdb\xd6\xcd\x69\xec\xe8\xdf\x4a\x44\xe5\x3a\x26\x2e\xde\x26\xf7\xf7\x8a\x2d\x22\x72\x18\xfc\x86\xf7\xc2\x07\x61\x53\xbc\x35\x29\x8f\x9c\xec\xfd\xc9\xad\x55\xbe\x93\x39\x7b\x3d\x08\x91\x98\x84\x3f\x87\x02\xdd\x79\xd8\x97\xf9\x7b\x95\xe7\xef\x15\x62\x80\xab\x1b\xee\x2c\x46\x01\x69\xd5\x13\x9e\x9e\x6c\xf4\x75\x8f\x35\x53\xa3\x36\x84\xde\x47\x29\x58\x0e\x0e\x23\x47\xad\xed\xd0\x64\x2e\xdd\xc5\x96\x18\xce\x59\xad\x95\xbc\x89\xf2\x69\xe1\xd9\xa0\xeb\x15\xf2\xed\xe6\xd0\x6e\x49\x38\x5e\xaf\x0d\x31\x11\xb3\x24\xd0\x87\xeb\x44\x02\xca\x17\x08\xba\xbc\x17\xe2\x4c\xa7\x40\x7c\xa9\x8e\x95\xb8\x94\x8d\x70\x3d\xef\x74\x7d\xba\x5a\xf2\x7a\x0b\x48\x9c\xee\xcd\xaa\xd3\x04\x43\x90\xaf\x93\x1b\x36\xa8\x68\x7a\x85\x76\x68\x82\xa2\xe9\x73\xc4\x23\x3b\xd8\xfb\x34\x58\xbd\x1c\xb4\x8f\xf7\xfc\x63\xfb\xd5\xb1\xa5\x68\x8b\x40\x88\xea\x0d\xcb\x1d\x6d\x09\xbd\x23\xb3\x46\x5b\xbb\x23\x2f\x16\xd0\xa0\xcf\x0f\xa4\x1d\xf8\xa5\x04\x83\x6f\x47\x14\xac\xdd\xed\xa4\xa7\x11\x7a\x3c\x15\xdc\x2f\x74\x8c\xad\x05\x4a\x44\x71\x3b\x0f\x0a\xd7\xdc\x24\x59\xc7\x6d\x94\x6a\x7d\x51\xc7\xc4\xfb\x83\x71\x86\xd7\xe3\x07\x79\x64\xbe\x96\xe7\xc8\xac\x4f\xeb\xa5\x3d\xd1\x00\x19\xff\x80\x27\xac\xd0\x85\xbd\x25\x66\x93\x49\x84\xd4\xfd\x15\x54\xef\x11\x47\xfe\x05\x7b\x10\xda\xd6\x10\xb3\x25\x7f\x21\xfb\xaf\x21\x81\x27\xf7\x5b\x0a\xfe\x81\x7f\xb4\x85\xef\xc7\x2d\xc2\x9e\x66\xdf\xd1\xb1\x63\x13\x4b\xd0\xdb\x21\xb7\xfd\x1d\xa5\xdb\xce\x01\xac\x41\x4c\x90\x16\x60\x2d\x85\x5a\x02\x3a\x08\x84\xfc\x94\x91\xb6\xbb\x1c\xb7\x22\x5b\x6e\x05\x1e\xcd\xce\x05\x14\x85\xf2\x57\x7e\x1a\x64\xb1\xed\x98\xd7\x54\x4c\x1e\x82\xf5\x6b\x30\x98\xe3\x11\xe4\xf2\x90\x8b\x9a\x29\xa7\xa9\x86\x1a\x52\xe3\x82\x6f\x86\xf9\xad\x2e\x89\x88\x4b\xf1\xea\x30\x6a\x8a\x1a\xaa\x49\x9d\x54\xe1\x21\x08\x28\x42\xf1\x88\xd3\x26\xaa\x01\x4e\x73\xad\x49\x03\x18\x8c\x0d\x4e\xf8\xb0\xba\x15\x23\x35\xb4\x71\xd7\x84\xef\xa4\x04\x79\x17\x4c\xd6\x18\x7b\xb4\x09\xd6\x2e\xdc\x93\xd6\xab\x15\xe2\x31\x99\x8d\x0b\x9d\x14\x20\xb7\x31\x7a\x32\x61\xf4\xa4\x67\xf4\x64\x3a\xcc\x92\x48\x1f\x97\x30\x7a\x12\x54\x9e\x36\x19\x3d\xd9\x3b\xe5\x65\x98\xf2\xb2\x65\xf4\xfc\xbd\xd7\x44\x86\xf8\xb5\xec\xce\x72\x1f\x03\xd5\x08\x8c\x5e\xd8\x89\x60\x3f\x8b\xb7\x21\x22\x0c\xf7\xae\xc2\xd5\x96\xdf\x45\x6c\x75\x06\xc2\xcc\x4b\xbf\xf7\x4c\x18\x2c\x5c\x13\xe7\x37\x19\xb7\x10\x9c\xff\x62\xd8\x96\x92\x7d\x27\xc1\xf4\x23\x32\xec\x3b\x3b\xac\xb3\xf3\xa8\x3b\x76\x1e\x19\x76\x9e\x74\x99\x0b\x3a\x18\xad\xdd\x82\xd0\xed\x82\x70\x57\xff\xb6\xb2\xed\x62\xe0\x93\x89\x59\x20\xcf\x39\x6a\x5a\x51\xb2\xd7\x67\xb9\x37\xf0\xa2\xce\x26\x1d\xcf\x86\x34\x3e\x55\x10\xf1\x35\x91\x2f\x95\x78\x2c\x9b\xde\xb1\x6c\xc2\x58\x36\xed\x58\xba\xcf\x77\xd8\xa4\x09\x09\xd6\x4d\x77\x30\x7d\x0c\xd4\xc1\x0f\xa6\x34\x0b\x47\x91\x84\xdf\x26\x77\xad\x6c\xc5\x2e\xe5\x15\xb3\xb3\xbb\x31\xcb\x3a\x0d\xc0\xa0\x79\xd9\x86\xc4\x76\x53\xeb\xb0\x00\x68\xc0\xe3\x4a\xf4\x3f\x7b\x46\x0a\x17\xcf\xc3\xe5\x5d\xac\x19\xa4\xd3\x8e\xd5\xd1\x75\x7c\xbc\x50\xf4\x96\x85\xa2\x7b\x3b\x57\x87\xce\xd5\x3d\x0b\xc5\xd4\x1a\xb5\x67\x27\xb6\x2b\x18\x09\x30\xa0\xd0\xdd\xde\xf6\xc9\x62\x38\xbe\x68\xe9\xbc\xe6\x89\xb1\xb4\xfe\x2a\x62\xcd\x51\x41\x09\x99\x11\x08\xe8\xd8\x79\xb7\xed\xad\x58\x79\x33\x91\xb5\xb0\xed\xf7\x6e\xca\xe9\x9f\x38\xa1\x20\xef\x18\x2d\xa5\xbc\x82\xf0\x36\xeb\xf6\x22\x6e\x43\xd8\x23\xf1\x2d\x3b\x79\x77\x4a\x25\x71\xd2\x19\xbb\xba\x33\x55\xce\xb9\xcc\xec\x69\x03\x60\x93\x36\x0f\x09\x06\xf7\x79\xfe\x56\x5b\x05\x97\x85\xf2\xe8\x89\xf0\x24\x71\xe4\x27\x68\x34\xe1\x8f\xb4\x07\xe6\xe1\xbb\x74\x3f\x18\xcb\x9d\xf0\x53\x33\x9d\x4f\xf8\xee\xf8\x74\xd2\x72\xc8\xe5\xb4\x56\x88\x99\x63\xe0\x2e\x5e\xb3\x9c\x2a\x9f\x2a\x66\x11\xcb\xa9\x74\xc1\x97\xa6\x6e\x25\x69\x88\x0a\xfa\x42\x1d\x01\xd4\x73\x5b\xfb\x7e\xc9\xcf\xef\x62\x23\xd2\x0b\x98\x40\xb7\xe2\x5a\x99\xd3\x43\xd9\x0b\xe3\xeb\xb2\x7e\xdd\x54\x9a\x2f\x2b\x46\xee\x88\xa3\x83\x81\x1c\x5e\xfa\x84\xb6\x2b\x41\x21\xd4\x5e\x74\x4d\xff\x65\xca\x4c\xd3\x90\xc1\x18\x17\x7a\x40\x93\x4f\x83\x94\x41\x7a\xa5\x0d\x70\x2b\xd1\xf3\x7d\x9a\x80\x98\x55\xda\x97\xc8\x3f\x4e\x4f\x4e\x8b\x2c\x33\x65\xe2\xf5\x1a\x09\xc2\x89\x24\x00\x9f\x10\x4d\xe4\x07\x85\xd8\x30\xb4\x74\xe7\xc0\x7e\x96\xa8\x3d\xc2\xbe\xe4\x9c\x83\x74\xe6\xf5\x26\x11\x3a\xde\x2f\x36\xb5\xcd\x36\x4c\x65\xc2\x81\x05\x20\x0a\xde\x7d\x99\xa1\x6b\x0b\x64\x08\x55\xd2\xaa\x1f\x8e\x2c\x71\x16\x94\x93\x4d\xa7\x45\xaf\x00\x39\x8f\x63\xe9\xf8\x36\xd9\x71\x4c\x7f\x89\xf6\x5a\x2c\x39\xb9\x2c\x6e\x80\x1a\xc2\x24\xf6\xe0\x14\x34\x13\x52\xb0\xcc\x9e\x1f\x69\x72\x87\x92\xd7\xd1\xba\x83\xaf\x27\xfe\x2c\xb6\xda\x60\xad\x5e\x98\xec\x0a\x1b\x32\x57\x4e\x86\xa7\xd2\x97\x69\xaf\xe3\xbb\x15\x69\x54\x9b\x98\x48\xbc\x0e\xfb\x7b\x2b\xf6\x16\xfd\xe3\x36\xcd\xb2\x42\x74\x37\x25\x77\x1e\x8e\x0f\xe8\xa6\x1c\x3c\x55\xc5\xb8\x45\xca\x53\xbf\xe1\xaa\x28\xa6\x8c\x55\x2a\x15\xff\x0f\x84\xe9\x5e\x9a\xde\x77\x76\x7c\x83\x34\x9d\xfd\xe7\xd2\x74\x0b\xa2\x22\x82\xc5\x79\xaa\xb3\x62\x0e\xc0\xee\x4e\x3c\xd9\x14\x9c\x7b\xa2\x01\x20\xa6\x62\xa5\x38\xc1\xae\x77\xce\xb9\xa1\xaf\xfa\x90\x99\xec\x0c\x4d\x67\xae\x07\xf0\x48\x33\x77\x5e\x1d\x3c\x62\x14\xc0\x2d\xfc\xc2\x91\x5d\x07\xa4\xbd\x65\x47\x8c\xb2\xd2\x02\x5b\xe4\x39\x72\x2e\x7f\xad\xf7\x52\xbd\xe1\x93\x03\xe7\xf9\x27\x97\x78\x3d\x3c\xe3\x62\x1e\x54\x96\xf0\xa4\x31\xd3\x15\x31\xbc\x5a\xa1\x66\x58\xce\xe7\x4e\xd2\x71\x01\x5e\x0e\x04\xc6\xeb\x54\x62\xf0\x43\xd1\xc3\x63\x1e\x64\x0e\xb9\xe5\xd3\x76\xc1\xd5\xeb\x72\x39\x75\xbf\xc5\xeb\x72\xd9\x0a\xae\xfe\x0a\x7a\xbc\x48\xd8\x2b\x6c\x20\x04\xe8\x01\x09\x6e\xf3\xe8\x6d\xac\x28\xb4\xf6\x0e\xa0\x9c\x7e\x81\xd7\x7d\x68\xfd\x4c\x44\x42\xa6\x97\x25\x52\x98\x38\xe1\xd8\x3a\x76\xa7\xfe\x79\x5b\xb9\x13\xef\x0e\x13\x34\x22\xb6\x59\xc5\x4c\xb6\x08\xa3\x82\x64\xc6\x57\xaf\x6d\x45\x54\x2d\x7f\x57\x88\xa4\xeb\x39\xde\xa7\x7c\xde\x52\x02\x7d\x25\xf1\xc4\x50\xea\x69\xa9\x67\x17\xb0\x79\xf6\x75\x43\xdf\xcd\x87\x72\xe7\x13\xa5\xf4\x37\x3e\xfd\x8d\xc3\x1c\x3e\x62\x1a\x9d\xe8\x0b\x5e\x9f\xe2\xe2\x37\x0e\x13\xc2\xbc\xe1\xd6\xf9\x90\x15\x08\xca\x20\x57\x74\x7d\x4b\x4c\xb2\xcd\x1a\x21\x41\x6e\x43\xe0\x91\xf6\x4e\x52\x9d\x17\xde\x2c\x5b\xe3\x35\x8e\x47\xe5\x63\x2c\x8f\x4b\x51\x86\xde\x28\x2f\x6e\xcc\xf3\x67\x0a\xe1\x00\x73\x12\xd8\x74\xdf\x6f\xfb\xa3\x7b\x0f\x73\x00\xe4\xe9\xba\x70\xd4\xab\x07\xf7\x08\x8b\x41\x41\x83\x42\xd1\x5f\x12\x61\xf2\x54\x21\xb7\x8a\x1e\xdc\xb3\x7e\x28\x23\x19\x80\xd3\x6b\xbb\x9f\x99\x15\xd2\x9f\x73\x47\x7f\x0b\x7c\x0d\xf5\xaa\x2f\x41\x15\x3b\x05\x7c\x5d\x85\xef\x25\x15\x8e\xf2\x0e\x1a\x84\xe7\x6d\xa9\x29\xb0\x8e\x85\xc3\x84\xf9\xf6\x86\xd3\xdb\xc8\x00\xb8\x78\x2b\xd7\xe4\x59\x3f\x04\x0b\x79\xca\x5b\xcf\x5c\xfb\xe4\x1d\xa7\x23\xf2\x84\x1b\xbe\xf4\xa5\xd5\x37\x23\x2f\xdc\xef\x2b\x13\xf5\x9e\xd3\xbd\x31\xf9\x15\x12\x7c\x70\x11\x7f\xc3\xdb\x1f\xee\xed\x1f\xf7\xfb\x1b\xef\xf8\x49\xfb\x89\xa3\x58\x5b\xe6\x25\x0f\x0e\x96\x18\x7d\xc9\xbb\x60\x3a\x93\x20\x28\x9e\xf4\x10\xfd\xe3\x40\xc8\xc3\x32\x9e\x45\x8e\x3f\xc0\x07\x4a\xb4\xdb\xc6\xfe\x74\x60\x62\x25\x64\x4f\x98\x17\xa9\xbe\xff\xc7\xae\xbe\xff\x3d\x48\xd9\xd1\xda\x3f\x97\xa0\xd6\x1d\xe4\x89\xeb\xad\x5d\xe5\xfa\x32\x72\x97\x6f\x3a\xc3\x55\xf2\x1f\x9e\xe7\x28\xd2\x8f\x98\x95\x62\xc6\xaa\xa7\x6e\xa1\xa3\x3f\x38\x26\xff\x70\x14\x3b\xa2\xf9\x2e\x48\x12\x26\x6d\x3f\x45\xca\x37\x22\x54\x09\xdc\x90\xfb\x03\xd8\xeb\x6a\x8d\x47\xfb\xf7\xf2\x64\xf2\xdf\xbe\xe4\x94\x4d\x58\x11\xc9\xaf\x5e\x71\x52\xc3\x71\x83\x53\x85\xfb\x9e\xd1\x70\x6a\xd1\xe3\x07\x09\xf5\x78\xdf\x2b\x4b\x6f\x35\x9b\xb8\x63\x38\x08\xaa\x13\x10\x91\x8e\xe9\x5e\x9e\x47\xaa\x54\x75\xd7\xd0\xaf\x1b\x10\x39\xa5\xb4\x1b\x6e\x90\x4b\x39\x19\x22\xfa\x19\x34\x28\x52\x8b\xb9\x03\x4c\xae\x78\x67\x1a\xf8\x99\x61\x2f\x6b\x3b\x3e\xcc\x40\x3a\xa1\x5b\x08\x9e\xb8\xac\xb8\x2d\x97\x1c\x71\xd0\x93\xac\x49\x85\x09\x77\x38\x30\xce\x4d\xc2\x26\x14\x4c\x10\x84\xd5\xfe\x62\x34\xbd\xd9\x37\xe5\x42\xfd\xf1\x2d\xa7\xa6\xdb\x70\x87\xc6\x5d\xd0\xda\x56\x6a\x4e\xeb\x8e\x10\x7f\x49\x2b\x3f\xa0\xfc\xe4\xe9\x29\xad\x09\x37\x1c\xe8\xbc\xd5\xb7\xae\xe8\xc2\x33\x6c\x0b\x55\x5e\xb2\xac\xb0\x3a\x01\xd6\x7a\xa2\x38\x14\x28\x33\xc7\x5f\x46\x78\xc2\xa6\x5d\xf1\x39\x93\x2e\x6d\xd9\x18\xfe\xb5\xb0\x38\xb1\xa3\xc9\xe2\x91\x66\x9e\x15\x5d\xec\xee\xe2\x43\x81\x34\x3b\x59\x9c\x76\x72\xb0\x57\x5c\xb6\x04\xb8\x74\xea\x16\xc1\x2f\xcf\x5d\x01\xfc\xb2\x3c\xf7\x15\xab\xb8\xf8\xd4\xf9\x88\x6c\xab\xe4\x42\xaa\x4b\x9b\x56\xb1\x9a\xe9\x90\xb6\x6e\xce\x2e\xb9\xee\xa6\x9e\x33\x5d\xf2\xaa\xb6\x1f\x68\x79\x7e\x5e\xb1\x8d\x2a\x59\x9e\xf6\x5a\x23\x4e\xe6\x36\x2f\x2e\xae\xca\x8a\x43\xd1\x64\xae\xd0\x92\x64\x52\x58\x25\xc6\xac\x97\xaf\xe5\x29\xe7\x4a\x6f\x23\xd6\xb5\x18\x0c\xe6\x81\x4d\x5c\x7f\x53\xf6\x2d\x4f\xfd\x6f\xf1\x75\x95\x5b\xb7\xf7\xd9\x0a\x55\xe6\x0b\x8b\x82\x4c\xe6\x78\xde\xab\x94\x30\xa3\xf3\x93\xe6\x94\x24\x92\x80\x66\xba\x89\xa9\x38\x9b\xf2\xa1\xa9\x8e\xbb\xf5\x75\x57\xcf\x0b\x7a\xd2\x7e\x49\x66\xa7\xb8\xd8\x04\x5e\x9c\x01\x6a\x69\xf2\x69\x96\xed\x6e\x7e\x6d\x02\x4f\x71\xb1\x71\x31\xdc\x04\x0d\x0c\x7b\x31\xbc\x24\x0d\xc6\x7e\xfe\x57\xa9\x5c\xe2\x6f\x86\x38\x26\x47\x30\x92\x80\x62\xd7\xdb\x99\x36\xd5\x9f\x02\xf1\xde\xc1\x4c\xd4\x67\xb6\x69\xab\xb4\xed\x9b\x47\xea\x28\x89\x9c\x7c\xdd\xd0\x05\xa9\x13\x16\xa6\x31\x3b\x64\x50\xca\xf5\x17\xcc\xc0\x15\xce\xa9\x26\x9c\x36\x64\x49\x6b\xb2\xa0\x3f\x02\x84\x6a\x90\x4e\x56\x45\x35\x04\x6f\x27\xcf\x9c\xf7\x48\x32\xa3\x94\xfe\x22\x86\x17\xfa\xb2\x82\x51\xfc\xd9\xb4\x06\xc7\xc1\xd3\xac\x9e\x29\xbe\x04\x81\x14\x9f\x22\xc4\xe9\x62\x38\x53\xac\xd4\xcc\xb9\x9e\x34\x8c\xed\x55\x06\x3e\x31\x9c\x74\x88\x66\x8f\xec\x37\x8f\x1f\xfd\x9f\xef\xdd\x53\x46\x16\x34\x15\x80\x72\xa7\x2e\x0b\x9c\x26\x2e\x36\xe7\xca\x72\xc8\xeb\xe9\x62\xa3\x38\x4e\x6e\x79\x5d\x98\xc8\x35\x2e\x50\x4f\x3c\x26\x7e\x0c\xac\x52\xf2\x32\x16\xdb\x2c\xc2\x0b\x1d\x8c\x30\x2e\x36\xbe\x7f\x73\x84\x66\x66\x49\x98\x86\x62\xb3\x2d\xce\xed\xb6\x58\x93\x1b\xbb\x75\x0f\xc6\x60\x14\xbe\xa4\x1c\x36\xd8\x0b\x5a\x91\x1b\xba\x30\xdb\x5b\x63\x36\xd9\x30\xa7\xbe\x72\xeb\x5c\x62\x52\xd1\xf9\x57\x6c\x9f\x15\x1d\x4d\xaa\x68\xfb\xac\xc2\xf6\x59\x9d\x92\x25\x9e\x74\x72\xe9\xd9\x42\x37\x8b\xfa\xca\x6d\x74\x19\x6f\xa3\x9b\xb9\x6c\x6c\xa5\xcb\x74\x2b\xdd\xfc\xa2\x77\x3b\xed\xa9\x5e\xd8\x52\x97\x66\x0f\xaa\xe8\xb9\x7b\x4a\xf6\xaf\x25\xec\x5f\x17\xdb\x76\x3f\xbf\x04\x2b\xfa\x93\x80\xaf\xfb\x16\xeb\xf2\xeb\x77\xde\xca\x2a\xb1\xcd\x37\x94\xd8\xbe\xa5\x52\xc9\x96\xec\x1a\xf7\x9d\xf8\xa6\xc6\xf9\xcd\xa4\xa2\xf3\xf5\x4c\xa1\x85\xa1\x27\x66\xb1\xbe\xda\x15\x5d\x90\x4b\xba\x24\x67\xd4\x2a\xad\xcd\xcc\x7e\x7e\x86\x01\x9f\xbb\xb3\x39\xce\xdc\xd5\xf7\x35\x3d\x3b\x99\xc5\xa2\xe0\xd9\xb4\x56\xe8\x92\x5c\xdf\x2d\x0a\x9e\x39\x8f\x36\xe8\x9a\x5e\x4f\xaf\x53\x45\x23\x9c\xe7\xca\x67\x11\x9f\x0e\xb3\x9e\xd3\xe1\x7a\x8a\x12\x07\x4b\x57\xab\x55\x66\x7e\xaf\x71\x9e\x4b\x9f\xc9\xc6\xc9\x70\xed\x22\xb3\x6c\xf7\xfa\xab\x14\x8b\x66\x5f\x50\x2c\x9a\x75\x15\xdb\x66\x7d\x9a\x46\x33\xec\x5a\x7d\x0d\xe7\xc9\x05\x99\x79\x5b\xda\xeb\x3c\xbf\xd4\xe8\x92\xcc\xc8\x35\xb9\xc1\x41\xf8\xbd\xd8\x38\x64\x96\x70\xc8\x2c\xcd\x21\x33\xde\x7e\xc8\x2c\xe1\x90\x59\xf6\x4e\x6a\x5b\xe0\xdc\xb2\xee\x66\xab\xab\x99\x7e\xa2\xb5\xe2\x67\x8d\x66\x28\x83\x60\x38\x13\xcf\x34\x72\xa9\x70\xef\x02\x40\x15\x5d\xe2\x68\x6f\x8c\xa6\xbc\x97\x93\x2f\x7d\x39\x20\x27\xaf\x48\x92\x66\x09\x72\x72\x5f\x9d\x58\xe6\x9d\xe7\x9b\xa9\xe7\x1b\x52\xf1\xad\xfa\x9c\x11\x02\x5f\x74\x42\x2e\x93\x13\x12\xd5\xf4\x4a\xc1\x3d\xb9\x3f\x0c\x13\xb3\x56\xbe\x16\x89\xa3\xb2\x1e\xc4\xc5\x00\x25\xd1\x2b\x56\x7f\x90\x2c\xde\x9d\x07\x45\x1f\x69\x3f\x3d\xb3\xe7\x03\xef\x90\xd9\x35\x2e\xd0\xa6\xba\x5c\xdd\x8a\x68\x7a\xcb\xc3\x84\x77\x58\x0c\xd2\xd1\xe9\x05\xb2\x1f\x70\x2e\x52\xb2\x9f\xf0\x0d\x4a\xbf\xb1\xe4\x3d\xd8\xa8\x04\xd1\xb2\xe1\x50\x7c\x77\x01\x42\x84\x36\x09\xd0\x8f\x9d\x0b\xcd\x82\xa7\x24\x03\x76\xc7\xe5\x31\xfb\x0c\xb7\x9c\xa8\xc6\x70\x4c\x6a\xd2\x44\x5d\x5e\xe3\xae\xc1\xe5\xc6\xdd\xc2\x26\x0c\x57\x1f\x3c\x0e\xbe\xdd\xb0\x3a\x6b\x0c\x47\xdd\xaa\xe8\x04\x4a\xa8\x26\x0d\xed\x61\xf3\xd2\x32\xda\x04\x83\x3a\xcf\x9b\xd6\xa9\x3f\xa0\xde\xa7\x72\xf2\x28\xb2\xa2\x89\x37\x34\x3c\x4d\xdd\xee\x53\x4e\x78\x8c\x0b\x5d\x01\x8c\xe9\x56\xf7\x69\x9d\xd4\x96\x43\xe5\x31\x0c\x35\x36\x4c\xb0\xd5\xa3\x08\x10\x1c\x6d\xa7\xe4\x79\xbd\x61\xc3\x77\x2f\xe9\xf0\x1f\x8a\x8e\x19\xd9\x86\x38\x63\x93\xbf\xf5\x42\x8d\x38\xec\xc7\x70\xb1\x9a\x8a\x8a\xb7\x70\xf2\x1b\xc6\x05\x5e\xf6\x01\xf7\xcb\x8c\x8c\x29\xa5\xaf\xf8\x6a\x35\x6e\xef\xa7\x3b\xf0\x04\x20\xd8\xa8\xe9\x88\x34\x5d\x93\x81\x66\x82\x41\x71\xa5\x23\x00\x7f\x6c\x56\x52\x4d\x0d\xc5\x16\x4c\x76\x9e\xf7\x26\xa9\x70\x7c\x9d\x3f\xe9\x2d\x9f\xd6\xeb\x44\x4a\xe5\xa4\x6b\x2f\x79\x24\x54\x6a\xc5\x28\x22\x19\x93\xf6\x7a\x23\x1a\x78\x90\xdb\xa6\x90\xe0\xf1\x3c\xea\x83\x1b\x6f\xa7\x9d\xe8\x84\x6e\x41\x21\xef\x66\x19\x4f\xb5\x38\x63\x4c\xc6\x8f\x58\xa2\x2d\xd6\x53\xce\x74\x6b\x29\x45\xa7\x21\x9d\x82\xb0\xe3\x40\x12\x5f\x96\x20\xf4\xed\x43\xe8\xce\xe9\x78\xb4\x7f\x40\xe2\xab\x91\x4e\x47\x25\xb9\x8b\x8e\x87\xc1\x95\xf9\xfc\x1e\x5e\xc7\x7a\x93\x5e\xf2\x1e\x2b\x8a\xb9\x3b\x29\x46\x45\xbf\xdf\xa0\x7f\x47\x5a\xa9\x4b\x1e\x9b\xe7\x10\x46\x5e\xf1\xd6\x33\x47\x07\x64\x84\xf5\x5a\x9a\x02\x68\x24\x05\x01\x1d\x26\xcf\x78\xa2\x98\x1a\xfb\xda\xfb\xdd\x69\x34\x3c\xe1\x56\xf0\x7c\xef\x20\x73\xfe\xb3\x9f\x70\x3a\x18\x45\x9f\xb6\xa0\x8e\xf4\x0d\x9f\xf8\x8b\x25\x18\x95\x64\xde\x1e\xcb\x0f\x52\x7d\x7a\x2b\x26\x02\x56\x58\x9e\x33\x4a\xe9\x8b\x76\x1b\x7c\xc9\x57\x2b\xf4\x93\x29\xe1\x15\xa7\xc2\x6c\xa0\xff\x28\x84\x5e\x70\xca\x70\x70\xb0\x2b\x1c\x32\x53\x90\x9f\x5d\x5e\x72\xdd\x05\xe1\x69\x15\x0b\x40\x97\x71\x82\x6f\xb5\xba\x01\xf8\x0b\x1c\xfb\x73\x7c\x69\x36\xd8\x8f\x25\xc2\x13\xfc\x92\xd3\x7f\x73\xf4\x92\xe3\xd6\xd0\xad\x4d\x15\x45\x3b\x1d\xd1\x1b\x90\x13\x5f\x4a\x7a\x25\xe9\x8d\x6c\xf5\x26\xa8\x5d\x8f\x60\xfe\x54\xa2\x1b\x67\xf7\x17\x62\x6c\x47\xfe\x30\xce\xbc\xc7\xd2\x97\x1c\x2c\x58\x9d\x64\xb9\x9d\x27\x1c\xf4\x41\xed\xfd\x1f\x23\x35\xe5\x86\xa0\x27\x33\x0a\x3a\xb8\x9c\xbe\xe2\xa4\xea\x4e\x33\x52\x25\x13\xb3\xda\x9c\x98\xce\x16\xb2\x75\xce\x9a\xc8\x2d\x7a\x81\x1f\xe1\x22\xce\x4e\xbd\x05\x9d\x4d\x66\xb4\x76\xe0\xb8\x7b\x63\xb2\xa4\x7b\xe3\x89\x35\x1a\x85\x2b\xde\x59\x7b\xe9\x7d\x11\x1b\x5a\x46\xcd\xba\x68\xd5\x8f\x2f\xe8\x45\xd7\x85\xed\xed\x92\x8e\x47\xff\x3f\xd4\xca\xfa\xf7\x2e\xa2\x9b\x78\xef\x44\x63\x83\xb4\x46\xa6\xb4\xc4\xe0\xf8\xb2\xfc\xfc\xac\xb1\xf3\xc1\xec\x78\xa3\xc7\xf4\x62\x3a\xa7\xa3\x02\xed\x99\xad\x7d\xbe\x5a\x5d\x3c\x02\x7b\xd9\x39\xbd\xc0\x38\xb6\xa7\x4c\x6c\x27\x67\x18\xda\x6b\x5b\x88\x2e\x68\xd4\xc8\x3c\x47\x17\xed\xf5\xfb\xac\x73\x3f\xef\x51\xab\x82\xd3\x9a\x59\x17\x2d\xf3\x22\xbe\x68\x06\xa7\x4c\xf1\x5d\xf0\x74\x96\x5e\x05\xfb\x6b\xb1\xc5\x29\x2e\x6a\xb8\x12\x5b\x04\xf0\xaf\x99\xc5\xbc\xc2\xb7\xb3\x78\x3e\x3c\xb8\x17\xcf\x8f\x9c\xee\x8d\x7f\xbc\xff\x03\x9c\x6b\x95\x57\x72\xb2\x65\x57\xed\x30\x4d\xad\xe1\xee\xf8\x87\x02\x21\x4e\x95\x44\xb1\xdd\x72\x6b\xd3\x5b\x11\x8e\x31\x26\x1b\xf6\xb7\x6d\xea\x56\x17\xcf\xb5\xcf\x9c\x78\x4b\xb3\x56\xcb\xd9\x05\xc3\xd3\xf4\x1d\x9a\xf7\x89\x93\xda\xb7\x93\x54\xe0\xff\x74\x61\xe8\xe4\x22\xc0\xd8\x98\x93\x11\x7c\xae\x2d\xe0\xc2\xb9\x37\x35\xa9\xe1\x2e\x99\x83\xf5\x0b\xf4\x13\x37\x1c\xeb\xcf\x3c\xba\x73\x6e\xc8\x82\x70\x4c\x16\xf6\x86\xb9\x02\x80\x4e\x3b\x2b\xa6\x4d\xd4\x06\x37\x55\x96\x86\x88\xef\x4e\xca\x5f\x0c\x11\xcf\x31\xde\xbb\xcf\x0e\xcc\x61\xbd\xdc\x9d\x63\x32\x7a\x44\x9b\x3c\x7f\xcf\x1f\x19\x62\xed\x3d\xa7\x0d\x26\xc9\x88\xec\x8f\xee\x3d\x34\x21\x69\xa7\xf1\xd0\x57\x77\x4e\x42\xb8\xf0\x45\xa8\xd1\xa8\xb2\xe4\xcc\x6a\x95\x3d\xd9\x81\x8b\xb2\x9d\x59\xeb\xcb\x64\x37\xdb\xa9\x9b\x1a\x0c\xba\xe7\x3b\x90\xcb\x8e\x85\x03\xe2\xe2\x9c\xec\x9c\x35\x7a\x47\xc8\x1d\x3f\x39\x77\xde\xbf\xdc\xb9\x2e\xeb\x9d\x7a\xc9\x66\x7c\xc1\xd9\x7c\xf8\x7f\xc4\xff\x11\x4f\xe6\xf3\x9d\x72\xe7\xd1\x11\x64\x63\xf6\x41\x7f\x97\x3b\x1c\x0e\x1f\xb7\x65\xed\x5c\xf0\xf3\x0b\xa6\x0c\xab\xae\x2f\xd8\x8e\x56\x8c\xed\x68\xb9\xb3\x54\xf2\x8a\xcf\xd9\x4e\xb9\x53\xc9\xd2\x2c\xc7\x1d\x2e\xe6\x7c\x56\x6a\xa9\x76\xa4\xda\x01\xff\xd7\x17\xb2\x9a\x33\x65\x52\x3b\x4d\x93\x61\xb6\x5b\x6b\x54\x61\xbc\xfe\x15\x8e\x95\x19\x5d\x4a\x34\x23\x40\x07\xc1\xea\x73\x8c\x69\x93\xc0\x60\x35\x1b\x9d\xbb\x61\x52\xce\x49\x29\xcd\x48\xd1\xbf\x38\x6a\xc8\xcc\x0c\x59\xaa\x5d\x0a\xe6\x07\x0b\x3a\x23\x73\x6a\x2d\xa2\xc9\x92\x46\xec\x01\xf1\xa8\x87\x4d\x4a\x40\xf5\xcb\x45\xb7\xdd\xd3\x07\x15\xe3\x65\xff\x16\xbb\xec\xbf\x45\xf7\xf7\xe2\xab\xd5\xe0\x37\x0e\xd3\x7a\x89\x31\x98\x4f\x7f\x7d\xbb\x3f\x9b\x76\x2f\xe2\x76\xaf\xd7\x91\x3e\x69\x32\xcf\x1a\xa0\x82\xbf\xe3\x48\xe2\x56\x69\xa6\x3d\xc7\xd6\xeb\x60\xd6\x6d\xaf\x5e\xc3\xd1\xd7\x4b\x05\x58\xed\x22\xec\x2f\x1b\x0d\xe9\x27\x78\x7d\xc1\xe6\xe6\xfc\xb7\x97\xae\x31\x36\xbe\xa5\x62\xb7\xa5\x8a\xb7\x4a\x00\x4b\xb4\xc5\x25\x18\x01\x70\x31\x3e\xce\x70\xb8\x0a\xfe\xd5\xfa\xbc\x90\x40\x5a\x6a\x56\xeb\x43\x7b\x40\x98\x1e\x22\x3c\x84\x1e\xf9\xf5\x02\xe1\x4d\x9b\x9a\x8b\x73\x17\xe8\x14\xac\xe4\x23\xb1\x5a\x8d\x9c\x63\x32\xff\xdc\xe4\x79\xd3\x42\xe3\xfd\xa9\xc0\xe0\x07\xbc\xb9\xec\x1c\x96\xe0\xdd\x48\x6c\x40\xcd\x91\xbd\xb1\x85\x53\x65\xc3\x39\x9f\xc3\x1c\xc9\x73\xdd\x12\x9f\x3e\xd0\xf4\xfd\xdd\x64\x14\x15\x64\x53\xd7\x26\xda\xc4\x3a\x15\xd1\xa6\xe4\xb5\xce\xf3\x3d\xc3\xd8\xbc\xe7\x53\xe4\x2b\x8c\x74\xcf\x1e\x07\x3e\x61\xf1\xa3\xf7\xdc\x6e\x68\xa0\x09\xd4\x49\x05\xba\x71\x44\xd3\xf7\x7c\x4f\x93\xed\x0d\x1e\x3d\xd6\xd3\x51\x01\xfc\xfb\xdd\x74\x9b\xe8\xce\x14\x15\x1b\xd7\xfc\xc9\x37\x54\xee\x3a\x57\xf2\x22\x52\x3d\xdf\xb8\x8a\xdf\x50\xc4\xeb\x5b\x8d\xe2\x6e\xa5\x9b\x7e\x44\x71\xf5\xb5\x4b\x58\xb5\x4c\x06\x97\x48\x10\x66\x96\xa8\xf9\x59\x02\x4c\x2d\x26\xf1\x91\x6b\x47\x4f\x97\x48\xc4\xc1\xe9\x65\x74\x9a\xd9\x5f\xdf\x9a\x59\xac\x2d\x7f\xd0\xda\xd5\x21\x0e\xfe\x64\x29\x68\x46\x89\xfe\xfc\xb4\x19\xed\x38\x24\xf2\x40\xe4\xc6\x29\x42\xfb\x7b\xc7\xa7\x8c\xbe\xe3\xc5\x13\xf3\xfb\x37\x9f\x46\x07\xed\x2b\x5e\x78\x14\x9f\x29\x62\xf4\xa6\x9c\x46\x13\x0c\xe6\xdb\x2e\x8a\xe7\x1c\xdb\x1d\xdf\xc7\xdf\x8f\x47\xab\x11\x8e\xa0\x55\xf6\xf7\xf6\xef\xf7\x24\xbd\x3f\x1a\xe1\xef\xf7\xef\x9b\xb4\x9e\xfc\x7d\xe1\xd8\x0e\xc3\x7e\xec\xed\x31\x5c\x24\x2b\xe6\xa6\x34\xf4\xa2\x21\xd9\xca\xd5\x8a\x3d\x9a\x95\x70\x6d\x58\x52\x86\x63\xaf\xe9\x3f\x77\xa0\x1f\x59\x4b\xce\x04\x7f\x75\x79\xae\x22\x25\xba\xa8\xf0\x57\x1c\x94\x51\xdd\x46\x55\x58\x1d\x9c\x52\x55\x7c\x63\x3b\x52\x5b\xb6\xa9\x91\x33\xe4\x7b\x04\x7f\x1f\x9b\xb2\x50\xbc\x6f\x8c\x89\x55\xa2\xd0\x3d\xdb\x19\x5e\xad\xf4\x63\x61\x31\x72\xbb\x71\x54\x60\xf2\x33\xf8\xd2\x76\x3a\x48\x62\xab\x26\x9f\xd9\x1a\x22\xaf\x4a\x56\xb9\xef\xb6\x9b\xfa\x91\x86\x72\x3a\x1b\x94\xc6\x81\x45\x6c\x79\x84\x58\xf7\xb0\x27\x93\x6e\xa0\xcf\x44\xb5\x6a\x24\x96\x0b\x8b\xd8\x6a\x95\xe7\x61\x52\x63\x99\xe8\xb7\x6d\xf0\x78\xce\xbd\xa0\xa0\x2a\xe2\xad\x55\x2f\x3e\x8b\xa9\x4e\x6f\x0c\xd5\xb1\x19\xab\xd8\xfa\x71\x6f\x0c\x6d\x71\xb6\x3c\x6e\xac\xad\xbe\xb2\x1b\x99\xa4\xaa\x6b\xfe\xb5\x56\x21\xa9\x17\x1b\xc8\x76\x4c\xb4\x1b\x93\x5e\x7d\xcd\x81\xe1\xe9\xcd\x10\x9b\x55\xa0\x1f\x9b\xbf\xc0\x76\x7b\x3d\x4e\x13\x3d\xf8\x9b\xe7\xf9\x0b\x6e\xd1\xca\x60\xd0\x37\xa1\x59\xdf\x96\x8f\xaf\xcd\x8a\x79\x5b\xd2\x11\x29\x51\x36\x7e\x78\x3f\x4b\x66\x86\x28\x37\x5d\x03\xbd\xe3\x93\x77\x3c\xe6\x17\xc0\x82\xd4\x1d\x7f\xc1\x83\xce\x7a\xc1\x45\x59\x55\x37\xb7\xef\x38\xe5\x56\x67\x4c\x59\x78\x63\x22\xdd\x2f\x87\x52\x4b\xaf\x07\xd2\x94\xe0\x37\xc1\x45\x56\x26\x72\x66\xfe\x2c\x20\x7c\xee\xc2\x97\xf0\x76\x01\x7f\x6f\xe0\xef\x95\x8b\xb9\x2c\x69\xa4\xe2\x24\xe4\x35\xc2\xe4\xac\x8c\x54\xcf\xf6\xd0\x65\x69\x77\x1e\x72\x5e\xd2\xb3\x92\x5c\x97\xf4\xfe\x88\x40\xe3\x9f\x97\x1d\x5d\xb2\xa3\x12\xe1\xdb\xce\xe7\xa8\x9b\xff\xde\x65\xe9\xf6\xb2\xc8\x1a\xd4\x0d\x1c\x5f\x00\x4e\x15\x2f\x2d\x6e\xe7\x23\x5e\xe2\xf4\xb4\x2b\xcb\x3c\xdf\xae\x93\x55\x96\x78\xcd\x4b\xaa\x09\xdb\x68\xd5\xde\x65\x69\xba\x2d\x0a\xae\x67\x17\x6c\xde\x54\x2c\x7c\xfd\xa6\x24\x00\xe3\x2d\x1b\x5d\x74\x0e\x7d\x8d\xf7\xd8\x3a\xaa\xef\x61\x32\xc4\x1b\xab\x5d\x59\x02\x6a\xb5\xfa\x58\x22\x3c\x1d\x3d\x92\xb0\x25\xb8\xbc\x7f\x2e\xc5\xbc\x62\xf4\x4c\xa1\xd4\xd4\xc4\xe4\xf3\x4d\x84\x82\x26\xa6\xbf\xdd\xb0\x3c\xb5\x3b\x54\xac\x6a\x6c\x73\x25\xf2\x3f\xa0\x41\x74\xd4\x56\x43\xf0\xf8\xa9\xda\x94\xd3\xf3\xb2\x40\x7f\x95\x4e\x63\xb3\x2a\xf3\x7c\x0c\xbf\xab\x15\x6a\x6b\x63\x7e\xa2\x1c\x3e\x45\xcb\x12\x36\x27\x43\xde\x1d\xb9\xee\x9f\xbf\x93\xd2\xaa\x8d\x76\xf6\x06\xbf\x35\xc8\x72\x8a\x54\x49\x65\x49\xcd\x6a\xdc\xf8\x14\x5c\xa4\x49\x13\xdf\x1b\xd7\x13\xa8\x4a\x5c\xe8\xc7\xdd\x02\xfb\x77\x6d\xd2\x98\x96\x2d\xcb\xe9\x85\x59\xf2\xb5\xa9\x43\x55\xc6\x87\xe7\xbb\x94\x26\x00\xfb\x90\x08\xfd\xcc\x10\x4c\xd3\x67\x25\x4a\x53\x14\xc7\x5e\x33\xbc\xd5\xc8\x36\xbd\x6c\xb5\x2e\x47\x0e\xbb\x2f\x92\x21\xc9\x12\xb7\x14\xa0\x2c\x89\xa2\xaa\x8c\xb7\x71\x2b\x58\x53\x3d\x68\xcc\x00\x87\x6b\x41\x3f\xbd\xe4\x35\xe0\x30\xca\xd2\x71\x11\xf7\xee\x65\x98\x28\xd8\x78\x37\xba\x0b\xdf\xda\xce\xef\x89\xea\x60\x5f\x41\x06\x25\x36\xc9\xfb\x52\x93\xde\x11\x92\x64\x6b\xc6\x9e\x0f\x52\xb6\xaa\xb7\x66\x94\x45\xff\x80\x6e\xcf\xc4\xd6\x4e\xf4\x7d\xd5\x53\xc5\x6d\xd9\xac\x15\xed\xc9\x22\x48\xd5\xe5\x63\x98\x3e\x54\x12\x4d\x95\xed\x49\x59\x3a\x01\x37\x5f\xa0\x64\x3a\x78\x63\x0c\x41\x15\x38\xc5\xdd\xcc\x75\x5d\x9b\x2d\xac\x2a\x29\x83\x13\xe0\x73\x99\x78\x5d\xfd\xd8\x2e\xc7\xc1\xe0\x73\xb9\x5a\x0d\x06\xf1\xa6\x76\x21\x9b\x6a\xfe\x07\x67\xd5\x1c\x99\x43\xcf\x7c\x1c\x6f\xb4\x6f\xcc\xd7\x4e\x2e\x0c\x52\xe0\x20\x9c\x54\x25\xbe\x35\x2b\x78\x62\x27\xa1\x2a\x3d\x18\xc2\x26\xbb\x35\x71\xc4\xd8\x59\x09\xd4\x18\xba\x93\x5f\x33\xbb\x01\xeb\x5b\xf3\x8e\x17\x67\xb6\xec\xf5\xb3\x12\x8d\x08\xd4\xd5\x9d\x81\xd0\xee\x88\x15\x7a\xd6\x9e\x11\xb0\xff\x58\xb1\x76\xbb\xe9\xf8\xf5\x50\x97\xf6\x98\x37\x7b\x13\x7b\x04\x3f\x03\xf4\xb9\x34\xd5\x7d\x5c\x95\x78\x82\xdf\x95\xa8\x2e\x49\x55\x12\x1b\x40\x20\xb7\x28\x9f\x0d\x42\x69\x23\xc7\x28\x8f\xc1\xd8\x66\x00\x56\x4e\x86\x8d\x70\xe7\xb3\x15\xd9\xfb\xaf\x8e\x5d\x72\x9c\x1c\x9c\x9e\x72\xba\xb2\xab\x9b\xd1\xab\x32\x1c\xcc\x9a\x8e\x26\xfa\x51\x50\x29\xd2\xbb\xbb\xc1\x7a\xe5\x44\x9f\x02\xf9\x20\x86\x1f\xa5\x78\x2a\x2f\x97\x40\x70\x7b\x29\xbd\xc2\xb7\x0b\xb3\x67\x2d\xc0\xdb\xc4\xbc\x04\x7e\x92\x2f\xd0\xa2\xc4\x0e\x0e\x99\xce\xcb\x40\x19\x58\x3a\x21\x22\xf3\x9f\xba\x5e\x6e\x4a\xbb\x35\x00\xa2\xbd\xdf\xf7\xb4\xdd\xee\xac\xef\x8d\x8d\x5d\xad\xcd\xc4\xa5\xb2\xc8\xfc\x3e\xa7\x7b\xf7\x33\x0c\xf4\xca\x28\x66\x22\xe2\x63\x27\xec\x68\xd3\x27\x96\xaf\xd6\x70\x72\x6d\x48\x48\x08\x30\xf3\x20\x17\x49\xce\x54\xdc\x73\xcc\xee\x8d\xc9\x39\xc0\x7e\x93\xdf\x2d\x34\x49\x30\xe6\xe9\x96\x6e\xbe\x86\xf3\xba\xcb\x8f\x17\xa1\x36\x38\x52\x47\xe8\xcd\xe2\xff\xad\x8a\xb7\x35\x9c\x00\x45\xd8\x0e\xc5\x93\xb2\xcb\xb6\xc1\x85\xc9\x4f\x66\xae\xc4\xd8\x26\x86\x75\xfb\x98\x2e\xf3\xc7\xf6\xea\xcf\x9e\x15\x57\xe5\xf4\xaa\xa4\x27\xea\xb4\xb8\x2a\x2d\x02\x8f\xd9\xe8\x86\x1f\xe7\x6c\xc1\x54\x74\x8d\xd8\xa1\x50\xc0\xc9\xef\xc6\xb9\x3a\xc2\x93\xbe\xde\x31\x2c\xea\xf3\x72\xfa\xb6\xdc\xdd\x2d\xd0\x73\x33\xe7\xcc\x6a\xc1\xe4\x6f\x4e\xed\xed\x5b\x90\x83\xd9\x1b\x3d\x43\x7c\xff\xf0\x43\xe6\xee\x05\x04\xbd\x93\xc8\x71\x47\xdd\x83\x71\xf6\xc5\x9b\x34\xd2\xe3\xd8\xc0\xdb\x17\xf5\xb0\x31\x13\x38\xa3\xe4\x63\x35\x95\x85\x22\x29\x53\x3a\x02\xc0\x41\xd4\x72\xbb\x91\x48\x8e\x8e\x48\x8f\xa0\x0e\x42\x7b\x79\xe3\x28\xfd\xb6\xf0\x88\xaf\x1d\xe1\x02\xa9\x47\x9b\x11\xfd\x5c\xf0\xc8\x71\xbf\xbd\xb2\x43\xf0\x2e\xf2\x58\x4d\xfb\x5b\xd1\xdb\x86\xa2\x37\xed\x63\xcb\xb5\x7f\x65\x2e\xd8\x0d\xac\xdc\x26\x2c\xc0\x53\xe0\xdd\x14\x2e\xda\x86\x26\x09\xe2\x8e\xff\x6f\xba\x92\xb8\x72\x70\xa1\x1e\xcb\x3c\xf7\x6f\xe4\x67\x85\x46\x84\x6d\x5e\x28\x8f\x1f\x45\x0a\x20\xd3\xa0\xe2\x14\xfb\x2d\xd7\x5b\xee\xf2\x35\x4c\xbe\x58\x6b\xa0\x50\x54\x17\x9d\x40\x72\xa1\xe8\xb1\x20\x2f\x04\x92\xf4\xa5\x40\x0e\x63\xd7\xa9\x8c\x71\x29\x8e\x74\xa9\x74\xc6\xc5\x8e\xc4\x96\xff\xbc\xad\x4d\x48\x21\x87\x69\x12\xc2\xc4\x3c\x0e\x7c\x2e\xe6\x6b\x7b\xfe\x85\x9b\x58\xc4\xcd\x7f\xd9\x51\x35\x32\x5c\x98\x57\x14\xe3\xec\x7a\xb5\xba\xe6\x62\x2e\xaf\x31\xb8\xf8\xf2\xb9\x99\x44\xf1\xbb\x3d\x25\x1b\x7b\x98\x36\x43\x55\x8a\x73\xf6\x14\x10\x8d\x6e\x39\x6d\x86\xa5\x98\x5d\x48\x15\xec\x23\xea\x10\xf4\x76\xb1\xa8\x99\x26\x15\x6d\x86\x0b\x39\x6b\x6a\x48\xd2\xf8\x37\x1b\x0b\x27\x62\xab\x1d\x45\x5a\xdd\x6a\x77\x2e\xbe\x08\xbe\x9b\xfc\xbd\x80\xb5\xda\x18\x91\x85\xd9\x6b\xdd\xed\xee\x88\x5c\xd0\x11\xb9\xa1\x92\x5c\xd9\xc4\x3a\xe0\x7b\x78\x02\xfc\x72\x72\x63\x58\x54\x2b\x0c\xaf\xad\x4b\xf1\x9b\xc8\xed\x3b\x5a\xd0\xd9\x6e\x8d\x89\x49\x55\x05\x91\xf9\x46\xaa\x39\x9d\xed\x36\x98\x18\x92\xb0\x0d\xcf\x73\x34\xdb\x75\xef\xa0\x0a\xe6\xce\xff\x76\xf3\xbf\xa4\x37\xb1\x76\xf6\x04\x5f\xd1\x1b\x72\x43\x2f\x27\xbe\x9a\x7c\x81\x6e\x80\xe6\xb7\xcd\x04\x70\x9e\x2b\xab\x6e\xbd\xbb\xbb\xa4\x50\x65\x53\x45\x4c\x4c\x68\x65\x42\x2f\x9c\x75\xed\xdc\x84\xc6\x05\x01\xcd\xe6\x51\x6c\x2d\xd9\x7a\x45\xd1\x0d\xbd\xc2\x11\x98\xc6\xfa\x86\x5e\xae\x39\x85\xbb\xc3\xc5\x6a\xe5\x2e\x16\x41\xce\xe7\x66\xdd\x02\xa6\xd9\xdc\x9b\x56\x3b\xbd\x23\xd3\x85\x2e\xc1\x08\x12\x8c\x92\x04\xd0\xa0\x1b\x45\x6f\x61\x90\xd9\xfc\x79\xc5\x2e\x0b\x49\xc2\x54\x7d\x67\x66\x4f\xc1\xd7\xe4\x58\x38\xab\x37\xe5\xe9\x87\x0f\x7c\x82\x6f\xc1\xa1\x64\xc0\x3f\x35\xb3\x23\x26\xe9\x20\x09\x5f\xa0\xfd\xfb\x0f\xf2\x0f\x91\x7e\x17\x76\xf3\xfe\x8c\x7e\xe0\x91\xa4\xce\x09\xd8\x51\x4d\x3f\x70\x7c\x07\xca\xc5\xfd\x62\xf3\xb2\xcd\x14\x51\xc7\xba\x3d\xae\x0a\x67\xf6\x48\x3e\xa7\x67\x1d\x9d\xc0\xeb\x28\xc4\xaa\xc6\xbd\xa5\x75\x74\x45\xf7\x9c\xbe\xdd\xe6\x49\x0f\xd5\x1d\xb0\x5b\x6b\x62\x34\x3d\x2f\xde\x48\xe4\xcc\x8d\xce\x31\xb9\xc6\x93\xb7\xc3\x8f\xa9\x3f\x91\xbe\xec\xe8\xf3\x75\x1f\x34\x8d\x33\x21\x7b\xe0\x81\x6a\x12\x2b\xe5\x1d\xd6\x63\xa7\xfc\x81\x9b\xfe\x6c\xb7\xb9\x75\xbb\x28\xc1\x7f\x3e\xa7\x2f\xd6\xb2\x25\x36\x3e\x70\x77\xb8\x3f\xcc\x30\xf9\x93\xa3\x0f\x9c\xf0\x30\x33\x4d\x24\xea\x66\x88\xad\x61\xcc\xc6\x2c\x38\x33\xb3\xe0\xfc\xce\x59\x60\x06\xe1\x88\xc6\x93\x00\x78\xb6\x07\xf9\x11\x68\x2f\x7f\xe0\x51\xd7\x67\x19\x26\xe3\xfd\x87\xf9\x91\xfd\xec\x38\x9d\x25\x2d\x39\x75\x6c\xe3\x0f\xe9\x31\xe0\xe9\xb9\xd0\xc3\x2d\x17\xa9\x87\xd3\x43\x8b\xa3\x57\x1c\x26\xe7\x08\x5e\x7b\x05\xe5\xf1\x3d\x53\xa4\xb3\xea\x3b\x36\x1d\x82\x49\x5c\xe3\x9c\xee\x1d\xa4\x7a\xb0\x5b\x12\x91\xd7\x26\x3c\x92\xf7\x7e\xe0\x1d\x83\xca\x2f\x24\x78\x58\x1c\x72\x74\x6d\x96\x01\xb9\x0e\xb6\xff\xe6\xcc\xbb\x8e\xdc\x8f\x91\xeb\x1e\x4f\x3a\xe4\xba\xdf\xd8\xff\x35\xbd\xde\x94\x89\xbf\xce\x73\xf4\x3a\xc9\xff\x75\x9c\xff\xeb\xbe\xfc\x5f\x6f\xe4\x8f\xef\x9a\x78\x67\x66\xe2\x9d\xd3\x17\xeb\xb3\x3b\x27\xde\xf9\x17\x27\x1e\x5f\xa0\x43\x7a\xa3\xc8\x31\x1c\xc5\xe4\x88\x1e\x0e\xa3\x3d\x8b\x9c\xd1\xc3\x61\xba\x6b\x91\xe3\x01\xa5\x47\xb9\x99\x60\x47\xe9\xb9\xda\x22\x6d\x58\xa9\x70\xe0\xf4\xd1\x40\xaf\x56\x03\xeb\x94\xde\xca\x70\x20\xe4\x00\xe8\x0a\x7f\x7a\x80\xa6\xa3\x95\xa0\x8b\x56\x4f\x18\x32\x8a\x41\xc5\x8a\xcc\x21\x14\xd5\x86\x42\xd0\xd3\xe0\x3f\xb1\x46\x02\x17\x83\x81\x85\x0a\x2c\x15\xf3\xb5\x3a\x94\x35\xb7\xe7\xf9\x60\x60\x16\xc6\xd6\x04\x48\x60\xc3\x23\xa1\x4e\xab\x86\x73\xf7\xe0\x0c\x79\xc8\x11\x0e\x32\xfa\xb3\x3c\x7f\x21\xd0\x91\xa9\xfa\x31\x3d\x1b\xc2\x79\x40\x5a\x0d\x98\x43\x7a\x36\x64\x02\x14\x97\x0e\xe9\x71\xb0\x1f\x8a\x49\x9c\xa3\x29\x3a\xea\x90\x35\xf4\x98\x1c\x25\x44\x0d\x7d\x5d\xea\x8b\xe1\x25\x17\xe8\x90\x1c\x59\x55\x79\x7f\xb2\xe2\x02\x1d\x52\x74\x4c\x3b\x75\x5e\xad\xe6\x2d\xad\x73\xfc\x35\xb4\x0e\x3a\xa4\x87\x1d\x72\x87\x9c\xd3\xa3\xd8\x32\xce\x95\x49\x5e\xb7\xf5\xf1\x4d\x3e\xc7\xe4\x8c\x86\x76\x43\xa3\xa7\xaf\x8b\x28\x19\x13\x73\x93\x68\x70\x38\x64\x9f\x35\x13\xf3\x3c\x7f\xfd\xd8\xcc\xdc\x73\x7a\x46\xce\xe8\x6b\xf2\x9a\x9e\x9b\xf2\x9e\x08\x74\x44\x5e\x63\x72\x6d\x9f\xce\x30\x39\xcf\xf3\xeb\x3c\x47\x86\xf3\x3c\x8c\x68\xae\xd5\xea\x30\xa2\xb8\x06\x94\x9e\xc3\x94\x69\x83\x2d\x5d\x05\x11\x12\x1e\x4d\x54\xa0\xbf\x06\x94\x5e\x87\x0f\x22\x3a\x0c\xc2\x6d\x7a\xf0\xce\x78\x4c\x8f\x9d\x5a\x3a\x4c\x7d\x84\xf1\xb0\x66\x1a\x46\x09\xd9\x12\x89\xcf\x1f\x93\x43\x67\x86\xf6\xa4\xaa\x20\x75\x8d\x30\x79\xfd\xf8\x6c\x8a\x0e\x87\xe5\x7c\x6e\x33\x38\x36\xc9\x6c\x17\x20\x5b\x03\x12\x0a\xc4\x05\x3a\x36\xd9\x3f\xef\x89\x23\x49\x1e\xe6\x1f\x39\xa6\x27\x16\xd5\xf9\x90\x1e\x4d\xcc\xe8\xb5\x8b\x64\x82\x0d\x19\x73\x18\x11\x66\xc7\x96\xeb\x0d\xa8\x18\x87\xa4\x62\x0b\x5d\x1c\x0e\xeb\x99\x92\x55\xf5\x8a\x2d\x34\xd1\x72\x19\x02\x8e\xe5\x72\x6d\x55\x32\xfb\xb6\xfc\x23\xdb\x67\x66\x03\x80\x07\xd8\x37\x46\x93\xa3\x47\xc7\x5e\xe2\x73\xb4\xbb\x8b\xcd\x9c\x3f\x39\x3a\xc5\xfe\x50\x8f\xca\xa2\x87\x43\x53\xbe\xe9\x8b\x24\xee\x58\x2e\xe9\xe1\x50\xcb\xe5\xda\xd1\x4f\xb0\x35\x1a\x1a\x69\x70\xa1\x0c\xdb\xe0\x94\x53\x82\x87\xda\x4d\xca\x09\x18\xd7\xa3\xee\x99\x79\x4c\xc5\xc6\xb1\xf9\x69\xe3\xd8\x3c\x78\x90\x7f\xb2\x71\x7f\xf5\x52\x50\xaf\xe9\x31\x41\x87\x5f\x47\x45\x4d\x22\x45\x86\xcf\x66\x13\x8d\x15\x19\xee\xe5\x87\x11\xd5\xd6\x5e\x80\xfe\x85\x3f\x6f\x7a\x8c\x47\x4e\x27\xd5\xe4\xf4\x91\x1e\x76\x68\xa4\x43\x4b\x23\xfd\xd5\x01\x11\x7b\x23\x91\x8d\x21\x9d\x18\x3c\xf9\xdc\xe3\x2e\x19\x7d\x8c\xd2\x59\xb2\xed\xf3\xd7\xd0\x58\xd8\x42\x43\xd0\xc3\x04\xa2\xcc\xf5\xf4\x9b\x3c\x9f\x49\x34\x22\x6f\xc8\xe7\x8e\x16\x84\xf9\xe8\x59\xe7\xa3\x96\xfe\x78\x06\xc4\xed\x59\x22\x65\x3c\x74\xd0\x41\x6e\x24\xdc\x6b\x02\x4d\x78\xe6\x13\x75\xaf\x5d\xfd\x50\xf4\x24\x58\x43\x05\x9f\x91\xb3\x0e\x72\xac\xa9\xe0\xd3\x64\xd4\xfc\x08\xe5\x79\x32\x78\x79\x7e\xa5\x7c\x4f\x1f\x76\x7a\x3a\xcf\x9f\xfa\xf5\x91\x92\x37\x09\xe5\xe9\x81\x0e\x0e\x8a\x2f\xe1\xe5\x18\xc2\x6e\xff\xa1\x9f\xa2\xef\xcc\x14\x4d\xf1\x8e\xdf\xd9\x98\x27\x34\x26\xfb\xfc\xe4\xfd\xc0\x93\xde\x32\x09\x5f\xd2\x27\x1d\x03\x8b\x97\xf4\xc9\xba\x6f\xc5\xbf\x9b\xbe\x43\x2f\x71\xf1\x2e\xac\xbc\x97\x77\x92\xc5\xa0\x0a\x75\x44\x5f\xac\xd5\x9d\xd4\xc9\xd1\x17\xa9\x93\x27\x9c\x5a\x24\x90\xbe\x4a\xbd\x52\x79\xfe\x2a\xf1\xb9\x85\xc9\xa7\x0d\xe1\x17\x71\x9a\x15\x48\x6f\x31\x0d\x79\xfc\x69\xaa\x0b\x10\xa0\x3a\x78\x11\xbc\x71\x6f\x4e\x75\x9f\x46\x5c\x2b\xa7\x7c\x59\x22\x16\x6e\x08\x6b\x2f\x32\x7e\x00\xc2\xe7\x4d\x57\x96\xa9\x84\x9b\x45\xa2\xe7\x17\x65\x8c\xf4\xb4\x2c\x27\x4b\x93\xaa\x73\xdd\xde\x5e\x32\xa0\x65\x49\x05\x5e\xad\x9a\x72\xb5\xda\x14\x68\xb7\xd9\xbe\x6a\x2f\x1f\x96\x65\x9e\x0f\x2e\x4a\x7c\x7b\x71\x67\xce\x17\xf6\xfa\x22\x89\xf2\xb9\xbd\x8f\xe5\xe3\x37\xc1\xbd\xb8\x25\xf9\x26\xcb\xd2\xd6\xc7\xab\xe4\xa0\x67\x25\x9a\xd9\x9b\x86\x59\x49\x47\xff\x7f\xf6\xde\x84\xcb\x6d\x1b\x49\x1c\xff\x2a\x12\xff\x33\x0a\x11\x41\xb2\xd4\x87\xdd\xa6\x82\x68\x1d\xdb\x99\xf1\x8c\xed\xf6\xda\xce\x64\x33\x8a\x7e\x0e\x5b\x82\xba\x19\x53\xa0\x02\x82\x7d\x44\xe2\x77\xff\x3f\x14\x4e\x1e\xea\xee\x38\xc7\xec\xbe\x99\x97\x3c\x37\x85\xfb\x28\x14\xaa\x0a\x75\x18\x25\x90\x9b\x18\x67\x7a\x82\x37\x2d\x23\xc1\xcc\x8d\xe5\x26\x26\x1c\xcb\xa9\x66\xf7\x98\xea\x7f\xb7\xa8\x2f\x58\x4f\xde\x13\x0a\xce\xe7\xd0\x56\x44\xdb\x03\x09\x47\x0c\xc2\xce\xb6\x84\xa6\x44\xca\x6d\xb9\x8e\x21\x02\x60\x3b\xd2\x26\x00\x05\x61\xfb\x75\x5c\x7d\x6d\x54\xe3\x4b\x64\x62\x64\x19\x8e\xab\x7e\xcd\x43\xa5\xbf\x8a\xd0\xb6\x5a\xa7\x86\x73\x5f\x69\x84\xf2\x8a\xf2\x73\xaa\x1c\xda\x3e\xad\xb6\x7a\x9b\x82\xe8\x04\x06\x3e\x0e\x5c\xa8\xc3\x52\x47\x81\xf2\xdc\xdd\xe5\x44\xa9\xd0\x4d\xd4\xb8\x72\xf0\x5c\xfc\x84\x87\x0c\xe7\xb8\xf0\xf4\x50\x19\x29\x4c\xe8\xec\x57\x7c\x52\x8d\xbb\x66\xe3\x9a\x4f\xed\x17\x61\x51\x3d\x36\x3a\x68\x3f\x66\x38\xcc\x08\xcf\x42\x8e\x50\xd3\x59\x17\x2d\xad\x04\x47\x38\x7a\x52\x28\x79\x8c\xd0\x71\xa2\x8d\x82\xb3\xd0\xb6\x2d\x49\x16\x26\x10\x8c\x35\x0e\x13\xf0\x55\xe9\xa0\xe1\xdb\xd8\x39\xcd\xb7\x32\x70\x0d\x0b\x7a\x06\x16\x60\x32\xf2\xf7\x24\x04\x9f\x69\x19\xc2\xdc\x83\xf7\x9f\x62\x1d\xbb\xb2\x0b\x91\x27\x8d\xa1\xa4\xbe\x90\xbc\x85\x70\x11\x3f\x9b\x97\x53\xcd\xad\x12\x6d\x5c\x44\xae\xbf\xef\x62\x67\x3b\x74\xbb\xba\x9c\x1c\xad\xaf\x31\x37\x11\x5f\x92\xa7\x09\x70\x59\x4f\x93\xc1\x58\x7b\xd8\xaa\x3d\x8c\x90\xa7\x09\x11\x3a\x87\x83\x9a\x81\xfe\x61\x16\x36\x27\xea\x37\x33\x5e\x6e\x74\xfe\x45\x9c\x3f\x35\x51\xd0\x54\xca\x32\x59\x9a\x17\x3c\x89\xa3\x75\x33\xa6\x8c\x57\x15\xde\x59\x48\x77\xe4\x26\xf9\x33\x3c\xe5\xd6\xfa\xf5\x6b\x40\xd3\xeb\x44\xb8\x86\xe1\xb9\x50\xa6\x54\x7f\x2a\x9d\x11\x70\x39\xe6\x9a\xff\x87\xc5\x51\x94\x6c\xf5\x8e\x45\x82\xfc\xc4\xc3\x43\x6c\xc9\x0a\x2c\xa6\x87\xd1\x08\xe1\x8a\xcb\xdb\x88\x62\x03\xb5\x7a\x22\xca\xf3\xa2\xd5\x17\x54\x3f\x5b\x5e\x01\xa2\x11\x6e\xbc\x02\x44\x23\xdc\x2a\xc2\xb7\x65\xdb\x53\x9d\xf8\x3e\x1a\x61\xf3\x22\x13\x75\xc7\xf8\x96\x97\x9f\x68\x84\xfd\x1b\x4a\x0d\xb3\xf2\x2a\x17\x0d\xc6\x58\x9f\x4e\x3d\xa7\xca\xf1\x54\x69\x3a\xa4\x65\xc4\xf0\xfe\x67\x71\x39\xab\x66\xdf\xe6\x61\x4e\xb5\xd3\x78\x31\x57\x9e\xf8\xf4\x5e\x26\x1a\xbf\x81\x8e\x42\x25\xa0\xba\xdb\xc3\xaf\x62\xe7\x9a\xbf\x1b\x76\xa9\x32\xef\xa4\x1e\x57\xf3\xb8\xf6\x7b\x5c\x2f\x10\x9e\x54\x12\x76\xbb\xa0\x03\xe8\x75\x00\xf1\x03\x06\x9b\x2c\x61\x62\x60\xd4\x0f\x3a\x81\x2d\xfc\x0f\x65\xd0\xee\xb9\xd6\xaa\x5c\x2b\x5f\xc5\xa1\xbc\x76\xe5\x25\x3f\x32\xd7\x42\x62\x2f\x92\x8a\xf3\x72\xb0\xfe\xda\x1b\xf9\x36\x33\xa1\x96\xb2\x49\xe6\x3b\xdf\x53\x5a\x0c\x3f\xc5\x61\x52\x5d\x2a\x34\x29\x00\xff\x41\x0c\x03\x85\x29\xe9\x34\x19\xa6\xf4\x3c\x5e\xdc\x7c\x50\xa6\x23\xef\x8a\x33\xc1\x29\x7d\xc1\x44\x66\x47\xa1\x82\x97\x29\x57\xd1\xb2\x4c\x28\x7f\x59\x05\x90\x3d\x43\xaf\x79\x9f\x4c\x56\xa1\xd8\xed\x42\x41\xba\x61\x37\x14\x84\x4e\x1f\x13\x7f\x6d\xa7\xb4\x2e\x28\x89\xa8\x27\xeb\x87\xdd\x47\xc6\x42\xd7\x6d\x48\x57\x0c\x2f\xe2\xdc\x73\x2d\xb0\x8c\x45\x3c\x80\xc1\x48\xe4\x14\x48\x4e\xb7\x2b\x9c\xfe\xd0\x84\x69\xd3\x53\x68\x75\x82\xaa\xde\xb0\x99\x35\xac\x64\xf4\x4a\x21\x01\x89\x3e\x50\xa9\xbc\x18\xdf\xb2\x05\xf9\xfd\xb7\x20\x77\x5b\xf0\x32\xf6\xc3\x93\xfc\xea\x0d\xb1\x11\x7e\x5b\xba\xf5\x1c\xb5\x55\x88\xc4\x83\x2f\x62\x7e\x0e\xcb\x9e\x6b\xe6\xdb\x73\x4f\x67\xb3\x66\x07\xf3\xa9\xff\x43\x79\x07\xd4\xbd\x7d\x15\x87\xc2\x03\x67\x5c\xd7\xec\x53\x14\xdb\xe1\xfd\x3a\x3a\xf4\x3b\x3a\xac\x74\xb4\x35\x41\x9b\xa3\x3f\x51\xfc\x91\xde\x68\x7f\xc3\x5c\x5d\xef\x41\xd0\xe7\xd8\x5c\x1e\x11\xad\x61\x65\x81\x13\x79\xd1\xc8\x66\x01\xeb\x44\x0c\xfc\xb3\x0a\x13\xed\xb7\x7c\x45\x49\x7d\xdc\xc6\xab\x5c\xd5\x3f\x46\xb2\x0a\xc1\x3f\x34\x04\x26\x64\xe0\xef\x1a\x3b\x77\xd8\xac\xe2\x0e\x5b\xdb\x2e\x30\xa2\x9c\x72\x3a\xf9\x8a\x24\x1b\xbd\xdf\xaa\x10\x1b\xfe\x54\x50\x7e\xa3\x44\x68\x19\x7f\x92\xa6\xa1\xea\x74\x26\x3b\x21\x41\xff\x6f\xef\x4e\x5f\x0f\x95\xcb\x86\x64\x75\x13\x06\x41\x5f\xa0\xfe\x67\xf3\x19\xc4\x76\xd4\x63\x98\x7f\x86\xb4\xfa\x0c\x6b\xa8\xcf\x70\xc2\x66\x02\xc2\x57\x71\xe5\xd9\x98\x0f\x57\x19\x5f\xc3\x39\x94\x1f\x86\xc8\x79\x19\x72\x34\xc9\x60\x47\x1f\xcb\x0d\xfd\x8e\x86\x1c\xe1\xe7\x02\xc2\x06\x96\x65\xb9\xdf\x2f\x36\x6b\x75\xe2\xa1\x16\x23\x94\xcb\xa5\x1c\x75\x80\xef\x0d\x8a\xbb\x5d\xe6\x7c\x6f\x08\x45\x89\xe3\xef\xe2\xe1\x86\x67\x22\x03\xb3\x0c\x05\xdd\x95\x20\xe0\x1e\x45\xa0\x60\xee\x58\x0e\xb1\x49\x62\x74\x47\x75\x82\x82\x6a\xff\x9d\x8e\x76\xa9\x9e\x11\x6c\xe8\x92\x1a\x03\xc8\xc1\xf4\xf0\xe7\xb8\x4e\xf2\x01\xe4\x60\xee\x48\x09\x49\x3b\x56\xc7\x2f\x2e\x28\xab\x87\x30\x6f\xd0\x3e\x88\xfa\x22\x1a\x33\x3e\x4b\xd6\x58\x87\xf7\x2a\x1c\x7b\x8d\xe6\x99\xcd\x11\x16\x4a\x3a\x47\x1b\xcb\xb7\x50\x04\x4f\x03\x2d\xed\x5d\x01\xd1\x50\x91\xf1\x96\xdb\x3e\xde\x09\xbd\xf0\xe3\xb6\x85\xb7\xc1\x6a\x5a\x96\x12\x1a\x94\x0d\x48\x6a\x6b\xdb\xa8\x0a\xae\xf8\x5b\x69\x4e\xd1\xd8\x14\x28\x66\x90\x5f\x65\x9f\x91\x6f\x0b\xae\xd4\xc7\x89\x98\x64\xba\xdb\x09\xe2\x3a\x26\x07\x10\xa8\x5e\x90\x2a\x3b\x25\xae\x69\x57\x5d\x04\x7b\xe4\xac\xe2\xe3\xcd\xfa\x40\x83\x65\x85\x44\x1d\x1b\x5d\x64\x2c\x3c\x32\x18\xd7\x29\x62\xc7\xa5\x54\xdb\x43\xbd\x9e\xa8\x2d\x89\xb0\xb3\xf4\xa6\xa8\xe3\xae\xb4\xd2\xd9\x66\x24\x35\x58\xf0\xd4\xe5\x7c\x80\x90\x7c\x49\x13\x22\xb7\x2d\x04\xfa\x68\xe2\x03\x8f\x03\x4f\x27\x3f\xa2\xc8\x05\x12\x69\x28\xf0\x85\x23\x4c\x67\x62\x8e\x42\x09\xa5\x3f\xff\x92\x43\x22\x4f\xd6\x6f\x79\x44\x7e\x6e\x2e\x4b\xed\x94\xd4\x17\x45\x8e\x60\xdb\x60\x2c\x7e\xe5\x82\xf8\x1a\x8d\x6d\xde\x92\x75\x10\x95\xc7\xe3\x00\xf4\xdf\xe4\xba\x95\xf8\x1f\xb7\x62\x47\x2f\x1c\x5b\x83\x4c\x6e\xa0\xb1\xdb\x39\x65\xae\xec\xa5\x05\xc2\xc0\x04\x33\x1d\x9f\xbc\x86\xec\x2a\xc3\x29\x54\x58\x2d\x52\xf7\x43\x2e\xda\x46\xc3\xf6\x8c\x86\xba\xd1\xe8\x30\xc5\xf2\xba\x60\x6a\x34\x14\x46\xa3\x60\x5d\xe3\x5f\x7f\x40\xac\x36\xa0\x3b\xc9\xa8\xc6\x95\xaf\xfd\x7c\x37\x87\x9b\xed\x19\x2e\x73\xc3\x65\x6a\xb8\x0c\x22\xfb\x2b\x77\xe6\x30\x5c\x81\x39\xa6\x38\xf3\x07\x9a\xd5\x06\xaa\xde\x88\x14\x0e\x68\x20\x6b\xd9\xf1\x77\xb1\xe2\x50\x01\x41\xd7\x51\xe1\xbe\xdd\x6e\x51\x76\x94\x98\x0e\xf9\x19\x60\x56\xe0\x50\x88\x3a\x63\x9a\x1c\x91\xbf\x6f\xd5\x90\x14\x92\x90\x51\x8a\xdc\x0a\x99\x9a\xa6\xb8\x67\x16\x15\x32\x9d\x48\x2d\x79\x4a\x4b\xfc\x8c\x92\xaf\x63\xfc\x94\x92\x6f\x62\xfc\xb6\x82\x90\x6e\x13\xfe\x29\x47\xec\x7f\x8b\xc9\x56\xad\xd8\x9b\x8c\x8b\x38\x8d\xfe\x14\x4b\xd6\x75\xf9\xec\xf4\x95\xa4\xa6\xa2\x1a\x2a\x51\xf3\xa6\x15\x49\x8b\x16\x63\x39\xf6\xc3\x4a\x21\xad\x8f\xef\x16\xa9\x9e\xd9\x7c\x77\x5e\xf6\xe8\x34\x98\xa3\x39\x05\x0b\xa9\x93\x00\x45\xa0\x7d\x79\x12\xe0\x53\xf0\xc3\x31\xfc\x48\x6f\x72\xf0\x40\xa3\x43\xe0\x12\x80\x7c\x2e\xcf\x1b\xd2\x50\xef\xc9\x76\x2c\x53\x5d\x07\x57\x3d\x9e\xbf\xc4\xce\xe6\x05\x14\x8c\x4b\xac\xfa\xbf\x57\x85\x31\x54\xb0\x4a\xf4\xfb\x4f\x4b\xd4\x8c\x24\xa9\xda\x33\x4b\xbc\xdb\xb9\xb3\xbb\x47\x2a\x1a\x87\xc1\xe1\x49\x80\xb0\x65\x88\xbb\x63\xcc\xa1\x7b\xc0\x1d\x4f\xcd\xcb\xd2\x13\xd1\xd8\x4a\xc7\x6d\x50\xc5\x6d\x1c\x49\xc2\xaf\xdb\xa5\x6d\xcc\x67\xaf\x17\x56\x99\x2b\x33\x65\x3d\xef\xee\x18\x7b\x99\xad\x4d\x28\x19\x3d\x2a\x11\x28\xe6\xbb\x05\xaa\x80\x5e\xd3\xc3\xfe\x9f\xe2\x61\xbc\xd9\xa4\x37\xa1\x36\x52\xb3\xdc\x8c\xdf\xc6\x19\x98\xcd\xeb\xc7\xb3\x3c\xfa\x3a\x76\x59\x70\x8a\xe3\x85\x48\x2e\xa9\xc9\xfe\x26\xc6\xab\xb4\xc8\x2f\xde\xdd\xb0\x45\x54\xc5\xf6\x5a\xbf\x7c\x7c\xf2\x28\x30\x46\x96\x6d\x62\x7f\x65\x95\xe7\x64\xe2\x9b\x98\xb0\x16\x1d\xf6\xc6\x2c\x41\xf0\x52\xed\xb1\xb1\x0d\x07\x8f\x1f\x07\x38\x68\xa9\x18\x20\xec\xd8\x68\x13\xd9\x55\xf4\x7a\x5d\x38\x3a\x43\x0d\xd4\xfe\xb2\xc0\x2c\xe5\x06\xf0\x2c\x4d\xe9\x32\x6a\xde\x24\x95\xc9\xc9\x59\x55\x5f\x33\xc4\x7e\x11\x3f\xfe\xf0\xe1\xdd\xf3\xa7\x6f\x9f\xbf\xff\xf0\xe2\xf5\xfb\xe7\x6f\x5f\x3f\x79\xf9\xee\xc3\xb3\xd3\x0f\xaf\x4f\xdf\x7f\xf8\xe6\xdd\xf3\x0f\xa7\x6f\x3f\x7c\x77\xfa\xcd\x87\x6f\x5f\xbc\x7c\xf9\xe1\xab\xe7\x1f\xbe\x7e\xf1\xf6\xf9\xb3\x68\xfb\xfc\x52\xee\x5c\x34\x7b\x81\xbf\xc6\x2f\xf1\xf5\x30\x61\xf2\xf8\x42\xea\x9b\xb4\x38\x4f\x58\xfe\xd5\xcd\x6b\xc9\x01\x9e\xe1\x9f\xb1\x3f\xda\x57\x21\xc5\xdf\xa1\x12\x7f\xa0\xf8\x35\xc5\x3f\x32\xfc\x7a\x5e\x96\x93\x6e\x73\x42\xf0\x2e\xb4\x84\xe3\xf1\xd5\xcd\x5f\xb3\x5c\xbc\x90\x8b\xc1\x16\x74\x12\xd6\xf0\x58\x50\xb0\x25\x5d\x25\x8c\x2e\x3d\x4c\xf3\xe1\xc3\xdb\xe7\x4f\x9e\xbe\xff\xf0\xec\xf9\x3f\xde\x9f\x9e\xbe\x7c\xf7\xe1\x2f\x2f\x4f\xbf\x7a\xf2\xf2\xc3\x5f\x4f\x4f\xff\xfe\xe1\x83\xc6\x6a\xdd\xb1\xc6\x6a\xb7\x97\x06\xea\x7c\x98\xe4\xcf\x92\x5c\xee\xc6\x12\xa4\x2b\x79\xb1\xd9\x64\x5c\xe4\xea\x00\xeb\xf6\xd4\xf2\x1b\x77\xf7\x6a\x51\x42\x8a\x26\x2f\x39\xf9\x6f\x1e\xb6\x1c\x5a\x31\x34\x97\x1f\xb4\x23\xa1\x03\xac\x8e\x4b\x84\xbf\xb9\x67\x1d\x13\xb4\x53\x55\x73\xf6\x1e\x65\x89\x42\xf0\x7c\x4a\xf1\x36\xbb\xa4\x9c\x27\x4b\xaa\xde\xb0\x95\x8d\x47\xc2\x96\xfe\xb2\x7e\x75\x03\xad\xb5\x61\x96\x0a\x22\xa6\xad\x88\x78\xcf\x5e\xb5\xb5\x26\xa6\x72\x49\x94\xd4\xb2\x44\xa8\x0c\xb7\xfb\x2a\x3f\xc1\x67\x05\x5b\xa6\x70\x0f\x45\x23\x7c\x49\x79\x9e\x64\x2c\x0a\xc6\x0f\x87\x8f\x86\xa3\x40\xe3\x72\xca\xdf\xc4\x8b\x8f\xf1\x39\x95\xf0\x16\x05\x4a\x0e\xb9\xcc\xd6\x41\xa9\x0e\xfe\xff\xc4\x64\x6b\x5e\x09\xfe\x16\x97\xf8\x9f\x31\xf9\x9f\xb8\xd7\xfb\x5b\xbc\xdb\xfd\x4f\x3c\x81\x17\x49\xb9\x8f\xe4\x9f\xb1\xd1\xe7\xd9\xed\xfe\x19\x97\x0d\x69\x4d\x50\xe4\xb4\x93\x0b\x9e\x2c\x44\xe0\x55\x63\xe1\xf8\x58\xa2\xc1\x5b\x8b\x57\xb6\x51\x5f\x75\x0a\x66\xad\x7b\x52\x81\x83\x0f\x1f\x68\xfe\x2a\x5b\x16\x29\x0d\x8c\xb3\xda\xee\xa8\x34\xe8\x4b\xd1\x99\x92\x93\xca\xc8\x21\x86\x78\x05\xb1\xfc\xa7\x00\x5b\xdf\x8a\x35\x58\xaa\x49\xf5\xc2\x92\x4a\x75\xc3\x85\x7c\xfa\x2e\x44\x51\x4e\xba\x23\xfc\x3c\x5c\xe2\x4a\xe8\xd6\x85\xa3\xb0\x94\x24\x47\x52\x30\x3a\x68\x90\x40\xcc\xa3\x87\x8c\x33\x89\x0d\xa7\x97\x49\x56\xe4\x13\xa6\x4d\xd7\x88\x90\x8c\x85\x4e\x25\xbc\x54\x86\x5e\x84\xba\x34\x3d\x1b\x6a\x9f\x9d\x5a\x1c\x78\x80\x85\xd8\x86\x27\x19\x4f\xc4\xcd\x4b\x7a\x49\x53\x2d\x11\xce\x70\x41\xe2\x49\x46\x28\x8e\x89\xb0\x47\x2e\x27\x3c\x74\x58\x2f\x23\x09\x8e\x49\x51\xee\x91\x10\xe7\x08\x5c\x5a\x6e\x4d\xf7\x51\x8e\x2b\x3d\x45\xb4\x2e\x8a\x17\x20\x7a\xd7\x02\x7e\x3d\x0d\x2d\x7b\x67\xc6\x7b\x1d\x23\xb9\x9a\x69\xee\x66\x9a\xdb\x70\x56\xca\x9a\x85\x69\x3f\x5a\xf5\xd9\x7e\x49\xe4\x25\x42\x8c\x49\xbb\xb1\x8e\xf3\x0c\xe2\x18\xb2\x5c\xf9\x94\x13\x16\x71\xa2\x09\x49\x92\xe3\x34\x44\xe0\xbd\x84\xdb\x8e\x95\x4d\xa4\x97\x40\x72\xac\x47\xc7\xb1\x37\x3e\xe1\x6d\xfd\x4a\x01\x0e\x68\x6b\x27\x7e\x78\x6a\xf5\xb6\x59\x59\x21\xb4\x2d\xcc\x7d\xb3\xcc\xb6\x8b\x10\x55\x5f\x49\xf7\x54\xb2\xfb\x03\x60\x6b\xca\x4e\x53\x05\x8d\xe3\xd2\x1b\xcc\x52\x1e\x96\xc2\xb0\x93\x19\xe1\x13\xae\x83\x2c\xcb\xd5\xab\xb8\xaf\x63\x13\xf7\x26\x5d\xb5\xf0\x06\xff\x32\x0d\xa7\x09\x5f\x90\xc4\xa8\xae\xef\x19\x7b\x5b\x8d\xb2\xe6\xa9\x87\xa1\x3d\x95\xbb\xef\x21\x02\x88\x3f\x53\x4e\xb2\xe6\x6c\xf1\x2a\xd4\x41\x87\x36\xf8\x02\xdf\x90\x67\xb1\xa0\xf8\xb2\x35\x70\x93\x0b\xdc\x3d\x75\x9f\x26\x36\xfc\xba\xb5\xca\x22\xa5\x31\x37\x95\xfc\x1f\xa6\xda\x59\x6b\x35\x4e\x7f\x2a\x68\x2e\x9e\xb0\x64\x0d\xb3\xff\x9a\xc7\x6b\x3a\x6d\x4d\x35\x0d\x9d\xb7\xf7\x0f\x66\xf8\xb5\x76\xda\x12\x75\x33\x5e\x04\x75\xb9\xf3\x1b\x72\xe6\xd0\xa6\x40\xdb\x75\x78\x81\x30\x68\x4c\x20\x7c\x41\x2e\x7d\x1a\xf6\x3c\xdc\x40\x56\x6d\xef\x51\x89\xc7\xa3\x11\xa8\xe2\x36\xfd\xfc\x6d\x28\x5f\x65\x7c\x2d\x87\xb3\xc7\x1d\x95\x2b\x30\x64\xd9\x95\x02\xb0\x53\xe2\x25\x4f\xaa\x1d\xb6\x44\x95\x3a\x1d\xc2\x40\x4a\x13\x0e\xf8\x8e\xe2\x37\xba\x38\x00\xfc\x73\xfc\x0e\xbf\xc7\x6f\xac\xd1\xb7\x47\xe6\x38\x59\x88\x52\x3a\x9d\xbe\x21\xea\x23\x6a\x2d\x44\x41\x0d\x95\x22\xfc\xa6\xd7\x7b\x33\x54\x2e\x0e\x5e\x65\x0b\xad\xef\xf4\x8a\xf8\x69\x93\xe7\xe4\xd5\x6c\x34\xc7\xef\xc8\xab\xd9\x78\x8e\xdf\x93\x57\xb3\x83\x39\xae\x8d\xfc\xd5\xec\x70\x6e\x0f\x43\x2b\xf9\xa5\x86\xe3\x3b\x09\x72\xc3\x79\x45\xf3\x3c\x3e\xa7\x4f\x2f\x62\xc6\x24\x1a\x51\x3a\x83\x80\x1d\x7f\xac\x8b\xbb\xf4\x91\xf9\x08\xd1\xcd\x3f\xfa\x54\xad\x56\x15\x2a\x27\xcf\x2b\x75\x4c\x05\xef\x94\x84\xcf\xf1\x08\x53\x14\x85\x1f\x09\xc5\x5e\xf2\x8f\x78\xa4\x02\x37\xe2\x77\xfe\x5e\xe8\x86\xf1\xfb\xe6\x06\x49\xfc\x04\xc8\xbc\x75\x99\x75\xd4\xfd\x0a\xeb\xeb\x72\xcf\x7a\xbd\x6a\x58\xfe\xe0\xfd\x45\x92\x77\xce\x78\x76\x95\x53\xde\x59\x66\x34\x67\x9f\x89\x8e\x26\x2b\xdb\x4f\xe1\xb0\xf3\x2a\xfe\x48\x3b\x79\xc1\x69\x47\x5c\xc4\xa2\x73\x93\x15\xe0\x60\xae\x13\x77\x36\x59\x7a\xb3\x4a\xd2\xb4\x93\xb0\x8e\x72\x2c\xa7\x9b\xce\x87\x9d\x0b\x21\x36\x79\xf4\xe0\xc1\xea\x6c\xb8\xa6\x0f\x14\x85\x64\xca\xe7\x81\xff\x7e\xe7\xc6\x7b\xfe\xcb\xc6\xdb\x76\xae\x7f\xa7\xe1\x2a\x82\xe8\x5a\x41\xcc\x07\x89\x46\x5f\x4b\x3a\xe8\x19\x08\x99\xe5\x3f\x6f\xc9\x08\x3f\x21\x87\x87\xf8\x05\x39\x3c\x9c\xb4\xec\x63\xe7\xed\x17\x8d\x8b\x42\x1d\xba\xaf\x41\xaa\x54\x85\x50\xfc\x92\x7c\x3d\x94\x93\x3c\x98\xa8\xbf\xe3\x61\xc6\xd6\xaa\x88\xdf\xb6\x1c\x8a\x96\x7c\x5e\x63\x46\x5e\x4f\xf4\x10\xe5\xe8\x6c\xa0\xbc\x9a\x57\x15\x08\xf4\x9c\xac\xc2\xd1\x97\xe4\xed\x80\x6b\x6d\x18\xb0\x07\x66\xe0\xd6\xc8\x19\xd1\x3e\xdb\xed\xc2\x67\x92\x5e\xbb\x0a\xbf\x41\x08\x5f\x13\xaa\xcc\x68\x5f\x4b\xb2\x20\xd3\x01\x9e\xad\x78\x75\xfb\xd4\xdc\xcd\x34\xf4\x3c\xc8\x3c\x55\x57\x2c\x8c\xe6\x1b\xe2\x5b\x15\xf8\xa7\xed\x1a\x6d\x25\x06\x36\x71\xe6\x06\x6f\xfb\x2f\x26\xec\x8b\x17\xbd\xde\x93\x2f\x5e\x4c\xc3\x93\x2f\x15\xcd\x71\x82\xf0\x0b\xc2\xbe\x78\x32\x7d\x12\x31\x14\x3d\x21\x0c\xbf\x25\xa2\xff\x02\x7f\xd8\xed\xc2\x0f\x72\xa0\x2f\x87\x9b\x2c\x17\x7a\x2d\x35\xd7\x6f\x6c\xa5\xe5\x66\x55\x8f\xae\x64\xa1\xe5\xa4\x5e\x13\x81\x9f\xee\x76\xa3\x2f\xc5\xb4\xb5\x81\xa8\xba\x10\xb5\xc3\x5b\x87\x8a\xb2\xf4\x96\xfc\xc5\x7a\x4d\x97\x49\x2c\xe8\x1b\x4d\x92\x90\xb1\x8f\xd9\xbe\xc9\x29\xff\x2a\xcd\x16\x1f\xc1\x7b\xaa\x2e\x71\xe0\x97\x78\x2d\x11\x7f\x6a\xf3\x0e\xfd\xbc\x17\xcb\xd4\xb5\x7b\xec\xe7\xbc\xcc\xae\x6c\xc6\x91\x9f\xc1\x0b\xf6\x6d\x22\x2e\x6c\xa6\xb7\x18\xee\x95\x95\x5a\xd7\x6d\x7e\xf8\xae\xc3\x8a\xae\xeb\x71\x4d\xb5\x95\x92\x43\xe5\x26\x88\x64\x38\x26\x09\x50\xca\x2d\xa4\x91\x2f\x07\xa9\x50\xce\x1c\x27\x24\x56\xc4\x89\x3f\xde\xba\x6f\x1c\x7f\xc0\xdc\x04\x29\x06\xe0\x4d\xa6\x49\xd4\x46\x89\x35\xaf\x61\xf7\x78\xc6\x7b\xbd\x66\xac\x08\x6e\xec\xdf\x11\x27\x71\xdf\xfe\x52\xd6\xa8\x7a\x85\x32\xbb\x42\xb2\xcc\x60\xec\xeb\x04\x1f\x40\xda\xc1\xf1\xa8\x1a\x18\x4c\x26\xd6\xdd\xb4\xda\x98\x7e\x32\x8f\x1e\xd5\x14\x78\x65\xea\x31\x3d\x94\x87\x8c\x7a\x5c\x03\xad\x71\x0d\x59\x9d\x6b\xe0\xf7\xe2\x1a\x9a\xfc\x11\x95\x14\xbd\xe2\x1c\x62\x3f\x04\xaa\xe1\x1e\xea\xbe\x2e\xbf\xe4\x68\x1b\x93\x42\x33\x0f\x05\x29\x7c\xe6\xa1\xa8\x30\x0f\xf1\x34\x26\x2c\x8a\x2d\xf3\x40\x35\xf3\xc0\x49\x5c\x67\x1e\x62\x7f\x40\x7a\x90\x31\xa6\x3e\x6b\xe7\x44\xd7\x62\x9f\x07\xa6\x96\x87\x0f\xea\xb8\x4a\xfd\x74\xaa\x5e\xb7\xc0\x15\x8a\xcf\x62\x52\x3b\x4c\xcf\xcf\x99\xe5\x37\x7f\x09\xb7\x59\x85\xe5\x2b\x1e\x6f\xf6\x8e\x8f\x91\xcc\x88\xb4\x6b\xaf\x0e\xee\x44\xb1\x3b\x4e\x14\xd5\xd2\x4e\x71\x91\xe4\xbe\xac\xb3\xf5\x94\x55\x86\x76\x4e\x4d\xd0\xc7\x37\x3e\x6c\xb5\x5c\x63\x59\xf5\x78\x3a\x2f\x2f\x2d\xa4\x0b\xf7\xdc\xc7\xb7\xb0\x37\xf1\x6e\x07\x4c\x4b\x65\x17\xb5\xf7\xd3\xe7\xd7\x74\x51\xc8\x92\xa4\xa1\x94\x23\xdb\x4a\xc3\x6a\xb5\x4d\x5c\xe4\xed\x75\xea\xd3\xfc\x1a\xd4\x98\xf4\x2e\x80\x9a\x5a\x73\x8e\xac\x2c\x91\x52\x0c\x82\x95\x64\xe1\xc1\x09\xaa\x89\x5b\xd0\xd6\x79\x59\x0b\x85\x13\xbf\x77\x3c\x29\x0d\xd1\x52\x97\x9c\x8a\x37\xe6\x79\xe9\x74\xb5\xdb\xb5\xca\x70\xe9\xf0\xc3\x07\x78\x84\xfa\xf0\x81\x08\x4c\x4b\xac\x9a\x2d\xbd\xf6\xee\x10\xf8\x68\xc9\x48\x38\x3e\x3e\x44\x8e\xaf\xc9\xe4\x1a\xb8\x46\xbc\xc9\x7a\x57\xb1\xd6\x9a\xc5\x09\x56\xfe\xce\x62\x70\x96\xaf\xf5\xd9\x24\x75\xa2\x7c\x20\x07\x72\xdd\x12\x76\xde\x79\xc3\xb3\x0d\xc4\xd1\xec\x40\x08\xa2\x58\x64\x3c\xef\x2c\x13\x4e\x17\x22\xbd\xe9\x24\x79\x87\x65\x96\x4c\xa3\xcb\xce\xd9\x0d\x38\x2a\xfe\x61\xc3\xb3\xcd\x40\xae\x42\xfe\x43\x67\xa3\x04\x68\xc3\xce\x37\x39\x75\xed\x0d\x17\x17\x74\xf1\xd1\xfe\x0c\x51\x47\x64\x1d\xb9\x13\xb2\x81\xf5\xb0\xf3\x96\xc6\xcb\xce\x3a\xe3\xb4\x13\x0b\xa0\xd9\x2c\xc9\x56\xe4\x74\x00\x95\x07\xae\x97\x00\x4d\x94\xa7\x99\x62\xa8\xb4\x76\x5e\xb0\xcb\x98\x27\x31\x13\x9d\x7f\x24\x59\x0a\x90\x18\xe0\xc2\xe3\xff\x85\x03\x02\x5a\xd2\x61\x92\xbf\xa5\x3f\x15\x09\xa7\x4b\xad\xb0\xc2\xc8\x36\xe6\x3c\xbe\x89\x28\x3e\xcb\xb2\x34\xa2\xb0\x25\x11\xc5\xea\x16\x89\x28\x56\xb7\x4d\x44\xb1\xd2\x0d\x92\x1f\x37\xeb\x33\x28\x1a\x33\x59\x0f\xea\x9f\xae\x22\x81\xad\xa6\x34\x4e\xb4\xf8\x11\x92\x59\xb6\xa4\xb6\x21\x48\xc9\x18\x75\x7f\x41\x32\x29\x70\x7e\x11\xc3\x5f\x7a\x1d\x2f\x44\x24\x4a\x2f\x10\x72\x65\x09\x49\x86\xd9\xd0\xfd\x62\x98\x95\xf7\x96\x33\x06\x5a\x48\xaf\x45\xf3\x6f\x9e\xbc\x7b\xf7\xe1\xfd\x5f\x5f\xbc\x6b\x15\xd0\x07\xf7\x04\xcf\x03\x34\xf9\xa5\xd2\x48\x2c\x8c\x98\xd4\x8f\x5d\x95\x11\x1e\xb2\xf0\x11\x84\xc1\x91\x5f\x27\x08\xe1\x18\xbe\xc6\x23\x84\x70\xa1\x3e\xc7\x08\xe1\x5c\x7d\x1e\x20\x84\x53\xf8\x1c\x41\xfc\x3a\xf9\x75\x70\x88\xd0\x04\x72\x11\xc2\xf2\xef\xe1\x23\xe4\x9d\x9e\x95\x3a\xa3\xad\xef\x8a\x53\x49\xc2\x46\xca\x8d\x89\x35\x62\x53\x46\x54\xcb\x0a\x7a\x6f\x81\xae\x70\xe4\xa2\xfe\x23\x85\x65\x04\xc2\xe1\x08\xc7\xb5\xd4\x70\x84\x0b\x2f\x09\xb5\x63\x78\xf3\x9a\x1b\x8e\x70\xee\x95\xc6\x14\xda\x4c\xfc\xa4\xd9\xf6\x23\xbd\x89\x82\x86\x65\x5a\x80\xd5\x7a\xfb\x08\x42\x69\x7e\x6c\xc0\xad\x3e\xcf\x32\xf1\x96\xae\xf0\xc2\x34\x36\xf4\x9e\x79\x75\x94\xe8\xb2\xc4\xcd\xd6\xd5\xc3\x59\xa3\x79\x8a\xb6\xd4\x34\xaa\xd5\x81\xaa\x3d\xf5\x7a\xe1\x2a\xb4\x45\x74\xe4\x89\x5f\x3c\xa4\x96\x31\x7d\x9b\xa4\xa9\x7e\xc0\xb8\xef\xa4\x95\x09\xb7\x69\x49\xbd\x01\xb4\xd4\x35\xaf\x0d\xae\x01\xa3\x24\x54\x96\x73\x84\x45\x19\xa6\x76\xa8\xf6\x75\x15\x4d\x96\x50\x58\x9d\xcf\x6d\x89\xab\x3f\x01\xd4\x37\x64\x39\x71\x67\x60\x53\xbf\x8a\x5a\xd0\xbb\x51\xf3\xad\x3e\xb8\xeb\xe6\x40\xf5\x59\x76\x95\x90\xea\x1b\x38\x28\x6b\x71\x32\x9a\xf0\x2f\x12\xa3\x1e\xc3\xfb\x7d\xc4\x48\x32\xe3\x73\x2c\x86\x09\x5b\xd2\xeb\xd3\x55\xc8\xd0\x97\x64\xb4\xdb\x85\xd9\x8c\xcd\x09\x9d\xb1\xb9\x55\xd6\xcd\xee\x42\x2f\x80\x07\x7e\x31\x0a\x50\x27\x1e\x27\xf2\x7e\x93\xc7\xbc\x26\xb3\xa1\xbd\x9e\xbc\x40\x4d\xd5\xba\x06\xc1\xb6\x74\x64\x9f\xd3\x03\x62\x9d\x84\x75\x28\xd2\x43\x71\x1a\x20\xd5\x20\x6e\x5a\x43\x18\x2b\x93\xf7\xc6\x7c\xdd\xb6\x50\xb9\xc1\x2c\x3c\x79\x0c\xc8\x47\xde\xc3\x8f\x24\xea\x09\x33\x88\xbf\x99\x79\xc3\x9b\x66\x91\x7d\x1e\xca\x4a\xff\x0d\xa5\xaa\x1a\x20\x60\x80\xd3\xf6\xb5\x92\x45\xf5\x02\x31\x4c\x59\xb1\xa6\x5c\xd2\x38\x51\x77\x84\x17\x19\x5b\x25\xe7\x85\xfd\x7d\xc5\x55\x7c\x3b\x58\xc9\x88\xce\xc4\x9c\x30\x4c\x4b\x37\xf4\x30\x0d\xb9\x84\x87\x78\xf8\x63\x9e\x3b\x14\x22\x7f\x21\x9c\x86\x1c\xc7\xc3\xfc\x82\x52\x71\x0a\x21\xe5\x72\x9c\x0c\xd5\xed\x54\xc9\xcc\xdf\xd2\xf3\x24\x17\xfc\xc6\x6b\x80\xeb\x24\x53\x70\x1d\xb3\xf8\x9c\x72\xbf\x05\x7e\xd7\x43\xd6\x27\x81\x0a\x10\x42\xc8\x3b\x34\xdb\x1f\xf3\x3c\x0a\x47\x98\x0f\xe1\xe6\x44\xe1\x56\xc5\xc7\xab\x25\xaa\x17\xf3\xbf\x50\x46\x79\x2c\xe8\xd3\x34\xce\x73\x78\xe3\xe3\x43\x39\x46\x8f\x20\x28\x91\xf7\x03\xab\x6a\xef\xc4\x4d\x4a\xdf\xc9\xb5\x68\x96\xc7\x4a\xb7\xfd\xb6\x22\x25\xc2\x66\xbd\xaa\x83\x8a\x97\xcb\x96\x06\x45\xf6\x4e\x91\x18\x2d\x0d\xdd\x75\x08\x3f\x71\x4d\x5b\x0d\xc8\x81\xbc\xe9\xf5\x02\x45\xe7\x34\x72\x86\x89\x90\x6b\x99\xf1\x69\xdb\xc3\xac\xbe\x4b\xcb\xb6\x57\xdb\x3d\x42\x72\xd3\x21\x18\xe5\xe5\x82\x17\x0b\x91\x71\x42\x88\x4d\xef\x9a\x6f\x77\xa6\xa7\x66\x74\x91\xed\xd1\x83\x8d\xaa\x50\xca\x3d\x7d\x5a\xdd\xd5\x0c\x62\x6d\xd8\xf7\x9e\x59\x36\xc7\x31\x69\x15\x42\x27\x53\x2f\x39\xe2\x61\x82\x1a\xce\xee\x63\xc4\x76\xbb\x90\x91\x6d\x89\x30\x9b\x65\x73\x92\xd8\x70\x0c\x9e\xac\x22\x76\xe1\xe9\x7a\xbd\xee\x13\x49\x34\x0e\x93\x1c\xfe\x86\x09\x32\xb4\x39\x95\x1d\x40\x84\xba\x6a\x93\x05\xb2\x06\x9f\x77\xd2\x7b\x9f\x06\x0b\x38\xdb\xcf\x4b\xf8\x51\x02\x46\x13\xf6\x85\x71\x37\x31\x61\x4e\xfb\x5d\x62\xd2\x09\x1f\x3a\xc4\x45\xfc\x1f\xbb\x5d\x77\x8c\xf9\xd0\x47\x64\xa4\x3b\xc2\x3a\x58\x65\xc2\x3a\x1c\xfc\x80\x1b\xc4\x46\xba\x23\x84\xf7\xa1\x49\x2e\x6f\x37\x89\x66\xca\x3a\x7f\x5d\x51\x9c\xea\xb0\x5e\x8f\x86\xde\x3d\x80\x19\xc2\x1c\xd2\x30\x97\x97\x77\x19\x22\xb8\x7f\x0e\xe1\x02\x0a\x39\x84\x46\xe4\x3e\x5a\xe7\x0e\xad\xf3\x52\x0b\x4f\xda\x17\x09\x6d\xbb\x8d\xab\xba\x1b\xd2\x8e\x61\x04\xb2\x55\x47\x20\xed\x26\x53\xf2\x5f\x92\x1a\xb0\x3c\x18\x93\xdc\x15\x30\x45\x71\x67\x21\x31\x54\x27\xce\x3b\xb1\x9d\x56\x80\x4a\x45\x1f\x52\xad\x11\xae\xb0\x33\x99\xcd\x8d\xa2\xf6\xca\xfd\x90\x17\x3f\x99\xcd\xad\x0b\xf3\x90\x1a\x0a\xf1\x9c\x36\xc9\xa3\xaa\x12\xa9\xac\x6b\x29\x02\xea\x6e\x44\xd7\xe7\x4c\xcc\x2d\xd5\x14\x2f\x97\xcd\xf6\x6a\x4a\xb2\xaa\x16\xd6\x5a\x9f\x72\xa0\x38\x73\x7d\xc9\xd5\xb7\xfd\x09\xd3\x9f\x15\xfe\x85\x4c\xe9\x15\xcb\x3b\x45\x7d\x8d\x10\xce\x8c\xae\x31\x36\x26\x18\x83\xb1\xa3\xe4\xd4\x75\xf4\xcb\xa6\x89\x2b\x63\x9d\x89\xb9\x99\x37\x68\x52\x99\x71\xcf\xc4\xbc\xd7\x63\xc3\x58\x88\x78\x71\x11\x22\xec\x67\xf4\xfb\x6e\xed\x67\x62\xbe\xdb\xb9\x6e\xf2\x4d\x9a\x2c\x24\xc4\x81\x37\x3f\x66\x07\x5a\xb0\x4f\x19\xea\x04\xd6\x46\x4c\xfd\xce\xbf\x1c\x49\x32\xc6\x4b\x18\x0c\x70\x73\xe4\xd5\x19\x0e\x97\x54\x4d\x03\x45\x55\x16\xa5\x3b\xc6\x01\x5c\x66\xf9\x2b\x75\xb1\x47\x9d\x45\xcc\x3e\x13\x1d\x49\x88\x77\xa0\xbe\x64\xe0\xed\xe8\xdd\xca\xe7\xc9\xcf\x34\xc0\xe7\x54\xec\xa3\x9f\x61\x2a\x6a\xc7\x80\x78\xa6\x65\xe8\x5f\xe7\xc5\x7f\x2e\xb8\x4f\xbe\xe0\x2c\x5b\x60\xe3\xde\x08\x2d\xdc\x68\xbd\xd2\x44\xed\x4a\x13\xea\x4a\x73\x91\x99\xd9\x6e\xe7\x49\xd1\x59\x2d\x4c\x0b\x73\x9d\x24\xab\xb0\x08\x85\x7d\x5e\x12\xc3\x75\xbc\x91\x60\x9a\xac\xc2\x1a\xeb\x8b\xaa\x23\x93\xcc\x8a\xbd\x8c\x13\xef\x32\xce\x89\x98\x25\xf3\x89\xb9\x37\xbb\x84\xb4\xbf\x0d\xe7\xb5\x39\xe4\x08\x4d\xb3\x59\x32\x27\x79\x04\x7f\x68\x98\x23\x17\xc6\xc1\x63\x36\x1e\x1f\x00\xb2\xcf\x00\xd9\xdf\x42\xc3\x2b\x64\x5f\xb9\xa6\xef\xc3\xa5\x29\xc4\x4f\x87\x57\xf4\x6c\x13\x2f\x3e\xbe\xd1\x2f\x8e\xe6\x50\x6b\x28\x56\xd4\xa5\x5c\x29\x61\x39\xca\xdd\x2e\x74\x3f\xc0\xac\x62\x2f\xc8\xa7\x59\xbc\xa4\xcb\x00\x6f\xab\x5c\xc2\x9e\xc3\x37\x4c\xcb\xf2\x96\xc6\x92\xfb\x37\x94\xdc\xda\x90\x5e\x8c\x7a\x6b\x20\xed\xa9\x2d\x07\x19\x9b\xbd\x11\x77\x11\x33\xbf\x4e\xeb\x8d\x0e\x9f\xbe\x7b\xd7\x72\x6e\xfc\x33\x7b\xb7\x6c\xf8\x77\x51\xc5\x0b\x0e\x56\xe3\x78\xb1\x78\xb8\x38\x8c\x1f\x8e\x1e\x9e\x8d\x4e\x0e\xe8\x31\xa5\xab\x63\x7a\x7c\x74\x34\x3e\x5a\xad\xce\x02\xfd\xd6\x22\xb9\xd3\x5e\x2f\x94\x7f\xc8\xc8\x17\x9d\xc9\x94\x7e\xff\x97\x8f\xfe\x3f\xa8\xb4\xc4\x99\x39\x8a\x71\x9e\x27\xe7\xcc\x97\xe1\x3b\x62\x57\x90\xf1\x44\x34\x2c\x6b\x7d\xfb\x22\x67\x4d\x2b\xe6\xce\x30\x4e\xe2\x33\x76\x3f\x31\x84\xa4\x57\x61\x73\xf9\x9c\xb0\x19\x9f\xfb\x66\x1c\xc9\xbf\x23\x41\x1e\x93\xb3\x90\x85\x47\xc7\x20\x73\x91\x9f\x8f\x8f\x41\xe0\x2b\x3f\xc7\x0f\x8f\x41\xe2\xab\xbe\x1f\x82\xcc\x17\xbe\x1f\x1d\x20\x84\x57\xfa\xfb\x10\x21\xbc\x84\xef\x87\x27\x08\xe1\x0d\x7c\x1e\xca\x12\x17\xaa\xc1\x23\x84\xf0\x8d\xea\x46\x7e\x5e\xea\x7a\xf2\x7b\xad\xbf\x8f\x7d\x99\xf1\x59\x15\x2c\x7d\xb9\xd4\x94\xba\x4b\x83\x2a\x2d\xbc\x73\xe2\x64\x82\x8b\x8c\x2d\x62\x11\xce\xac\x40\x13\xaf\xcc\xd7\x1c\xe1\x2b\x32\xc2\xa7\x7b\xf6\x58\xfc\xa1\x0c\x45\xb2\x24\x57\x86\x88\xd5\x1a\xd2\x24\x78\x3c\x3c\x19\x3e\x0a\x54\xe2\x46\xe9\xe3\xc3\xd3\x91\x15\x06\xa9\x2c\x2d\x75\x21\x7b\x25\x2d\x17\xb6\xfc\x5b\xad\x6b\x1d\x59\xca\x60\x7a\x69\xbe\xa2\xb5\x2d\xa6\x3b\x8b\x66\x73\xed\x91\xe2\xbc\xde\x26\x09\x47\xf8\xc2\x51\x17\x7a\x16\x45\x5e\x79\x2f\x3d\x37\xdc\x12\x15\xc5\x26\x14\xf6\x64\x25\x8e\x25\x82\xac\x16\xb9\xaf\x52\xc0\xa9\x1f\x7c\x49\x69\xb7\x18\xd5\x8f\x7c\xa3\xfa\xd1\x3c\xda\x96\x2e\x80\xf4\x9e\x35\x31\x14\xbb\x5e\xbb\x7d\xc5\xc8\xde\x06\xf6\xad\xcb\xde\x0a\xa1\x0d\xd9\x46\x87\x09\xcb\x29\x97\x1d\xbf\xc9\x12\x26\xea\x63\xa9\xe6\x36\x8a\x23\x1c\xd2\xe1\x65\xc2\x45\x11\xa7\xbb\x1d\x1d\x9a\x3d\x45\xf5\x76\x4c\x06\x71\x65\x76\x3b\x57\x77\x6a\xf7\x3b\xb2\x30\x80\xc0\x7f\xbe\xda\x7d\xcd\xb2\xd4\xf6\xd4\x66\xab\xbd\x75\x6f\x01\x35\x71\xdd\x7e\xb6\xaa\xb1\xa9\xe3\xd6\x4d\x1d\xfb\x9b\x3a\x96\x9b\x8a\x95\x35\xc6\x92\x5e\x4f\x0c\x71\x5c\x31\x27\x0d\x19\x91\x6c\xd7\xd2\x1e\x7e\x28\x3b\x1d\x45\xb5\x94\xfe\xd8\x0a\x34\xe9\x55\xc7\xbe\x05\x85\x14\x83\xa1\x85\xc0\x20\xd8\x54\x10\xdc\x38\x4b\xa2\xb9\xe7\x9a\xdb\x6c\xa4\xe3\xea\xbe\x45\xb7\x6c\xb2\x3b\x98\xad\x3b\x88\x61\xdc\x11\x2b\x51\x55\x24\xa0\xb7\x62\x98\xc9\x3b\x6d\x41\xf3\x1c\x96\x1e\xa2\x37\x78\x4f\x2b\x55\x21\x69\xdb\xc6\xb8\x58\x9d\x9a\x2b\xc5\x4b\x4f\xde\x2c\xeb\x87\xb4\x75\xbf\xdf\x02\xa5\xf2\x7b\xec\x74\xa3\xee\xc1\xbd\x1c\x77\x6c\xcb\x89\x27\xf1\x6b\xe7\x5c\x68\x8d\x73\xa1\x10\x42\x8e\x11\xf0\x0f\x80\x8d\x85\xae\x89\x68\xce\x26\xd9\xf0\xc7\x5c\x79\x7d\xc2\x99\x3b\x54\xed\x1b\x95\xb5\x81\x47\xd8\x92\x4a\xda\x61\x06\xe1\x6c\x08\xf7\x05\xcd\xa1\x9e\xfe\x26\xdb\xd2\xf8\xd1\x09\x47\xf8\xc6\x21\x5e\xe5\x28\x45\x03\x45\xd7\x78\xfb\xcf\x78\xaf\x97\xf8\x17\xd5\xc6\xd4\xe8\xf5\xc2\xc4\x16\x22\xc1\x30\xe8\xb7\x8c\x2d\x4c\x10\xc2\xed\x00\x26\x37\x3c\x4c\x10\x4e\x9c\x1c\x25\x6f\x42\x80\x23\x8e\xd4\x3c\x71\x13\x16\x30\x53\xac\x1d\xc8\x96\xe0\x79\x4c\xa8\x77\x31\x49\x87\xb9\x2d\xe5\x73\xf7\x0a\xbf\xca\xf8\x73\x09\x9d\xbe\x3a\xf9\x40\xd9\xb9\x9a\x7d\x30\xe3\x75\x22\x2d\x78\x4b\xae\x67\x1b\xa1\x96\x45\x66\x12\xcb\x49\x16\xb9\x34\x50\xde\x14\x8f\x9c\xfe\x47\xe6\xfb\xef\x2d\xf3\xbd\xc8\xb2\x8f\x39\xd9\x66\xec\xa9\x45\x7d\xd1\x6c\x8e\x2b\x47\xa3\x92\x00\x38\xb7\x9a\x02\xaf\x54\x90\xf2\xf4\x22\x66\xe7\xca\x93\x96\x4a\x50\x8f\xfa\x92\xe4\x6a\x91\x1c\xfb\x9d\xb6\x89\x7c\x25\x34\x3a\xaf\x20\x70\x9a\xec\x90\x87\x7e\x65\xff\x09\xda\xf8\xfc\x6b\x2f\x39\xe3\x73\xdd\xf2\x24\x59\x85\x19\xb2\xa2\x1c\xcf\x9c\xd0\x22\x81\xca\x22\xb4\x5d\x08\x4a\x26\x93\xe4\xba\x18\x5d\xfa\x3c\x9e\x3b\xa0\x20\xdf\xc4\x1a\xdc\xfd\x71\x79\xcd\xfb\xa7\x60\x5f\x99\x19\x83\xc1\xa3\x09\x1d\xe6\x72\x17\x34\x2d\x53\xdd\x9a\x50\x67\x62\x08\x11\x5a\x19\x1d\xe9\x8e\xca\xe6\xe4\xa0\xd6\xdd\xcb\x4f\x71\x46\x46\x93\xac\x75\x02\xd0\x84\x99\x41\xd6\xef\x23\x4e\xf6\x16\x9b\x65\xf3\x90\xab\x38\x8f\x42\x8d\x94\xf0\x96\x41\xed\xbb\xd4\xab\xbe\x39\x5a\x7b\x91\x55\x7d\x9e\x7a\x6f\xa1\x99\x98\x2b\xe7\x22\xa6\xf3\x7d\x2a\x28\x77\x82\xa2\xaa\xe8\x83\x61\x4b\xb6\x83\x3d\xaf\x4b\xef\xc4\x7c\xe2\x1e\x78\x2d\xdc\xb2\x05\x5e\x29\xb7\x03\xe6\x16\xe2\xb7\xde\x7b\xfe\xaa\x2b\x4d\x08\xd7\xf2\x4c\xcc\xa7\x95\x5f\xfa\x19\x65\x26\xe6\x2d\x6f\x00\x9f\xcd\xfe\xf6\xee\xdd\xbc\xf3\x0d\xfb\xc8\xb2\x2b\xd6\x91\x75\x3a\xc1\x9f\xf3\x60\xf8\x19\x16\xe8\x0f\x94\xde\xe7\xc0\xe8\x3f\x42\x08\x67\xfa\xfb\x04\xb4\xc3\xd4\xf7\x63\xd0\x0f\x83\xef\x47\x4a\x41\x4c\x7d\x8f\x7d\xe6\x3d\xff\x45\xcc\x7b\x4a\xb6\xc1\x7f\x2d\x2e\x62\x9e\x53\x11\x44\xdc\xb2\xa4\xc1\x7f\x25\xeb\x4d\xc6\x6b\x69\x2c\x5e\xd3\x7c\x13\x2f\x68\x35\xf9\x23\xbd\x59\x71\x99\x15\x44\x99\x97\x0c\x76\x03\x41\x94\x78\x49\xc6\xfe\xbb\x9a\xba\xca\x98\x18\xac\xa0\xd9\xd8\x4b\xbe\x4c\xe8\x95\x1a\x43\xe1\xa5\x0e\xd6\xf9\xa0\x25\xa7\xc4\x8b\x8a\x2a\x50\x8a\x40\x36\xdf\xa4\x92\xe5\xc5\xf4\x96\x9e\x3f\xbf\xde\x84\xc1\xff\x0b\xfa\xf0\x1c\x96\xce\xa8\x21\x7c\xaa\x17\x8e\xaf\xab\x8f\x33\x4f\x32\x2c\x68\x2e\x42\x8a\xa6\xb2\x35\x93\xab\xad\xb3\x4b\x1f\x4e\x16\xbf\x0f\x9c\xfc\xfb\x11\x31\x9a\x3d\xd8\x23\x3c\x52\xad\xfd\x81\xd4\x89\x72\x92\x97\x83\x1b\x40\x2d\x32\xaa\xdc\x67\x63\xfb\x40\x6a\xdc\xdb\xc2\xfa\x11\x56\x95\x21\x59\x4b\x00\xee\x88\x0f\xa3\x15\xb3\xe7\x5e\xaf\x2a\x52\xb8\xa6\x91\x7f\x05\x05\x81\x7f\xab\xfb\x41\x3a\xd4\x3d\xde\xb7\xaf\xad\xfd\xa0\x13\xf4\x5d\xa9\x19\x9b\xf7\x83\x49\x80\xfd\x94\xfe\x78\xde\xeb\x85\xa2\x4f\x82\xef\x59\xe0\x38\xe2\xb2\xf6\xd8\x59\x6b\x49\x36\xd3\x86\x39\xb3\xdf\x8b\xb0\xff\x8f\x7c\xfb\x7f\xe3\xb9\xc5\xb1\x64\x3e\x1e\xcb\xcb\x2a\xe4\x24\xbe\x9b\xf9\xd8\xa7\xe1\xaf\x7b\xae\xbc\xa1\xfe\xd1\xe7\xdd\x5d\x74\xf7\x3a\xf2\xf6\x94\x6b\xe5\x89\x22\xa5\x79\x4d\x08\x06\x22\x30\x8e\xb7\xca\x7d\x27\x88\xa3\x4a\x84\x30\x43\xae\xc6\x30\x5e\x2e\xc3\x04\xb3\x59\x32\xd7\x12\x33\xaf\xed\x4a\x4d\x6c\x24\x0d\x51\x52\x22\x34\xf1\x9a\xd8\xa8\x61\x86\x6d\x32\xe1\xbd\xf8\xe6\xd7\x8a\x85\x13\xb6\x94\x23\x1b\x97\xc6\x7b\xa1\x1a\x8b\xe9\xcf\x57\xb8\xf1\xf0\x0b\xf6\xf0\xc9\xf6\x7b\x16\xf4\x45\x3f\x28\x5b\x31\x49\xfe\x1f\x4c\xf2\x1f\x4c\xf2\x7f\x14\x93\x2c\x32\xb6\x84\x38\x5f\x71\xfa\x2f\xc2\x25\xf7\xc6\x0f\xe7\x54\xec\x13\x33\xf8\x14\x80\x6a\xe8\x9c\x0a\x9f\x73\xd5\x82\xc1\xfb\xd5\x75\x6a\x5f\xbe\xca\xdd\x6d\x32\x18\xcf\xc1\xa2\x9b\x1e\xad\x70\x90\x15\xb9\xf1\x8f\xf9\x3e\x19\x6b\x45\x86\xff\xbf\x01\x23\x4e\x5b\xd0\xe0\xf7\xac\x0c\xa2\xe0\x8f\xc5\x85\xff\x86\x78\x26\x21\x2c\x7c\xf8\xe8\xd7\x8b\x4b\xff\x55\x5c\x89\x63\xa7\xef\x85\x59\x94\xa8\x6b\x1f\x63\x92\xfd\x1a\xc6\x04\x9a\xbe\x85\x31\xc9\x7d\xf1\x9c\x66\x4c\x9a\x26\x64\xb0\xb5\xae\xfc\x8c\xcd\x51\xe5\xe7\xed\xfc\xc9\x9d\xed\x81\x1f\xaf\x3f\x4a\xc2\xf3\x9f\x13\xf5\x7f\xf1\x44\x59\x79\xd3\x1f\x77\xa0\xfe\x37\x02\x2f\x89\x8d\x62\x51\x06\x9f\xa0\x4d\x94\xc0\xe7\xe3\x03\x5f\x06\x19\xdf\x5b\x06\xe9\x99\x37\xed\x13\xbc\x99\xe0\x5e\xdd\x9a\x21\x28\xaa\xf8\xe0\xd5\xc7\x43\x82\x58\xc5\x32\x95\xe2\x6d\xe9\x0b\x94\x87\x79\x71\x96\x2f\x78\x72\x46\xc3\x5b\xe4\xc8\xe0\x4e\x79\x13\x0a\xe5\x64\xbc\x44\x38\x2e\x6b\x2f\x4f\x35\xe4\x57\x01\x3f\x2b\x1b\xb5\x8e\x1b\x40\x97\x42\x6d\x58\xd6\x70\x9c\xc0\x09\x9b\xd1\xf9\xa4\x39\x45\xeb\xc7\x26\x30\x4e\x05\x82\xc9\x92\xa6\x54\xd0\x8e\xac\x81\xfd\xc9\x6c\xc1\x63\x86\x6d\x9a\xa1\xad\x50\x73\xa0\x20\xd6\x47\x4e\xfb\x38\x56\x3c\x48\x16\xc6\xa8\x2c\x7f\x27\x33\x2b\x00\x94\xc7\x16\x50\x00\x66\x12\x0b\x33\x9f\x02\x28\x0a\x2d\x3c\x8b\x05\x55\xee\xbe\x70\x4e\x82\x15\x83\x67\x83\x3c\xe8\x17\x38\x95\x3f\xd5\x8b\x51\xbf\xd3\xef\x17\x93\x5f\x00\x59\x6d\x9e\x9c\x44\x0b\x74\x55\x77\xa7\x0e\x59\xb3\x74\x4e\x04\xe6\x65\xfd\x45\xb2\xcd\x56\xc4\x53\x06\xe7\x0a\xe2\xf4\xeb\xa0\xe4\xf6\x26\xad\x91\x61\x7a\xbd\x50\xef\xbd\x2c\x83\xe1\xe1\x3e\xb3\x66\xd3\x82\x08\x34\xcb\x95\x55\xa4\x7b\xdd\x6c\xe0\x49\xa1\x28\xce\x76\x60\xd5\x99\x3a\x0e\xa6\x24\x46\x8d\x55\x97\xf0\x2b\xb8\xc3\x25\x5b\x34\x3d\x57\x6d\x52\x85\x4c\xd1\x00\xc8\xb0\xfc\x05\x4f\x84\xc8\x6a\x55\x40\xad\x74\xae\x03\x12\x29\x27\x38\x89\xb1\xdf\x85\xbd\x96\xcd\xc4\xa6\x8d\x02\xc7\xb3\x62\x0e\xf0\xfa\x1f\x81\xfa\x6f\x74\x29\xab\x17\xa6\xc3\xb1\x7d\x60\x7a\x78\x62\xdf\x97\xe0\xc0\xaa\xe7\xa5\xa3\xc3\x5f\xf3\xba\xd4\x7c\x7f\xd1\xfe\x0f\x9a\x9e\x62\x0c\xdd\x06\x61\x9d\x40\x7f\x4f\x94\x9e\x69\xf1\x42\xed\x46\xc5\x59\x8c\xa2\x1f\xcf\xc1\x3b\x09\x2c\x11\xe0\x83\x50\x18\x87\xbe\xd6\x10\x59\x32\x4d\xb6\xa5\x95\x01\x1c\xe3\x03\x95\x13\x36\x69\x10\xb0\x60\x2d\x0d\x67\xde\x73\x5f\xc0\xb0\xdc\x9d\xa0\xab\x1e\xc7\x62\x06\x6a\x4f\x6c\xe6\x2c\xb3\xe6\xf6\x56\x32\xa3\xcb\xdd\xe8\xc0\x79\x7f\xe0\xea\x22\xdc\x1d\x4d\xf6\x94\x33\x53\xc8\x3c\x37\x7a\xc6\x5f\x72\xc5\xdb\xa7\x59\x14\xd3\x8e\x52\x20\x73\x4d\x79\x6b\x51\xbd\x19\xdd\xb3\xe7\xb3\xd3\x57\xcf\xaf\x17\x14\x28\x15\x78\xf6\xec\x5c\xc5\x79\x07\x28\x28\x36\xec\xbc\xe7\x09\x5d\x76\x44\xd6\x51\x2d\x77\x36\xba\x69\xf3\x40\xca\x86\xda\xad\x1b\x3c\x95\x2a\x63\xff\x31\xbe\x20\x8f\xf0\x4d\x33\xfc\xc0\x6f\xa6\xb5\x36\x72\x3a\xa7\xf2\x12\x14\x5c\x5e\xd6\x56\x84\x10\x6c\x03\x34\x18\xa3\xb2\x01\x66\x06\x0d\x0a\x15\xaf\x78\xe3\x2c\x79\x8c\xec\xf4\xbd\x76\xb1\x64\xcb\x5c\x58\x03\x3f\xf0\xc1\x02\x76\xf8\xe6\x5e\x76\x4f\x9f\x9d\xa0\xcf\xac\xbf\xba\x45\x9e\x43\x33\xa6\x54\xd0\xa7\x21\xc7\xdc\x0d\xcf\x09\x92\x11\xf2\xe2\x9a\x9a\x8a\x08\x5e\xbc\xec\x2e\x5f\xd6\xfc\xec\xf8\x43\x85\x20\x32\x95\x04\x42\x04\xec\xc2\x9a\xa4\x61\xf3\x78\x99\xb0\x68\xc3\x0b\x1a\x2f\x5d\x64\x76\x79\x88\x74\xa4\xb4\xfc\xab\x9b\xf7\xf1\x39\x28\xa6\x05\xb2\x50\x80\x66\xa3\x79\x89\xf0\x59\x73\x37\xb5\x27\x53\x41\xba\xe3\xc6\x4a\x5b\xf1\xcc\xb6\x9c\xd0\xdd\x2e\xa4\xc4\xf6\xa5\x94\x19\x75\x77\x61\x00\x70\x1b\x78\x81\x76\x94\x2e\x01\xf3\x95\x06\xb4\xe1\x32\x9b\x65\xea\xce\xf0\x2f\xa4\xb8\x4a\x6e\x15\xc4\xa9\xdc\x81\xc1\x56\xaf\x07\x56\x84\x85\x5b\xfe\xef\xbf\x0f\x10\xda\x4a\x4c\xb3\x0e\xc1\x21\x09\x65\x2a\x9c\x29\xe8\x5d\x02\x06\xa6\x7e\xb0\x79\x52\xf4\x83\xce\xb6\x0c\xb4\x58\x91\x2a\xc5\x19\xd9\x78\xae\xfa\x4c\x49\x2e\xf7\x4e\x12\x18\xf9\x24\x95\x88\x63\x96\xce\x46\xf3\xca\xc6\xcc\x49\x22\xb1\x37\x5c\x62\x9e\xdc\x5b\x8e\xc0\x8f\x1a\xa7\x46\x30\x06\x79\x94\x0f\x04\xe7\xee\xc8\x24\x0d\xef\x04\x0a\x60\x8d\x30\xca\x00\x6c\xf5\xfa\xaf\xde\x63\xb4\xe5\x1e\x93\xac\x35\xc4\xf3\xd2\x56\x9f\x74\x29\x39\x35\xa7\x42\xbb\xa4\xd7\x5f\x6a\xa5\xde\x6a\x46\x45\x81\x9a\x80\xda\x70\x45\x85\xda\x6a\x73\xf8\xca\x4c\xe0\xdd\xc5\x3f\x4d\x1d\x36\x34\xce\xc9\x4d\x58\x71\xe5\x41\x7b\xdf\x3c\xa8\x45\xbb\x13\xf6\xa5\x9c\xd5\x60\x70\xdf\xa9\x7c\xfa\x88\xf7\x0f\x56\x05\x8b\x56\xdf\xef\x92\xb3\x34\x61\xe7\xda\xa1\x60\x5d\xa7\x1c\x46\xd6\xeb\x79\x16\x88\xc6\x73\x9f\xa1\x85\xda\xdf\x1c\xd6\x21\x32\xe2\x13\x65\x39\xf7\x3a\x5b\xd2\xbc\x8d\x22\xf1\xb2\xf5\x4a\x9c\x10\x42\xb8\x17\x8d\x92\xbb\xd8\x92\x43\xc1\x93\x75\x88\x88\x17\xd7\xa4\x36\x71\x0e\x1b\x65\xa3\x2b\xc7\x30\x55\x3d\xc7\x49\xf5\x5a\x09\x7e\xcc\x73\x39\x23\x6e\x6e\x97\x17\x66\xea\x1d\x88\x70\xa9\x2e\x18\xc9\x86\xaf\xb2\x82\x2d\x87\x9f\xc9\xbb\xce\xef\x4c\xce\xe0\xaa\x8a\xbb\x14\xb6\xb1\xf8\xa3\x12\xd8\x2e\xfc\x6c\x4d\x45\x3c\x33\xb7\x12\x09\x16\xf9\x66\xc0\x32\xb6\xa0\xc1\xfc\x33\x4b\x9d\xd3\x29\xd0\x09\x5e\x68\xc7\x85\x3a\xda\x81\x56\xdb\x40\xff\x4b\x2c\x53\xea\xc4\x0c\x59\x58\xa3\x0e\x93\x4e\x56\xc6\x18\xdb\xbf\xe9\xc9\xd2\x16\x34\x4b\x43\x2e\x6d\x9b\x7f\xa7\x37\xe4\xc6\xfe\xfa\x86\xd1\x7c\x11\x6f\xe8\xf2\xef\xf4\x26\x7f\x15\x6f\xc8\x99\xd6\xb9\x8c\x73\xb5\x5b\x14\xc4\xee\xe0\x6d\x5b\xf4\x7a\x0e\xdf\xc4\xcb\x65\x28\x7c\xa3\x7c\x62\x0c\x6f\x5d\xd2\xd4\x7d\x9a\x03\x17\x6d\x4b\x08\x21\x04\x1a\x41\x38\x83\x2f\x11\xe3\x98\x30\x7b\xd0\xa1\x92\xfe\x41\x62\xef\x62\x6a\xbf\x2c\xb0\x5f\x5e\xce\xb9\x1e\xb4\x53\x42\x21\x0e\x02\x20\x7b\x6f\x29\xab\x74\x94\x24\x51\x9c\xdd\x5a\x0e\xda\x94\x83\x0e\x70\x66\x22\x6f\x5f\x85\xe0\xb9\xe2\x96\x5a\x0a\x0c\x71\x81\x5a\xd4\x3c\x14\x5e\x6a\x79\x62\xe8\x56\x1a\x74\x71\x1d\x7d\x9b\x76\x63\x7b\x52\xdf\x30\x93\xbe\xa4\x9b\x34\xbb\x31\x76\x42\x2d\xdb\x8a\x70\x1b\x5b\x5a\x47\x83\x98\x93\x73\x6d\x2d\xcd\xcd\x15\xcc\xfd\x50\x93\x89\x04\x0e\x55\xe7\x2b\xba\xca\x38\x05\xa7\xa6\xce\xe5\x7b\x9b\x77\x52\xe6\xc2\x24\x69\x64\xc7\x70\x41\x62\xbf\xd9\x62\x5a\xd4\x5b\xad\xa0\x1c\xd0\xe0\xab\x92\xb2\x41\x3b\xb2\xd1\x9e\xfc\x24\x4b\x7a\x41\x25\xa1\x3b\x0c\xf4\xf0\xe4\xbd\xdb\x1c\x79\xe8\x2f\x3e\x6e\x42\xb2\xe7\x8e\x4b\x19\x6f\xb4\x6c\xe0\x9e\xfd\xab\xdc\xf2\x7e\x19\xbf\x49\xb9\x6d\xfb\x9a\xac\xec\xbc\x69\xdf\xa7\x52\x02\x78\x27\x72\x63\xb6\xef\x4a\xa8\x0f\xa2\x71\xef\x59\x4e\xce\x7b\xdf\xcb\x5a\xc5\xa1\x85\x05\x6c\x50\x15\x96\x87\xd8\xd0\x39\x38\x21\xd4\xeb\x62\x62\x43\xf2\x72\x7d\x21\x21\xdc\x4d\x5c\xcc\x18\x08\xb1\x33\x74\x3d\x87\x09\xb6\xbc\x49\xdc\xee\x55\xce\x6d\xeb\xd3\x98\xe9\x7d\x94\xd5\x3b\x31\xeb\x14\xcc\x79\x67\xe4\x45\x4a\x3b\xdf\xb3\xef\xf9\x9f\xf3\x40\x22\xd2\xee\xb8\xa2\x9b\xd4\x04\xff\x11\xe6\xbe\x63\x0f\x25\x57\xb9\xdd\xb8\xa6\x65\x31\xf4\x0a\x35\xfc\x87\x18\x4f\xd4\xa1\x64\xe0\x4d\xcb\x21\x53\x91\x9f\xee\xf1\x32\xea\xee\xfb\x66\xa7\x6e\xf5\x5b\xc4\x11\xe0\x66\x97\x80\x38\xc2\x52\x29\x76\x4c\x9e\x85\xd2\x26\x8d\x17\x7b\x75\xdb\x2b\xbb\xef\x39\x0d\xe1\x26\xc5\x6e\x60\xe3\x99\xb5\x3a\xd2\xea\xdc\xdd\xeb\xaa\x7e\x4f\xce\xef\x70\x3f\xd7\x3e\xed\x3f\xce\x54\xe4\xdf\x50\x24\x74\xab\x8e\xe5\x1f\x44\x05\xb5\xdc\x94\x1e\xe9\xb3\x17\x66\xba\x23\x1f\xbe\x2a\x14\xd4\xde\x3a\x41\x50\xb3\xda\xbb\xa5\x17\xe7\xf6\xc5\x91\x57\xf7\x1c\xcc\xdf\xe9\xfe\x61\x7b\x43\xd8\x4b\x0f\xdc\x7d\xe1\xdc\x7d\x7f\xdc\x07\xf3\xfb\xf1\x1a\xee\x46\x8c\x2d\x73\xbd\x0d\xb1\xb4\x34\x7e\x0b\x1e\xb8\x13\x4b\x9a\xe6\x24\x5a\xfb\xa3\x54\x4c\xff\x0f\xa8\x85\xfd\x3b\x3e\x2e\xb7\x39\x3b\x31\xf5\xef\x7c\xf9\x91\xd7\x65\x61\xef\x4a\x7a\x65\x1d\x58\x82\x83\xa0\xff\x92\x54\x2b\x9d\x8d\xe6\xbd\x9e\x95\x32\x8e\xb0\xd9\x55\xc9\x2f\xe7\x7e\xdd\x85\xa9\x7b\x69\x22\x7c\x01\xed\x37\x91\xeb\x12\x9c\xa7\xd9\x59\x9c\x06\x5d\xc9\x84\xab\xa0\xee\x95\x24\x6b\x32\x09\x55\xa0\xc4\x6e\x17\xb2\xa1\x2a\x23\xd7\x12\x4d\xcc\x2f\x88\x82\x6a\x8d\x4a\x9d\xce\x90\x72\x90\x7f\xeb\x33\xa5\x66\x9f\xba\x44\x92\x6e\x2e\x50\xe9\xa4\xc5\x4e\xc2\x5a\x89\x61\x46\xa8\x7d\xbb\x64\xb3\x42\xbd\x54\x1a\x0b\xb5\xaa\x53\xa3\x0c\x99\x0b\x5b\x6b\x6e\x85\x09\xce\x66\xc9\x1c\x73\x6d\xea\x6d\x35\x54\x97\x61\xe2\x09\x2e\x51\x89\x90\x7b\xda\x2c\xe6\x25\x92\x24\xc7\xbd\x06\x55\x75\x71\xc8\x24\x11\x94\xb9\xcd\x2a\xbc\xcd\x2a\x0c\x0b\xb3\x74\x25\x6c\xbe\x3f\x98\x49\x73\x12\x6c\x96\xb5\x4c\x22\x29\x11\xc2\x76\xd8\xd9\xbc\x2c\x41\x79\xad\xd4\xaf\x5c\x2c\x7c\x3c\xaa\x3e\x76\xfe\xf6\xf7\xa6\x62\x45\x83\xff\xd2\xc0\x84\x73\xfb\xdd\x09\x70\x7a\x8b\x1e\x45\xe6\x30\x82\x7a\x6b\x6b\x53\x7c\x30\xad\xee\xd3\x46\xcc\xea\xda\x88\xc9\x50\x2e\xd8\xcb\x24\x17\x21\xac\x56\x76\xb7\x3a\x62\x81\xe5\x8e\x7b\xab\x5a\x94\xb7\xeb\x26\x66\xbf\x8d\x6e\xe2\xbf\x46\xb7\xf0\xd7\x6a\x44\xde\xa2\x9b\xd8\xac\xef\xb8\x33\x7b\x4d\xe2\xc5\xed\x30\x51\x03\x03\xf0\x3a\x5f\xdf\x74\x0d\xde\xc2\x1c\x22\x8b\x11\xdd\xb6\x11\xb0\xe2\x1f\x3a\xb7\x05\xf2\x0c\xe1\x16\x90\xa8\xea\xac\x7f\x92\x92\x8c\x9b\xb1\xaf\x49\xe9\x66\xbc\x22\x0f\xbe\xcf\x3f\xc7\xdf\xe7\x9f\x3f\x38\x9f\xd4\x9f\xce\x7c\x69\x72\xbe\x49\x13\x11\xae\x24\xaf\x13\x04\xb8\xe5\x15\x82\xf7\x89\x00\x33\x17\x79\xd8\xb5\xd4\x54\xa2\x06\xa5\x81\xc6\xfb\x24\xc0\x9d\xa0\x62\xbc\xf8\x6f\x49\x87\xb4\x5f\xc9\x3e\x3d\x62\xb7\xce\xbf\xf7\xad\xec\x7e\xa8\x8f\x75\xe8\x69\x57\x4c\xb9\xc5\xcf\x51\xd8\xf4\xe1\xa8\xc5\x04\x59\x91\x2e\x95\x6c\x39\x61\x4b\x10\xf9\x70\xba\xa2\x9c\xb2\x85\x11\x13\xfc\x39\x97\x73\xfc\x73\x3e\x0c\x30\xc3\xce\x12\x7a\x4d\x45\xbc\xdb\x51\x04\xca\x32\x6a\x05\x9b\x80\x06\x8c\xbd\xf7\xc8\xd8\x0b\x90\xf7\x40\xad\x23\x10\x39\xa3\x58\xa6\x01\xaa\x40\x38\xb3\xd0\x55\x20\x9c\x48\xe8\x8a\xc9\x68\x12\x7f\x61\x44\x25\x93\xb8\xdf\xb7\x1a\x14\x29\xe1\xb3\x78\x8e\x17\x64\x34\x59\x7c\x91\x99\x12\x0b\xb3\x77\x2b\x92\xcd\x16\xf3\x49\xd2\xeb\x85\x89\x86\x38\x9c\xf4\x89\x04\xdc\xe9\x6a\xa8\x89\xf0\x30\xc7\x29\x8a\x52\x00\xd6\x95\x55\xea\x76\x0f\xc7\x99\x47\x04\xd9\xf7\x17\x38\x9e\x0c\x6f\xb5\xfb\x13\xe3\xbe\xc5\xf8\x2e\xf7\x0c\xc7\x19\xcd\x45\xc2\xce\x55\x78\x51\x73\x66\x5d\xf0\xfa\x6c\x3a\x8e\xb2\xfe\x58\x9d\x77\x77\x67\x6f\xfd\x6a\x51\xa6\xdd\xac\x08\x0f\xcd\xc9\xce\x4a\x4b\xbb\xb5\xab\xd1\x98\x10\x1f\x8e\x96\x89\x7d\x5a\xa6\x93\x68\xf1\x6c\x5c\x23\xaa\x70\x6e\xde\x2b\x17\x46\x09\xc1\xac\xf8\x4a\xc2\x84\xd6\x43\x59\xc2\x4a\xe2\x0d\x51\xe4\xdf\x6a\x36\x02\x82\x67\xb9\xdb\x6d\xa0\xdb\x9c\x64\x61\x8c\x0b\x9c\x23\xbc\x54\x35\x2e\x08\x0b\x57\x38\xf6\xe8\x87\xc5\x6e\x17\x2e\x08\x0d\x0b\xf0\xc1\x75\x61\x37\x25\xc5\x0b\x84\x0b\x4b\x56\x5c\xe0\x64\xb6\xd2\x64\x45\xee\x5d\x80\x17\xa5\x89\xf8\xb5\xe9\xf5\x5c\x71\xe5\xc5\x1f\xe7\xc8\xa6\xc4\x40\x46\x43\x23\xae\xb6\x1b\x48\x69\x69\x2a\x59\xa4\x74\x60\x50\xfa\x0e\x22\xc7\x8f\x4e\x7e\x89\x87\x48\x87\x4b\x71\x4e\x1e\xf4\x1e\x9c\xe3\x94\x3c\xf8\xfe\x4f\xe1\xec\xfb\xab\xc1\xbc\x8f\x1e\x9c\xdf\x3b\x38\x47\x95\xe1\xfb\x4d\x31\x25\xbe\x9d\x29\xd8\xa3\x9f\xd5\xa2\xc6\x5c\xd5\x5e\x1e\x4d\x84\x7b\x38\x95\xc8\x14\x3c\xd1\xc7\xca\xaa\xdc\x3e\x35\x99\x75\x86\x78\xe2\x35\xdf\x13\xed\x54\x46\x5d\xb3\xd1\x12\x18\x10\xb5\x96\x82\x63\x60\x9e\x6d\x42\x0e\x3e\x75\x55\x28\x87\xd2\x2a\x14\xb3\x70\x7c\x32\x92\x68\x25\xe4\x24\xbb\x5d\xb9\xb6\xaa\x78\x77\x69\x42\x0b\xd4\xe2\x09\x88\x59\x75\x40\x0c\xa9\x90\x01\x4e\xe5\x62\xa5\xc3\x0f\xe5\xbd\x5e\x7d\xc1\x5c\x1e\x9a\x0a\xf7\x83\x78\x19\x60\x99\x1d\xa3\xc8\xcf\x8e\x2b\x35\x81\xb7\xbb\x4f\x34\x96\x07\xb3\x27\x83\x7f\xce\x1f\x9c\xe3\x8c\x3c\xf8\x7f\xeb\x7c\xf0\x00\x27\xa0\x70\xd0\xea\xa9\xd4\x0c\x1f\x4e\xfb\x34\x99\xd1\x79\x24\xff\x21\xd4\x1e\x50\x8e\x83\xc1\x9f\x7a\x01\x1a\x8a\xec\x65\x76\x45\xf9\xd3\x38\xa7\xf0\x3e\xaf\xb2\x33\x1c\x0c\xd6\xf9\x20\xf8\x8f\x77\xfa\x4f\x72\xde\xeb\xec\x67\xc2\x4f\x76\x35\x87\x26\x77\x9c\x62\xab\xd4\x69\xaf\x07\x56\xb9\x1e\x44\x95\xda\x11\x48\x48\x0a\x26\x0f\x39\x96\x1f\xd8\x33\xc1\xd9\x7b\x76\xfd\x08\x17\x79\xc8\xb0\xc0\x8e\xeb\xd3\x38\xf5\xe4\xa0\xae\xe5\xaa\x0e\xdb\x83\x70\x30\x8b\x07\x3f\xcf\xd1\x83\x73\xcc\x5a\x81\x73\x36\x9e\x0f\x45\xf6\xcd\x66\x63\xa0\xaf\xc4\xdc\x3f\xa3\x99\x3a\xa3\x7c\x96\xc9\x43\x29\xb9\xd2\x59\x66\x01\x54\x8e\x4c\x25\x3b\x22\x54\xdf\x86\x61\x78\x27\x86\x47\xf6\xc8\x57\x14\xfe\x9c\x06\xb6\xa8\x3b\x35\x16\x92\x98\xb9\xa7\xcb\x65\x1d\x78\xd0\xf3\x17\x96\xf4\x7a\x35\xa3\x11\x49\x51\x26\x24\x80\x08\x53\x92\xac\x51\x41\x0a\x4d\x95\x08\x74\x75\x0d\x92\x00\xe1\x8c\xc3\xce\xb1\xd9\xcd\x58\xee\x66\x8c\xe5\x87\xe4\xd5\x54\x6c\x3f\x4b\x5b\x99\x52\xa9\x2c\x45\xfb\xc1\x20\xe8\xa7\x58\xfe\xb4\x65\x21\xa4\xa1\x1e\x42\x64\xea\x29\x62\x4c\xf8\xc4\x98\x98\x2d\xa0\x0d\x2c\x3f\x6a\xb5\xf5\xa3\x67\x24\xa1\x59\xf4\x7a\x61\x46\x44\x3f\x64\x33\x3a\xdf\xed\x0a\xf8\x37\xf0\x14\xbf\xee\x0c\x38\xf3\x2b\x6e\xbf\x6d\x10\x9b\xe8\xb2\x83\x25\x4d\xe5\x94\x82\x75\x1e\x60\x3f\xb9\x50\x11\xed\x4c\x8e\x5c\xdc\x73\x9e\x15\x6c\x39\xd8\x64\x79\xa2\xb3\x36\xd7\xed\x59\x83\xeb\xdb\x32\x6f\x5a\x32\xc1\x71\xba\x4a\x3e\xcb\xf8\x92\x72\x53\x04\x7e\x0c\xce\x32\x21\xb2\x75\xd0\x96\x38\x48\xe9\x4a\x0c\x78\xbc\x4c\x8a\xbc\xbd\x00\x4f\xce\x2f\x6e\x2f\x71\x95\x2c\xc5\x45\x2d\x4b\x36\xdb\x92\xd4\x5a\xb6\xb5\x6d\xe8\xb6\x2d\xad\xb5\x89\x7c\x13\x2f\x24\x43\x5b\x4d\x15\xd9\xa6\x99\x72\xcb\x8c\x65\xee\x2d\xd3\x95\xd9\x6d\x9d\xb7\xa5\xc5\x2b\xb1\x27\xe7\x0c\x9e\xc6\x5b\xb3\x28\x5b\xb6\xa6\x5f\x64\x3c\xf9\x39\x63\x22\x4e\xf7\x4c\x34\x17\x31\x6f\x5f\x98\x4b\xca\x45\xb2\x68\x54\x54\x3b\x67\x8b\x5e\x0f\xf2\x8b\x78\x99\x5d\x99\xca\x8b\x2c\x2d\xd6\x6c\x70\x1e\x6f\x6a\x29\x92\xdf\x6b\x49\xaa\x76\xad\x33\x2a\x69\xab\x94\x5e\x0f\xce\xe2\x3c\xb1\x8b\x0a\x26\x75\x1e\xe0\xba\x04\x79\xaa\x44\xac\x93\x2f\xa8\xdc\x10\xf5\x2d\x77\x4e\x17\x4e\xa9\x10\xcd\x7d\x4f\xb3\x73\x98\xac\xaa\x54\x4f\xf5\x07\xb4\x8e\xf9\x79\xc2\x74\x01\xf5\x43\xed\x59\x50\x4d\x53\xbb\x55\x4f\xac\x9c\x27\x9d\xe8\x43\xbc\x4e\xaa\xc0\xb0\x4e\xf3\x60\x72\x1d\x5f\xd7\x46\x2a\x53\x2a\xcb\xa6\x2b\x51\xb6\xac\xa5\xc0\x8e\xbb\xb4\xfc\x63\x0b\xf6\xa8\x26\xdf\x54\x92\xfd\x85\x97\xbd\xb6\xaf\x9c\x9f\x53\x1d\x57\xc2\xea\x45\x13\xd6\x2c\xb2\xa7\x55\x2f\xa7\xb2\x27\x99\x1c\xa8\x29\x04\x3f\x06\xd9\x6a\x05\x6e\x94\x20\x31\x2b\x44\x9a\x30\xaa\x4b\xe8\x5f\xd5\x22\x36\xd5\x6f\x78\x13\x2f\x97\x09\x3b\xd7\x25\xf4\xaf\xda\x2e\x9a\x54\x7f\x1b\x4d\x5a\x65\x1f\x4d\xa2\xb7\x91\x26\xa9\x02\x40\xb6\x9b\x0a\x04\x99\x54\x6f\x47\x4d\x52\x65\x4b\x37\x94\xe7\x1b\xba\x10\xc9\x25\x1d\x64\x3c\x91\x5b\x2e\xf7\xf5\xcf\xed\x59\x37\x2a\xcb\xcb\x51\xcd\x70\x77\x76\x02\x88\x1b\x35\x50\xe0\xa3\x7b\x91\x40\xa0\x73\x05\xbd\x16\x03\x65\x4b\x1d\xf8\x49\xb9\xe0\xd9\x47\xda\x92\x54\x59\x60\x91\x6d\x4c\x09\x1e\xb3\x7c\x95\xf1\xb5\x1e\x9a\x1e\x73\x3d\xd9\x4e\xa6\x91\x71\xb3\x2f\xe3\x67\x3f\x23\x69\xde\xbe\x7e\x7a\xed\xfa\xb5\x48\x30\x4e\x93\x73\x33\x79\x18\xbf\x1e\xf5\x55\xc6\x97\x4d\xd4\x6a\xb0\xa2\x77\x1f\xbb\xb4\x9b\x96\xb4\xb3\xb4\xe0\x2d\xc9\xf9\x86\xd3\x78\x59\x41\x73\x00\xa2\xd5\x53\xa1\xd6\xb6\xd6\xa1\x9f\x78\xd3\x96\xe8\xba\xfc\xd7\xf0\xfb\x8d\x17\x31\x4f\x0f\x9f\x98\x27\x31\xf0\x60\xfa\x91\xde\x90\xe0\xbf\x82\x3e\x1f\x6e\x38\x5d\x25\xd7\xc3\x45\x9e\xf7\x21\xd9\xc8\xbc\xc7\x08\xdd\x61\xe9\x55\xe1\x41\x44\x85\x07\xa1\x75\x8e\xdb\x5a\x7f\xb1\x39\x4e\x48\x77\x8c\x63\xc2\x87\x56\xc1\xc9\x2e\x00\x43\x93\xb8\xd7\x8b\xb5\x7a\x51\x42\xba\x23\xa3\x8b\xd8\x1d\xe3\xdc\xaf\xa2\x0c\x61\x62\x9c\xa1\x49\xde\xeb\xe5\x5d\x42\xb2\x5e\x2f\x2c\xe0\x51\x36\x4c\x76\xbb\x02\x28\xed\x5e\xcf\x9a\x94\xb1\x39\xa6\xb3\x78\xb7\x63\x73\x92\xef\x76\x59\xe5\x55\x79\xaf\x04\xc3\x72\x2d\x8d\x9e\x7d\x96\x88\xff\x2f\x8e\x75\x38\x3e\x39\xfa\xcd\xc3\x47\x60\x51\x5b\x0d\x22\x9a\x7b\x49\x84\x06\x2d\x3f\x20\xac\x32\x9c\x7c\xe8\x0c\x27\xc7\x27\xc7\xd6\x72\x72\x7c\xf2\xe8\x57\xdb\xd8\xaa\x2e\x3d\xe7\x7d\x8d\x71\x79\x1e\xfc\xaa\x93\x70\x1e\xfb\x4a\x6c\xc7\xee\x1a\x6a\x9b\x62\xd6\x96\xab\x56\xc4\x6b\xec\x77\x47\x04\xda\x1f\x6a\xe1\xe0\xcc\x82\x57\x3e\xa3\x56\x55\x4e\x7e\x4f\x6a\x26\x9e\x28\x61\x9d\x42\xbd\x33\x4f\x73\x10\x15\xb9\xf5\x19\xfe\x98\xf7\xab\xc5\x25\x33\xd9\xac\xe2\x2a\x00\x12\x89\x20\xd1\x19\xcc\xc8\x9f\xa5\xb7\xfb\x10\x09\x22\x73\x80\x60\x36\xff\xe1\xaf\xb1\x9b\xd5\x82\xef\x5c\x9f\x2d\xcf\x40\xb9\xd8\x6b\x96\xb3\x09\x14\x72\x49\xc9\x55\xc2\x96\xd9\xd5\xf0\x9c\x8a\xa7\xd9\x7a\x53\x08\xba\x54\x0e\x5d\x6d\x4d\xf3\xa1\xeb\xe2\x20\x70\xc6\x3c\x0b\x79\x6e\x53\x94\xe4\xaf\xe3\xd7\xe1\x02\xed\x76\x61\x3e\x4b\x67\x8b\xf9\x9c\xc8\x7f\x7f\x73\x49\xda\x1e\x00\xb0\x92\x4b\x27\xe9\xcb\x50\x69\x85\x88\x83\xef\xf3\x79\x3f\x1c\xa2\xa9\xff\x42\x98\x55\x50\x9c\x98\x8a\xaa\x5c\x06\x3c\xb1\xfc\x01\x83\x37\x3a\x03\x45\x25\x0c\x95\xb1\x1d\xf1\x2c\x96\x77\xbb\xae\x5a\xe5\x4d\xcc\x73\xfa\x82\x89\x50\xe0\xf1\x08\xa1\x7a\x8c\x2c\xda\x17\xee\x04\xc4\x9e\xb2\xa8\xfc\x06\x3d\x5d\x0d\xbf\x12\x50\x85\x56\xd1\x75\x3a\x39\xb2\x94\xbc\x6f\xba\xe3\x32\x08\xc0\xae\xca\x14\x9e\x42\x96\x88\x42\x90\x92\x4a\x2e\x0a\xbc\xc2\x8b\xda\x11\x00\x29\x8f\x20\xb6\xd0\x59\x76\x1d\x20\xec\xf7\x89\x6b\x0d\xf7\x7a\xa1\x6a\x1a\xa1\x89\xfc\xd8\xed\x42\x3d\x0a\x8b\xd9\xbd\xea\x41\x80\x65\xae\xd9\xdd\xc4\x1d\xaa\x44\x1f\x2a\xb7\xc7\xc9\x2f\x3a\x48\x31\xd9\x96\xb8\xb0\x26\xac\x9e\x97\xf7\x5b\x8f\xd1\xef\x70\xc1\xdc\xf1\xbe\x5a\x31\x17\xd4\x46\x52\x46\x78\x75\xd7\xfb\xda\xdd\x02\x54\x63\xd7\xe7\x5c\xa5\x81\xcb\x55\x81\x86\x79\xc6\x85\x6f\xc5\xad\x95\x82\xf8\x2c\x9b\x25\xf3\x39\x11\xea\xaf\xf7\x40\x7e\x3f\x29\x3f\x0b\xc7\x15\x4d\x9a\xcc\xed\x5a\x77\x44\x08\xe1\x21\x45\xbd\x5e\x30\x53\x72\xc2\x8e\x1a\xd4\x5c\x02\x5f\x83\x5c\x30\x1a\x02\x9a\x50\x40\x65\xfb\x53\x01\x50\x22\xd8\x68\x4f\x77\xc7\x92\x80\x82\x4e\xc2\x16\x91\x79\x28\x48\x45\x58\x2e\x8b\xe9\x2a\x8c\x78\x9d\xa3\x5e\x0f\x92\x59\x8d\x68\x09\x03\xf0\x28\xa2\x0a\x9d\xae\x02\x15\xf4\xfb\x97\xbe\xa2\x39\x40\xd6\xa4\x53\xaf\xe7\xc9\x5a\x8d\x5c\x5e\x0e\x81\x10\x52\x7f\xe5\xba\xef\x3e\xfc\xba\xd8\xf7\x6d\x0a\x5d\x50\x30\xc7\xcc\xbd\x1e\x8b\xe9\xf6\x3a\x8f\x46\x38\x5f\x47\x0f\x47\x23\xbc\x5e\x46\x8f\x1f\x8e\x70\x7a\x1e\x8d\x0f\x4e\x46\xf8\x3a\x8d\xc6\x8f\x0f\x46\x65\x24\x30\x27\x74\x58\xb0\x44\xd8\x23\x09\xcf\x65\x92\xbf\x88\x38\x06\x33\x4d\x41\x37\x38\x75\x99\xf9\xf4\x38\xca\xf1\xa2\xe1\xc8\x61\xa6\x94\x18\x25\xfb\x25\xdb\x93\x0c\xa8\xa0\x9b\x60\x5e\x8d\xa3\x6f\xc6\xdc\x62\xd2\x22\x91\x9f\xfc\x27\xa2\xd6\xe6\x17\x2c\x8b\x3a\xa1\x15\x35\x44\x81\x89\x8e\x24\x90\xf9\x2a\x70\x80\x02\xd4\x30\xe7\xd6\xc4\x80\x17\x56\xa1\x6f\xc9\x05\x4e\x08\x89\xf5\x49\x9e\xca\x41\x45\xb7\x75\x25\xc7\x54\xe9\xad\x13\xb3\x65\x27\x40\xfd\x20\xb4\xe2\x1b\xbf\x74\x3c\xe3\xf3\xf9\x20\x7d\x30\x1e\x8d\xea\x83\x6c\x33\xd0\xd8\xca\x73\x1f\xc5\x4a\x33\x27\x8f\x18\x2e\x36\xd1\x0a\x2f\xb3\x2b\xd6\x16\x9e\xa4\xf2\xce\x8f\x39\x91\xdd\x89\x39\xbc\xae\x0b\x6f\x56\x06\xcf\xac\xc2\xe0\x3a\xb7\xda\x34\x6e\x96\xcd\x71\x87\xcd\x1d\xe1\xbd\x9e\xf8\x72\x34\xe5\x11\x45\xed\xd3\xc1\x67\x54\x5c\x51\xca\xa2\x25\xce\x58\x7a\xd3\xf6\x3e\x26\x77\x83\xa2\x52\x33\xdf\x6d\xe7\x4c\x92\x6e\x25\x5e\x20\x49\x11\x43\x1c\x5a\x8f\x96\xcf\x08\x0f\x59\x78\x08\x14\x9c\xfc\x3a\x02\xe7\x0a\x33\x39\x27\x1c\xe4\xeb\x00\x07\xeb\x65\x80\x83\xf4\x3c\xc0\xc1\x75\x1a\xcc\x27\xba\x89\xf8\x0f\x3e\x89\xde\x3b\xf4\xc4\xee\xb1\x77\x3a\xb6\xe7\x85\x10\x94\xe7\x75\x2f\x78\x2d\x31\x63\x7e\x61\xb8\xa8\x5a\x3f\x5a\xb4\xf4\x92\xae\x44\x74\xf0\xb9\x50\x27\x5b\x27\xbe\x05\xd9\x90\x49\x2d\x31\xc3\x35\x40\x2c\x31\x1d\x16\x9b\x50\x2e\x2c\xc2\xb7\x34\x7c\xd8\xda\xf0\xa1\x6b\x78\xe6\xda\x99\x4b\x3c\x8c\x45\x96\xa5\x67\x31\x8f\x42\x4e\xb6\xeb\x84\xfd\x55\x89\x78\x8f\x1f\x96\xb5\x21\x70\x1c\x58\x80\x54\x6d\x48\xe8\xc5\x01\x9c\xb8\x30\xe3\x09\x65\x02\x04\x3d\x51\x27\x8d\xd9\x12\xec\x2f\x51\x80\xb0\xd7\xe8\xd1\x49\x89\x1a\xad\x7a\xf3\xf2\x8a\x3e\x3c\x2a\x55\xe0\x79\xa6\xa9\x58\x05\x6e\xe3\x23\x0b\x6f\x87\x77\x92\x1d\xbf\x1f\x4e\xdf\xf0\x64\x1d\xf3\x9b\x1a\x52\x4f\x61\xe4\xd6\x9b\xc6\xec\x70\x34\x9a\xe3\x75\x9c\x30\x2f\xed\x58\xa6\x2d\x63\xfe\xd1\x4b\x7b\x34\x1a\xcd\x0d\xba\xcf\xe9\x22\x63\x4b\xd9\xf6\xa5\x8f\xf3\x75\xdb\x2e\x6c\xff\x93\x03\x79\x73\xc8\xb6\xbd\xb4\xa3\xd1\x48\xb5\xed\xa5\x3d\x1a\x8d\xca\x88\xe3\x35\xa1\x43\xca\x79\xc6\xf1\x99\x6b\x77\x6d\xda\x5d\xb4\x8c\x79\xd1\x32\xe6\x45\x6d\xcc\x6b\x7c\xae\xa5\x4a\xf8\xca\x35\x7b\x3e\x0d\x52\x25\x4c\x3b\xc7\xa7\x8a\x72\x10\x3c\xce\xc5\xfb\x0b\x4e\xf3\x8b\x2c\x5d\xe2\xe7\xae\xf0\xe9\xf4\x30\x3a\xc5\xef\xc0\xd4\x8e\xc5\xe9\x29\xc8\x8f\xf1\x7b\x57\xe0\xdd\x74\x78\x10\xbd\xc3\x6f\x5a\x2e\x35\xbd\x0d\x12\xdf\x98\x65\x0b\x70\x00\xd3\x0c\x70\x20\x87\x05\x0f\x20\xb5\xde\x65\x96\xeb\xaa\x72\x09\xbe\x72\x9b\x1c\x8e\xf0\x52\x71\x84\xaa\xfa\x5b\x09\xdb\xb2\xdb\x0b\x30\x49\x34\x20\x80\xbe\x24\xcf\xa7\xd5\xa4\x68\x53\xf9\xe9\x9e\xdb\x6d\x37\x1f\x7f\xb5\x77\x90\xe3\xd1\xe8\xd3\x83\x5a\x1d\x8e\x46\x98\x37\x2b\x1f\xb6\x56\x3e\xf4\x2b\x1f\xce\xa3\x47\xa3\xd1\xa4\x4b\x87\x12\x44\x7a\x3d\x0a\xa1\xa8\x43\xf5\x93\x80\x96\x10\xbe\x09\x29\xd6\xfb\x8f\x19\x7e\xaf\x13\x24\xf8\x04\x98\xcb\xdf\x1e\x40\xd0\x6b\x01\x21\xe4\xfc\x04\xf2\x4a\xb7\x87\x50\xf9\x31\x64\x08\x7f\x0c\x2f\x71\x20\x61\x3b\xc0\x81\x04\x7b\xf9\xe7\xd1\x68\x14\xc8\x9c\x33\xc5\xc2\xff\x48\xb6\x00\x9f\x17\x58\xc1\xf3\xc6\x43\xc1\x9e\x22\x65\x0d\xa7\x2e\xb2\xf5\x3a\x63\xd1\xca\x49\x71\x6e\x36\x34\xba\xc2\x66\x1f\x19\xb6\x60\x15\x5d\x62\x00\xab\xe8\x0c\x9f\x73\x7a\x13\xd9\x88\x90\xb8\x01\x5e\xd1\x73\xec\x81\x8d\x9c\x51\xf4\x0a\xc7\xc5\xb9\x5c\xc1\xa7\x59\x9a\xf1\xe8\x23\xf6\xe0\x2f\x7a\x5f\xe2\x1f\x67\x57\x73\x84\xdf\xe0\xed\x22\xcd\x18\x8d\xba\xe3\x12\x6e\x5c\x39\x25\x22\x86\x30\xa5\xbb\x6f\xde\x50\x7e\x3e\x44\x08\x43\xd2\x43\x04\x0e\x8e\xe4\xf7\xe3\x13\x88\xb7\x09\x9f\x8f\x21\xdc\x26\x60\xd2\xd1\x08\xc2\x6d\xaa\xef\x31\x84\xdb\x54\xdf\x07\x10\x6e\x93\x85\x87\x47\x08\x6f\xc8\x56\xc2\x72\xb4\x35\x6b\x12\xf0\xf3\xb3\x38\x1c\xe1\x8e\xfe\x7f\x78\xf2\x08\x05\xde\x3a\x35\xf2\x8f\x8f\x50\x80\x97\x49\x1e\x9f\xa5\x74\xd9\xcc\x3e\x3c\x41\x01\xbe\x48\x98\x68\xcf\x2a\xf1\x32\xb9\x4c\xe0\x0d\xbd\x9e\x3d\x3e\x40\x01\x76\xcf\xee\xd1\x76\x13\x6f\x28\x77\xbb\x39\xbc\xba\x48\x04\xc5\x86\xc3\x4d\x3d\x74\x36\x2f\x71\x0c\x27\x31\xda\xc6\xfa\x81\xa6\x75\xd8\x17\xd9\x65\x5b\xcf\xa3\x13\x93\x77\xba\x89\x17\x89\xb8\x89\x86\xa3\x13\xad\xe7\xdd\x36\xc7\xf1\xed\x4b\x70\xf0\xd0\xcb\xfe\xca\x4d\xa8\x75\xc6\x65\x39\x31\x10\xb1\x99\x28\xe5\xcc\xda\x0e\xd5\x17\xa0\xbe\x37\x07\xc7\xc7\xb8\xe3\xfe\x19\x0d\x1f\x35\x47\xd7\x28\x73\x5c\xdd\xa5\xd6\xfc\x64\x91\xb1\x5b\xf2\xeb\x5b\xd9\x28\xb3\x67\x43\xdd\xc6\x9d\xc0\x3d\xa4\xf7\x33\xf8\xff\x0e\x47\xf2\xbf\xa0\xb1\x97\xf5\x05\xf0\x77\xb1\xd9\x69\x63\x2b\xc7\xf5\x9d\x6c\xd4\x39\xb8\xc7\x82\x1d\xde\xb6\xa7\xad\x53\xf7\x7d\x81\xdd\x28\x7a\x06\x73\xb4\x95\x48\x15\x70\x64\x8d\xa5\x66\x68\x0a\xca\x99\x74\xc6\xe6\x91\xc6\xb7\x40\x86\x50\x0d\x1e\x70\x81\xc1\x27\x65\x48\xa3\x54\xcc\x51\xa4\x50\x31\x51\x7a\x3b\x54\x21\x19\x28\x2b\xbf\xbc\xa2\xe3\xe1\xf1\xe7\x5c\x52\x88\x1a\x11\x5d\xfc\xe1\x74\xbb\xa1\xc3\xdb\x94\xf8\xc4\x54\x48\xde\x50\x59\xec\xaf\x32\x26\xbe\x8e\xd7\x49\x7a\x63\x75\xa0\x81\x6a\xfa\x2c\x78\x9b\x9d\x65\x22\x0b\x70\x27\xf8\x2b\x4d\x2f\xa9\x48\x16\xb1\xfc\xf1\x84\x27\x71\x1a\xe0\x4e\x1e\xb3\x7c\x90\x53\x9e\xac\x3e\x8b\x38\x4e\x75\x53\xef\x92\x9f\xa9\xd5\xa1\x26\x84\xa4\xd3\xf1\x51\x94\xe2\x95\xce\xfe\x16\x28\xd4\x97\xf2\x1f\xbc\x74\xa5\x56\xd3\xc3\xd1\x28\x5a\xe1\x4d\xa5\xd8\x5b\x7a\x5e\xa4\x31\xc7\x17\xae\xe0\x66\x7a\x34\x1a\x45\x1b\x7c\x53\x29\xf8\x8a\x2e\x93\x62\xed\x53\x7d\x37\xd3\xe3\xd1\x28\xba\xc1\x6b\xc2\x86\x17\x62\x9d\x7e\x6d\x86\x56\xa1\xe0\xc6\x0f\x81\x0a\x63\xc3\x38\x4d\xff\x11\xf3\x24\x66\x22\xc7\x57\x35\x62\x89\xe1\x59\xe0\x16\x49\xbf\x7b\xca\xb6\xf4\xa7\x37\xa5\x4a\x8a\x1e\x7d\x25\x4d\x0d\x34\xc0\x81\x3f\xa6\x00\x07\x5e\xff\xc1\x1c\xe1\x53\xb2\x78\x30\x3e\x72\x20\xfd\xdc\xf1\x95\x1e\x1f\xf1\xe0\xec\xf3\x53\x1c\x70\xba\xf6\x19\xf0\xd8\xe7\x6d\xae\xdf\x67\x6f\xe9\x3a\x7a\x8e\xd5\x01\x2a\xb0\x9b\x47\x94\x63\x33\x8f\x68\x81\x6b\xf3\x88\x96\xb8\x31\x8f\xe8\x02\xd7\xe7\x11\x5d\xca\x63\xba\x49\xe3\x9b\xa3\x9a\xcf\x8d\xad\x6d\xfb\x79\x38\x1e\x1f\x20\xaf\xaa\x6e\xdb\x8e\x42\xe9\xbf\xbc\x53\x4f\xd6\x51\x30\x18\x8e\x8e\xe8\x3a\xc0\x69\xc2\xa8\x66\x67\xdc\x94\x8b\x70\x7c\x70\xf2\x00\x1a\x0c\xe4\xb4\xb5\xf2\x0b\x30\x6f\xb6\xe6\x02\xe8\x04\xe5\xa2\xcb\xb1\x04\x25\x3e\x47\x66\xb4\x87\xb7\x8c\xf6\xf8\x61\x65\xb0\x17\x77\x0d\xf6\xe0\x96\xc1\x3e\x3a\x7c\x20\x9b\x6b\x1d\xea\xc1\xfd\x86\x7a\x70\xcb\x50\x8f\x8e\x6f\x1d\x6a\xfb\x98\x8e\xc7\x0f\x64\xbd\x5f\x33\xa6\xf1\x2d\x63\x92\x74\xcf\x2f\x1e\xd3\xd1\xf8\x81\xac\xa7\xc6\x74\x4b\xff\x17\x34\x5e\x82\xda\xcc\xfe\xfe\x0f\x3e\xa5\xff\xc3\x83\xe1\xf1\x83\x83\xf6\x11\x68\xca\x00\xfa\x17\x89\x48\x6f\xed\x7c\x5c\xe9\xfc\xf2\x5e\x9d\x1f\x1c\xc9\xce\xc7\x77\x76\x9e\x17\x67\x72\xfe\x12\xee\x6e\x39\x6b\xb7\x43\xef\x9e\x33\x35\x3c\xbe\xb3\xf7\xb3\x6c\x79\x2b\x2c\x8e\x8f\x3e\x69\xea\x0f\xc6\x77\xaf\xba\xec\xfa\x36\x90\x1b\x7f\xca\x96\x1f\x8c\x86\xc7\xf7\xe9\x7c\x11\x83\x99\xd0\x6d\xdd\x1f\x7c\xd2\x92\x1f\x3e\x6a\x5f\xf4\x2a\xc4\x9f\x15\x42\xdc\xde\xfb\x11\xc2\xb2\xde\x7b\xa3\x64\x14\x05\xc5\x66\x43\x39\x28\x1a\xdf\xb2\x23\xfb\x26\x5c\xe2\xab\x0a\x27\x75\x0b\xcf\x64\x58\x25\x77\x4d\x15\x9e\xf8\xf3\x55\x2c\x2e\x86\x70\xed\x84\x63\x7a\xfc\x39\x45\x0f\xc6\xf4\xf8\x77\x7c\x12\xad\x28\x4a\x0c\x0f\x70\x46\x86\xe3\x23\x9c\x90\xe1\xf8\xc0\x7f\x19\x37\xe3\x9b\xb9\xdd\xa8\xf3\xf2\x5f\x90\xd1\x54\xb5\x16\xf9\xa2\x49\x1c\x6c\xae\x3b\x01\xda\x5f\x6b\xdc\xac\x35\xbe\xbb\xd6\x41\xb3\xd6\xc1\xdd\xb5\x0e\x9b\xb5\x0e\x55\xad\x2a\xdf\xe3\xda\xe0\x20\xd9\xc6\xb7\x4d\xfb\xa8\xd9\xe8\xd1\xdd\x43\x39\x6e\xd6\x3a\xbe\xbb\xd6\xc3\x66\xad\x87\x77\xd7\x7a\xd4\xac\xf5\xe8\xf6\x69\x67\x77\x4f\xfb\xa4\xd9\xe8\xc9\xdd\x43\x79\xdc\xac\xf5\xf8\x1e\x30\xd2\x02\x5a\xe3\xfb\xc0\x56\x1b\x70\x8d\x6f\x9f\x7a\x02\x53\x9f\x0f\x7f\xcc\x12\x16\x06\xd8\xba\x03\x98\x05\x2c\x63\x34\xc0\xb2\xd2\x18\x1f\xe2\x11\x96\x7f\xc7\xf0\xf7\x00\x8f\xf1\x60\x8c\x74\xde\xb1\x4e\x3b\x80\xbf\x87\x32\xef\xc0\xe4\x9d\xe8\xb4\x23\xfd\xf7\xd0\xe6\x1d\xe0\x23\x3c\x90\xcd\x1d\xe9\x06\xc6\x78\x3c\xc2\x23\x95\x79\x88\x8f\x55\xe6\xb1\x6e\x61\x8c\xc7\x47\x8d\xcc\x87\x50\x43\xe5\x9e\x98\x5c\xd9\xdc\x40\x0e\xe5\x91\xcc\x1d\xab\xd1\x3e\xc4\x7a\xb4\xc7\x32\x57\x4e\xe6\xc4\xe4\x1e\xca\x96\x0f\x4c\xee\x43\x95\xfb\x18\x8f\x0f\x4c\xee\x43\x93\xfb\xd0\xe4\xca\x9a\x47\x58\x8d\x7d\x7c\x82\x0f\x4d\xf6\x23\x3c\x90\xf3\x1c\x8f\xf1\xf8\x58\x67\x1f\x8c\x4c\xf6\x23\x7c\xa2\xb3\x0f\xf0\xf8\x11\x2c\xd6\x31\x3e\x38\xc0\x47\xf5\xec\x43\x3c\x7e\x6c\xb2\x8f\x5c\xf6\x63\x9d\x7d\x84\x0f\xc6\x26\xfb\xa1\xc9\x3e\x91\xd9\x72\x19\xc7\xd0\xe6\x01\x2c\xce\xc1\x09\x3e\x36\xd9\xe3\x91\xce\x7f\x28\x1b\x55\xf9\x87\x23\x2f\x7f\xac\xf3\x1f\xc9\x56\x75\xfe\x81\xc9\x7f\xec\xf2\x4f\x64\xb3\x6a\x79\x0f\x8f\xf0\x43\x9b\x7f\x80\x07\x0f\x65\xfe\x63\x7c\xf0\xd8\xe4\x3f\x34\xf9\x63\x98\x16\x14\x90\x0b\xa2\xc0\xe9\x04\x1f\x9e\xe0\x47\xcd\x02\x63\x7c\x78\xa8\x0b\x1c\x8d\xfc\x02\x47\xba\xc0\x01\x3e\x3c\x36\x05\x0e\x6c\x01\x80\x90\xc1\x23\x59\xe0\x50\x76\xad\xb6\xf1\xe8\x08\x9f\xb8\x02\xc7\xba\xc0\x91\xec\x5a\x17\x78\x88\x4f\xd0\xfc\x77\x0c\x7b\xb1\xef\xf2\xd9\x2a\x83\x85\xb7\x60\x78\x11\x1d\xf9\xb6\x6e\xfc\x8f\x1a\x42\xc1\x12\x11\x9d\xfc\x4b\xba\x5e\x67\x67\x49\x4a\xdf\x09\x2a\xc9\x90\x68\x4c\x0f\x71\xbc\xd9\x7c\x15\xf3\x68\x3c\x1e\x8d\xf0\x92\xc7\x57\x32\x19\x5e\x60\xb2\x65\x9c\x46\xe3\xc3\xd1\x08\xe7\x2c\x5e\x7c\x3c\x93\x85\x8e\x46\x23\x78\x55\x13\xc9\x26\x1a\x1f\x8f\x46\xbf\x64\x0e\xbf\x8d\x14\x65\x8f\xb0\x58\x89\x88\x8f\xb5\x8c\xb8\x22\x2b\x6e\x78\x71\xb1\xaf\x16\x97\xd5\x78\x35\x4e\x4b\xa0\x45\x2a\x63\xb4\x03\xb6\x4a\x47\xc8\x0b\xd7\x81\xb9\x71\x5e\x2d\xa6\x34\x64\x28\x02\x25\xc5\x2e\xdf\xed\xba\x6c\x98\x5d\x52\xce\x93\x25\xcd\xab\xbf\x66\xdc\x6a\x6e\x15\xda\x33\x75\x35\x17\xa7\xa4\xf1\x4c\x5a\x58\x8d\x29\x5f\x75\x27\x47\xc3\x55\xc6\x9f\xc7\x8b\x8b\x8a\x27\xa0\x74\x46\xe7\x35\x51\x89\x4c\xc2\xb9\xfc\x67\x0b\x26\x72\xaf\x28\x3f\xa7\x51\x5c\xa2\x12\xe1\xb4\xc4\x9e\xc3\x57\x71\x41\xd7\x09\x3b\x7f\xce\x94\x20\x50\x94\xe5\xbf\xe0\xa4\xb6\xbd\x4e\xca\x81\x51\x70\x20\x04\xfe\xdc\x9d\xab\x29\x15\x6c\x22\xb7\x1f\x33\x36\x9f\xba\xcf\x68\x5b\xfe\xaf\x81\xd4\x2a\x89\xfe\xc8\xbe\x65\xb8\xa7\x8c\xf1\xc8\x3d\x65\x8c\xdd\x4b\xc6\x81\x7d\xc8\x18\xc1\x33\x06\x80\xfc\x58\x43\xfa\xa3\x03\x84\x10\xde\xa8\xd6\x47\xe0\xbb\x40\x36\xf4\x08\x55\x24\xaf\x56\x4c\x95\x2f\xe2\x94\x86\x4e\x58\x85\x03\x9f\x36\x01\xee\x60\x93\x5d\x85\x54\xde\xc1\xa0\x73\x21\x67\x71\x49\xb6\x94\x09\xca\x25\x93\xbb\xcd\xb4\x50\x79\x8c\xad\x05\x45\x74\x13\x8e\x51\x89\xa1\x0c\x5d\xb6\x17\x71\xa4\x9e\x2c\x8c\x83\x0e\x64\xa5\xb1\xa0\xff\x0c\x47\x08\xac\xb3\xd7\x55\x0f\xda\x66\xf8\xc2\x98\x20\x63\x36\x69\xc6\x56\xc2\xc2\x69\xae\x35\x1f\x00\x71\x06\x1e\x8e\x94\xc6\x14\x97\xbb\x30\x9a\x24\x5f\xf0\x49\xd2\xef\xa3\x6c\x96\xcc\xbd\x47\xc1\xc4\xa8\xb8\x85\x8c\x80\xc7\xb0\x6a\x37\x21\x95\xa9\xa9\x6f\xf1\x8f\x40\x1f\x6d\x18\x6f\x36\xe9\x4d\x48\xf1\x4c\x96\x9b\x5b\x0a\x17\x21\x84\x86\x71\x21\xb2\xf7\xc9\x9a\x66\x85\x20\xe0\x08\x82\x0d\x45\xb2\xa6\xdc\xfc\xb8\x88\xd9\x32\xa5\xcf\xe5\xc2\xb5\x80\xbd\xf2\x20\x90\x63\x4e\x84\x3e\x00\x99\xfc\x52\xed\xc9\xb5\xb8\x18\x72\xba\x4a\xb3\x2b\x14\x52\x1b\xa5\x45\xa6\x9e\x53\xc5\x79\x82\xb5\x8a\x04\xde\x1c\x85\xa6\xb1\xed\x3a\x5b\xd2\x28\x80\xcd\x0a\x4a\x09\x8e\xc9\xd0\xd8\xb3\xe0\x02\x94\xbc\xd3\xf8\x06\xe7\x64\x34\x09\xe4\xf0\x03\xf0\x0d\x12\xe6\x84\x0f\x9d\x05\x0c\x38\x66\x7a\x52\x88\x4c\x31\xd1\xcf\x74\xfd\x90\x0e\x17\x69\x42\x99\x50\xc9\x08\xb3\xca\x0a\xe4\x28\xca\x49\x8c\x4d\xd4\x0b\xd7\x1c\x99\x55\x1b\x57\xa8\x36\x0c\x34\x20\x05\x78\x6b\x46\x18\xe5\x18\xc6\x17\x15\x25\xc2\xed\x95\x2c\xcc\xf9\xd5\x86\x0f\x1f\x3e\xfc\xdc\xab\xeb\xd1\xdf\x58\xaf\xcc\x30\x63\xb0\x11\xbd\x5e\x2d\x01\x5c\x42\xd8\xbd\xba\x4e\xda\xf4\x27\x6e\xdd\x2a\x09\x76\x2a\xc8\xd5\xfd\xb6\xe6\x3a\x11\x72\x67\x0a\x12\xbb\x9d\xc9\xe5\x0f\x39\xfa\xca\xae\x24\xbf\xc1\xae\x24\x28\x4a\x48\xf1\xeb\x76\x25\xd1\x2b\x9b\x7f\xc2\xae\xd8\xba\xbb\xdd\xf0\xf0\xf0\xf0\xf3\xa4\xba\x3b\x66\x5c\xba\x57\x12\x8c\x82\xea\x58\x65\xa3\xe4\x26\x1c\x3e\x3a\xae\x6c\xe5\x75\x22\x2a\x3b\x79\x9d\x08\xbd\x91\xf1\x72\xf9\x9c\x2d\x5f\x26\xb9\xa0\xac\x72\xee\x24\x8d\x60\x57\xd7\x54\xd5\x7b\x08\x0e\xfc\xd4\xd9\xcd\xa9\xd0\x6b\x17\x8a\xea\x5a\xee\x76\x23\x24\xbb\x70\x72\xff\x85\x87\x30\x30\x05\x4d\xa1\xc2\x4f\xd2\x0e\xb3\x16\xd9\x7a\x93\x31\xca\xc4\xb7\x49\x9a\x7e\xc3\xd6\x59\xc1\x44\x8b\xb7\xb0\x45\x4a\x63\x6e\xfb\x06\x97\x6f\x72\x44\xc8\x73\xe7\xc9\x96\xb4\xcd\xc9\xa9\xf2\xe1\x00\x55\x14\xac\x81\xfa\xeb\x45\x92\x2e\x39\x65\x98\x91\x90\x1a\x68\xc7\x54\xaf\x96\x59\x65\x84\xb9\xcc\x56\x50\x4d\xcd\x7a\x20\x05\xd0\x35\xed\x15\xd3\x62\x80\x03\xdd\x9c\xfa\xba\xd6\x0a\x9a\x37\xf2\xd6\x0c\xa0\x29\xf9\x57\x35\x15\xcc\x21\x3e\x70\x9d\xea\x61\xd8\xbd\x7a\x26\xf9\x3f\xe2\x34\x59\x1a\x05\x6d\x81\xcc\x1d\xaf\x86\xe8\xf9\x98\xe8\xb8\x4a\x55\xa5\xee\xa5\x55\x6f\xa8\xf5\x14\x6f\x36\x34\xe6\x51\x77\x84\xf5\x90\x23\xed\x81\xda\xa2\x66\xac\x66\x50\x49\x97\x0b\x54\x05\x24\x95\x5d\x4d\xc3\x7a\x8a\x91\x05\x2b\x3e\x95\xa8\x3f\xe2\x25\x8e\x2b\xfe\xdc\x9d\x77\x0a\x6f\x02\x69\xc6\xec\xf8\x1b\xe3\x56\x33\xaf\x25\x9a\xab\x77\x54\xb9\x9d\xe5\xd9\x28\xf1\xa5\xa4\x00\x0b\xd0\x3f\x43\xa5\xf2\xb5\x26\xca\xd0\x75\xf7\xd4\x00\x21\x9a\xac\x61\x75\xdf\xdf\x6c\x68\x4e\xb6\x25\x5e\x9b\x32\x80\xb0\xc8\xb6\x3a\x2b\x99\xbf\x2e\x92\x77\xca\x5a\x48\xe2\x1f\xd2\x55\xe4\xcf\x99\xdc\xd5\x8d\x1b\x1e\x0a\xd7\xbe\xef\xcf\xb3\x3b\xc8\x31\xe1\x69\xf6\x93\xee\x08\x0b\x0f\xb3\x18\xec\xd5\x42\xc4\xbb\x42\x41\x9f\xf6\x03\x5d\x32\xc0\xac\x96\xd5\x08\x7f\xa3\x2d\xdd\x66\x6c\xae\x7c\x6c\x15\x69\x4a\x94\x06\x90\xe7\x31\x54\xf9\x79\x14\x7d\x08\xb8\xc4\x3e\x13\x9d\xbc\xd8\x6c\x52\x1d\x6e\xe9\xe9\xbb\x77\x0e\xbb\xff\x85\x67\xc5\x26\x02\x4f\x77\x9d\x45\xcc\x3a\x8b\x58\x4e\xae\x60\x9c\xa6\x89\xa4\xaf\x3b\xd6\x9f\x43\x0e\x0a\x87\x57\x99\x6c\xee\x8c\x76\x9c\x97\xf4\x84\x81\xe7\x48\x51\x70\xda\xb9\xa4\x3c\x07\x45\xfa\x55\xe7\x2d\x8d\x17\x62\xd8\x79\x47\x69\xe7\x42\x88\x4d\x1e\x3d\x78\xb0\x3a\x1b\xae\xe9\x03\x2e\x33\x06\xce\x4f\x84\x67\xb3\x7a\x2e\x47\x33\xd0\x3b\xd7\x59\x65\xbc\xb3\xce\x38\xed\x24\x4c\xc2\x08\x94\x1e\x06\xca\x85\xaa\x56\xcc\x75\x56\x2a\xfb\x97\x60\x5d\xe4\x30\xe2\xb8\xa3\x2a\x75\xc2\x84\x75\xd6\x49\x9a\x26\x4a\x60\x9e\x3b\x2d\x64\xe5\xea\xb4\xc4\x12\xac\xe3\x3c\x7f\x1d\xaf\x69\xfe\xee\x22\xde\x50\x77\x4f\xea\xdf\x3e\x33\x80\x33\x12\x82\x2d\x01\xba\x3b\x02\x69\xe2\xd9\xac\x64\x8c\x9e\xae\x24\xfc\x86\x33\x97\xa8\xc6\xe8\xce\xcb\x10\x4c\x96\x43\x45\xdc\x46\x8d\x72\xf2\x1e\x6e\xa4\x96\x68\x98\xe4\x6f\xe9\x4f\x45\xc2\xe9\x72\x2e\xa1\xb9\x3a\x78\xe5\xc9\x2c\xbe\x6b\x28\xca\x12\xe8\xee\xa1\xe8\x72\xb5\xa1\xe8\x54\xad\x1c\x52\x4f\x2f\xd1\xfd\xdb\x95\xc9\xcf\x32\xd6\x6c\x44\x65\x3d\x69\xef\x61\xcf\x78\x64\xea\x9e\xc6\xae\x13\xb1\xa7\xad\x12\xc1\x2a\xd6\x81\xe2\xf7\x54\xa9\xde\x5b\x41\x8f\x2c\xc0\x5b\xe7\x42\x59\x5e\x0c\xe7\x54\xb4\x38\xed\xb4\x33\x29\xad\xb7\x3d\xc9\x85\x1d\x8c\xee\x36\x4f\xfd\x9d\x18\xcd\x8a\x26\xf1\xaf\x61\x34\x0f\x1f\x02\xa7\x69\x78\x4e\xc5\x5e\x1e\x1c\x02\x7b\x59\x61\x3f\x0f\x46\xc7\x92\xff\xbc\x71\xfc\xe7\xa5\xee\xe1\xc4\x17\xc0\xac\x9d\x79\x35\x17\xa9\xf2\x65\xbc\x4c\x38\x85\x5c\x67\xa4\xa4\xdd\x0d\x09\xed\x42\x48\xbb\x7f\x01\x57\x06\x9a\x7f\xd5\x49\xca\x95\xc1\xc4\x2f\xa5\xbd\x1b\x54\xcb\xc9\xaa\xaa\x94\xc8\x36\x95\x86\xe4\x6f\xbf\x15\xf7\xdb\x2f\x01\xf5\x2d\x9a\x31\xe2\xa3\x52\xdd\x6d\x7b\xb8\x55\x7d\x11\xb1\x56\x75\x4d\xcd\xb2\xe2\x3d\x4c\x66\x8d\xc3\x54\x06\x4f\x32\x4b\x32\x93\x9b\x6c\xb3\xa9\xb3\x8e\xa7\x1b\xca\x9a\xbe\xba\x98\x47\xe4\xc5\x6c\x71\x91\xf1\xe7\x29\xa8\x62\xaf\xb3\x65\xb2\x4a\x28\xcf\xb1\xf2\x0c\x49\x19\x8e\x09\x1d\x82\x79\x25\x58\x81\x16\xf2\x17\xf4\x73\xaa\x1d\x40\x7a\xda\x47\xc5\x74\x5b\x46\x05\x4e\xad\x3c\x66\x01\xdb\x08\x1a\x61\x6f\x32\x2e\xe2\x14\x2f\x89\xbd\xee\x87\xab\x84\x2d\x9f\x9d\xbe\x7a\x9d\x2d\x69\x18\x8e\x1c\x35\x87\x6a\xbf\x18\x42\x68\xb2\xec\xf5\x44\xaf\x97\x01\x99\xad\x06\xe0\x7d\x0e\x97\x34\x17\x1c\x82\xe3\x30\x7f\x19\xfc\x9f\xf4\xaa\x73\x61\xda\x0c\x9b\x86\x1f\xad\xa2\xbd\x29\x0d\x51\x44\xcb\x50\x20\xbc\x6c\x58\x20\x98\x35\x89\xd6\x61\x8a\x63\x04\xee\x1e\xed\xfa\x45\xb5\xd2\x25\x5e\xc8\xc5\xd9\x6e\x38\xbd\xa4\x4c\x9c\x5e\x52\x2e\x19\xf3\x68\x7b\x96\x15\x6c\x19\xf3\x84\xe6\x9a\x90\x8b\x02\x65\x9a\x1b\x94\x25\xe6\x38\x77\x5b\x82\xb0\xf1\x7c\x1e\x99\xdd\x7d\x03\x73\x53\x81\x61\x5d\x84\xd8\xb6\xdc\x12\xec\x1e\xda\x72\x2a\x60\xea\x6d\x35\xd8\xb4\xe5\x22\x16\x5e\x9a\x64\x98\x72\x2a\xde\xc9\x54\x7f\x05\xbc\x22\x65\x8d\x17\xa6\x4b\x1f\xfc\xfc\xea\x14\x72\x15\xce\x32\x35\x9e\xa6\x99\x72\x8f\x56\x49\xa8\xb6\x70\xff\xdd\x97\xcd\xc0\x0c\x88\xed\x4c\x01\xf5\xaf\x62\xc1\x9e\x25\x4b\xb5\x72\x6d\xde\x8b\x55\xfb\x12\x84\x2c\x2b\x05\x29\xbb\xdd\x6d\x09\x8e\x0c\xd3\xc9\x95\xd5\xc0\xfb\x1a\xed\xf5\xdc\xf1\xad\xe6\x9a\x54\x59\xa2\x72\x5c\xab\xc5\x2a\x59\xb2\xac\x05\xb6\x6a\x39\x9b\x2c\xcb\x54\x0e\x74\xb5\x5c\x25\x0b\xfa\x36\x60\x51\xeb\xd7\x24\x57\xa6\x2b\x71\x55\xe8\x78\xd5\x7b\xf2\xbc\xcd\xf5\xfa\x24\x6e\x37\xf4\x30\xa1\xe3\x7c\x11\x88\x94\x17\x19\x13\x71\x22\xd9\x35\xde\x40\x68\x12\x3d\x7e\xa4\x74\xf3\x4a\x0e\x8f\x2e\x25\xa3\xea\xa3\x51\xb5\x75\x08\x2c\x17\x1d\x16\x4d\x65\xa1\x2a\x1a\xd5\x28\x13\x01\xce\x74\xf0\x80\x57\x8d\xd8\xe7\xb3\xc0\x0c\x34\xc0\x3e\x43\x6d\x47\x19\xe0\xa0\x32\xc6\x00\x07\xde\x08\xc1\xb5\x91\x1e\x9e\x64\xbe\x37\x50\xd9\x8e\x4d\x7e\xfb\x03\xf3\xd9\x71\xc7\x1c\xcd\xe5\x9d\xaf\x23\xd6\x4b\xdc\x73\x41\x36\x43\x75\xc4\xf0\x0d\xd9\xb8\x99\xc2\x83\x47\xdc\xeb\x75\x8b\x5e\x2f\xec\x2e\x76\xbb\x8b\x66\x84\xf7\x33\xe2\x61\x92\x9b\xdd\x4e\xa2\xd3\xdc\x85\x79\x5d\xf4\x7a\xe1\xd9\xb0\x26\x13\x23\xdb\x84\x45\x85\xe6\xbb\xe9\xb2\xce\x79\xd3\x65\x89\xf0\x72\x0f\xa3\x7f\x69\x19\xfd\x6d\xc6\xde\xaa\x78\x8f\x95\x16\x24\x1c\xe2\xca\x0a\x46\x1c\xdb\xd5\x8d\x58\xb9\xb7\xe9\x60\x99\x5c\x06\xf5\x8b\x82\x67\x29\x8d\x02\xfd\x38\x16\x60\x2d\x90\x30\x6e\xb1\xa2\x20\x3e\xcb\xb3\xb4\x10\x14\x3c\x0f\x20\xbc\x4f\xf3\xf7\x0c\x45\x02\x49\xae\xdc\xf3\x93\xff\x8c\xf2\xe4\x92\x2e\x01\xa1\x7e\xcd\xb3\x35\xac\xcd\x2d\x4e\xd5\x15\x34\x4e\x2d\x36\x1c\x97\x91\x0f\x6c\x4a\xf4\xe0\x21\x66\x23\x03\x58\xb6\xc9\x00\xce\xaa\x32\x80\xb3\x9a\x0c\xa0\xba\x80\xdd\x31\x76\x9b\xac\xa9\xaf\x00\xbb\xae\xe5\x58\x00\x1a\xce\x25\xbc\xdf\xf8\x22\x81\x33\x5f\x24\x70\x97\x27\x62\x36\xe4\xf2\xb6\x6e\xf3\x9f\xce\x7c\xaf\x96\x8e\x79\x55\xb7\x6d\xaf\xd7\x9a\x69\x1c\x00\x60\x4e\x66\xc1\xf3\xe5\xb9\x3c\x06\xef\x79\xb2\x54\x07\xe5\xeb\x84\xd3\x55\x76\x1d\xcc\x71\x46\x46\xe6\xed\xc0\xb8\x93\x4c\xfa\x64\x8c\x54\xbc\x3c\x16\x5f\x26\xe7\xb1\xc8\xf8\xb0\xc8\x29\x7f\x72\x4e\x99\xf3\x8f\xcd\x67\xc9\x1c\x7d\x49\x46\x68\x9b\x91\xb1\x76\x6c\xa9\x38\x44\xd6\xeb\x69\x27\x1d\x6f\x78\xb6\x4e\x72\x3a\x6d\xca\x32\x5a\x62\xf4\xaa\x18\xb8\x82\x74\x47\xb8\x5a\x7d\xc8\x69\x9e\xa5\x97\x34\x44\x12\xd5\x30\x3f\x16\xa7\x6c\x08\x4b\xcc\x29\x01\xac\xc5\xcc\xf7\xf6\x6e\x3c\x79\x67\x5b\x9b\x38\x93\xad\xb6\xab\x9b\x51\xcf\xc2\xff\x6b\x5d\x00\x6c\xfc\xb7\x65\xd3\xaa\xbf\xea\xbf\x14\xb8\x05\xe5\xbc\xdd\xc6\x1e\xd4\x4a\x62\x73\xe3\x14\x63\x98\x5d\x31\xc9\xbf\x1a\x97\x26\x0a\x88\xfe\x91\xd0\x16\xc7\x27\x54\x39\x61\xb6\xa6\x6b\x53\x36\x13\xf3\x88\xb9\x5e\x53\x8f\x58\xfc\xeb\xfb\x57\x2f\x95\x7b\x29\xd9\xb7\x64\x4b\xa7\x54\x52\x41\x36\x30\xe0\x6e\x47\x87\x17\x59\xee\x19\xc0\x2d\x8c\xcf\x1a\xeb\x74\xc1\x7a\x97\x38\xcb\x96\x37\x86\xb7\x71\x2d\x6a\x26\x07\xba\x8a\xe0\xf3\xab\xd3\x67\xdf\x19\xf6\xa3\x53\x9f\x1c\x34\x02\xc5\xfe\x3f\xd3\xb0\x57\x56\xe6\x6a\x1f\xf8\x79\x48\xe5\xb5\x26\xe0\x59\x59\x12\xa1\xf0\x28\x61\x7e\xfc\x0f\x3c\x4c\x98\x5f\xdf\xe9\xe5\x78\x10\xc6\x85\xc8\x76\xf9\x82\x67\x69\xba\x93\xb9\x69\x7c\x83\x1e\x0c\x05\xcd\x45\xc8\xfa\x59\x9f\xa3\x29\x8d\x16\xa1\x5c\x23\xf5\x26\xb8\x92\xf0\xdb\x0d\xbb\x1a\x06\x5f\xbd\x7b\xc1\x36\x85\x78\x45\xc5\x45\xb6\x84\xd8\x86\xd7\x62\xb7\xeb\x36\xbc\xcd\xbc\xca\x96\x14\x4c\xb1\x7a\xbd\x07\xaf\xde\xbd\x78\xde\x19\x8f\x4c\x2f\xcd\x43\xe4\x31\x90\x1b\x0f\xa8\xc6\x63\xb9\x33\xd3\x55\x34\x1e\xc1\xc7\x32\x5a\xed\x76\x4b\xb7\x13\x17\xfb\x77\xa2\xe6\xf4\x66\xe2\xdc\x84\x6f\x24\x53\x3c\xad\x6c\x59\xa4\x38\x2d\x09\x66\x60\xd6\xf6\x06\x76\x7f\xb7\x83\x9b\x8d\x29\x6b\x13\xda\x12\x40\x78\x82\x18\x09\x29\x69\xcb\x42\x95\xa6\x8c\x18\x40\x92\xdd\x06\x2a\xac\xcf\x80\x5e\x4f\xc1\x43\x97\x10\xf9\x0d\x60\x22\xbf\xa7\x10\xd1\x60\x16\xbc\xff\xab\xc4\x55\xcf\xe4\x3f\x4f\xbe\x7a\xf9\x3c\x98\x5b\x94\xe3\x1a\x43\x10\xaf\x38\x16\xc9\x42\x02\x73\x1e\x32\x79\xf9\xeb\x2b\x1e\x4d\x2f\x42\x86\x22\x16\xd1\x69\xe3\x1c\x55\x57\x29\xda\xb7\x7c\x65\xdb\x13\xb3\xf6\x64\x41\xfc\xd3\x32\xbd\x09\xfd\x9f\x92\xe7\xb2\x55\x2f\x9d\xb7\x1c\xba\xdb\x75\xdd\x69\xdf\xed\xba\x12\x84\x44\xfd\xf8\xef\xdf\x4d\x83\x15\x24\x65\x19\x73\x6a\xe6\xf3\x46\x4f\x39\x14\xa8\x07\x41\x3d\x9f\x9d\x3e\xfd\xe6\xd5\xf3\xd7\xef\x3f\xbc\x39\x7d\xf7\xe2\xfd\x8b\xd3\xd7\x1f\xbe\x3e\x7d\xf9\xf2\xf4\xdb\x17\xaf\xff\x82\x39\x61\x53\x1a\x09\x9c\x11\x36\x15\x11\xc5\x49\xdd\x49\xcc\xdb\x98\x9d\xd3\x10\x4d\x12\xcd\xea\x70\x11\x72\x3c\x42\x18\x7e\x3f\x67\xcb\x30\xc3\xda\xc3\x5b\x4c\x92\xa1\xb2\xc7\x7c\xc2\x16\x34\x17\x19\x7f\x6a\x88\x0c\x49\x37\xd1\x2e\x21\x71\xaf\x27\x19\xb1\x78\xb7\xe3\x86\x0a\xcd\xc3\xcc\xd2\x50\x6d\x9a\x10\x35\x40\xb1\x40\x22\x7a\xbd\xd0\xe2\x2d\xb1\xdb\x49\x54\xb3\x4a\x78\x6e\x56\x07\x62\x98\xaa\x78\xd1\x65\x18\xa3\x69\x1c\x5d\x84\xb1\x71\x45\x77\xe3\x22\x61\x76\x0a\x40\x6c\xd3\xcb\x50\x7d\x60\x81\x22\xb9\x47\x37\xa1\x40\x90\xe0\x21\xea\xb5\x2f\x75\xcf\x36\xe0\x39\xe8\x13\xad\x7f\xa1\x3e\x9a\x06\x0a\x05\xbd\x07\xdf\x97\xea\xfb\x25\x5d\x81\xf0\xde\x9b\x7a\xb2\x0a\xd5\xbc\x09\x21\x6c\xb7\xb3\xd3\xf6\xc2\x91\xdc\x0a\xd1\x46\x34\x53\x2f\xa6\x3a\x4c\xd8\xb9\x2e\xb7\xdb\x71\x34\x13\x73\xeb\x57\x4f\x7e\xdb\xc9\x9f\x55\xec\xb9\xae\x95\xa5\x5a\xf0\x52\xb9\xf7\x94\x13\xc0\x9c\xa8\x9f\x72\x64\xd3\xe0\xad\x76\xc6\xf8\x95\x22\x8e\xcc\x72\x83\xe3\xa7\xaf\xd3\x2c\x16\x21\x9d\x69\xaf\xba\x41\x9f\xf5\x83\x6f\xc1\xff\xe5\x1c\x8f\x47\xa8\xdf\x5e\x88\x57\x0a\xb9\x91\x9d\x3b\x53\x3b\x5f\xed\x7b\x1d\x5f\x87\x62\x16\x68\x77\xa6\x7d\x3a\xc7\x62\xa6\xd7\x18\x7e\xb1\x59\xa0\xde\x89\xcd\x2f\xaf\x24\xab\x94\x54\xc8\xd2\xba\xac\xaa\x14\xd5\x83\x95\xe9\x7c\xa6\xbd\xc9\x06\xfd\x30\x50\x8f\xcf\x70\xa9\x4e\x03\xb5\xbf\xb0\x38\xe8\x7e\x35\xbe\x32\xce\x54\xd5\x32\xa2\x39\x8a\xfc\x29\x5f\xf9\x47\x44\x22\x6f\x00\x98\xba\x8f\x33\xae\xd0\x7c\xaf\xd7\xa0\x0e\x6c\xd4\x9a\xad\xf6\x07\x7c\x6e\xfb\xd7\x4b\xa9\x5d\x8a\x9c\x87\x7a\xcd\x75\xb2\x12\x06\x9e\xb6\xf8\xfe\xfa\xed\xe2\x85\xe1\xe7\xff\x86\x31\x02\xf1\xbb\x86\xc3\x13\x43\xba\x81\x57\xc9\xe9\xbe\x31\x08\x23\x2d\x67\xb8\x2a\xc5\xf7\x67\x28\x7f\x9b\x19\x81\x88\x2a\x02\xcb\x53\x86\x69\x89\xdf\xff\x1f\x88\xd6\x64\x81\xe0\x8d\x77\xf3\xbe\x07\x9f\x2a\x78\xab\xbc\xf2\xd2\x61\x4a\x57\xa2\x4f\x87\x00\xb8\xc6\x23\x37\x1d\x8a\x6c\xd3\xa7\x43\x05\xe6\xa5\x77\x84\x5e\x55\xc2\x8b\x08\x7e\x23\xa1\x18\xce\x8b\x24\xf6\x21\xc0\xd3\x57\x59\xc1\x96\x09\x3b\x7f\x0a\x68\xe2\x2d\x5d\x08\x1d\x80\x96\x91\x75\x48\xb1\xc2\xe1\x98\xab\x1f\xe0\xe8\x18\x1e\xc8\xb2\x4d\x9f\x30\x2c\xd4\x78\x08\xc7\x92\xbc\x92\x83\x51\xa9\x30\xda\x3e\xe1\x2a\x7a\xce\x2d\x3d\x69\xaf\x76\x4b\xb4\x2d\xd5\x93\xc7\x16\xfc\x75\xab\x76\xc1\x45\x30\xf4\xa5\x0f\xaa\x6e\x78\xa0\xb3\xf5\xb1\x36\x5d\x0f\xa0\x68\x89\x13\xd2\x46\xeb\x5f\xd5\x6f\x06\x14\x6d\x4b\xd0\x94\x82\xb6\x25\xf1\xaf\x30\xe5\xb7\xea\x67\xa6\xfb\xca\x54\x5f\x05\x49\xf4\xfa\xba\x92\x7f\xd5\xbf\x33\x33\x80\x0c\xc6\x9a\x5a\xea\x12\x9a\x1a\xc4\x20\x1f\x52\x29\xaa\xca\xa0\x90\xd7\x5d\xba\xdb\x2d\x4c\x28\x29\x49\xe0\x4f\xd2\x01\x39\x0b\x57\x38\xb8\x0e\x10\x5e\xe8\xef\x9b\x00\xe1\x4c\x0d\x71\x40\x52\x9c\xe9\x41\x0c\xc8\xc2\x40\xce\x9b\x30\x43\x15\x9f\x1d\xee\x06\xbb\xb7\xe3\x8d\x5e\xaf\x62\x13\xa3\x71\x2a\xce\xdc\x4a\x0a\xbb\x92\x38\x21\x12\xac\x70\x4c\x5e\x49\xb6\xbd\x20\x92\x4b\xc2\x29\xc9\x81\x89\x27\xde\xb5\x96\x0e\xd5\xad\xf6\x3e\xdb\xc0\x4a\xc8\x1b\x0d\x2f\xdb\x4a\xc8\x5b\xc3\x16\x99\x30\xf5\x68\x10\xcb\xd5\x24\xf6\x9a\x83\x9f\x60\xa1\x00\x3b\xe2\x67\xc0\x0e\x8d\x10\xd2\x9e\x06\xde\x84\x5b\x09\x39\x89\xac\x30\x80\x6a\x83\x95\xf2\x03\x9f\x40\xd1\x81\xaa\x31\x58\x6a\xb0\xd2\x20\x60\xe0\x29\xb1\x07\x49\xee\x92\xec\x43\xde\x5e\xef\xb3\x0d\x19\x61\xf3\x4b\x0e\x98\x8c\x70\x97\xf7\x7a\x99\x5a\xed\x9b\xea\xbc\x6c\x25\x98\xf4\x65\x5b\xa6\x6c\x03\xe6\x7b\x01\x43\x24\xab\xc1\x0d\xbe\x30\xa0\xa4\x7f\xc1\x38\xc9\x72\x70\x89\x2f\x34\x3c\xea\x1f\x6e\x50\x37\xd5\x41\x5d\x1a\x29\x39\xef\xf5\xba\x6c\x2a\x1c\x0d\x5a\xa0\x48\x10\x42\x0a\x8f\x0b\x29\x7c\xb6\x22\xbc\x68\x35\x6b\xff\x74\x20\x5a\x87\xc2\xe0\x8f\x4c\xfd\x50\xf8\x03\x27\x84\x4d\x07\xe3\x68\xec\x02\x19\x01\x3e\xe1\x9f\x27\x98\x5a\x3c\xa2\x7e\x29\xfc\x92\xc1\xb7\xc6\x2a\xf0\xa3\x0c\x2f\xb0\x40\x08\x5f\x38\xd0\xff\xd1\xf2\x88\xc0\x73\x28\xde\xc4\x52\x7d\x9b\x10\xfd\x02\xd6\xb1\x56\x7d\x22\x7a\x3d\x65\xcb\x03\x3c\x97\xf0\x5c\x8d\x07\x68\x82\x04\x11\xb5\xf2\xe6\x5a\xdb\xed\xee\x66\xb4\xae\x1d\x69\xa7\x70\x60\x63\xc5\x8f\x5a\x57\xfc\xa8\xb2\xe2\x47\x73\x9c\x10\x80\xfb\x91\x82\xf5\x91\xc4\x6e\xd9\x54\xae\x4a\xa4\x18\x32\xa0\xb1\x2f\x13\x7a\xb5\xc9\x38\xd0\x60\x1c\x25\x2d\xca\x36\xf7\xa6\xf6\xfd\xee\xc7\x73\xdc\x22\xbc\x69\xd0\x6a\x1f\x41\x2d\x0a\x67\xee\xf4\x32\x1f\xed\x1a\xf1\x57\xc2\x18\xe5\x1a\x11\x43\x48\xad\x46\x71\x85\x48\x2b\xe5\x0d\x3a\x96\x28\x82\x88\xe9\x28\x5a\x87\x4c\xe2\x27\xfd\x69\x6f\x2f\x8b\x37\x61\xb5\xe2\x01\x07\xe8\xe3\xde\x91\x85\xf5\x2b\x06\x5c\x41\x1f\xf7\xcf\xab\xc2\x18\x99\xc5\x15\xa5\xe4\xbc\x70\x86\x26\xf2\xa6\xdb\xfa\x5e\x7e\x27\x9a\xba\x56\x72\x01\xa5\x27\x66\x39\x9c\x50\xa2\xcd\x34\x14\x08\x21\x7b\x04\xc1\x7d\xe9\x1d\x4b\x88\xa2\x82\x98\xc7\x46\x15\x94\xec\x0e\x3e\x9f\x4f\xd4\x05\xf3\x31\x2c\x30\x8c\x53\xc2\x80\x11\x3c\xb8\xe3\xef\x08\xa2\x0e\x0d\xed\xd1\x17\x7b\x39\x53\xe6\x89\x2f\x18\x78\xe3\x4c\xae\x55\xe0\x21\x38\x1d\x4e\x22\xb1\xdb\x51\x3d\x4f\xc9\xa1\x4a\x78\x73\x2b\xb5\x24\xcd\x4b\x19\x6f\xc8\x52\xe3\x5f\x7c\x41\x96\x0a\x33\x4f\x12\x85\x20\x56\x0a\x97\x7b\x3b\x95\x68\x74\x41\x36\x7d\xc8\xc4\x89\xc6\x18\x2b\x85\x3a\x57\xfe\xde\x25\x0a\x83\x90\x8b\xbe\xca\x55\x74\xfe\x4d\xd3\x91\x64\xc8\x24\x0b\x3a\xb2\xa0\x62\x1a\xbd\x99\xb2\x88\xc1\xf7\x6e\x37\xc2\x7a\x50\x2a\x51\x64\x1b\x95\xa6\xb1\xb4\x4a\xe5\x1a\x22\xed\x38\x4d\x86\xfa\x05\x39\x0e\x11\x7c\x30\x88\x00\x67\x26\x44\x72\xe3\x2c\x1e\xb7\x9e\xc5\x63\x9f\xf3\x3e\x9e\x47\x23\xb9\xcd\x03\x90\xa9\xb9\x30\x99\xa0\xd8\x87\xaa\x5e\xde\x63\x72\x2d\x69\x52\x9c\xe0\x4c\x1e\x15\x38\x11\x5b\x05\xe3\x71\xf5\x56\x14\xee\x36\x2d\x75\x8c\x08\x5b\xd0\x50\x65\x5c\x6d\x9b\xaa\x10\x9b\x6b\xd4\x90\xa9\xed\xed\xc6\x8e\x7a\x53\x1f\xa5\x3a\x7e\x5b\x43\xf2\x79\x37\x76\xa3\xe9\x12\xe7\x15\xd7\xb7\x05\x82\x98\x76\x2d\xcf\x28\xef\xc1\x49\x66\x44\x4b\x5c\x68\xa3\x19\x1a\x47\xa1\x20\xf0\x4b\xa8\x21\x7d\x2e\x74\xbb\x48\x2b\xff\x88\x52\xbb\xd2\x6d\x75\xb6\x2f\x86\xb2\x91\x01\x85\x3f\x25\x90\x40\xc3\x55\x92\x0a\xca\x5b\xc3\x78\xab\x59\x73\x62\xe8\x74\x7b\x47\x7c\x49\x2a\x38\xb0\xd7\xe3\x2e\xe5\xaf\x9a\x12\xc1\x0b\x92\x5a\xf7\x8e\xd3\x74\x36\x9a\xcb\x09\x47\xb9\xfe\xc0\x2b\x1b\xd8\x34\x18\x04\x68\x36\xb6\xbe\x7d\x17\xfd\x70\x35\x0d\x06\x41\x7f\x15\x05\xbe\x8b\xd3\xd7\xd5\xc8\x87\x9f\xe8\x65\x0d\xc4\xa6\xba\xa7\x8f\x12\x90\xa6\x3f\x86\x20\x5b\x12\xc0\xfd\x79\xfd\x3d\xab\x04\x0f\xff\x05\x22\x7e\x84\x99\x4f\x3c\x09\x77\xf8\xe5\x09\xed\xb7\x64\x7d\x65\xce\x96\x64\x5b\x5a\xf2\x5f\xaa\xf3\xdb\x5a\xf7\xad\xb9\x42\x8c\xe8\x40\x41\x61\x85\xa0\xef\x73\x03\x87\x55\xaa\xbe\xcf\x4a\x37\xdf\xa7\x1e\xe7\xa5\x42\x10\xa9\x80\x30\x26\xbc\x0a\xdc\x45\x36\xa4\x92\x24\x92\x54\x40\x14\xfd\xcc\x56\x4e\x1a\x9e\xd2\x1f\x00\xde\x51\x18\x45\xa3\x0f\x91\x6d\x1e\x9c\xe3\x16\x68\x17\x33\x3a\xf7\xf9\xc0\xb7\x66\xb7\x99\x8d\x86\x0b\x70\x32\x9a\x6b\x79\xb5\xdc\x1e\x9c\x11\x3d\x5d\x5e\x3d\xa2\xdc\x9e\xe4\x84\x68\x49\xb5\x9e\x8c\x9a\x86\x27\xa6\x06\xdb\x93\x69\xa0\xe2\xdc\xa8\x39\x16\x32\x41\x47\xc8\x81\x79\xe6\x32\xc1\xc6\x31\x51\x21\x61\x70\x2a\x13\x4d\x78\x18\x9d\x69\x23\xda\xce\xe2\x39\x11\xb3\x78\xde\x17\xb3\x7c\xfe\xe0\x60\xc0\xe1\x0f\xce\x66\xc5\x9c\x30\x50\x62\x12\xb3\x62\x3e\xe0\xb3\x74\x1e\x89\xd9\xd3\xb0\x40\x73\x9c\xb9\xd9\x3f\xa9\x1c\x5b\xe5\x72\xd9\xb1\xe9\xab\x84\x2d\xa7\xea\x8f\x84\x5d\x6a\xce\xb0\x90\xcb\xe3\x1a\x79\x51\x95\x58\x84\x56\x83\x8a\xc1\x33\x52\x9e\x26\x0b\x1a\x8e\x1a\x2f\x9d\x36\x92\x69\xb5\xc3\x17\x72\xc1\x90\x8b\xe3\x69\x92\xda\x50\x17\x48\x31\x08\x61\x36\x3c\xa5\x9c\xcf\xed\xe5\x6c\xc3\xf6\xc9\x12\x95\x92\x7f\x67\xf1\x9a\x06\x98\x49\xaa\xa3\xcd\xce\x90\x0e\xcd\xaf\x5e\x6f\x91\xb1\x3c\x4b\xe9\xf0\x2a\xe6\x2c\x0c\x7e\x30\xfa\x07\xb6\xc4\x0f\x9d\x24\xef\x2c\xe9\x86\xd3\x45\x2c\xe8\x12\x77\x8a\x9c\x76\xbc\x62\xec\x87\x6e\x80\xac\xf8\xde\xd4\x92\xcc\xf3\x8a\x4d\xe8\x90\x2a\x73\xc4\x5e\xaf\x08\x55\x8c\x10\x7d\x94\x8c\x82\x0b\x79\xd3\x48\x42\xd8\xa5\xd8\x70\xd2\x95\x72\x36\x15\x61\x41\x18\xa8\x06\xa1\x12\x61\x8f\xd6\xfe\xba\xe6\x93\x3d\xcf\xd6\xb4\x81\xad\xeb\x26\x89\xde\x68\xe1\x89\xc8\x3f\x59\x2f\xab\x02\xa4\x59\x77\x8c\x55\xfc\xa0\x6f\xe9\xd9\x47\xb0\x90\x78\x95\xfd\x1c\xe0\xe0\x34\x50\x04\xf2\xe2\x22\xe6\x4f\x44\x38\x42\xd5\x20\x06\x7d\x03\x41\x63\x89\xb4\x46\x13\xee\x84\x7e\xdc\x88\x9f\x32\x02\x91\x31\x13\x92\x4d\x83\xa0\x9f\xf5\x99\x32\x4e\xbd\xf5\x11\x1c\xe4\xa6\xda\x25\x7f\x62\x15\xbe\x93\x8a\xfe\xb6\x9d\xcb\x37\x7b\x71\xf4\xc4\x0b\xbe\xe0\xa1\xeb\x48\x51\xa2\xae\x85\xff\x76\xac\x0c\x1b\x16\xa0\x71\x05\x52\x1f\xc2\xb1\x6c\x1c\x2c\x29\x2e\x29\x13\xc6\x96\x22\x0c\x38\x85\xa8\x62\xb8\x52\x1c\x6f\x37\x71\x9e\x27\x97\x5e\x50\xd6\x0c\xc4\x0c\xf5\x27\x6d\x1d\x2f\xdf\x23\x98\x2c\x85\xed\x09\x2c\x24\x4a\x12\xfb\x2f\x9d\x48\x4c\xe2\xe6\xc8\x64\xab\x95\x61\xe0\x44\xd2\xb2\x8b\x30\xf6\x5f\xbd\x74\xe7\x38\x1b\x6e\x8a\xfc\x22\x8c\x51\x19\x66\xd8\x88\xd5\x6b\x93\x62\x43\x9f\x21\xc8\x91\x4d\xd0\xb4\x3a\xc9\x30\x1b\x82\xaa\x61\xae\x8d\x75\x49\x77\x84\xbd\xd7\xec\x6f\xad\xd5\xa4\x98\x38\x45\x9e\x6a\x95\x5e\x2f\x5c\xc4\x6c\x41\xd3\x27\xc6\x60\xe0\x6b\x1e\xaf\xa9\xb2\x2c\xca\x17\x17\x74\x59\xa4\x54\xe9\xc2\x21\xec\x1a\x21\xa1\xd6\xad\xb2\x47\x08\x0b\x5f\x59\x08\x76\x8f\xd3\x75\x76\x49\xf7\x6c\xa0\xf0\xe7\x0a\xb1\x77\xfc\xc9\xee\x41\x37\xad\x2d\x9a\xd5\xab\xb6\x08\x5a\xd2\x3e\x48\xc1\x4b\x6e\xad\x1b\x32\x9b\xdb\x24\xb3\xaa\xba\x5c\x6d\x61\xc7\x58\x20\xef\x18\xff\xe4\xbb\x7d\xeb\x12\x42\x7b\x3d\x3f\x88\x87\x7e\xa6\x41\xa8\xd7\x4b\xf2\xaf\x13\x96\x08\x5a\xd1\x6e\xf8\x4e\xa1\x95\x5a\x14\x86\xc6\x9c\x2d\xb9\x15\x04\x13\x7d\x91\xea\xeb\xcf\x5c\x79\x4a\x5e\x82\xed\xfd\x6a\xb4\x6e\x9a\x17\x6d\xaf\xf7\x13\x04\x56\x92\xc8\x93\x93\x60\x73\xed\xec\xea\x20\x44\xc7\x8c\xcd\xfb\xbc\x54\x0f\xfb\x3f\xc3\xdb\xbc\x56\x7d\x79\x90\xdc\xe7\x71\xfe\x1f\x55\xfa\x70\xdf\x95\x03\x78\x52\xe1\x44\x9c\x91\x6e\x97\xf7\x7a\x2d\x48\xb5\x5e\x1a\xb4\x20\x2d\x4e\xa5\x43\x90\x01\x7e\xc1\xd5\x5f\x25\x76\xeb\xba\x13\xfd\x43\xd0\x17\xfd\xe0\x87\x00\xc7\xf0\xcd\xe4\xf7\xa4\x72\x3d\xc5\xfd\xa0\x63\x6e\x1e\x79\x2d\x71\x6d\xcb\xd1\x39\xbb\xe9\x04\xfd\xa4\x92\xcb\x3a\xd0\x4b\x47\x64\x9d\xab\x8c\x7f\xc4\xca\x38\x87\x53\x99\x90\xb0\x45\x5a\x2c\x69\x27\x11\x1d\x15\x81\x4f\xd5\xee\x06\x5e\x8c\x58\x39\xa8\xaf\xc8\x0c\xb8\x29\xad\x5d\x8e\x15\x6b\xa5\xfe\x80\x7e\x39\xf6\x74\xcf\xcd\x96\x1a\xdd\x73\xbd\xb9\x36\xd7\x6c\xb5\x4a\x55\x25\x3c\x55\x77\x0f\x06\x2a\x5a\xf1\x0a\x24\x74\x11\x45\x69\xa9\x14\x95\x3d\xc7\x7f\x21\x5f\xe9\x3b\xe5\xd0\xdb\xd7\x3f\xfd\x16\x72\x9e\xbf\x78\x21\x04\x30\x27\x7f\xd1\xfd\xb0\xfe\xd8\x9a\x9d\xff\xc5\x52\x44\x0c\x79\x0a\x3a\x7c\xc8\xe9\x25\xe5\x10\xb7\x47\x85\x44\xfe\x1b\xd9\x7e\xfd\xf2\xc5\x9b\x28\x58\xa5\xc9\x26\xc0\x4f\x5f\x9e\x3e\xfd\xfb\xb7\x2f\xde\x3d\x8f\x82\x45\x9a\x2d\x3e\x5e\x25\x39\x0d\xf0\xd3\xd3\x6f\x5e\xbf\x7f\xfe\xd6\xcf\x04\xcd\x48\xee\xca\x78\xef\x27\xff\x53\x17\xa8\xcd\x46\x78\x34\xbf\x93\x78\xe5\x08\x34\x43\x15\x79\xfc\x20\xfc\xbe\xbf\xfb\x7e\x80\x1e\xec\xe5\x28\xe9\x50\xf0\x64\x1d\x22\x6d\xd5\x6b\x5a\x79\x12\xc6\x2d\x27\x65\xa0\xb4\x9e\x72\x1a\xf3\xc5\x45\xf8\x00\xef\xbe\xcf\x1f\xa0\x12\xc2\xe8\x14\xf3\x5e\x0f\x58\x75\xf9\xe9\xb8\x75\x1c\xa0\x3a\x11\xa6\x3c\x31\xe7\x9d\x9c\x6e\x62\x2e\x89\x2e\x09\xdf\xe0\x3c\xb6\x93\x6f\x24\x8b\x90\xa3\x4e\xcc\x69\x83\x2a\x8b\x3b\x8b\x6c\xbd\x8e\x3b\x21\x46\xf0\x7c\x49\xe3\xe5\x50\xd3\x66\x39\x79\xf0\x7d\xfe\x39\xfe\x3e\xff\x7c\xf7\x7d\xde\x7f\x80\x53\xb5\x46\xc5\x74\x16\xdb\x0d\x2c\xec\xa6\xce\x60\x88\x6a\x81\x72\x49\x1e\xcf\x11\xae\xa5\x8d\xe7\xd6\x5c\xde\xb4\x50\xf4\xc7\x08\xcd\xa3\x59\x6c\xad\xf1\x53\x92\xd6\x56\xd5\xed\x55\x38\x06\xb9\x56\x37\x89\x12\xd4\x64\x13\x62\x4f\xaf\x4d\x5e\x1f\xcb\x62\x41\x5b\xb9\xf3\x00\x9e\x7f\x66\x36\xea\xce\x18\x56\x19\xb6\xbf\x1f\xe0\x60\xe0\xed\xbb\x40\xd3\xb0\x52\x92\x08\xd9\xcf\x08\x53\x14\xc5\xb5\xac\xbe\xca\x1b\xcb\x3c\xea\x02\x89\x94\x78\x36\xdf\x0b\x28\x55\x96\xc0\xcd\x94\x0e\xd7\xf0\xf8\xf5\x20\x0c\xa7\xd1\xf7\x83\xdd\xf7\x7d\x34\xfd\x7e\xf9\xf9\xf7\x43\xf9\x2f\x0a\x87\x9f\xa3\x07\x08\x27\xa4\x9f\xc9\x43\x17\x93\x6c\x76\x00\x31\x3a\xba\x49\x25\x80\xda\x08\x42\x76\x58\xb0\xf9\x73\x80\x50\x55\x0c\xa9\x95\xd4\x62\xad\x9b\xf6\xe7\x4d\x10\x15\x84\xf9\x51\xb2\xff\xac\x75\xd5\xfe\xcc\x83\xc8\x18\xc6\x14\x84\xbb\x07\xa6\x02\xcd\xc4\xfc\xc1\x78\x34\xfa\x3c\x29\x41\x86\x7c\x21\x57\x37\xde\xed\x82\x4b\x10\x43\xc6\x7a\x44\x36\x67\x6a\xe5\xb5\xfb\xc4\xdf\xf7\x11\xe3\x46\xf7\x6d\xe5\x16\xd9\x31\x52\xc3\xb6\x92\x3c\xc9\x06\x65\x70\xb3\x95\xf2\xfc\xb5\xd0\x25\x12\x86\x68\xcb\xdd\x2d\x37\xee\x27\xc5\xac\x64\x33\x31\xef\x13\xf6\xb9\x64\xa2\x01\xcc\xf8\x60\x3c\x87\x17\x0d\xb0\xc2\x45\x58\x5d\x13\xff\xf4\xb5\xa4\x2d\x1a\x37\xb2\xd1\xaf\x93\x6b\xd0\xe7\xc5\x15\xca\x24\xea\x8e\xb0\xa2\x8a\x4e\xd9\x33\x65\x23\x21\xcb\x58\x33\x12\x4f\x69\xa0\x74\xe6\x23\x95\x54\x67\xd0\xb2\xcd\x2f\x92\x95\x88\xb6\x2a\xbc\xf7\x78\x34\xc2\xd4\xf5\xb2\x6a\x0b\x0e\xe3\x6b\xbc\x33\x22\xaa\xb2\x02\x50\x3a\xac\x4a\x99\x12\x89\x36\x2d\x3c\x6b\x3e\x4c\xb2\x28\x1e\x21\x19\x93\x4c\x73\x70\xb8\x30\x28\xd8\xde\x69\xf2\x6e\xac\xc8\x0f\x72\x52\x54\xc5\x05\xa9\x4c\xa8\x49\x06\xf0\x82\x6c\xe1\x9e\x8b\xde\x85\xdb\x12\xe7\x38\x99\xe5\x73\x84\x29\x5b\xfa\x09\xfd\x64\x96\xce\x07\xf1\x2c\x9d\xa3\x72\x42\xeb\x0c\x26\xbc\xac\xc7\x78\x51\x7d\x85\x2f\xb1\x2a\x66\x16\xed\xe0\x96\x45\xc3\x9e\xa0\x5c\xd5\x02\xf1\x9e\x5b\xc1\xfa\x9a\xe8\x55\x88\x2b\xcb\x53\x10\x5e\x5b\x66\x1b\xbf\x46\x8f\x2a\x27\x3f\x85\x7d\x86\xa6\xb3\x3e\xc3\xa3\x79\xf4\x3f\x21\xc3\x09\x8e\x71\x81\xf4\x15\x06\x12\x90\x50\x8b\xa3\xc1\x81\xa2\x7e\xe7\x24\xf2\xbe\x46\x46\xf4\xb4\xaf\x58\xdf\x14\xd3\xea\x5e\x50\xc8\x64\x40\x29\x78\x9e\xd4\x85\xf4\xce\xa9\x87\xc4\x96\x82\xba\x35\x6c\x8c\x25\x48\x82\xa9\x5d\xd4\x51\x89\x1b\xd6\x54\x6a\x9d\x0f\xef\xb9\xce\x0d\xdb\x2b\xa5\x15\x67\xb4\x72\x8c\xa8\x60\xe2\x25\x39\x59\x81\x7a\xab\x60\xe4\x22\x64\xc8\x08\x53\x5e\xfa\x7e\x2c\x10\x6c\x59\xad\x31\x45\x54\xc3\x06\x8a\x6c\x03\xbb\xa7\x55\x02\xb2\x19\x9f\x4f\x20\x95\x04\x01\x56\xc9\xf0\x35\xe3\x73\x49\xe3\xab\x1b\xf6\xba\x39\x3e\xdc\x36\x3c\x2c\x86\x3a\x1a\x0e\x66\xb0\x7c\x1e\x9e\x40\xba\x9b\xc4\xf4\x12\xab\x4e\x0a\xec\x2f\x09\xc9\x75\xa4\x48\x70\x34\x9a\xf1\x44\xdc\x78\xba\x07\x06\xf2\xf1\x8a\x38\x2f\xfc\x0d\xd1\xc7\x62\x46\x9d\xf0\x78\x46\xe7\x5f\xe4\x10\xf8\xaf\x2b\x86\x14\x62\xe5\x7c\x9b\x88\x8b\xb7\x66\xc8\xb0\x9a\x16\x4b\x2f\x8c\x4f\x2a\x84\xf0\x3b\xa5\xb7\xc2\x50\xe9\x79\xf6\x6f\xf6\xe6\x40\x93\x56\x4f\x3d\x27\x0b\xd0\x70\x72\x03\xf9\xf2\x8e\x81\x70\x3d\x90\x84\x85\xb2\x2a\x0c\x64\x10\xfa\x1d\x2c\x94\x58\x33\x5a\x18\x31\xbf\x19\xa7\x52\xfa\x32\x9d\xa5\xad\xcc\xaa\xc2\x8f\x1a\x7d\x69\x7a\xbb\x8a\xbc\x28\x9a\xda\x50\x2f\x91\x17\xea\x65\xb2\x50\xb8\x66\x81\x57\x33\x31\x0f\x95\x4c\xaa\x81\x8e\x16\xf2\x98\x98\x5d\x8b\x6c\x17\xbc\xc2\x16\xea\xc3\x37\xb7\xd1\xc9\x8f\x71\x8b\x31\x62\xe5\xdd\xb1\xc4\x1f\x29\xdd\xbc\xcf\xce\xa9\xb8\xa0\xdc\x1c\xb7\xa3\x7b\xdd\x05\x06\x77\x41\xf4\x3c\x05\x3b\xf2\x0a\x70\x10\x9b\xf9\xe8\xae\x86\xc5\xf4\xa3\xed\x2a\xcd\x32\x89\xf2\xf4\xca\x55\xe7\x61\xd7\x0e\x5e\x9f\xe2\x69\x60\xa2\xa6\x9b\xfb\x21\x97\x89\xd5\xdb\x20\xde\x2b\x27\x66\xb3\x62\xfe\x45\x12\x72\x79\x17\x40\xd0\x80\xea\x12\xcf\xf2\x39\xd1\xb9\x03\x26\x2f\x05\xcc\x66\xf9\xfc\x4b\x99\x54\xdc\x5a\xa1\x90\x00\x2d\xaf\x86\x98\x73\x87\xb1\x8e\xef\x83\xb1\x80\x60\xfb\x87\x8f\x00\x9c\x9d\x59\x00\xcd\x69\x4b\x2f\xb3\x41\xf5\x07\x3a\xb9\xde\x34\xb5\x86\x59\x26\xdc\xa8\x17\x61\x4d\x6b\x26\xf2\x16\xc4\xf5\x53\x41\xf9\xcd\x3b\x08\x13\x91\xf1\x90\xbb\x10\xa4\x54\x29\x66\x81\xb2\x44\xa3\x96\x55\x18\xe1\xb6\x7c\x95\x0f\xf9\xf6\xc9\xdb\xd7\x2f\x5e\xff\x25\xea\xfc\x00\x33\x30\xe3\xfb\xc1\xba\x8e\x00\x0b\xb7\x4e\xb6\xea\x24\x22\xef\xa8\x56\x3b\xba\x50\x37\x40\x98\x4e\x0c\xc1\xb0\x1f\x76\x1c\xf0\xc5\x24\x71\xe4\x43\xe2\x01\x5f\x5a\x3b\x8d\x0a\x76\x2a\x30\xb5\x20\x69\x93\x87\x58\xc9\x44\x4f\x5b\x15\x2f\xe1\x61\xf9\x65\x76\x65\xa4\xb1\x78\x23\x8b\xf8\x60\x77\x21\x13\x6c\xf0\x7f\x7d\x28\x6f\xc8\xb3\x90\xa3\xd9\x62\x3e\x29\x66\x17\xf3\xc1\xcd\x17\xf1\x6c\x39\x6f\x83\xa3\xe5\x7c\x40\x64\xde\x20\x54\x05\x11\xc2\xc5\x6c\x39\xef\xdf\x7c\x19\xcf\x2e\xf6\xd4\xe8\x13\x55\x64\x20\x8b\xb4\xe0\x8b\x37\x8d\x4a\xea\x46\xbb\x54\xf5\x8a\xd9\x62\xfe\xe0\x60\x70\xf3\xe0\x00\xaf\x49\xde\x72\x43\xe2\x33\xff\x6d\x6c\xed\x94\x74\x57\xa0\x79\x8c\xcf\x6b\xd9\x46\x41\x79\x55\x51\x50\xc6\x57\xe4\x72\xd0\x36\xdf\xb3\xc1\xb9\x39\x96\x57\xee\x86\xb0\x18\x3a\x9e\x2d\xe6\x83\x1b\x7c\x85\xf0\x48\xce\x0d\xe0\xc8\x08\xec\xb8\x37\x59\xc8\x20\xe1\xbb\x90\x91\x6d\x89\x97\xd8\xf3\x75\x7d\x05\xd8\x9b\xe1\x0d\x0e\x02\x84\x99\x3c\xa1\x98\x1a\x14\x38\xbb\x1e\x40\xd5\x79\x50\xe2\x55\x9a\x6c\xcc\xa1\x7d\x78\xc7\xa1\x4d\x56\xe1\xd7\x7b\x4e\x2b\xf0\x15\xfe\xf1\x4c\x56\x21\x1d\xca\xc6\x37\x4a\x8a\xe5\x1b\xce\xd2\x61\xc6\x93\xf3\x84\xc5\xe9\x1b\x93\x5a\x3d\xd7\xec\x53\xc8\x82\x16\xf2\xa7\x41\x28\x54\x49\xd0\xda\xb9\xca\xc8\x53\xe5\x32\x6f\x4f\x91\xf1\x7c\xb7\x0b\x24\x97\x3d\x9b\x5b\xc7\x0d\xc3\x33\x7a\x11\x5f\x26\x19\x57\x0c\x64\xe7\x6f\x43\x90\xd7\xc4\x64\xc6\x71\x36\xf7\xf8\xc8\xce\xdf\x86\x4e\x40\x13\x93\x3f\x85\x1c\xd5\x72\xeb\x52\x1c\x28\x84\xbb\x23\x53\xce\x30\x9f\x31\x71\xbd\x1a\xd2\x3c\x6e\xde\xca\x05\xce\x61\xc7\x78\x97\x90\x62\xb7\x33\x81\x2b\x09\x21\x79\x7f\xec\x96\xfb\xee\x05\xd1\x54\x53\x83\x50\xf2\x69\x27\xb7\x1f\x2b\xff\x62\x5b\x12\x4b\x83\xf3\x5e\x6f\x15\xa6\x4a\x09\x02\x7d\xb9\x0a\x17\x40\xa9\xa1\xdd\xce\xd1\x20\xba\x08\xa4\x7f\x21\x4b\xa8\xc2\xbb\x9d\xa1\xbd\x75\x01\x85\x69\x54\x23\x22\xdb\xc8\x02\x8e\xee\xd6\x65\x64\x3a\xb4\xa1\x0b\xe3\x0d\xf1\xdb\x56\x7a\x2a\x08\x5f\x90\xca\xa0\xb4\x4e\x0a\xc2\x37\xc4\x6b\x04\xf4\x57\x10\xbe\x24\xd5\xce\x99\x6d\x7b\x5d\x99\xe6\xa6\x36\xa7\x8b\xca\x04\x6e\xea\xa3\xbd\xc4\x67\x77\x5c\xff\x5c\xe2\x9b\x6e\x57\xc0\x71\x82\xf0\x2c\xda\xbc\x3d\x3c\x53\xe6\x4e\x4a\x5f\x2d\x81\xae\x65\x12\x65\x4b\x9d\x70\xb1\xdb\x75\xeb\x85\x6e\x74\x9a\x2b\x75\x89\x26\xe1\x72\xb7\x5b\xef\x76\xe7\xea\xa6\xd7\xe7\x96\x74\x47\x18\x32\x94\x18\x3d\x9e\xe5\x7d\xc9\xbc\x9c\x4b\xd6\xa6\x25\xa4\xaf\x69\x91\x4e\x75\x7f\x91\xeb\x97\x4e\x21\x37\xa2\x65\x98\x20\xe0\x7f\x2c\x3e\xe0\xfd\x30\x01\x25\x8c\x24\x0a\x82\x16\x5c\xae\x94\xbc\xeb\xd0\xf7\xb6\x15\x41\x34\xe1\xd1\xeb\x49\xf6\x4b\x5e\xb4\x23\x30\x8a\x95\x88\x55\x91\x9f\x25\x36\x07\xcc\x48\x5e\x6f\x25\x29\xad\xd6\x60\x89\x01\x0f\x1a\x7c\xfa\xc8\xc7\xa7\xe3\x4f\x93\x29\xb8\xab\x3e\x23\xdc\x4c\x34\x21\xbc\x22\x42\xb8\xfd\xaa\x07\x3d\x3f\x10\xa2\x1a\x10\x6b\xbc\x97\x78\xca\x04\x95\xab\x7d\x4e\x92\x19\x93\x37\xf3\x14\x72\x6a\xa4\xe5\x3c\x1a\x55\xb7\xf2\x69\x28\x5a\x2f\xe3\x4c\x51\x88\x17\xc9\x92\x9a\xb5\x39\xb9\x95\xc6\xbe\x8d\x30\x94\xad\x04\x38\xa8\xb1\xca\x75\xd2\x50\xb4\x62\x27\x46\x9e\xb4\xb7\xda\x02\xcd\xf5\x0e\x94\xc6\x7c\xbc\xa6\x25\xf2\x6e\x1a\x08\x0c\xac\x31\xc1\x17\x5a\xd3\x4d\xa9\x65\x7d\x69\x35\xdc\x40\x3b\xec\x4b\xa7\xd7\xa6\x75\xc1\xbe\xd0\x58\x08\x66\x0b\x96\x9d\x43\x39\x37\x37\x0f\xf5\x1b\x84\xad\xc3\x58\x08\x9e\x9c\x15\x82\xe6\xb3\xe0\x7a\x90\x15\x62\x90\xad\x06\x6e\x18\x81\x64\xa9\x81\x6e\x85\xd6\xc6\xb7\xb4\x36\xbe\x57\x6b\xdd\xb1\x2f\xf6\x59\x28\xb5\x23\x15\x84\xdd\xec\xe0\xf1\xfd\x84\x12\xd7\xc0\x16\xdd\xf8\xf2\x1e\x07\xc7\xf7\xdf\x0e\xf0\x3a\x0b\x03\xa8\xec\xc4\xf9\xa6\x78\xb2\x58\xd0\x94\x2a\x0f\x9b\x13\xfb\x46\x93\xd4\x1f\x08\x1c\x61\x5e\xab\xf3\x43\x47\x39\x84\xee\xac\xb3\x4b\xe5\xd5\xee\x07\x7f\xbe\x3f\xb8\xf7\x31\x70\x5a\x97\xa4\x69\x87\x65\x4d\xbf\x75\x55\xaf\x75\xb9\xa4\xf0\x95\x5b\x9a\xe1\x8f\xb9\xd1\xf6\x88\x89\x1b\xdf\x34\x89\x44\x7d\xf8\xb8\x20\x6d\x02\x1b\x9c\x93\x57\x61\x81\x70\x4a\x9c\x9b\x85\xcc\x92\x36\x25\x5e\xb4\xea\xa6\x3b\xd4\xc1\x89\xf1\x23\x83\x33\xc2\xbc\xf3\x90\xdc\x81\x3a\x7c\xec\x69\xf0\x8c\x4f\x2f\x58\xc9\xfa\x20\x90\x48\x46\xdb\x62\xfc\xf9\x40\x5e\x6d\xe6\x1b\xe7\x95\xf4\x71\xaf\xc7\xfd\x9f\x38\x6d\x8b\x0e\x4f\xe5\xa4\xc4\x34\xd9\xed\xe2\xdd\xae\x98\x3a\xca\x36\x72\xe4\x05\x84\x73\x13\x7e\x9e\x51\xb7\x53\x4a\x65\x8b\x30\xef\xf5\xba\x71\xaf\x27\xa6\x4a\x59\x79\x30\x8e\xb8\xbe\xf8\x45\xb6\x89\x56\x21\x57\x37\xbb\x56\x34\x93\xbf\xcd\x95\xae\x14\xd1\x16\x21\xd7\x14\x41\x59\x86\xd4\xc8\xd0\x97\xf4\x32\x59\xd0\x37\xc9\x35\x4d\x21\xa0\xec\x17\x07\xbb\x5d\xf7\x67\x84\x57\xc4\xbb\xd9\x99\xd1\xf3\x32\xcc\xfa\xd2\x13\xe7\x70\x8b\x64\x35\xb3\xb4\xa9\x4b\xda\x6e\x34\xa0\xd8\x58\x72\x12\xcf\x5c\xfa\x1d\xac\xa6\xd6\xfc\xc4\x69\x2a\x4f\x07\x45\xe5\xed\xa0\x6f\x08\xa0\x68\x90\x6b\xb9\x8e\x4b\x02\xea\x09\xdf\x78\xe3\x5a\xde\xde\xa6\x52\xf0\xd3\x74\x99\x6c\xf1\xaa\x92\xa0\x48\x3a\x1c\xf7\x7a\x1b\x94\xce\x36\x73\xed\x7d\x32\x8d\x05\x3d\x5c\x86\x41\xff\xa6\x1f\x6c\xae\x71\x27\xe8\x5f\xaa\x8f\x11\x0a\x70\x3a\x5b\xcd\xc9\x08\xa7\xb3\x25\xfc\x19\xca\xd3\xf5\xf4\x22\x66\xe7\x94\x78\xeb\xe1\xb4\xa2\xd7\xd5\x25\x18\x8c\xa3\x31\x3e\xab\xcc\x00\x4c\x27\xa0\xd9\xcb\xcf\xd7\xaa\xe1\x9b\xcf\xcf\xaa\x4d\xaf\xfa\x81\x1c\xc7\xb2\x54\x0e\x3a\xb6\xc1\xf5\xc0\xf9\x8b\xa9\x38\x7f\x72\xcf\x69\x0e\x65\x2a\x8a\xe4\xbc\x82\x46\xad\x7a\x81\xce\x4d\xed\x6f\xcb\xc1\xbd\xf3\xb2\x6b\x3c\x5c\xb5\x08\x10\x20\x35\xc4\x20\x31\xec\xb5\x03\xa6\x1b\x03\x39\x25\x76\x78\xd1\x20\xe6\xc7\x77\x8b\xaf\xb0\x71\xd6\xd6\xf9\xae\x95\x8e\x32\x43\x17\x4d\xb9\x09\x28\x6a\xb9\x89\x63\x5f\xad\x83\xb5\x6b\xce\x75\x25\xda\x60\x33\x3a\x9f\x8a\x61\x4e\xc5\x13\x53\x39\xa4\x18\x62\xff\x47\x42\xeb\xba\x78\x39\x4a\x0c\xe8\xb3\xbe\xbd\x9e\xdf\x55\x75\xc5\x34\x73\xd3\xeb\x7d\x17\x56\x2b\xb5\xac\x6c\xc6\x5e\x66\xf1\x32\xaa\x3f\x3c\x3a\x2d\xa9\xd7\x61\x86\x05\xa6\xe0\x7b\xab\xc2\x3c\xc6\xe4\x43\xc8\x3c\x7a\x2d\xd1\xc5\xec\xbd\x05\x84\x73\x0b\x1b\xda\x28\xa2\xc9\x49\xf7\xf6\x5f\x5d\x97\x0a\x3c\xe2\x18\xe1\xef\x42\x81\x1d\xea\xaf\x0d\x6c\xaa\xed\x0b\x7c\xcf\x3b\x08\xb3\x26\x0c\x29\x4c\x52\x96\x25\xfe\xfb\x1e\xfb\x5a\x4f\xa9\x05\xfc\xf3\xb5\x98\xdb\xdc\x2f\x3c\xf5\xb6\x9c\x9c\x2a\x17\x7f\x56\x93\xaa\xa2\x5e\x45\x9a\xde\x25\x39\xfd\xa9\xa0\xb9\xa8\xa9\x66\x71\xad\xd6\x84\x4a\xd5\x8c\xfa\x45\xe2\xd0\xfb\x35\x3c\x03\xf5\x54\xf0\x1a\xa8\x4a\xe9\x08\x0f\xe6\xb0\x3d\x53\xac\x73\x8e\xb3\x8a\x5a\xd7\x36\xc9\xf5\x2b\xa2\x22\xd0\x93\x5c\xbd\x23\xc2\x8f\x8a\xea\x54\x34\x9b\xeb\xfe\xdd\x7b\x89\xe8\xf5\xc4\xf0\x47\x90\x22\x4e\xc5\x6c\x34\x8f\x84\x2a\x61\x1c\xb6\xf5\x7a\xcc\x64\x33\x99\xcd\x2a\x43\xf3\x3c\x93\x6d\xcb\xca\x21\xaa\x8d\xd9\x77\x61\xe8\xf9\xce\x6b\x39\x69\x02\x6d\x79\xb3\xf9\x99\x98\xd7\x97\xa1\x92\xb9\xdb\x6d\x4b\xbf\xe5\x69\x56\xc9\x8e\xb6\xf0\x66\x0b\x43\x77\x43\xae\xe8\x72\xb5\xce\xea\x36\x5b\x03\x49\xba\x45\xb4\xc4\x6d\xa3\xa5\x73\x74\xab\x5d\x81\xd6\x87\x1a\x08\xa3\x0f\x55\x1b\xda\x1e\x5d\x3a\x4f\xa3\x96\x0e\x15\x06\x40\xa0\x5c\x05\x9f\xa1\xcf\x4e\x59\x2e\xcb\x0e\x0f\xcb\x44\x00\x19\xbb\x14\x0a\xf0\x42\x13\x84\xa0\xb2\x06\x95\x27\xeb\x49\xd2\xeb\x41\xae\x1a\x41\x45\x9b\x2f\x0f\x7d\x70\xac\x29\xe1\x59\x35\xd4\xe7\x21\x35\x1e\xb2\x8a\x76\x37\x7d\x4d\x65\x0a\xc5\x53\x78\x6d\x7b\x90\x6e\xbc\xc5\x6d\x0d\x62\x07\x57\x61\xca\x8d\x17\xc4\x44\xf1\x10\x26\xfc\xb4\xb8\x5e\xfe\xd2\xa2\x01\x78\x76\x57\x57\x18\x84\x1c\x69\x61\xb6\xc8\xeb\xd0\xd3\x91\xf4\x8e\x06\xae\xeb\x52\xfa\x8b\x57\x43\xb9\x3e\x77\xf9\xa1\x0a\x6a\x0e\x0f\xb7\x71\x7a\xf7\xed\xef\x4e\xdc\x7d\x5b\x69\x83\xc6\x71\x8b\x44\xb3\xc2\xd9\xd7\xe4\x90\x64\xff\x94\x9b\xec\xf3\xdb\xd0\x9f\xcb\x5d\x32\x8e\x46\x7d\xdb\xfc\x2d\x9d\xb6\xdc\x20\x20\x2a\xa9\x1e\x2d\x5c\x51\x8a\x1d\x5a\x6c\x39\xad\x34\x6c\xd4\x2e\x42\x8a\xa2\xb0\xad\x38\x38\x36\xaf\xd6\x50\x39\xf0\xf8\x57\x7a\x2e\x60\xad\xdf\x43\xed\x0f\xf3\x5e\x80\x6f\x6e\xd4\x56\xd8\x97\x7d\x7f\x5d\x9f\x96\xcf\x5a\x82\xb6\xbd\x5b\xee\x06\x5d\x52\xb9\x99\x91\x0f\x65\x3a\x42\x83\x5d\xed\x20\x68\xc9\xd5\x8f\xe1\xcd\x0c\xf3\x38\xde\xcc\x51\x56\x79\xad\x59\xda\xba\xaf\x35\xcf\x27\xa4\x5b\xf2\x67\x55\x7e\x63\x4e\x02\x33\x1b\xed\xe6\xae\x1d\x51\x99\x2d\xab\x29\xe1\x68\x14\x67\x00\xce\x6a\x80\xeb\x72\xe0\x89\xc7\x5f\x56\xd5\x5a\xeb\x56\xb7\xa1\xc9\x7b\xed\xfb\x3e\x44\xba\xdb\x79\x50\x48\xfe\x3b\xbc\x05\x19\xe0\x3a\xbe\xaa\xa9\x84\xa3\x76\xe0\x6c\x5b\xb0\xfd\x43\xfe\xb6\xd2\xc6\x5c\x92\xa4\x21\x9a\xfc\x7d\xf8\x8d\x48\xd2\x9c\xb4\x1b\x2c\x28\xc6\x73\xaa\xfe\x44\x14\x0d\xb5\xbf\x5b\x59\x05\xff\xdd\x9d\xfe\x9c\x7c\x85\xff\x6e\xaf\x79\xf2\x4f\xcf\x75\xf6\xdf\xbd\xb1\x63\x16\x1e\x9c\xfc\xab\x5c\x76\x3f\xb2\x2e\xbb\x4f\xac\xcb\x6e\x70\xcf\x5d\x38\xf7\xdc\xb9\x73\xcf\x9d\x5a\x9f\xdc\x0b\xe7\x93\x7b\x55\xf3\xc9\x7d\x8c\x10\x9a\x80\x1b\xef\x47\x5a\x75\x65\x79\xaf\xd0\x4a\xd9\x2f\x0a\xad\x94\x54\x43\x2b\xe5\x64\x34\xc9\xbf\xe0\x93\xbc\xdf\x47\xc9\x2c\xf7\x43\x2b\xe5\xd5\xd0\x4a\x75\x77\xd8\x2a\xb4\x52\x71\xef\xd0\x4a\x09\x84\x56\x3a\xa7\x02\x3c\x9e\xca\x83\xd5\x42\x3e\x4b\x1e\x43\xe7\x56\xbc\x01\xe7\x4d\x6f\xc0\xc9\x1d\xde\x80\x5f\xdd\xe6\x99\x36\xf7\x86\x11\x7a\x2e\x70\xad\x3f\x51\x83\x15\x9b\x0e\x74\xb5\x73\xdc\x55\xc6\x17\xfa\x48\xf9\x0d\x38\xdf\xa5\x2d\x2e\x73\xef\xf0\x51\x6c\x3b\xaf\xba\xe5\xb5\xc9\xbf\xc4\xcd\xaf\x45\x18\x7f\xc0\x44\x3f\xcd\x39\xb0\xdd\x68\xa2\x43\x4c\xa8\x26\xfc\x01\xb7\x2d\x13\x70\xfe\x93\x7d\x63\x9e\xd6\x9a\x5e\xb4\xba\x35\x07\xb4\x55\x75\xe7\x10\xd5\x2a\xfe\xff\xdc\xbd\x8b\x7f\xdb\xb8\x91\x38\xfe\xaf\xc8\xbc\xad\x4a\xd4\x90\x42\xca\x6f\x6a\xb1\xba\x34\x71\xda\xfc\xba\x89\xf3\x8d\xb3\xd7\xf6\xb4\xba\x1c\x45\x82\x12\x1b\x8a\x54\x49\x4a\xb6\x57\xe2\xff\xfe\xfb\x60\xf0\xe4\x43\xb6\xb3\xed\x76\xef\xee\xb3\x1b\x8b\x04\x40\x3c\x06\x03\x60\x66\x30\x8f\x6e\xb2\xbd\x3b\xd4\x20\xf7\x47\x8e\xbb\xdb\xa2\x68\xbf\x2f\x2b\x9b\x62\x9b\x5b\xdb\xe0\xba\x17\xf5\x03\x1d\x64\x4b\x65\x9e\x85\x0f\xff\x68\x8c\x20\x2d\xf9\x69\x80\xa9\x31\xde\x49\xd0\xf0\x9d\xcb\xcb\xd9\x25\xae\x97\x43\x1e\x9f\x2c\xee\x80\x36\xe9\x72\x40\x1b\xd6\x1d\xd0\x86\x4f\x38\xa0\x65\x25\xcc\x0f\x60\xe3\x5b\x93\xd0\xf0\x2e\xbb\x7e\xe6\x1e\x7f\x79\x89\x70\xf6\xcf\xdc\xeb\x63\x92\xa9\xa0\x0c\xec\xc9\x3d\x85\x1d\x3e\x13\x07\x40\x01\x4f\x97\xb0\xbf\x67\xf2\x00\x08\xf8\xa3\x0b\x1b\x7c\x26\x0f\x80\x10\x1e\x79\x50\x86\x4c\x6c\xfa\x4b\x62\x67\x22\xf8\x65\x06\x31\x19\x2e\x75\x4c\x86\x0b\x17\x62\x32\x40\x01\x76\x1c\xe0\x03\x07\x01\x55\xa2\x0e\x1d\xb7\x60\xd3\x11\xb7\x20\x6f\x86\xc1\x13\x98\x18\x1c\x8e\x5b\x30\xcf\x33\x3f\x0c\xfc\xa2\xe4\x11\xd0\xb4\xeb\x5f\x9c\x0f\x37\x69\xb1\x99\x17\x41\x1e\xcf\xe9\x5b\x61\xa6\x95\x0f\xb3\x4d\x49\xf3\x4f\x4b\xba\xa2\x1d\x29\x0f\x3a\x28\x54\x1a\x97\xb1\x9f\xd8\x29\xab\x48\x35\xa2\x3d\xd0\xe7\xc3\x15\xcd\x17\xf4\x86\x7d\xfb\x7d\x16\xf8\x09\x54\x20\x43\x59\xb1\xc3\x52\x1f\x0b\x51\xfb\x58\x28\x3a\x8e\x85\x05\xe5\x7e\x14\x85\x87\xd3\x43\x8b\x48\xda\xc3\xf1\x65\x04\xf7\x98\x4b\x4a\xcb\xe2\x9d\x9f\xfa\x0b\xa1\x18\x27\xd0\x97\x33\x96\x7f\x60\x54\x12\xbf\xf2\xc8\xf8\xa7\x01\x6f\x61\xb8\xda\xc4\xd0\xed\x0f\x79\xb6\x8d\x43\xe5\xb6\x7b\xbf\xdf\x29\x61\xac\x92\x3f\xa5\xfd\xbe\x9d\xd5\x9b\x22\x29\xc2\x2a\x3f\x87\xfc\x03\x0d\x93\x1c\x61\xca\xd6\x59\xfd\x84\xa6\xf8\x61\xf8\xea\x8f\x2f\xdf\xbf\xbf\xfe\x9e\xaf\x60\x05\x68\xd4\x2a\x69\x1d\xe8\xac\x85\xc5\x8d\xe7\xf3\xcf\x56\xbd\x17\xf1\x1d\xba\x8e\x27\x1a\x07\x54\xaa\x6d\x42\x0d\x9b\x42\x20\x6a\x62\x0f\xe3\x3d\x3b\x50\x85\x1e\x42\x15\xe1\xbf\x9f\x23\x4c\xf5\xb5\x27\xb1\x19\x02\x80\x55\x01\xd7\x45\xf0\x24\x58\x84\x8e\xae\xf0\x6d\xb2\xab\x37\xcd\xda\xbe\xfe\xb8\x14\xae\x59\xdb\x10\xed\xf7\x35\x48\x8d\x8c\x3a\x50\xdb\x9f\xe9\x0e\x74\x75\xf8\xb0\xa3\xf2\x43\x87\x1f\xe7\x3e\xd4\x6c\x21\xaf\x91\x30\x69\x45\xdd\x68\x14\x00\x53\x9b\xa7\x4f\x3a\x93\x29\x16\x54\x8c\x38\xe6\x1e\xf3\x88\x8e\xc6\xdb\xfa\x89\xd4\x7a\x0d\x8c\xbd\x81\x27\xb7\x3a\xac\xe1\x1c\x18\xe5\xf0\xee\xc0\xd2\xf1\x74\x38\x15\xee\x46\xbb\x42\xac\x9d\x5f\xb8\x89\x31\xbf\x5b\xda\x1a\x47\xe7\xea\x79\x8e\xd9\xf5\x07\x6d\xdd\x8e\x5d\x85\x53\xe2\xe2\x9c\xa8\x90\xca\x0b\x81\xf4\x1d\x73\x93\x57\xb8\x68\xe5\x32\x04\x22\x74\xac\x3d\x5e\xd6\x8d\x68\x85\x9b\xf6\x54\x5a\xc3\x67\xdf\xc6\xe3\xec\xf8\x18\x95\xd3\x74\x9a\xcd\x66\xfd\xbe\x78\x80\x38\x90\x0a\x8d\x9b\x9a\x16\x1a\x39\x8d\x08\x68\x86\xf3\x4e\xe1\xb8\x33\x11\xbc\xad\x11\x03\x4d\x7e\x28\x0d\xe6\x72\xa2\xc8\xa6\x72\x9a\xcf\x08\xc5\xe9\x31\x03\x40\x85\x8d\x55\x54\xdf\x30\xa6\x74\x46\xd4\xbd\xc4\x2f\x17\x6f\xb9\xf3\x8a\xf9\x5f\x15\x8a\xfc\xcc\xf1\xac\x7f\x8b\x4e\xe8\x59\x74\x66\x61\xd7\x61\x6f\xd4\x9d\x53\x7a\x61\xe1\x11\xbc\x05\xf4\xea\x24\xbc\xb4\xf0\x09\xbc\xcd\xfd\xf3\xcb\xe0\xd2\xc2\xa7\xf0\xe6\xcf\x4f\x2f\xe6\x81\x85\xcf\xe0\xed\x2a\x18\x5d\xcc\x1d\x0b\x9f\xc3\xdb\x25\x1d\x9d\xfa\xbe\x85\x2f\xe0\xed\x62\xee\x46\xfe\xc8\xc2\x97\xf0\x76\xee\xbb\xf3\x2b\xdf\xc2\x57\xf0\x76\xea\xbb\xa7\x97\x81\x85\x5f\x8a\xe6\xfd\x4b\x27\x62\xaf\xbc\x7d\xea\x9c\x3a\xd1\xdc\xc2\x2f\x79\x93\xe1\x99\xe3\x44\x57\x16\x7e\xc9\xeb\xf5\x7d\xc7\x89\x22\xeb\x57\x89\xe2\x0e\xa0\xa3\x21\xbd\x88\xce\x25\xe8\x42\x37\x38\xa5\x57\x12\x74\xf3\x93\xab\x30\x9c\x4b\xd0\x5d\x9d\x5d\x9c\x05\xa1\x04\xdd\x05\x3d\xbb\x08\x46\x12\x74\xe7\x17\x27\xfe\xfc\x42\x82\xee\x8c\x9e\x9c\xcd\x5d\x09\xba\x33\x77\x14\xfa\x97\x12\x74\xa7\x67\xa3\x0b\xdf\x91\xa0\x3b\x71\xdd\xf9\xd5\x48\x81\x6e\x7e\x72\x79\x19\x45\x0a\x74\x17\xc1\x69\x08\xaf\xbc\xc9\xf3\x33\x37\x82\x57\x5e\xef\xf9\xc8\x71\xa8\xff\x6b\x82\xee\x24\x1a\x45\xa1\x04\xdd\x7c\x1e\x52\x36\xcf\xbc\xeb\x57\x4e\xe0\xb3\x69\xe6\xa0\x3b\x3f\x9d\x9f\x31\x20\xf3\x71\x9c\x8e\x7c\xc0\x56\x0e\xba\x91\x7b\x75\x1e\x9d\x48\xd0\xb9\xf4\xf2\x92\x9e\x49\xd0\xb9\x57\x17\xe7\xa1\xc2\x3a\xf7\xec\xfc\x2c\x50\xa0\x73\xc2\xd3\x0b\xdf\x55\xa0\xbb\x1c\xcd\x5d\x03\x74\xa7\xa7\x97\xbe\x01\xba\xd1\xd5\xc5\x95\x01\xba\xd1\xd5\xf9\xe8\xd7\xc5\x3a\x37\x3a\x8b\xa8\x02\x1d\x5b\xbe\x81\x04\xdd\xa5\x1b\x9e\x46\xbe\x04\xdd\x69\x14\x9c\x44\x17\x12\x74\xa3\xab\xf9\x39\x03\x24\x07\x9d\x73\xe2\x5f\x45\xa7\x12\x74\xce\xc9\xd5\x5c\x83\xce\x19\x5d\x5e\x86\xae\x04\x9d\x33\xba\xb8\x98\x87\x0a\x74\xee\xd9\xc5\xd5\x5c\x83\xce\x09\x4d\xac\x3b\x75\x82\x53\x03\x74\x8e\x33\x77\x0c\xd0\x39\xce\x95\xfb\xeb\x62\x9d\x13\x5d\x30\xf0\x08\xd0\x8d\xe8\x3c\x1a\x29\xd0\x39\x21\xa5\x1a\x74\x61\xe8\x50\x57\x81\xee\x3c\x38\x0f\x7d\x05\x3a\x67\x1e\x84\x1a\x74\x8e\x1f\x04\x6a\xc1\x3a\xce\xd5\x85\x7f\xa1\x40\xe7\x5c\x9e\x5c\x46\x0a\x74\xce\xb9\x73\x7e\xaa\x41\x77\x1a\x45\x06\xe8\xdc\x4b\xf1\x2a\x41\x47\xcf\x6a\xa0\x9b\x5f\x86\xa7\xbf\x2e\xe8\x46\x91\xab\x41\x17\x46\xe1\x5c\x83\x2e\x98\x07\xa7\x1a\x74\xf3\x73\x3f\xd0\xa0\xf3\xcf\xaf\x0c\xd0\x5d\x9d\x5f\x5e\x6a\xd0\x5d\x5e\x5d\xcc\x35\xe8\x2e\xae\xce\xe7\x1a\x74\xe7\x57\x67\x81\x06\xdd\x69\x78\xea\x28\xd0\xf9\x17\x51\x44\xe7\x0a\x74\xe7\xa7\x51\xc4\xa6\x47\x80\xce\x0d\xe9\xd5\xfc\xdc\x04\x5d\xe4\x9f\xfd\x9a\xa0\xbb\x8c\xce\xd8\xc1\xc0\xfb\x1e\x5c\xd2\xf3\x40\x1d\x13\xfe\x59\x78\xce\xf0\xe5\x44\x2c\xdf\xe0\xe2\xf2\x54\x82\xee\xfc\x7c\x3e\x3f\x57\xa0\x3b\x0d\xfc\xe8\x4c\x9d\xb0\xa7\x27\xbe\x73\x7a\x21\x41\x77\x72\x79\x49\x4f\x02\x09\xba\x11\xbd\x08\x4f\x46\x12\x74\xee\xfc\x8c\x8e\x34\xe8\xe6\x57\xd1\x79\xe0\x6b\xd0\x5d\x45\x8e\x4f\x4d\xac\x3b\xbf\x30\x41\x17\x5c\x9e\x9d\xfc\x8a\xa0\x8b\xdc\xe8\x52\x83\x2e\x0c\x68\xc8\x08\x10\x41\x9c\x9c\x51\xd7\x3f\x93\xa0\xf3\x69\x78\x76\xa9\x16\xec\x55\x10\x04\xe7\xea\x98\xb8\x9c\x07\x27\xa7\xbe\x04\xdd\x45\x30\x3f\x39\x1d\x49\xd0\x9d\x5f\x5e\x45\x27\xea\x84\x3d\x3b\xbb\x9c\x8f\xd4\x82\x3d\x39\x39\xbf\x72\xa9\x02\x5d\x10\x44\xd1\x95\xa3\x40\x37\x1f\x45\xd1\xd9\x95\x02\xdd\xc5\x79\x14\x39\x27\xfa\x84\x3d\x0d\x43\xf7\xe2\xd7\x04\xdd\x55\x34\x67\x94\x1c\xef\x7b\xe4\x44\xa7\xc1\x89\x04\x1d\x3d\xa7\xf4\x2a\x90\xa0\x0b\x03\x7a\x71\x71\x26\x41\x17\x9e\x52\xf7\xec\x42\x82\x2e\x08\xc3\xe0\xe4\x4a\x82\x2e\x70\x02\xff\xe4\x44\x82\xce\x8f\xe6\xa7\x23\xb5\x60\xaf\xe8\x55\x38\x3a\x95\xa0\xbb\x1c\x5d\x5c\xb8\x17\x0a\x74\xd1\x69\x14\xb1\xd9\x91\x74\x1d\x8d\xa2\x53\x57\x81\x2e\x60\xa0\x73\x34\x5d\x47\xa9\xef\x38\xbf\x26\xe8\xa2\x28\x34\x40\x17\x45\x57\x6c\x77\x1b\xc9\xb7\xb3\xab\x50\x82\x2e\x8a\x22\xf7\x42\x11\x27\x51\x44\xe9\xd9\xa5\x04\x1d\xdb\xa2\x4e\xe6\x12\x74\x51\x18\x5e\x9e\xa8\x13\x36\x9a\x07\xce\x28\x94\xa0\x8b\xae\xfc\xcb\xd1\x99\x04\x5d\x74\x76\x11\x99\xa0\x8b\xa2\xe8\x32\x54\xa0\x63\xaf\x00\x2b\xd5\xa4\x6f\x80\x2e\x8a\xc2\xf3\x5f\x1b\x74\x97\xd4\xd5\xa0\xa3\xc1\xfc\x44\x83\x8e\x3a\x97\x23\x0d\xba\xf0\xec\x34\xd2\xa0\x0b\xfc\x91\x01\xba\xc0\x75\x14\x49\x1c\x45\xf3\x13\x36\x46\x39\x44\xdf\x61\x6f\x02\x74\xd1\x25\x80\x43\x80\x2e\x3a\xe7\xc0\x51\xcd\x9f\x5d\x44\x06\xe8\xc2\x8b\x53\x13\x74\xc1\x69\x0d\x74\xfe\xfc\xd7\x06\xdd\x09\x75\x0c\xd0\x39\xf3\x91\x06\x5d\x10\x5c\x3a\x1a\x74\xf3\x8b\xd3\x50\x83\xce\xbf\x18\x9d\x6b\xd0\x5d\x5d\x3a\xea\x98\x88\xe6\x97\x81\x01\xba\xb3\x8b\x40\x83\x8e\x46\xe7\x81\x06\x1d\x3d\x3f\x73\x6b\xa0\x0b\xdd\x4b\xc7\x00\x9d\x3f\xaf\x81\xee\xca\xad\x81\xee\x3c\xfc\x75\x41\x37\xa7\x57\xe6\x82\x0d\x82\x79\xa0\x41\xe7\xcf\xaf\x5c\x0d\xba\x4b\xff\xfc\x4c\x83\xee\xc2\x39\x3d\xd1\xa0\x3b\xbb\x18\x8d\x14\xe8\x4e\xcf\x5c\xb6\xf9\x5f\x08\xf0\x9c\xfa\xee\x95\x04\x5d\x78\x79\x7a\xe2\xaa\x05\x3b\x8f\x4e\xce\x9d\xc0\x00\xdd\x15\xad\x81\xee\x9c\xd6\x40\x77\x12\x1a\xa0\x0b\xc3\x51\xf0\xab\x82\x8e\x46\x74\x6e\x9c\xb0\x17\x41\xa0\x4f\xd8\x79\xe0\xfb\xbe\xa2\xeb\x7c\xf7\xf2\xf2\x42\x2d\xd8\xcb\xf0\x9c\x9e\x2b\xd0\x5d\x5c\x9d\x9d\x9d\x2a\xba\xee\x3c\x3c\x0d\x4e\x35\x0f\x1b\x9e\x3a\x27\x8a\x24\x3e\xa5\x27\xa7\x23\xaa\x4e\x58\x3a\xba\x18\x9d\x28\xd0\xc9\xe6\x5f\xd6\xdb\x7f\x59\x6f\xf2\x65\xad\xde\x5f\x11\x74\x01\x8d\x34\x49\x1c\x44\xe1\x65\xa8\xb0\x6e\xee\xcc\x69\xa0\x88\x93\x2b\xc7\x3f\x65\x54\x96\xa0\x14\x2e\xaf\x9c\x2b\x25\x39\x39\x77\x2e\xc2\x4b\x75\x4c\x9c\x9d\x9e\xd3\x0b\x25\x39\x39\x3d\x3b\xf3\x19\xc7\xc0\x41\x77\x72\x71\x7a\x71\xaa\x88\x93\xd1\xf9\xc9\x88\x11\x2e\x2f\xeb\xcd\xbf\xac\xb7\xff\xb2\xde\xe4\xcb\x5a\xbd\xbf\x24\xe8\x04\xa4\xba\xd5\x79\xff\x2f\x87\xcb\xd1\x1e\xcd\xb2\x5f\x22\x04\x11\xbf\xc4\x6c\x89\x69\xbb\x04\xf9\xb7\x0f\xab\x79\x96\x54\xd8\xef\x92\x32\xc6\x36\xea\xf7\x7f\x9f\x65\x09\xf5\x53\x9b\x97\x04\x1d\x57\xbc\xe9\x2a\xed\xdb\x14\x4d\x54\x29\xcf\xfa\xf7\x7f\xb7\x8e\x69\x35\x86\x4a\x8e\x7c\xdb\xca\xe6\x05\xcd\xb7\x0c\xcc\xa0\xa9\xc6\x4b\x0e\x75\x2a\xe1\x29\xf5\x82\xd2\x99\xd9\xc6\xb6\xe2\x92\xe6\x7e\x99\xe5\x16\xc2\x09\x7b\x37\x8b\xe1\x80\xa5\x14\x6b\x1a\xc4\xb4\xb0\x0c\xf8\x46\x35\xa3\xa2\x69\x09\x8e\x8d\xf8\xcd\x4a\x7a\x50\x80\x9c\x76\x82\x3e\x3d\xb6\x7a\x71\x01\xe6\x53\x26\xb4\x95\x8f\x0a\xc3\x47\x74\x68\xda\x48\x06\x59\x5a\x94\xf9\x26\x28\xb3\xbc\x75\x09\x58\xf6\xfb\xac\x33\x84\x10\xbb\x24\xe5\x34\x00\x6f\x15\x72\x23\x31\x2e\x03\xcb\x49\xe9\x5d\xeb\xfa\xcd\x00\x8b\x35\xac\xb9\x6e\x04\x56\x5c\x0e\x93\x6c\x31\x81\xbf\x36\x45\xde\x81\xe0\xa0\x30\x58\x6a\x3a\xbf\x85\x10\x81\xcf\x08\x55\x9a\x3f\xec\xa8\x8a\xf5\x53\xa2\x1d\xfb\x53\x99\x15\x6d\x4d\x48\x7c\x0e\x18\x26\x6d\xd6\x60\x0f\x64\x80\xc0\xd6\x59\xd2\x74\x88\xa1\x3f\x0f\x6a\xd4\x19\x82\x17\x95\xb6\x11\x98\x21\x25\x11\xdb\x65\x0c\x39\xbd\x05\xb1\x66\x52\x71\xb5\x8d\x2a\xd1\xc3\x9c\xf5\x90\xad\x60\xd5\xbf\x15\xd7\xc1\xf9\xcc\x91\x89\xe6\xb2\x7d\x3a\xfc\xfc\xf7\x0d\xdd\x50\xe3\x9d\x2b\xe1\x59\x41\x92\x15\x34\xb4\x1a\xa1\xe5\xd8\x5e\xa8\xcb\xe4\x9b\x34\x8d\xd3\x85\xd4\x51\x30\xea\x87\x50\x4d\x5c\xa1\x2c\xb2\x73\x5c\x22\x65\x8d\x2f\xbc\xb8\xa5\xf4\xbe\xb4\xbc\xac\xdf\xcf\x78\xe7\x73\x9c\x9a\xc6\xf6\x16\x65\xb8\x68\x79\x71\x64\xb3\xae\xe3\xa3\x4c\xe2\xea\xf8\xc0\x07\x41\xb6\x5a\x27\xb4\xa4\x96\x07\x1f\x18\x35\x2b\xb0\xc4\x0c\x2c\x31\xaa\xe4\xd8\xc0\x46\x91\x8f\x65\xc2\x26\xd0\x53\x03\x32\x72\xf8\xb4\xc9\x01\x53\x3f\x7c\xb0\xda\x51\xed\xf8\x12\x13\xd5\x1e\xe9\x8f\x79\xfa\x7c\x13\x45\x14\xbc\x9e\x98\x59\x62\xb3\xe2\x55\x1a\x19\x13\xa3\x3d\xfd\xa5\x9e\xa9\xe9\x8e\x61\x87\x57\x8a\x1b\xc4\xb4\x9a\xf1\xf5\xf3\x60\x3f\xa2\x7b\x69\x62\x27\x54\x03\x36\xb1\x30\x97\x07\xe6\x9f\xf7\x6b\xdc\x7d\x32\xf5\xfb\x36\xa0\xc3\x34\x9d\x0d\x61\xef\x87\x27\xe8\x10\xc2\x5d\x70\x18\x1f\x1f\xa7\x68\x5c\x55\x60\x34\x84\xb8\x95\x8b\x44\xa8\xb1\xec\x04\x77\x41\xdc\x1c\x9e\x88\x66\x77\xf7\x98\x39\x4c\x56\xb7\x63\x69\xad\x32\x48\x54\xb8\x2f\x6e\x8d\xeb\x23\xe7\x49\x62\xf0\x42\x8b\x23\xfe\xc9\xc0\x6e\xb6\x4b\x72\x7b\x19\x04\xd8\x5d\x6f\x49\xac\x41\x51\x59\x8e\x34\xca\xe5\x43\xc0\x65\x40\xbc\x5a\xbd\x52\xbf\x4d\xe1\x59\xad\x0b\x12\xd5\xe4\xd5\xa3\x61\x61\x60\xac\xff\xf6\x35\xb2\x01\xfd\x7a\xed\x2b\xde\x77\xbc\x15\x3a\x30\xfa\x9e\x9e\x7f\x80\x17\xb4\x6c\xdf\x79\x1a\x6b\xc5\xa8\x4e\x29\xc5\xe2\x9b\x43\xd3\xd2\x9e\x14\xd1\xeb\x35\x57\x74\xef\x18\x58\xda\xa5\xbd\x42\xd1\x6e\x61\xb7\x2b\xc0\xa2\x34\x35\xd4\x92\x61\xcb\x78\xf6\xf7\xa2\x38\xad\x2b\x2c\xc0\x16\xd2\x86\x6a\x77\x15\xea\x83\x9f\x0d\x4c\xa3\xba\x16\x68\xaf\x49\x39\xbc\xd1\x64\xc3\x41\x38\xc7\x91\xad\x41\x7d\x04\x4f\xe6\x59\x49\x0f\x50\x58\xba\xea\x5e\xc0\x89\xad\x39\x05\x7a\x8b\x86\x4d\x4a\x6b\x7c\x80\x80\x28\x9f\xac\x59\x21\x7c\xe7\x9d\xb4\x85\xc6\x35\x38\xcc\xd9\xe2\xec\x40\x8c\xc3\xf8\xae\xb5\x37\xb8\x9a\x80\xa9\xbb\xc1\x69\x0e\xb6\x0b\xed\xf7\x36\x25\x3b\x86\x30\x1e\xc5\x30\xef\x5e\xcd\x21\xb0\x9c\x47\xcf\xb4\x8f\xab\x10\x66\xe3\xba\xb3\x29\x6e\x76\x52\x4f\xb7\xb0\x64\x3a\xa8\xca\xc9\xb5\x85\x24\xe9\x44\xef\x7a\x82\xd8\x68\xb8\xe5\x3c\x70\xfe\x53\x24\xdc\xe6\x1b\x2a\x45\x7c\x18\xa6\x2e\x11\xa7\x4e\x4a\x1c\xcb\x4d\x27\x45\xbb\xdc\x4e\x11\xce\x6a\x6a\x33\xac\xd3\x7c\xec\xb9\x1e\x70\x5a\x71\xfa\xa2\x97\xdb\xf5\x49\xa4\xdd\x54\xa0\x41\x72\xc6\x36\xda\x35\x5a\xc0\xa9\x0d\x64\x91\x52\xc0\xf1\xd7\x4f\x40\xe6\x19\xaa\x0d\x4f\xf6\xc9\x00\xaf\x2d\x4d\x0c\x6b\x2e\xcb\xb5\x01\xe7\x13\x50\x2c\x09\x5b\x50\x9a\x88\x52\x6a\xdb\x7c\x07\xcf\x51\x95\x42\xfc\x6c\x70\x98\xcb\x61\x69\x8e\x4b\x96\xa3\xa8\xd2\x10\x36\x35\x9d\x86\x32\x95\x83\xc9\x40\x23\x88\xd8\xf1\xbf\x0a\x56\xe0\x7a\xcd\x2e\xa5\x4b\x8f\x5f\x01\x68\xdc\x79\xf2\xbf\x02\x68\x9c\x00\x12\xf0\xc2\x1d\xc1\x86\x5c\x9c\x91\x23\x17\xc7\x35\xaf\xe3\xe6\xb2\x4f\xbf\x1e\xc8\xdc\x17\xc5\x51\xc6\x86\x90\x31\x6e\xfe\xc8\xdf\xef\x73\xce\x2e\x10\x6a\xc7\x58\x61\xea\xa6\x05\xf4\x0d\x12\xfe\xf1\x48\xf9\x73\x60\x0e\xee\xeb\xfb\xfd\xa3\x1c\x35\xea\xed\x66\xd2\xf9\x44\xf4\xfc\xb4\x47\x57\xeb\xf2\xa1\x57\xd0\xbf\x6f\x68\x1a\x00\x5b\x2b\xe6\x3e\x46\xf8\xf0\x44\x72\x13\x8a\x8e\x53\x57\x12\x9f\x5c\xe9\x12\xb7\x3d\xbe\xe3\x94\x70\x5b\x8f\x52\x45\x1d\x81\x70\x23\xe9\x34\x37\x6d\x3d\xf2\x99\x30\x6e\x11\x53\x68\xce\x4c\x66\x37\x81\xae\x98\xa3\x98\x38\x1d\xf1\x3a\x7c\xb4\xcb\x89\x7f\x78\xea\x28\xda\x95\x7c\xd0\xb4\x13\xe1\xcb\xa7\x80\x4f\x88\xd2\x16\x9b\xd8\xaa\x33\xa5\x01\x3e\xe4\x51\x3b\x1b\x46\x79\xb6\xb2\xd3\x69\x7c\x7c\x3c\x43\x00\x51\xc6\xf7\x98\x34\x07\xc8\x7c\xea\x1b\xb4\xac\xae\xb6\x4d\x47\x89\x5f\xbe\xfb\xd7\x6c\xd5\xb5\x95\x74\x60\x81\x68\xaf\xf7\x33\x1c\x3f\x71\xf6\xc5\x91\x4d\x51\x6b\xeb\xd6\x0b\x22\xd7\x0b\x82\x4b\x8b\x52\x0e\xb6\x12\x3d\x3a\x81\xf9\x63\x13\x98\x3f\x31\x81\x1c\x63\x33\xe5\x78\x25\x46\x63\xfa\x1d\x71\x18\x43\x5a\xac\xc1\xa1\x3c\xc5\x2e\xc2\x3e\x2c\x83\xb1\x08\xbc\x12\xff\xac\xa6\x44\x1d\x0a\x3b\x7d\x86\x3f\x43\x4e\x65\xf6\xfb\x0e\x21\xe0\xea\x97\x73\x6c\xb9\xb9\xfe\xda\xb6\x79\x59\xa7\x55\xb6\x32\xb0\xa8\x53\x12\x08\xc7\x4d\xda\x42\xa1\x53\xf2\xa8\x6a\x6b\x55\xcd\x24\x55\xc7\x26\xa2\x85\x73\x3a\x78\x7d\x97\x3c\x64\x19\x17\x60\x03\xc3\x03\x07\x71\x91\x52\x37\x11\x5a\x1a\x08\x98\xf6\x04\x71\xa8\x24\xb1\x76\x89\x13\x54\xf3\xfd\x9d\x4b\x19\x0a\x4b\xe5\xa2\x51\x3b\x43\x47\x84\x64\x9d\xd5\x67\xdd\xd5\x8b\x81\xae\xed\x0c\x81\xfc\x41\x8b\xc4\xc0\xdd\x4c\xe6\x35\x50\x5d\x43\x38\x33\xf0\x91\xf1\xc8\x55\x1c\xd9\xbe\x29\x0c\x04\xf7\x6e\xac\xe3\x85\xf6\x82\xda\xae\xad\x26\x04\xe0\xde\x51\x39\x36\x48\xb0\x1e\x39\xf2\xa8\x12\x52\x7c\xb6\x78\xe4\x3e\xeb\x83\x2f\x6f\x01\x88\xa9\x90\x5c\xca\x2e\xcc\x6c\x34\x3e\xb2\x53\x62\xfb\x64\xc3\x97\x07\x42\xc3\x30\x4b\x29\x1a\xb3\x6a\x79\x03\x05\xf1\xb9\x18\x80\x3b\x97\x84\x62\xe0\x5e\x45\xf4\x42\x10\x0b\x62\x9d\x26\x68\x07\x27\x5b\x4c\x92\x2a\x8a\x53\x3f\x49\x1e\x80\xb6\x38\x4a\xfb\xfd\xcd\x90\x97\xd5\x4f\x36\x52\x85\xd8\x91\x28\xe6\x25\xae\x2a\xda\x3c\x59\xc6\x2a\x68\x59\x5c\xc8\xf3\xe1\x67\xc1\xec\x80\x5c\xfe\xf8\x38\x45\x7a\x7c\x10\xc4\xa6\x39\xc4\x71\xbb\x53\x4f\xa0\xa9\x29\xe7\x55\x5b\x73\x16\x3d\x72\x2c\xfe\x23\xe7\xa1\x41\x07\x3e\xb1\xd2\xd0\xd7\x02\xab\x24\xce\x98\x3b\x4e\x13\xc0\x2a\x0d\x60\xa5\xd3\xf2\x39\xc0\x92\x00\x08\xba\x19\x69\xb9\x95\x08\xcb\x5c\x90\xbd\x77\xdf\x67\x5c\x63\x29\x6e\xa7\xf7\x25\x4d\xc1\xed\x97\x85\xe4\xed\xcc\xae\x80\x4c\x2f\xc1\xcb\xac\x28\x3f\xd2\x75\x96\x97\x30\x31\xde\xb2\x6a\x86\xe6\xaf\x1a\xc6\xb8\x62\x45\xe1\x1c\xbc\xa6\xd1\x7b\xf6\x2d\x98\x78\xd5\x38\xa4\x96\x8a\xb6\x96\x4d\xf7\x96\x7e\x21\xbc\x94\xd1\xb4\x27\x2d\x8a\x0d\xe1\xa2\xdf\xf5\x7d\x90\x50\x3f\x7f\x6e\x0d\x1b\xa1\x3e\x9e\x12\x42\x74\xc3\x72\x29\x18\x62\x72\x8a\x1d\x58\x35\x50\x32\xde\xef\x8f\x52\xd4\xef\xb7\xbf\x48\x8d\x5a\x70\xf3\x73\xb6\x72\x65\x39\x48\xd1\xf2\x72\x33\x8b\xef\x2f\x60\x43\x55\x2f\x54\x2f\xc0\x05\x1a\xac\x40\x55\x1d\x35\x64\xf1\xdd\xa7\x83\xee\xcf\x44\x3f\x7a\xb1\x68\x80\x91\xbd\x24\xae\xa0\x27\x9d\x9f\x9b\x80\x9d\x98\x2f\x9e\xaf\xab\xc8\x89\x0f\x17\x5b\xb0\xd7\xe1\x84\x91\x28\x01\xdb\x4e\x23\x32\x70\xc7\xc6\xbd\x08\xda\x05\xfd\x7e\xd1\xef\xdb\x90\x2b\x97\xe7\x24\x21\x85\x34\x18\x4e\x90\xc7\x3e\xc2\x89\x3a\xa0\xd7\xb6\x19\xd0\x6b\x2d\xd6\x57\x20\x09\x8a\x8d\x1d\xa2\x71\x40\x8e\x1c\x23\xca\xb7\xfc\x78\x5c\x8e\xf9\xfa\x2b\x48\x02\xbd\x1a\x1f\x1f\x47\xdf\x96\x63\x54\xf4\xfb\xc5\x34\x9a\x0d\xf3\x4d\x6a\xa3\x31\x34\xa8\xbf\xaa\x0a\x6e\xca\xc6\x47\x60\x2c\x72\x76\x30\x12\x42\x4c\x20\x28\x47\xda\x46\x9a\x4d\x39\xce\xe4\x3c\x96\xca\x51\x8e\xfa\xfd\xae\x6f\xf2\x5a\x4d\xb8\x59\x05\x4c\x09\x3b\xf4\xba\xd0\x25\x37\xd1\xa5\x8d\x2c\xb9\x89\x2c\x0c\x55\x58\x3d\xb5\xcb\x21\xb6\x50\xb9\xa5\xef\x26\x25\x42\x94\xe3\xb3\x3d\x92\x94\xe6\x3d\x10\xda\x55\x19\xec\x50\x9f\xe2\xe0\x4b\x87\x9d\x88\x36\x2b\x6f\xee\xb9\x03\x17\xa0\xd0\xe6\x09\x91\x3e\x3d\xdc\x71\xfa\x6d\xb3\x00\xdc\xee\x96\xd3\x74\xe0\x9a\x5b\x73\x3a\x1b\x27\x9c\x22\x64\x2d\xf2\xfe\x23\xec\x1e\x11\x35\x6b\xfb\x7d\xb0\xdf\x6f\xec\x35\xaa\xf0\xd2\x08\xca\x99\x6f\x52\x52\xbb\xec\xe2\x43\x16\xe6\xea\x3c\x86\x9c\x1a\x3b\xaa\x70\x36\x2c\xe3\x32\xa1\xc4\x9a\xe7\xd9\x5d\x41\x73\x0b\x67\x43\xf1\x08\x44\xc2\x90\xa6\x5b\x02\x6e\x87\xfc\x7c\xb1\x65\x88\x9e\x0d\x85\xdf\x44\x1e\x2b\x42\x3a\x51\xe4\x85\xb2\x94\x3c\xb0\xb2\x61\x28\xfd\x2b\xc0\x7b\x96\x06\x94\x3f\x44\x11\xfc\x72\x6f\x13\xb5\x32\xc2\x7f\x47\x92\x28\xcf\x0c\x90\x4c\x57\x71\x09\x0f\xeb\x9c\xae\x69\x5a\xaf\x57\xa4\xdd\xa4\x41\xbd\xae\x44\x55\xd1\xa6\xb1\xa6\x33\xd6\xd1\x79\x9c\x86\x71\xba\xa8\xe5\xb7\x36\xd9\x75\x9e\x05\xb4\x28\x64\x61\x79\x44\x2b\x5f\x92\x16\x00\x30\xb8\x0b\x3b\x6e\x9f\x5f\x58\x90\xb7\x0c\xe3\xfc\x79\x8d\x40\xd1\x03\x4d\x6c\x56\x7e\xf1\xa5\xc3\x93\x80\xf3\x94\x61\x8c\xb4\x1a\x3e\x3f\xe5\x56\xc3\x4e\x4d\x72\x47\x1f\x23\x22\x06\x2e\x4e\x89\xb5\x2c\xcb\x75\xe1\xbd\x78\x91\x53\x3f\x28\xff\x56\x0c\xb3\x7c\xf1\x22\xcc\x82\xe2\x05\x70\x24\x83\x90\x06\x59\x48\xf3\xe1\xb2\x5c\x25\x93\x38\xdd\xfa\x79\xec\xa7\x25\xb1\x8e\x69\x9d\xf0\x38\x26\x56\xdf\xcf\x17\xc5\x74\xc6\xf2\x52\xf6\xd1\x0f\x1f\xdf\x2a\xfb\x35\xdb\x20\x4a\x8e\xdd\x19\x1a\x1f\xd5\x47\xc5\x4e\x57\x11\x2b\x86\x53\x1b\x9c\xe5\x53\x9e\x17\x65\x0c\xdb\x12\x51\x22\xc0\xfa\x2e\x4e\xe3\x28\xa6\x61\x8f\xde\x07\x94\x3b\x0d\xcd\x82\x60\x93\xe7\x34\x1c\x43\x34\xb1\x72\x49\x7b\x69\x96\x0e\x56\xb2\x60\x48\xb7\x3d\x9a\x6e\xe3\x3c\x4b\x59\x57\x7a\x51\x96\x43\xa1\x68\x93\x24\x3d\x18\x6e\x6f\x45\x8b\xc2\x5f\x50\xf0\x2e\xea\x87\x21\xb8\x8f\xf1\x93\xde\x92\x26\xeb\x68\x93\xf4\xee\xfc\x3c\x8d\xd3\x45\x31\xb4\x8c\xeb\xda\x82\x4c\x8d\xfe\xcf\x70\x42\x9c\xb1\x2d\xbb\x59\xea\xb0\xc8\xbf\x29\xcc\x18\xc8\x6a\x8a\x8b\x69\x72\x7c\x3c\xab\x20\xc0\xbe\xbf\xa2\xc4\x7a\x2b\xa1\xdc\xfb\x8f\x38\x4b\xc0\x3e\xd6\xaa\xc4\xa5\xf6\x30\xca\xfd\x15\x2d\x3e\x65\x1f\xb2\x35\x71\x31\xad\x2a\xfb\xc8\xc5\x1a\x16\x1f\xd9\x2c\x8a\xb1\xfc\x9b\x75\x4c\x8f\xad\x71\x6f\x1b\x17\x71\xd9\xfb\x4d\x51\x1f\xaf\x1c\x69\x96\x3f\x1f\x58\x1a\x50\xc5\x93\x10\xea\x59\x38\xe5\xcc\xb8\xdf\x79\x0c\x73\x72\xad\xdf\x17\xdc\x47\x94\xe5\x10\x58\x43\xbf\xda\x16\xa0\xe4\x70\x0d\x36\xf6\x16\xf2\xce\x1d\xd7\x39\x87\x40\x1b\xed\x42\x51\xee\x2f\xb8\x1f\x20\x28\x76\x01\xe1\x37\xda\xc5\xf8\xaa\xf9\xbc\xca\x42\x2a\x4a\x5e\xe2\xa0\xbb\xd5\x3c\x8b\xe2\x84\xe6\xbc\x98\x7b\x8a\xa3\x43\xc5\xc0\x9c\x51\xd4\x76\x85\xc3\xce\x62\xc2\x16\x52\x54\xe6\xe0\xf5\xa1\x52\x80\xbf\xa9\xd9\x43\xd7\xc5\xcb\xee\x21\x67\xf9\x9d\x9f\x87\x9f\x73\x1a\x89\x92\x23\xfc\xd0\x3d\xea\x4d\xb1\xa6\x69\x21\x2b\x3c\xc1\xdb\xce\x62\x2b\xba\xca\x44\x91\x33\xbc\xea\x2c\x92\xf8\x3f\x3d\x88\x22\xe7\x63\x53\x63\x80\x53\x9f\xc0\xa7\x2b\x37\xc7\x10\x73\xfd\xe0\x8d\x87\xe9\xd2\x61\x9d\xf8\x0f\xef\xfd\x15\xdd\xef\xb9\x2f\xe1\xfd\x5e\x7d\xdb\x0a\x23\x62\x78\x51\x16\xaa\x06\x54\xf8\xfb\x5f\x7b\x62\x67\x7e\xa5\xe0\xf8\x8e\x81\x91\x7b\xf5\x2f\x64\xee\x1b\x89\x2a\x3c\x7d\x23\xd3\xb9\x2f\x07\x91\x1a\xa8\x54\x89\x07\x3c\x3d\x91\xe9\xb7\x80\x49\x46\xfd\x0f\x2a\x47\x42\x1b\x22\xd0\xb5\xaf\xab\x90\xec\xf6\xf0\x9b\x6f\x78\x9a\xe8\x7f\x68\xf4\x1f\xcc\xef\x5f\x65\x69\xb1\x59\xa9\xb6\xa3\x66\xbe\xb4\xa5\x15\xf9\x4b\x4f\x5e\xfd\x73\xdb\x63\x65\xfe\xc9\x0d\xfe\x35\x90\x4b\x01\x64\xcb\xc2\x0d\xf0\xdb\x10\x53\xb6\x9c\x58\x6f\x38\x72\x7d\xa4\x91\x0d\x41\x4d\x91\xe5\x19\x69\x16\xe2\x2d\x6e\x45\x8f\x18\x06\x80\x7e\x80\x48\x5f\x79\xb0\x79\xbb\x5a\xbd\x62\x53\x4c\xe8\xf0\x73\x4e\x8b\x4d\x52\x82\xf3\x0d\xa4\xbf\x44\xb5\x20\xcf\xdc\x0d\x6c\x36\xfc\xfc\xf9\xf6\xfa\xd5\xc7\xeb\x4f\x9f\xdf\xbe\xff\x74\xfd\xf1\xfd\xcb\xef\x6f\x3f\xbf\xbe\xf9\xfc\xfe\xe6\xd3\xe7\x1f\x6e\xaf\x3f\xdf\x7c\xfc\xfc\xd7\x9b\x1f\x3e\xff\xf9\xed\xf7\xdf\x7f\xfe\xfd\xf5\xe7\x37\x6f\x3f\x5e\xbf\xc6\x77\x35\xae\xec\xa6\xa5\x72\xb7\xa7\xc3\xcf\xe5\x32\xa7\x7e\xf8\x2a\xdb\xa4\xe5\x38\xfd\x96\x94\x40\x9d\x41\x20\x5a\x3a\xfc\x2c\xb0\xe6\x3f\x18\xcf\x38\xc2\xf5\xd2\x24\x3d\x76\x2b\x59\xd9\x35\xd0\x89\x3f\xc4\x69\xe9\x9e\x73\x6a\xd1\x3d\x47\xf8\x96\x38\x63\xf7\xec\xbb\xdb\xf1\xed\xf1\x31\xba\x9e\xde\xce\xc8\xed\xb1\x3b\xbe\x9e\xba\x67\x33\xc2\xd5\x28\x3f\x91\x17\xff\x35\xf5\x5e\x0e\xfe\xf3\xb3\x3f\xf8\xe9\xc7\x8d\xe3\xbc\x72\x06\xec\xe7\xf5\x39\xfc\xbd\x84\x97\x37\xf0\xf2\x06\x5e\x46\x6f\xde\xfc\xb8\x71\x4e\x2e\xa0\xd8\xc9\xc5\x6b\xf8\xfb\x66\xf0\xe3\xc6\x7d\xc3\x72\x46\x8e\xf3\x6a\x00\x3f\xaf\xd9\x5f\x28\x36\x72\x2f\x59\xce\x2b\x07\x5e\xde\x5c\xbf\xf9\x71\x73\xe2\x38\xee\xe0\xc7\xcd\xeb\x0b\xf6\xcd\x9b\x2b\xc8\x79\xf3\xfa\x15\x7b\x79\xfd\x06\x5e\xde\xbc\x79\x3d\xfb\x9f\xda\xb1\x1f\x07\x43\x67\x70\xc5\x9a\xfe\xfd\x05\x6b\xc6\xe1\x6d\x9e\x43\x33\x27\x6f\xa0\x99\x53\x67\xf6\xbb\x6f\x5e\xe0\x0f\xd2\x28\x5b\xd3\xcb\x4b\xbf\xb8\xb9\x4b\xa5\x9c\x00\xbf\x63\x64\xec\x97\x1a\xa2\xfc\x4d\x93\x8e\x47\x47\x1f\x38\xa3\xf1\x05\x53\xb4\xdf\xcb\xb7\x77\x98\xa2\x7e\xdf\xfe\xc4\xe3\x11\x53\x34\xf9\x32\xa5\x33\x72\xe4\x78\xf6\x3b\xfe\x80\x8f\x5c\x93\xa7\xbb\xd7\x11\x34\xd5\xb6\x48\xca\xfd\xde\x70\x28\x66\x88\x60\xf6\xfb\x26\x2d\xa4\x3e\xe3\x7e\x35\x20\x78\x3f\x5f\x5f\xa2\x9b\xae\x52\xb3\x92\x17\xf4\x5c\xdb\x4a\xed\xb4\x3c\x4e\x26\x97\x7a\x58\x62\x95\x1e\x39\x5c\x83\x6a\xce\x35\x20\x55\x72\xde\xef\xab\xc6\x26\x47\xe9\xd0\x0f\x18\x3d\x55\x08\x45\xc9\xc2\xb3\x42\xbf\xf4\x07\x6c\x63\xb0\x29\xa1\xf5\x00\x44\x2a\xf6\xea\x19\x42\xfd\xbe\xc5\xe8\x16\x28\x49\x91\x8a\x91\x22\xbb\x0c\x6e\xbb\xf9\xf0\x90\xea\x10\x88\x66\xd5\xa0\x8c\x51\xcb\x5d\x52\x8c\x9b\xef\x90\x27\xb2\xb2\x92\xef\x33\xa7\xaa\x72\x06\x4e\x9e\x76\x26\xf7\x24\x1e\x15\xbb\x14\x5b\xd2\x79\x33\x79\xbf\x77\xbf\x93\x3a\x08\x47\xae\x9e\xbb\xcf\xa6\x13\x62\xce\x49\xd5\xe1\x41\x46\x7c\x32\x4f\xf8\xcf\x29\xfb\x11\x2c\x97\x74\x4d\xc8\x36\x53\x92\x77\x24\x42\xf4\x5b\x92\x09\x77\x44\x9b\xa2\xfc\xa1\x50\x22\x2c\x92\x6a\x1f\x56\xec\x1d\x2a\x11\x8c\x2c\x83\x01\x29\x61\x6f\x7c\xcf\x70\xd7\x92\x2e\x23\x7a\xa1\x9f\x2e\x68\x9e\x6d\x8a\xe4\xe1\x96\x96\x6f\x21\x2e\xe9\xa7\x77\xdf\xf7\x64\xd8\x78\xb6\x95\xc9\x97\x57\x4b\x1a\x7c\x01\x07\xf9\xb2\x14\xe3\x42\x72\x5a\x14\x70\xa2\xa4\xe5\x75\xc8\xf5\x86\xff\xcc\x89\x38\x95\xfd\xc7\x87\x90\xfb\x69\x51\x19\xe0\xa0\x51\x06\xc8\xe8\x59\xdd\xbe\xa6\xdf\xb3\xc5\xc1\x36\x4a\x06\x53\xb6\x46\x30\xc5\xb0\xf7\x57\x08\x4f\xa7\x16\x87\xeb\xab\xa5\x9f\x17\x14\x62\x53\xc3\xfb\x20\x10\x09\x33\x3c\xb5\x40\x1f\x98\x01\xc2\xc2\xfc\x19\x52\x19\x2f\xf2\x26\xcb\x2d\x6c\x45\x59\x2e\x52\xca\xf5\xf5\xdf\x37\xf1\xd6\xc2\xf0\x3c\xa0\xf0\x32\x9b\x3d\x12\x21\x8f\x4e\x9d\xd9\xf8\xfd\xb4\x94\x5d\x2c\xb1\x0b\x5d\x84\xc8\xd1\xb2\x97\x56\x50\x87\x8c\x85\xad\x30\xf7\x17\x0b\xf1\x5c\xac\x69\x92\x00\x58\x2d\xa9\x84\xdd\xdd\x64\x0d\x14\x23\x68\xa7\x11\xc9\x4b\x37\xe9\x6f\xca\xec\x23\x0f\x3e\x6d\x61\x10\x67\xe6\xa9\x9f\x7c\xa4\x45\xb6\xc9\x03\x5a\x7c\x14\x31\xc3\x61\xf8\xc1\xa6\x10\x5d\x61\x13\x45\x73\xc6\x5f\xaf\x97\xfe\xf3\x7b\xa1\xda\xb5\xfc\x24\xc9\xee\xde\x6c\x92\xe4\x36\xc8\x29\x4d\x7b\x7e\xf1\x90\x06\x3d\xd6\x99\x37\xac\x19\x78\xfa\x90\xf8\x0f\x3d\x06\x92\x3c\x4b\x0a\x89\x56\xec\x97\xe6\x3d\xe1\xda\x27\x64\x9c\xc2\xea\x7d\xf6\x1f\x7e\x12\x87\x7e\x49\x7b\xcb\x38\x0c\x69\xda\x4b\xb2\x6c\xdd\x4b\x33\xae\x36\xdf\x4b\x75\x7e\xb6\xa6\x69\x8f\x91\x20\xc5\xdb\x34\x89\x53\xda\x63\x47\xee\x4d\x9a\x3c\xe8\xe8\xe8\x22\x14\x77\xd8\x2b\x82\x6c\xcd\x7e\xa8\xbf\x4a\x68\x51\xf4\xe2\x92\xae\x6e\x59\xda\xd7\xe1\xe2\xc9\xe3\x13\x10\xf0\x75\x62\x61\x6b\xb5\x49\xca\x78\x0d\xf0\x5d\x6d\x4a\x48\x2a\x20\x4a\x1d\x0d\x9f\x03\xe2\x13\x7c\xe4\x98\x38\x6f\x05\xfe\xba\xdc\xe4\x80\x45\xd9\x5d\x9a\x64\xfe\xb3\xaa\x39\x6d\x2c\x1d\x2b\xc8\x92\xc2\xc2\x56\x9e\xdd\xb1\x9f\x22\xfe\x89\xe3\xa2\x9f\x3e\xa7\xb6\xf3\x66\x6d\x79\x76\x77\xcb\xbe\xc5\x22\x44\xd0\x33\xea\x38\x7b\x04\x80\x40\xe8\xbc\x26\x2f\xa6\x3f\x0e\xbc\x99\x3d\xf5\x07\x3f\xcd\xd0\x8b\x85\x3e\x6e\x5f\x99\xf7\x8d\x53\x77\x36\x2c\xb3\x1f\xd6\x6b\x59\x4b\x05\xdb\x40\x5a\x0e\x78\x84\x84\x9e\x9f\xc4\x0b\x60\x40\x07\x73\xbf\xa0\x80\x1f\x7e\xee\xcf\xe3\x60\xc0\xd0\xac\x27\x13\x07\x10\x40\xb8\x17\xf8\x6b\xf9\x61\x90\xc4\xeb\xc1\xda\x2f\x97\xfc\x29\x67\x58\x17\x64\x49\x96\x0f\xe2\xb4\xa4\xf9\x5a\x70\xd6\x5d\x69\x03\xae\xa6\x53\x88\x3c\xc1\x0a\x8a\x37\x4e\x5b\xb3\x4d\x30\xcc\x56\x71\xea\x9b\x3d\xe3\x0e\x53\x07\x73\x3f\xf8\xb2\x80\x28\x18\xbd\x28\x4e\x92\x41\xb6\xf6\x83\xb8\x7c\xe0\x2f\xd0\x91\x28\xc9\xb2\x70\x00\x15\x8a\x67\x55\x26\x4b\xcb\x41\xe4\xaf\xe2\x44\x3c\xb3\xd9\xd5\x4f\x03\x3f\xfc\xdb\xa6\x28\x45\x42\x99\xd3\x32\x58\xca\x97\x87\x44\x14\x94\xe2\x03\x78\xb9\xe3\xe0\x58\x24\x0f\xeb\xe5\x80\xd1\xfd\xe2\x31\xcb\x63\x9a\x96\x7c\xbc\xcb\x2c\x8f\x7f\xca\xd2\xd2\x4f\x3a\x32\xb7\x34\x2f\xe3\x80\xb1\xf8\xac\xd4\xc0\x0f\xb7\x83\x7b\xf1\xcc\x1d\x2d\x0f\xee\x7b\xf1\xca\x5f\x50\x03\x34\x09\x2d\x4b\x9a\x0f\xd8\x71\x07\xaf\xac\x0b\x71\xba\x10\x23\x5e\xf9\xf9\x17\x9a\x0f\x68\x1a\xca\xc7\x55\xac\x1e\x01\x07\x7b\xd9\x96\xe6\x30\xaf\xd2\x87\xaf\x4e\x29\x97\x71\xf0\x25\x65\xab\x7f\xed\xc7\x69\x39\x00\xdf\xe3\xbd\xb5\x9f\x66\x05\x1d\xb8\xbd\x75\x06\x73\x39\xe0\x8e\x67\x7b\xaa\x4f\x30\xc5\x69\xd9\x2b\x96\xfe\xda\xec\x6a\x51\x66\x6b\xd1\x2f\x78\x94\x13\xc1\x18\xcf\x2f\xb4\x5c\xe6\xd9\x66\xb1\xd4\xdd\xa8\x27\xeb\xbe\x14\x65\x9e\x7d\xa1\x83\xd0\x2f\x96\x20\x79\x35\x13\xb8\x13\x68\x99\xc2\x06\x11\xf8\x6b\xf3\xf5\x6f\x59\x9c\xca\xf7\x55\x5c\xb2\x81\xae\x62\xf5\x81\xd1\x23\xf6\x0a\x81\x3e\x7a\x8c\x01\x1c\xf8\x69\xb0\xcc\x72\xfe\x1c\xd2\x20\xe3\x87\x34\x7f\xd7\x23\x64\x44\x67\x03\x98\x3a\x49\x8f\x60\x93\xc6\x41\x16\xd2\xc1\x3c\x0e\x63\xf5\x92\x33\xf2\x82\xbd\x95\xc5\x60\xcd\xa0\xba\xea\x6d\x07\x3e\x3b\x62\xe6\xb4\x8c\x83\xde\x76\xb0\xf4\xd3\x05\x6b\x65\x3b\x88\x43\x9a\x2d\x72\x7f\xbd\x84\xf4\x95\x5f\x2e\xe9\xca\xe7\xa8\xb3\x85\xc0\x9e\x03\x1a\x45\x34\x28\x7b\x0c\xa3\x00\x8f\x1e\xf8\xa3\x42\x23\xf3\xed\xa1\x77\x97\xe5\xa1\x42\xa1\xbb\x3c\x06\x0c\x5a\x65\x21\xed\xdd\xaf\x92\xb4\xf0\xee\x93\x38\xfd\xd2\xbb\x17\x0b\xfe\xc9\x13\x40\x33\xc7\x5c\x1e\xf7\x1a\xbf\x42\x5d\xe7\xbf\x3e\x11\xa1\x01\xcf\x0f\xca\x0d\x3b\xa7\xc4\x5b\x1e\xe4\x59\x22\xdf\x96\x39\x8d\xc4\xa3\x91\x5a\x2c\xb3\x3b\xf1\x08\xb2\x77\xf9\xfc\xf0\x8c\x73\xea\xd9\xbd\x04\x3a\xc7\x7b\xf1\xe2\xee\xee\x6e\x78\x77\x02\x62\x5b\xf7\xea\xea\xea\x05\xb4\x65\xf1\x9d\xfd\x7e\x95\x78\x6c\x73\xb2\x30\x3c\x26\x7e\xba\x10\x8f\x40\x88\x1e\xd8\xe9\xff\x91\x2e\xfc\xe5\xdd\xf7\xac\x1b\x97\x2f\x52\x49\xed\x42\x57\xde\x0f\x4b\x7f\xfe\x36\x0d\xe9\xbd\xa8\xc3\x92\xef\x16\xaf\x8c\xbd\xc7\xfc\x1d\xc0\x0f\x87\xc8\x47\xf2\x62\x6a\xfd\xb6\xff\xed\x77\xb3\x17\xfa\xf8\x78\x29\x3d\x65\x49\x36\xc6\x10\xad\xec\xf7\x56\xba\x59\xcd\x69\xde\x21\x2f\xb2\xac\x63\x3a\xa6\x04\x7e\xf8\x08\x3f\x0e\xe9\x3d\x0d\xc4\xe5\x96\xbe\xe6\x85\x5b\x0f\xc2\x6f\xdf\x52\x22\xe2\x2a\x8d\xd3\x6f\x69\xcd\x5a\x4f\x09\x71\x18\xb9\xfa\x2a\x0b\xe9\xcb\xd2\x4e\x91\xe4\x53\x4e\xbd\x92\x58\xfd\xbf\x6f\xb2\x72\x6c\x99\xa1\x25\x4f\x2e\x21\xc3\x5f\xad\x1b\xe9\x57\x90\xfe\x6f\xf7\xa3\x8b\x7a\xc6\xb9\x03\x19\x49\xa3\x9e\xf3\x11\x24\x2f\x74\xb2\xe4\xb6\x18\x71\x16\xa7\x1b\x5a\x65\xc2\x27\x63\x7e\x4c\x28\xe8\x9c\x80\x20\xcd\xce\x70\x8a\xe0\xa6\xe0\xd8\xc5\xf9\x31\x29\x2b\x4a\xa0\xe4\x24\x3f\x6e\x16\xf3\x72\x1d\x76\x8c\xc1\xe6\x2d\x39\x32\xee\x3e\xdf\x68\x66\x95\x41\x6a\xfc\x76\x8c\x58\x01\x9c\x12\x6e\x19\xa8\xed\xc8\xd8\xb7\xdf\x13\x07\xff\x40\x76\x5c\x9a\x02\xd2\xab\x0e\xf5\xb3\xef\xe5\x37\x5c\x74\x83\xe9\xb4\x9c\x55\x15\xfe\x7f\x64\xc7\x28\x7e\xef\x20\xc6\xb3\x5c\x0b\xb3\x0d\xe7\x60\xa9\xcb\x17\xef\xfc\x72\x09\x7f\xde\x7d\x6f\xe1\x62\xbb\xe8\x2a\x38\x72\x1c\xe7\x45\xb1\x5d\x58\x86\x74\xe0\xcf\xac\x7f\x75\x49\xa3\xc5\x8a\x48\x61\xdc\x23\xb5\x70\x76\x9b\xf5\xeb\x91\xd2\xad\xce\x35\x18\xe7\xc7\x47\xcd\x6d\x66\xfe\x4e\x76\x7e\x4e\x7d\xef\xc8\xc1\x6c\xb9\xc3\x6f\xce\xfe\x06\x59\xc2\x7e\xe8\x6a\xce\xe3\x0f\x2d\x21\x35\x5e\x2d\xe0\x27\x5d\x6f\x4a\xf6\xf0\x85\x3e\x2c\x28\x84\x35\x82\x7d\xea\xc8\xc1\x2b\x5a\x42\x6d\x6b\x3f\xf7\x57\xec\x81\xf3\x1e\xec\xa9\xcc\xfd\x00\xca\xdc\x41\x13\x15\xfe\x2b\xc9\xed\xdd\x8a\xa6\x1b\x46\x8c\x43\xca\xdf\x11\xfe\x89\xec\x7c\x19\x3c\xe6\x6d\x29\xbc\x7c\x82\x1c\x0d\x3a\x07\x67\xf6\x5b\x46\x34\xdc\x6c\xca\x82\x36\x13\x6f\x93\x98\x37\x66\xa4\x41\xc0\x2b\x9e\x76\xff\x26\xa1\xf7\xc6\xe3\x1f\xf2\x6c\xb3\x16\xef\x37\x79\x18\xa7\x7e\xa2\x92\x82\x2c\xd9\xac\x74\xcb\xfc\xb5\x80\x58\x4c\xa2\x92\x88\xd7\x70\x27\x9f\x3f\xc0\x21\xb9\xa5\xf2\xfd\x76\x99\x0b\xa8\xb0\xb7\xf7\x74\xe1\x9b\xb9\x37\x10\xe6\xe9\xc8\xc1\x8b\x3c\x0e\x5f\x8a\x49\x60\xcf\x1f\x79\x8d\xe2\xf1\x3a\x0d\x8d\x37\x46\x6e\x9b\xaf\x8c\xe4\x91\xef\xaf\xa0\x87\xf5\x37\xe3\x6b\x9e\x60\x56\x20\x52\x64\x1d\x8c\xe8\xfb\x33\x9c\x88\x62\x42\xe9\xab\xc4\x5f\xad\xe5\xcb\x1f\x55\x96\x20\x2b\xe0\x51\x0e\x22\xcb\xd7\x4b\x9f\x83\xa7\xf4\xe7\xb7\xf1\x4f\x30\xce\xbb\x38\xcc\xee\x20\xf1\x27\xd8\xb3\xe1\x29\xcb\x00\x31\x18\x4d\x7b\xa3\x6b\x02\x62\xd6\x78\x67\x24\x55\xed\x95\x91\x30\xaf\x25\x91\x54\x4f\xe2\x64\x92\x4e\x7b\xa7\x28\x21\x9d\xd6\xaa\x4b\xa2\x45\x85\xff\x83\x4c\xad\x3f\xd3\xf9\x97\xb8\x64\xdc\x1a\x63\x8c\xde\x65\x3f\x59\xd8\xba\xb1\x66\x63\xd3\x55\xe3\x4f\xdd\x07\xef\x7f\x74\x06\xf1\x29\x49\x79\xcc\xf7\xf8\x97\xa5\xed\xa0\x3a\xaf\x52\xdb\x31\x5d\x84\x7f\x62\x67\xe4\x4f\x53\x3a\xab\x24\x1b\xf4\x7b\xf2\xc2\x9e\xbe\x1c\xfc\x27\xe3\x80\xf0\x1f\xc8\x8b\xff\x5a\x15\x83\x17\xf8\x1b\x92\x0d\x5f\x09\x01\xce\xb0\xcc\x40\x80\x8c\xff\x3f\xb2\x18\xc2\xed\xdd\x2b\x2e\x84\xbe\xb9\x4b\x69\x8e\xff\x42\x76\x49\x5c\x30\xca\x07\x96\x63\xce\x97\x20\xbd\x2f\xc5\x7a\xaf\xf0\x7f\x92\x17\xff\xc5\x98\x2c\xd6\x8a\xf8\xf5\x3e\xff\x38\xfc\x71\xf0\x63\x08\x22\xd1\x3f\x91\x5d\x85\xff\x28\x5d\x52\x53\xfa\xa4\x84\xb4\xa4\x64\x27\xc5\x4b\x20\xaa\xc7\x07\x64\x4c\x3c\xf3\x71\x11\x52\xbd\x4c\x53\x8e\xc4\xdd\x70\xeb\xbd\x36\x15\x66\xf2\xea\xba\x97\xf6\xfb\xb1\x6d\xb9\x67\x23\x0b\xcf\x41\x66\x67\xa9\x1b\x65\x53\xfd\x29\xa7\xf2\x6e\xdc\xd0\xa9\xca\xb0\xcf\x0f\x96\x0d\x69\xde\xa0\x4b\x33\x56\xc3\x45\xe9\xb8\xf3\xb2\x26\x57\xb6\x45\x4a\x45\xfe\x06\x2c\x52\x71\x3e\x4d\xc1\xf6\x9a\xd6\xab\x29\xf4\x85\x43\xd6\x8b\xd3\x1e\x44\x03\xa7\x28\x9d\x66\x33\x52\x4e\xb3\xd9\xb8\x24\x29\x57\xd9\x2f\xc9\x9d\xba\xa0\xa9\x6c\x1f\x3a\x86\x0b\x32\x9d\xe1\x84\x1d\xa3\x01\xd9\xc5\x05\x38\x28\xa6\x61\x5b\x2f\xee\xc8\xad\x30\x4d\xc1\xae\xf1\x8d\x76\x6c\xdf\x50\xed\x17\x72\xe7\xc2\xbc\x8f\x53\x9f\x7d\xe4\xc4\x5d\xd3\xc7\x29\x83\x7e\x42\xd8\xea\x22\xec\xf0\x95\xa5\x6f\xdb\xde\x50\x85\x99\x7f\x57\x23\xe3\x82\x6b\xb6\x94\xa8\xaa\x70\x64\x04\x4d\xf4\x35\xd6\xf5\xfb\xc6\xcb\x30\x2e\x38\xea\x2b\x77\xb7\xac\xea\x08\x68\x45\xdf\xce\x84\x2b\xeb\x0d\x0e\x10\xee\xba\x4c\xf4\x87\x0b\x5a\xbe\xa6\x79\xbc\xa5\x21\x74\xf3\x4d\x9e\xad\xc0\x51\x3b\x9f\xea\x90\x1c\x2e\x61\xa8\x1d\xc9\x76\x22\x11\x5f\x6a\xcc\xa7\x3e\xec\xf7\x6d\x91\xc4\x4e\xba\x4a\xe6\x63\x08\x19\xc0\xcd\x2f\x58\x67\x1b\x1d\xe5\x80\xb1\x23\xf2\xc6\xf6\x75\xd5\x78\x83\x10\xbf\xdd\x24\x24\x12\xf7\x74\xc8\xb4\xa2\x67\x4b\x80\x44\xd8\x07\xa2\x34\xe2\x9f\x11\xdd\x33\x81\x6a\x64\x83\x23\x11\xf7\x2a\x27\x81\x56\x8f\xb0\x03\x22\x7b\x6f\xf4\x3a\x00\xf5\xaf\x6e\xd8\x45\xc3\x1f\xde\xdf\xbe\x7c\x73\xfd\xb9\xe6\xc5\x19\x10\x6f\xbf\xef\xfe\xa0\x5d\x12\x1d\xb8\xe5\xed\x2a\xdb\xef\x77\x59\x17\x1c\x9e\xa0\x7e\xbf\xab\x16\xfb\xab\x47\xf3\x73\xda\x3d\x58\x99\x8d\x94\xae\x1f\xda\x05\xa4\x10\xee\xfe\xe1\xca\x5a\x28\xdb\xc1\x2a\x5e\xf7\xfb\x2e\x21\x24\x90\x65\xd5\x8c\x4c\x9d\x19\x57\x20\x09\xc9\x7a\xc2\xde\x3c\x91\x05\x35\x2d\xa5\xf6\xdf\x9a\xac\x27\xae\xe7\x8c\xd7\xdf\xca\x2a\xc6\x6b\xe9\x2b\xe4\x81\x04\xd3\xf5\x4c\x20\xa9\xfd\xd0\xa9\x64\xf1\x30\x79\xe0\x08\x1e\xe1\x50\x21\xe1\x06\x79\x0f\x0c\x3d\x96\x13\x7b\xc9\x3a\x19\x72\xb4\x0e\xf1\x03\x42\x5e\x6e\xc3\x6f\x25\x7b\x1a\x0a\x14\xe7\xa3\x82\x1b\x1a\xc0\x50\x81\xbb\x36\xc2\x3e\x63\x27\x84\x9e\x4e\xf7\x9c\x34\x1c\xd7\xf7\xfb\xad\x8d\xd6\xde\x10\xbf\xed\xc0\x1a\x29\xcd\xba\x2d\xdb\x4b\x33\xd2\xaa\xca\x46\x08\xb2\x36\xfb\x3d\x3b\x27\x9c\x4b\x76\x4e\xf8\xec\x9c\xf8\x21\xfd\x92\x66\x77\xa9\x85\xb7\x68\x9c\x81\x13\x0a\x18\x64\x89\x33\x36\x38\xc6\xb0\x64\xc3\xb8\x00\x21\xb4\x88\x9d\xc1\x18\x41\x79\x60\x50\x5c\x90\x0d\xdc\xba\x1c\x32\x87\x29\x10\xe7\xbb\x7c\x08\xee\x2f\x18\x25\x7e\x6e\x7a\x14\x8b\x65\xea\x95\x9c\x3e\xcf\x0e\x5a\xf5\x0a\x97\x02\xcf\xb7\xe6\x7d\x86\xbf\x94\xf6\xc8\x4a\x34\x29\x61\x34\x47\x84\x14\x93\x92\x6d\xed\x9e\x5d\x92\xb2\xe1\x7f\x1c\x97\xa4\xeb\x53\x56\xfa\x1b\xbb\x44\xc8\x2b\xc9\x37\xe0\x67\x9b\x70\xdb\x7d\x4e\x1c\x64\x2b\x75\xb3\xe5\xfd\x3f\xd0\x13\xc3\x8a\x7c\x28\xf9\x23\xa7\x1a\x1d\x05\x96\x3b\x1c\x65\x59\x49\x73\xcf\xb2\x2a\xa1\xc1\x76\xcd\x56\x44\x1c\xd9\x6c\x17\xcb\xa5\x51\xdc\x35\xde\x90\xd1\xef\xec\x9c\xf8\x72\x01\x8d\xcf\xcf\xce\x4e\xce\xbf\x23\x7c\xc2\x4f\x9c\x53\x61\xeb\x91\xb4\x2e\xe4\x37\x3c\x7e\x50\x32\x2c\x68\x69\xfb\x08\xdb\xd7\x24\x41\x53\x67\x46\xf2\x63\x17\xfb\x24\x1f\xfb\xdf\x6e\x06\xee\xd8\x87\xab\x7a\x7f\x46\x7c\xb8\xaa\xdf\x0c\xdc\x19\x71\x38\xca\xb3\x2e\x91\xeb\x69\x3e\xe3\xc6\xcb\x5c\x17\xe0\xed\x6b\x79\xb1\x57\x94\x7e\xf0\x85\x81\x92\xbf\xd2\xfb\xa5\xbf\x29\x20\xa6\x9a\xcb\x53\x84\x36\xc1\x2d\x5c\x18\xc0\x45\x1c\xd1\xea\x99\xeb\x9c\x6e\xe3\x6c\x53\xfc\xd9\x2f\x3e\xd1\x7b\x1e\xad\x45\x7e\xb8\xf2\xbf\xc0\xc1\x1c\x07\xef\xfc\xfc\xcb\x66\x2d\x6f\x06\xa5\x1e\xcf\x6b\xba\x2e\x97\x44\xb8\x32\x10\x30\xe5\xc2\x95\x81\x5b\x4b\xbc\xe5\x5d\x9c\xd5\x12\xa1\x27\x32\x47\x71\xf8\xc6\x61\x2c\x22\xbc\x91\x86\x01\x40\x7d\x94\xe2\x6e\xd4\x18\x35\xd7\x70\x10\x31\x5c\x24\xb0\xc6\xd7\x53\x3a\x83\xc9\xc5\x00\x4e\x5a\x55\xd8\x6c\x8b\xd1\x09\x52\x8d\xa5\x43\x1b\xf7\xf8\xb8\x35\x46\x88\x79\x0b\xdf\x7e\x96\xb1\x01\xf2\x46\x9b\x37\x60\x6c\x2d\x4c\x01\x53\x35\x81\x26\x50\x40\x9a\x75\x00\x2c\x2c\x2f\xc3\x60\x4a\x21\x63\x30\xc0\xd5\x5e\xa3\xe7\xd9\xba\xdd\xf1\x5a\x1c\x9b\x5a\xaf\x4b\xd2\xee\x03\x9d\xe1\x94\x1c\xe8\x03\xed\xea\x34\x9d\x19\x18\xd4\xf5\x4d\x3b\x1b\x5a\x1f\x0c\x70\x39\xad\xc1\x68\x46\xd2\xfa\x70\x58\x32\x69\xe8\x86\x37\x66\xdc\xa4\xf0\xa4\xc0\xe6\xfb\x06\xe8\xb9\xa6\xcd\xff\x27\x71\xff\x75\x5c\xac\xfd\x32\x58\xd2\x7c\xdc\x91\x46\x7e\xa8\x59\x25\xe5\x64\x6a\x59\x33\x30\x5b\x1a\xe7\x53\x67\x26\xd6\xfc\xb7\x74\x0c\xbd\x71\xa4\x37\x05\x58\x78\xea\xf4\xed\x46\x43\xbf\x85\x86\xbe\x89\x86\x3e\x97\x9a\x55\x7c\xb7\xd7\xb5\x4e\x5b\x0d\x0c\x5c\xd8\x96\xb2\xfd\x7e\x33\xd4\x7b\xd9\x77\x64\xa3\x76\x4d\xd5\x13\xe1\xd9\x69\xc8\xf7\x36\x38\x38\xd8\x81\x51\xa8\x30\x86\x9d\x4b\x1e\x19\xbb\x09\x43\x2a\x46\xd9\xf0\x3b\x46\x1e\xfa\x1b\xd4\x1f\x1e\xdb\x4f\xc6\x92\x04\xe5\x94\x00\xff\x42\xf2\x2d\xfc\x4d\x24\x19\x2f\x4a\xf7\x8c\x10\x12\xf1\xea\x0d\x84\xb6\x45\xb3\xaa\x6a\xfe\x4e\x08\x79\x90\x91\xc7\xcc\xad\x68\x30\x10\x7b\x70\xce\x07\x00\x00\x03\x93\x2f\x17\x32\x02\x06\x14\x3f\x49\xe6\x7e\xf0\x05\x22\x09\x8f\x03\xb1\x7d\x9f\x58\xf5\xe1\x33\xae\x21\x40\x63\x25\xc4\xcc\xa7\xed\xd6\x66\xc7\x24\x39\x94\x51\x54\x4a\x2b\x37\x34\xa6\x68\x6a\xce\xdd\xf1\xf1\x0c\xaf\x89\x65\x01\xee\xad\x8f\xf9\xec\x0b\x6a\x26\xc4\x1b\x15\x71\x64\x33\x34\x8f\x36\x69\x92\xb0\x94\x0a\xde\xcb\x2a\x97\x08\x4a\xda\x7d\xe9\xf7\x73\x3e\x1a\xcb\x62\xbc\x62\x67\x67\xd7\xca\xf3\x1a\xc3\x76\x65\xf3\xd6\xb5\x50\x52\xfc\x3d\x29\xab\xe6\x8a\x4d\xeb\x9b\xa6\x76\x50\xd4\x56\x9a\x7c\x5c\x32\xce\x38\x87\x14\x44\xe3\x68\x62\x59\x5e\xe7\x21\x34\x79\x69\xa7\x22\x26\x4a\x07\x22\x4f\xac\x1f\xef\x4f\x82\xa3\xc1\xa0\x37\x18\xfc\x78\x7f\x42\xad\x63\x28\xfe\x08\xe2\x3b\x98\x95\x40\x9c\x87\x66\xe4\x19\xe7\xe1\x6b\xcb\x16\x21\x3e\x6f\x6c\xf7\x54\xf3\x22\x38\x4e\xf0\x85\x47\xb4\xba\xa9\x65\x8d\xc1\x9c\xbd\x4d\xd5\x19\xda\x54\x6a\x5d\x98\xca\x97\x7c\xbf\xd0\x29\x63\x9f\x2d\x3c\x90\x3c\x8c\xce\x2e\x2c\x84\xe1\xe1\xd2\xc2\xfe\xb0\xcc\x6e\xb9\xb4\x07\x29\xa5\x45\x4a\xbe\xb1\x69\x1b\x8b\x0f\x51\x48\xa9\x26\x8e\x68\x37\x71\x54\x1a\xc4\x11\xc2\x16\x57\x23\x6d\xce\xa8\xed\x8b\x53\x50\xd9\x3b\x1a\x68\xfc\xfa\xe6\x9d\x74\xb9\x24\x04\xd7\xbe\xb8\x98\x48\x3c\xa1\x29\x2b\x94\x5c\x6b\x9a\xb1\x7c\x28\x0d\x9a\xf0\x97\x1c\x99\x54\x9c\x65\xf0\xbd\x3a\xb5\x50\xb7\xc2\xac\xaf\x64\x30\xbe\x54\x0a\xf3\x9b\xaa\xb3\x5c\xf5\x75\x4e\x7c\xb9\x90\xc5\x30\x30\x5b\x26\x91\xba\x8b\x98\x33\x66\x5c\x14\xc1\xb2\xc8\x5c\x14\xc2\x73\xf2\x8d\x3d\xff\x59\xe3\x9d\x7f\xcd\x78\xb7\x1a\xdc\xd3\x4c\xc4\xa9\x93\xc8\xea\x73\x2f\x5b\xb9\xbd\xcb\x69\xe4\x41\xbf\x2a\xd9\x51\x84\x66\xbf\xf8\x5c\x48\x15\xe3\x5e\x2a\x48\x7c\x7a\xb0\x5e\xbf\x13\x59\x9e\x6c\x4b\x50\xbf\x06\xd9\xd7\xb5\x7a\x52\xdd\xa5\xd0\x93\xa8\x8e\xe7\x92\x1e\x1b\x73\x25\xe1\xfa\x11\xaf\xe4\x73\x3e\x5e\x20\xcc\xba\x37\x57\x1d\xb3\xfd\xe9\x62\x86\x0e\xcd\xed\x23\x83\xfc\x1a\xe0\xad\x38\x22\x9f\x31\x44\xb6\x2d\xf7\xc4\xb1\xc4\x5e\xe5\x4f\x7c\x4f\x22\x33\xb6\x2c\xd4\xb5\x8f\xbf\xbe\x79\xd7\x29\xa6\x94\x83\xaf\xeb\xda\x8c\x53\x42\x08\x67\xb6\xfa\xfd\x3f\x33\xf6\xe6\x4f\x0d\x31\x2e\x70\xc1\xf6\x7f\x72\x8d\x55\xf6\x1c\xdb\xd6\xf9\x99\xc5\xb8\xf5\x3f\x31\x5a\xe8\xc8\xe1\x04\xf2\x46\xc1\x94\x2d\x3e\xb8\x12\x62\x6b\xcf\x47\x1b\xc6\x30\x03\x78\x44\x48\x20\xbc\xc1\xbb\xba\x22\xa1\xc8\xc1\xa6\xae\xa1\x4c\x13\x5e\xdd\x04\x11\x02\x6f\x13\xf1\xeb\xa9\xd0\x7e\xf0\x05\x16\xea\x56\xaa\xb0\x78\x9f\xa8\x27\xfd\x81\x68\xb8\xd2\x94\x89\x25\x85\xe1\xbc\xd7\x8a\x08\x53\xc6\xe9\x7c\x0a\x0a\xb4\x63\xa9\x66\xbb\x82\x66\xd1\x54\x82\x10\xa5\x24\x4a\x1d\xb6\x80\x33\xe0\x6a\x64\x21\x5c\xb7\x32\x4f\x50\xbf\x6f\xbb\xdf\x19\xa6\x7a\xac\xdc\x09\x78\xf2\x4c\xa6\xce\x0c\xe1\x82\x9d\xa6\x89\x94\x02\x32\x12\x90\xa5\xa0\x6a\xc3\xc5\x10\x1b\x69\x98\x2c\xa0\xa5\x10\xce\xb2\x8e\x8b\x0a\x29\xa9\xa2\x41\x09\xfa\x8f\x12\x81\x4f\x02\xb9\xbb\x61\x13\x90\x3c\xf0\xb2\x00\x63\x42\x0e\xb4\x26\x08\xba\x06\xa7\xa0\x05\xf6\x52\xb8\x49\x0c\x3b\x0d\xce\x2c\x58\xd6\x58\xf9\x40\x50\xb7\x1f\xf2\xce\x85\xd6\xec\x52\xd5\x61\x6d\x97\xc7\x84\x07\xfa\xaf\x6c\x3d\x51\x48\x2b\x0a\x27\x7c\xc6\xa3\x6e\x20\x1c\x5b\x96\x17\x70\x99\xdc\x91\xdb\x9a\x43\x2d\xaa\x0f\x89\x33\x0e\xbf\x55\x46\xb6\xe1\xf1\x31\x48\x34\xad\xe3\x64\x1a\xce\x80\x42\xde\x15\x8c\xb3\xe0\x4c\x83\x14\x88\xb1\x7c\x96\x39\x06\xd8\x4a\xbd\xc0\xd6\x94\x1a\xcb\x47\x95\x29\x74\x76\x50\xa1\x0a\x04\x52\x77\xbd\x38\xb5\x0b\xb2\x61\xb8\xf5\xd7\xa9\x3f\xd3\x68\xa8\x06\xce\x81\xcb\x52\x0e\x5c\xc9\x20\x7e\x5f\x72\x72\x61\x61\xd8\x69\xf0\x13\xe5\x3b\xda\x80\x1a\xce\x1d\x0b\xe1\xf6\x51\xfc\x48\x3d\xd6\xe7\xcf\x70\x21\x1d\xa7\x87\x4b\xf1\x4d\xc8\xb5\x90\xee\x17\x68\xad\x69\x81\xa0\x21\x5f\x93\x59\xec\x93\x91\xc5\x06\xc3\x56\xd5\x06\x0b\xcc\x6c\x92\xa7\x38\x00\x73\x93\x16\xff\x86\x23\x62\x7d\x6b\x1d\x8b\x13\xa4\x00\x0f\x05\x94\xcb\x44\x0b\x7c\x87\x38\xfa\xac\x49\x31\xbd\x33\x5c\xe9\xae\x25\x19\xfd\x90\x50\x36\xfc\x3b\xb4\x0b\x4d\x6f\xd8\x4b\x62\x59\xf8\x81\x61\x34\x9b\xb8\xb0\x17\xa7\xbd\x35\xab\x79\xdd\xdc\x84\x43\xd1\xc0\x96\xb0\xc5\x11\x2a\x57\x31\xd6\x60\x60\x21\xbc\x22\xeb\x69\x68\x34\xbb\xe2\x85\xe7\x24\x64\x69\x7f\x6c\x56\x36\x47\x68\x4e\xfe\x38\x9d\xcf\xb4\xe9\xe1\x82\xcc\x95\x9a\xce\xef\xb1\x35\xf8\xc6\xb5\x50\x43\x41\x5f\x66\xff\x01\x5b\x83\x55\x31\xb0\xd0\x98\x57\x42\x16\xd5\xf2\x98\x3c\x1c\xcf\x8f\x2d\x8f\x0d\x26\xc4\xcb\x63\xb2\x25\x7c\xf5\xae\xf6\xfb\x0e\xfd\x1a\x96\xca\x5e\x57\x8c\x49\xd8\x6a\x96\xe2\xc8\x2c\xc1\x06\xba\xda\xef\x7f\x6a\xf6\xfe\x01\xf5\xfb\x3f\x4d\x1f\x66\x13\xb6\xae\x56\x68\x58\xe6\xf1\xca\x46\xde\xea\xd8\x5a\xdf\x03\x30\xc7\x56\x55\xad\xc9\x92\xe3\x78\x15\x0a\xde\xd6\x63\xbb\x0b\xf1\xf1\x8a\x14\x78\xc0\x66\x78\x6b\x00\xd1\x42\x68\x4b\xda\xdc\xce\x6a\x18\x17\x7c\x5f\x13\xf4\xe2\x56\xe8\x6d\x80\xec\x94\x6b\x35\xde\xaf\x12\x61\x24\x51\x53\xf2\x14\x69\x42\x0b\x33\x68\xbd\x0f\x8a\x3c\x68\xa5\x6d\xf2\xb8\x95\x16\x65\xf9\xca\x2f\x5b\xc9\xa9\xbf\x92\x75\xae\xe2\xa2\x88\xd3\xc5\x00\x34\x2e\x2d\x6f\xcb\xb8\x65\xd8\x60\x7a\x54\xa9\x80\x6c\xc9\x91\x53\x6d\x27\x65\xf3\x92\xd6\xbe\x63\xa7\x7b\x48\xfe\x66\x87\xe4\x0e\x49\x02\x79\x3d\x09\x8f\x7f\x4b\xac\xdf\x1e\xbf\xb4\xd7\xe8\xf8\xb7\xd6\x6f\x3d\xcb\x42\x9e\xbd\x25\x77\x38\x24\x6b\xbc\x26\xef\x9b\xd5\x6c\xd1\xe4\xfd\x74\x3b\xe3\x14\xa4\xbd\x22\x02\xe5\x8f\x08\xd9\xb2\x6d\x68\x25\xb6\x55\xb2\x9e\xb0\x69\x5d\xc3\x22\xf2\x46\xdf\x6e\xb5\x7b\x58\x2b\x63\x80\xdf\x4e\x9d\xd9\x7e\x6f\xdd\xc8\x67\xf6\xb1\x95\xf2\x37\x97\xe5\xbc\x97\xcf\x08\xe1\xd5\x7e\x7f\x6f\x6f\x71\x88\xd7\xf8\xc8\x45\x93\x90\x58\x96\xa7\xda\xb1\xb7\x64\x5d\xb7\x99\xc0\x21\x39\x61\x0c\xea\x5a\xb4\x8f\xb8\xcd\xc5\xba\xdf\x3f\x82\x45\x35\xd9\xb2\x41\x5b\xbf\xf5\xb6\x72\xf0\x21\x0c\x1e\x79\x0c\x3e\x5b\x34\x69\xa4\x33\xa0\x60\xb8\xd4\x3b\x26\x56\xcf\x3a\x0e\x51\x55\x25\xfb\x7d\xc0\x53\x7e\xdb\x03\x6b\x17\x30\x77\xcc\xb3\x8c\x1d\x5b\xbf\xe5\x94\xd2\x1d\x89\xc6\x6c\xd3\xc7\x7f\x6f\x93\x5a\x93\xbb\x63\x62\xbd\xf8\xce\xf2\x6c\xf6\xf0\x9d\xc5\xce\xff\x6f\x5f\xc8\x6d\xe7\xd8\xfa\xce\x42\x63\xea\x69\x3e\xd4\x66\x74\xc7\xa1\x3d\xdc\xe0\x57\x93\x21\xdf\x56\xd9\x81\x2c\x9f\x25\x92\x54\x06\x95\xd0\xe4\x0e\x4d\xb2\x06\x75\xf1\xfe\x50\xe3\x4b\x3b\x41\xaa\xb6\x84\x07\x30\x37\x84\x7c\x47\x24\x99\xd8\x1b\x32\x9d\xe1\xbf\xc0\x71\x64\xfd\x08\x33\x9a\x68\x75\x88\x7e\x1f\xc6\xfb\x63\x6a\x21\x7c\x77\x4c\x12\xe4\x6d\xc8\x37\xe6\x41\x8d\xa9\xa4\xdd\x53\xb1\xb3\xa4\xfb\xfd\xe3\x1a\x4d\xe0\x40\xe9\xcf\xe0\xa5\xf9\x11\xd5\x2a\x02\xca\x6d\x56\x94\xe5\x34\x5e\xa4\x37\xea\xa0\xa2\x93\xc7\x6b\xf7\xd2\x36\x0f\xd0\x20\xfe\x01\xc7\x7d\x7d\x40\x6f\x9e\xe0\x01\x8a\x0a\x3d\x2a\xd2\xbf\xab\xb8\x9b\xd7\x98\x92\x1d\xa7\xf5\x3f\x09\x29\x42\x3d\x70\x3e\xdc\x60\x64\xd4\xa6\x6c\x55\x98\x4e\x56\xb8\x70\xd6\x76\x5f\x38\xda\x31\x92\x92\xd2\x83\xbb\x4f\x5d\xad\x3e\x10\x0f\x56\xee\xfc\xcc\xca\xd9\x78\x6e\xcb\x9c\xfa\xab\x9a\x9e\x81\x6d\x8d\x9c\x0b\xc6\xd3\xd4\x3b\xf1\x48\xe9\x4b\x56\x5a\x78\x95\xf0\x2c\xf7\x7c\x78\x31\x74\xac\x0a\xfb\x94\x48\xfe\xc2\x8b\x69\x85\x37\x94\xf8\xec\xfc\xa7\xfb\xbd\x4f\xc7\xda\xf3\xce\x86\x4a\xca\x76\xbf\xdf\xd0\x27\xdc\x23\xe8\xcf\x52\x7b\x34\xba\x42\xbf\x4c\xc4\x87\x67\xda\xb7\x67\x24\xef\xb0\xa9\xa6\x9c\xf7\x17\x16\xe4\x27\x38\xee\x2c\xd5\xb0\x82\xf7\x3b\x0b\xb5\xac\xe0\x37\x9d\xc5\xba\xac\xe0\x8b\xee\x56\x9b\x56\xf0\xc9\xa1\x62\x75\x2b\xf8\xa0\xb3\x58\xd3\x0a\x3e\xea\x2c\x05\x76\x47\x75\x03\xf8\xf0\x50\x75\x9d\xe6\xf2\xeb\x6e\xd8\x74\x98\xcb\x2f\xbb\xc1\xd3\x34\x97\x7f\xe8\x2c\x56\x33\x97\xdf\x76\x16\xe9\x36\x97\x5f\x49\x0d\xe6\xc7\x5c\x19\x6b\x35\x6c\x25\x96\xac\x7b\xd6\xef\x65\x9e\xd4\x4a\x95\xa2\xc0\x9d\x90\xe1\x08\xb9\x09\xfc\xf8\x52\xc6\x27\x8c\xdd\x85\xb8\x4c\xf1\x66\x72\xc5\xe9\xba\xfa\xfd\x96\x65\x7a\x50\x13\x1b\x26\xed\xaf\x95\x22\x53\x25\x44\x5c\x42\xb2\x07\x3f\xb1\x91\x5d\xd5\x9d\x06\x88\x0c\x06\x11\x76\x94\x57\xfc\x96\xfa\x26\x22\x2b\x5c\x0e\x5f\x32\x44\x78\xc7\x76\xd1\x08\x83\x31\xbc\x61\xd4\x4f\x42\x9e\xc4\xf0\x49\x9a\xc9\x93\x40\xa7\xa9\xab\xb9\x04\x97\x43\x21\x5d\x23\x19\x2e\x87\xda\x88\x9d\xac\xd9\xab\x58\x31\xc4\xc7\xe5\xf0\x7b\xff\xa7\x07\xb2\xc5\xe5\xf0\x1d\x5d\x65\xe4\x01\x97\x43\xee\x13\x80\xc4\x18\x8c\xed\x61\x29\x90\x02\x97\x43\x6d\xfd\x4f\x36\xec\x55\x60\x0c\x59\xe2\xb2\x21\x7f\xfe\xf4\xb0\xa6\x1d\x3e\x6a\xba\x45\xf4\x5d\x8e\x12\xf6\x7b\xca\xdd\x2e\xb1\x9f\x90\xff\x14\xfc\x67\xc3\x7f\x96\xfb\xfd\xa3\xa8\x04\x91\x0d\x8c\xfb\x9e\xed\x7e\x5f\x7b\x7f\x68\xbc\x27\x8d\xf7\xa0\xf1\xbe\x46\x15\x0c\xd3\x98\x9f\xb6\x9f\x43\x36\xbd\xfb\xbd\x98\xd8\x88\x7f\xd0\x98\xc2\xb9\x4c\xac\x4d\x62\x47\x5d\xa2\x96\xa0\x32\x3f\xe8\xbc\x35\xae\x7f\x90\xf0\x0f\xe4\xf4\x77\xcc\xc2\xe3\x60\xab\x8d\x3a\xe3\x95\x19\xf8\x73\xb8\xe1\xb5\x28\x2b\x91\xeb\x70\x49\x9f\x97\x04\xcc\x3b\x5c\x6a\xcb\x4b\x01\x5a\x1e\x2e\xf5\xc0\x4b\x09\x9c\x3d\x5c\x2e\x16\xe5\x24\x42\x1f\x2e\x59\xf0\x92\x06\xb6\x1f\x2e\xbb\x11\x65\xe5\x52\x38\x5c\x72\xd9\xe1\xd3\xa8\xe5\x9c\x37\x25\xd6\xf5\xfd\x1a\xa4\x25\xa6\x72\x0b\xce\xc9\x95\xe3\x5c\xb8\x57\x57\xa3\xb3\xd3\x8b\x53\xe7\xea\xca\xc5\x19\xb1\xa6\x7c\x22\x7b\x2f\xa5\x97\xa1\x99\x85\x63\x9d\xfc\x46\x7c\x3e\xb3\xb0\xaf\x53\xff\x40\x53\xee\xf1\xd2\xc8\xde\x10\x8d\x13\xd2\xb6\xbe\xdf\x67\xff\x0f\x39\x6d\x40\x88\x50\xa0\xed\xf7\x4b\x46\xe5\x37\x4b\x17\x34\x89\xfa\x7d\xfd\xb7\xfd\x19\x4b\xc5\x09\x5b\xbc\xc5\x7e\x2f\x9b\x66\x27\x86\xba\xc6\xb1\x90\x19\x52\x29\x68\xfa\xb1\x18\xb8\x38\x27\xd2\x47\x25\x38\x25\xd4\xee\x2a\xbf\xcd\xc7\x88\x4e\xb3\xe3\x74\x26\x22\x49\x99\x06\x1c\x51\x4b\xf7\x17\x87\x24\x6a\xea\xff\xae\x49\xa4\xee\xb9\xf0\x92\x24\x43\x7e\xae\xe1\x07\x12\x29\xdb\xf4\xb7\xc5\xb5\x8a\x49\x85\xb7\x64\x39\x59\x8a\xe5\xed\x97\xb7\x6b\x46\x50\x82\x2f\x45\x21\x09\x5b\x91\x77\x7e\xb9\x1c\xae\xfc\xfb\x71\xe7\xee\xbf\x80\xad\xa2\x03\x5f\x9e\x95\x74\x74\x44\x4d\x85\x32\xb9\x8e\x2b\x9b\xa2\x7e\xbf\xa3\x06\x25\x5b\xec\xd8\x0e\x14\x9b\xa4\x77\x03\xfa\xdd\xc0\xed\xf7\xe9\x6f\x5c\x42\x9c\x7e\x9f\x7e\x4b\xf2\xca\x96\x00\x47\xfd\xfe\x51\x5b\x67\xa5\x9d\x22\x6b\x1b\x1b\x3d\x36\x4e\xff\x86\xa2\x65\x09\x0e\x9e\x27\x6b\x2e\xa4\x62\x7c\x90\xa5\x3d\xb9\x90\x78\xbf\x2f\xd9\xb6\x61\x53\x24\xff\xf5\xfb\xa1\x28\x8b\x2d\x88\xeb\xc0\x03\x52\x1d\x3d\xb4\x52\xf7\x7b\x55\x2b\x21\x19\x7c\xbc\xdf\x1f\x1d\xd9\xdb\x7e\x9f\x0d\x75\xba\x9d\x21\xe1\x7f\xa5\x26\x2b\x1d\x37\xe2\xb2\x68\x60\x1a\xa3\x55\x4e\xb5\x6d\x9d\xc8\x35\xdc\xb8\x6f\x2c\x79\x9d\x31\x70\xf1\x46\x61\x2f\xc8\xcf\xf2\xfd\xde\xce\xc9\x1c\xe1\x78\xbf\xb7\x63\x32\x9d\xa1\xf1\xf1\xb1\xff\xed\x66\x2c\xa5\xf9\xe5\xd4\x9f\x8d\xd3\xef\x9c\x7e\x3f\xb7\x0b\x34\x49\xbf\x73\x27\xd4\x2e\x70\xca\x16\x02\x54\xed\x05\x76\x8c\x0b\xe4\x65\xac\x82\x69\x2c\x2a\x9f\x11\xa5\x98\xd7\x8b\x2b\xbb\xc4\x2e\x42\x7a\xd5\xe4\xd0\x36\x65\x2b\x5b\x98\x97\xdb\x68\x9c\x0d\x06\x63\xd4\xd0\xf8\x93\xdb\xc0\x34\x9b\x75\xc7\xd1\x42\x4d\xe7\xe1\x35\x8f\xe6\x0e\x4e\x49\x3e\x29\xa7\x74\x26\x5c\xf4\x81\x0f\x43\xe5\x0e\x0d\x19\xb1\x28\x9c\xd9\xf8\xf8\x98\xb2\x25\x9c\x12\xf8\x40\xfb\x3c\x4c\xcd\xb8\x5c\x38\x27\x2b\x2d\x72\xcf\x27\xa5\xd2\x55\xf1\x72\xec\xd4\x7c\x83\xeb\x7e\xa8\x66\x30\xec\x20\x19\x59\x29\x3c\x1e\xc0\x57\xb1\x70\x29\x9b\x41\x10\x9f\x6f\xb3\x31\x8a\xc1\x2d\xce\x34\x3f\x4e\x67\xe3\x14\x1c\x5f\x4a\xff\xc1\xa2\x68\x7e\xec\x22\xb9\xeb\xf8\xbc\xb0\xde\x73\xfc\x69\x3e\x23\x71\x6b\xa7\x57\x7e\x3d\x94\xfa\x2c\xa3\x11\x1d\x45\x53\x2a\xff\xcc\x90\xee\x36\xd3\x71\x3a\x75\x66\x22\x73\xd4\x99\x89\xd3\xa9\x2b\x4b\x9c\x1c\x2e\x81\xd3\xe9\x68\xa6\x6f\xf1\xe5\xe4\xe0\x14\x31\x54\xe1\x93\x84\xb8\x76\x62\x89\xf3\xca\x66\x7c\xb3\xe6\x26\xef\x2a\x64\xce\x8e\x3d\xba\x44\x4f\xf1\x96\xd2\x53\xdf\x08\xfd\x23\x31\x19\x4b\x2e\x17\x2f\x4c\x71\x74\x46\x72\x3b\xb5\x4f\x10\x9b\x43\xf6\xe4\x9e\x22\xc4\x38\x44\x3b\xb5\xd9\xd3\x06\x9e\x1c\x90\x9f\xdb\x90\x8f\x10\x86\xdf\x13\x84\x10\x63\xe9\xec\xd4\xbe\x42\x08\x07\xac\x77\xa7\x08\x47\xe4\xf4\xd4\x74\x72\x2a\x37\x32\xb6\x94\xf5\x56\x44\x71\x4a\x1c\x9c\x13\x17\x53\x62\xf3\x1d\x3e\x4e\x6d\xb9\xd5\xdb\x29\x2e\x11\xce\xd1\x20\x45\x2f\xec\x7c\x00\xa2\x20\x9b\x0e\x88\x8b\x7e\x47\x7f\x47\x8f\xdd\x8a\xcb\xdd\xdb\x7b\xca\x2e\xcf\xb2\xd2\xdb\x09\xb7\x54\x9e\x15\x83\x53\x88\xc1\x3c\xc9\x82\x2f\x96\x69\xc2\xe4\x56\xb8\x00\x51\x83\xb7\x2b\x73\x3f\xe5\x96\xcd\x1e\x1d\xea\x97\x42\xdc\xae\xdb\x16\xa4\x45\x59\xbe\xb2\x50\x85\xe3\x34\xa4\x25\xcd\x57\x71\xea\x97\xd4\xd3\x76\x6a\x9e\xb5\xda\xc4\x83\x75\x9e\x2d\x72\x5a\x14\x83\x20\xce\x83\x4d\xe2\xe7\x83\x3c\x2b\xfd\x92\xf6\xdc\xe1\x69\xd1\x63\xed\xfb\x79\x2f\x4e\xa3\x38\x8d\x4b\x6a\x55\x18\xc4\xc7\x1f\xf2\x78\xe5\xe7\x0f\xde\x0e\xde\x3c\x3a\x5c\xfb\x60\x02\x3f\x5c\xf3\x8c\xe1\xca\x8f\x53\x51\xf6\x96\x06\x59\x1a\x76\x96\x2e\x64\x96\x28\x5f\x6c\x17\xde\xae\xc2\xac\x27\x09\xf5\x76\xdc\xe2\xc9\xb3\x04\x11\xfd\x8a\x7d\x6d\xc9\xec\xdb\xe7\xc2\xa2\x65\x98\xce\x60\xc2\xeb\x78\xfb\x95\x90\x61\x75\x70\xb8\x50\xbf\xa0\x83\x38\x1d\x64\x9b\x52\x03\xa7\x65\xee\x65\x5d\x3a\xeb\x7b\xdc\x1b\x39\xce\xfa\xde\x6a\x5b\x7e\x59\x2c\xb9\xc2\xd6\xbf\x7f\xa1\x0f\xdc\xcf\x61\xef\xb1\x19\xb1\xbc\x9d\xe5\x3a\xce\x6f\x2c\x31\x68\x36\xbf\x9e\xc5\xf3\xec\x93\x73\x27\xa4\x0b\x64\x55\xcf\xa9\x8f\x8d\x83\xd5\x06\x75\xb5\x3a\xed\x3e\xa7\xcf\x67\x07\xbe\x75\x1e\x1f\xf1\xc0\x3d\xe3\xdf\x8b\x81\xfc\x8c\x0a\x46\xd0\x83\xaa\x32\xec\xa8\x96\xb5\x25\x8b\x13\x42\x87\xa0\x29\x4e\x0b\xbc\x96\xcf\x20\x5a\x5f\x82\xf5\x52\x92\xe5\xf8\x81\xd0\x61\x11\xff\xc4\xa8\x39\xca\xb7\x18\xbc\x22\x74\xa8\xdc\x03\x80\xf2\x05\xec\x48\x78\x01\x4f\xe0\x62\x02\xdf\x11\xdb\xc1\xbe\xdc\x9d\x90\x4d\xa5\xd3\x1e\x5a\x48\x97\x3d\xd2\x7d\x0f\x60\xab\xf6\x56\x02\x17\x0d\xd8\x52\x0d\x28\x07\x3a\xec\x17\x2a\xb7\x66\x08\xdf\x90\x5d\x85\xaf\xd9\x9f\x5b\xb2\xab\x40\x47\xc1\x40\x51\xc6\xb8\x2d\xf6\x7b\x8b\xef\x03\xf0\xc6\xc7\xfd\x89\x8c\x7e\x07\x3b\xd1\x87\xb7\xbf\xb3\xed\x68\xb0\x42\x2f\xd8\xb6\x3b\x6c\x80\x97\x7c\x1a\x96\xd9\x9b\xf8\x9e\x86\xf6\x09\xc2\xb7\x53\xee\xbf\x0a\xba\x91\x66\x77\xd6\x8c\x13\xae\xe0\xc9\xc3\x9e\x23\x6c\xb6\x33\xb1\xcd\xda\xf8\x6c\x10\xcb\x92\x5e\x9f\x6d\xdb\x75\x9c\xc1\x1c\xbd\x70\x1d\xe7\x77\x9f\x90\xd9\x8c\xb5\xbe\xb7\x10\xbe\x1e\x2a\x9c\x25\x12\x67\x07\x57\x1c\x67\x91\xf7\x44\xe5\x39\x31\xaa\xc7\xf9\xef\xf2\x67\x37\xa1\xeb\x18\x5d\x38\xbf\x0b\xed\xf9\x8b\x0b\x07\xd5\xbf\xe5\x5d\x50\x27\xa3\xd2\x23\x68\xa8\x2a\x59\x61\xbc\xb5\xb0\xed\xe0\x4c\xcf\xfe\x4e\x4d\xb8\x67\x3b\xb8\xd0\x19\xc9\x90\xed\xea\xd8\x2e\xd9\x4c\xda\x0e\x8e\x75\x56\x89\x93\xa9\x40\x0e\xd5\x37\x07\x07\xc3\xc0\x5f\xc7\xa5\x9f\xc4\x3f\x51\x64\x2f\x11\x9a\x61\x2b\x4e\x97\x34\x8f\xe1\x92\x78\x89\xda\xb5\x0c\x6b\xfb\x3a\x2b\xde\xc4\x94\xae\x8f\xf8\x94\xd6\xa6\x16\xb1\x93\x6b\x8d\x30\xa0\xa8\xd7\x18\x21\x78\xdf\xf0\x1e\x30\x77\x3a\xe1\x3d\x54\xf8\x1a\x6f\x11\xce\xb3\x84\x7a\x96\xdc\x59\xe6\x3e\xdb\x97\x6f\xf1\x1d\xc2\x07\xc1\x57\x6c\x17\x16\x36\x00\x96\x0c\x8b\xed\x02\x6f\x63\x7a\xf7\xfb\xec\xde\xd3\x93\x1d\xbd\x18\x61\xf0\x16\x71\xe8\xbd\xfe\x86\xaa\xc3\x4d\xf2\x4d\xbe\xd6\x6a\x73\x9a\x78\x11\x6c\xa7\xed\x89\x4a\xb1\xcc\x7e\xfb\xb5\x80\xd6\x9f\xde\x76\x81\x3b\x45\x12\xd8\x37\x38\xb8\xf7\x22\x1c\x3c\x78\x11\xce\x3d\xb1\x70\xc1\xc6\xd8\xb3\xd2\x2c\x55\x47\x0a\xb7\xfa\x5d\x55\x08\xa1\x4a\x51\x44\x6b\xee\x27\x7b\x0d\xb6\x43\xac\xff\x4b\xd9\x03\x30\xe8\x22\xe2\xb8\xb5\xc4\x99\x6c\x61\xb6\x15\x79\xa7\x60\x47\xc1\xf7\x20\xef\x64\x78\x2e\x34\x97\x1c\x2c\x76\x21\xaf\x31\x3e\x4e\x12\x3e\xb0\x7d\x2f\xd1\x23\x5c\xe3\x5d\xca\xe0\x69\xbd\xdb\xc4\xaf\xc4\xb1\xf2\x41\x60\x83\x85\xa3\x24\x5e\x7b\x47\x6e\xc5\x30\xd9\x88\x3f\xfd\xf0\x2f\xa1\x18\x5b\x84\xa2\xa3\x08\xc5\xb3\x91\x22\x14\xcf\x4e\x90\x54\x08\xeb\x08\x7e\x50\x63\xf3\x94\x16\x4f\x37\x9a\xa9\xd3\x00\x97\x98\xa2\x4a\xf1\x2d\xa6\xa7\x51\x52\x32\x14\x6b\x20\x09\x42\xc3\xd5\x26\x86\x6c\xeb\x76\xbb\x78\x1b\x64\xa9\x85\x53\x33\x60\xf7\xe6\x99\x00\x3b\xb9\xfc\xe7\x42\x6c\x74\x72\x0a\x30\x63\xb0\xc3\xbe\x20\xa2\xdd\x33\x41\x46\x9f\x32\x28\x3e\x26\xab\x50\x50\x84\x01\x73\x68\xbd\xf1\x83\x32\xcb\x1f\x10\xe3\x74\x3a\xca\x6b\xd3\x66\x23\x16\x46\x37\x03\xb9\xdf\x43\x90\x8c\xfa\x3e\x05\xa1\x78\x79\x24\xa4\x5c\x8b\x7b\x64\x4b\xf1\xb0\x58\x66\x9b\x24\x54\xf6\xb6\xdc\x7e\xb8\x6b\x96\xa9\xad\x9c\x12\x16\xb8\x64\xd4\x73\x4b\xf1\x5c\x8b\x56\x8c\xb2\xa8\x62\x4c\x53\x3c\xd4\x26\xbd\x55\x65\xe2\xbe\xdf\x0c\xb2\xa1\x79\xab\x66\xba\xea\xbe\x14\x5f\x09\x4a\xd6\x90\x63\xa1\x9a\x46\xa5\x19\x8e\x87\x62\x3a\xfc\xfc\x19\xf2\x3e\x7f\x06\x1d\xfa\x7f\xea\x05\xe0\xa1\x68\xf9\xf5\x31\x34\x27\x58\x87\x86\x4b\xa7\x74\x46\x4a\x9c\x56\x5f\x13\x97\xfe\x97\x43\xf3\x0b\x84\x64\xb6\xd1\x9f\xec\x59\xfd\x79\xc2\xaf\x40\x2b\x46\xbc\xd2\x82\x26\xa4\x9c\x38\x3c\x7c\x27\x04\xd0\xde\xef\xdd\x17\x2c\xd5\x7d\x51\x7a\x94\x4b\xe2\x4b\x96\x5e\x1d\x42\x11\x08\x8c\x0a\x01\x14\x4c\xbf\xa2\x6d\x9d\x32\x43\x39\x51\x5f\x99\x1c\x99\x8e\x58\xa5\xab\x56\xed\x92\x94\x2f\x5c\xd3\x7f\x04\x65\x3b\x81\x99\xc0\x63\x49\x49\x81\xc6\x11\x21\x52\x00\xa5\x6b\xd1\x82\x13\x67\xec\xeb\x90\x39\x3e\x57\x34\x3c\xca\xb5\x74\xc2\x9f\xa1\xfd\xfe\x28\xb3\xe9\x94\x3d\xcf\x70\xc9\x7f\x91\xae\x4b\x8e\xf1\xb9\x91\x01\xfe\x37\xc8\x1b\x0e\x8a\x01\x36\x05\xcd\xb9\xf6\xa9\x24\x00\x38\x01\x66\xb9\x74\x65\x49\x22\x8c\xbf\x1c\x90\x18\x70\xe2\xa1\xc6\x32\x9b\x6e\x5d\xb8\xc3\x14\xf0\x74\x32\x3a\xc5\x4f\x32\xcf\xac\x36\x0b\xef\xc2\x0d\xf7\x63\xd1\x28\x25\x93\xd9\xf6\x9a\x97\x34\xaf\xd0\x2f\x2b\x1f\x80\xfc\x97\x00\xb9\x76\x61\x1f\xd2\xe1\x67\x4b\x45\x59\x1e\xf3\xa8\x55\x14\x5c\xfa\x9b\x75\xbe\x16\xbe\x3c\x0f\xd6\x2a\x9d\x7d\x56\x0a\x7c\x6f\x39\x75\xee\xed\x14\x3c\x15\xc1\x5e\xe3\x4d\x4d\x71\x12\xe3\x3e\xa5\xed\x71\x6e\x30\xa9\x49\x8d\x49\x8d\x14\x93\x1a\x12\xaa\x7d\x01\x00\x2b\x2b\x1b\x03\x4e\x36\x05\xcf\x3c\xaf\x14\x3f\x0b\xce\xd7\x5e\x06\x01\x63\x5f\x19\x5b\x2b\x88\x6b\xbc\xea\x62\x5a\x45\x3f\x24\xd7\x7a\x90\x7f\x55\xed\x83\xff\x55\xde\xba\x85\x2d\xa3\x6d\xc6\xd5\xea\x96\x19\x3f\xcb\xdb\x65\xfc\xec\x9c\xd4\x29\xee\xfc\x31\xc6\x28\x1f\x36\x80\xab\x79\x20\xb8\x86\x6d\x7f\xf0\x24\x27\x15\x35\x39\xa9\x08\xb8\x9d\x44\x11\x21\x87\x98\x87\xf0\x30\xab\x37\xc7\xca\x0f\xad\x67\x45\x7e\x52\x50\x4b\xf1\x31\x5b\x8e\x4f\xde\x12\x73\xde\x9a\x3b\x83\xb5\xbc\x87\x89\x28\xe9\x59\x65\xbe\xa1\x56\x85\x57\x08\xa7\xf8\x61\x72\x90\x79\x01\x90\x72\x8b\x0a\xfc\x80\xb8\x0f\x79\x4d\xfb\x47\x38\xac\xd3\xfe\x61\x37\xed\x2f\x47\x8e\xd5\x34\x7a\x9c\x13\xd3\x58\x2b\xbe\xd3\x63\xb0\x9c\x9e\xd3\x1b\x9d\xf6\x46\xa7\x16\xab\xb7\x45\xa3\x0a\xe7\x0f\x75\x86\x20\x32\x18\x02\x59\xb0\x42\x76\x68\xd2\x40\xeb\xff\x31\x3b\xb8\xde\xc0\x2f\xd4\x06\x7e\x09\x1b\x38\xec\xdb\x8e\xda\xb6\x5d\x17\xf6\x6d\x78\x04\xb2\x57\xed\xf5\x61\xd7\x5e\xbf\x16\x1f\xb1\x5a\x97\xe2\x99\xd5\xfb\xa0\xce\x80\x2d\x71\xaf\xf0\x8a\x88\xed\x5e\x3a\xa8\xf4\xac\x9c\x26\xb0\xa2\xf4\x86\xef\x38\xbf\xb1\x2a\xed\xfb\x68\x67\xa6\xeb\x93\x00\xde\x72\x0a\xac\x9d\x38\x31\xd8\xd4\x1a\x33\xbf\xf6\xc3\x30\x4e\x17\x9e\x83\x83\x4d\x5e\xd4\x90\x62\x9e\xdd\xdf\x42\xcc\x7e\xcf\xe2\x9e\xc7\x06\xf3\xec\xbe\x26\x74\x36\xcb\x82\xd3\x2c\xd1\x46\xb6\x29\x59\x29\xf9\xaa\x3d\xc0\x7a\x5c\xf6\xbc\xf6\xd9\xf1\x63\x55\xb8\x58\xfa\x61\x76\xe7\xed\xb2\x2d\xcd\xa3\x24\xbb\xf3\x2c\xb1\x24\xf0\x36\x2e\xe2\x79\x9c\xc4\xe5\x83\x4e\xd3\xf0\xf0\xe7\x45\x96\x6c\x4a\xaa\x87\xea\x6f\xca\xcc\xc2\x77\xcb\xb8\xa4\xb7\xa0\xba\x68\xad\x73\x3a\xb8\xcb\xfd\xb5\x05\xd4\xa4\x98\xf5\xd5\x98\xeb\x94\x9b\x47\xac\xda\x8c\x4b\xb9\x19\xa7\x62\xfd\xd7\x37\x46\x1e\x8d\x17\x09\x5e\xad\x68\x64\xd4\x11\xbe\x34\x2e\x44\x10\x42\x42\x51\x23\xcf\x92\x84\x72\x5d\x6e\xcc\x8e\x45\x36\xf8\x8f\x34\x52\x09\x71\xba\x48\xc0\x77\xee\x6d\x33\x0b\x4c\x91\x8c\xf7\xad\x76\xa0\x90\x0e\x97\x7e\x1a\x26\xf4\x23\x4c\x33\xeb\xda\xda\x58\x78\x9a\x2d\x49\x87\xc5\x43\x1a\xf0\x99\xfb\x73\x5c\x2e\x79\x1b\x36\xaa\xb0\x7b\x7e\x8e\x58\xf3\xe0\xe2\x64\x27\x20\xca\xfd\x23\xe9\xca\xa3\xb7\xac\x0b\x35\xc0\x19\xdd\x92\x66\x2d\xa9\xb0\x81\x93\x88\xf9\x91\x46\xe3\xb2\xdf\xef\x8e\xb6\x38\x61\x00\xf7\x4a\x69\x57\x43\x28\xaa\x35\x78\xdb\x00\x47\xa3\xed\x2e\x68\xd1\x7a\x05\x9d\x9f\x75\x15\x7e\xb5\xf4\xd3\x05\x6d\x94\xe4\x30\xa6\xc3\xd2\xcf\x17\xb4\x14\xe2\xde\xb4\x36\x95\xfb\xbd\x6d\xd4\x28\x67\x45\x15\xed\x06\x38\x83\x35\x87\x52\x96\xf2\x86\xfb\xfd\x66\x8a\xcd\x61\xd1\x42\x9b\x23\x25\x77\xd6\xfd\x83\xdf\xfd\x9e\xd6\x4c\x9c\x20\x9e\x49\x73\x4e\xdf\xc3\x8d\xbe\x4d\x87\x79\x76\x57\xa0\xdf\x6d\x2b\x9c\x56\x0a\xd3\x03\xf3\xec\xa4\x70\x9c\x6e\xcc\xa4\xa9\x0c\x5b\x2d\x8e\x8a\xd7\x71\x08\xde\x7f\x3a\x42\x75\x72\xa5\xe2\x6e\x6c\xd3\xe1\xaf\x75\x3d\x9c\xe1\xfe\x47\x2b\xfa\x73\x9c\x24\x3f\xa4\xab\xc7\xfa\x64\xae\x94\x21\x44\xe4\x33\x2a\xea\x6a\xa7\xa3\x22\xc3\xa7\x85\x32\x15\xe4\xfd\x94\x78\x20\x1a\x33\x27\x4f\x7a\x3d\x68\xe1\x0a\x0f\x12\x24\x0c\xb5\x2c\xcb\x13\x16\xd5\x22\x45\x48\xa1\x84\xbb\x8c\x0e\x8c\x1f\x16\x01\x6b\x80\x77\x5b\xfa\xcf\x28\x3a\x73\xc7\xfc\xc4\x13\x8e\x50\x6b\xa8\xf0\xce\xbf\x47\xdf\x91\x3a\x76\xf4\xfb\x76\x4a\xd4\x45\x66\xab\xf8\xef\x4a\x10\x54\xa6\xa4\x7e\xc5\x09\x6f\xfe\xbc\xb0\xa5\x5e\x79\x49\x87\x1c\xf9\x06\x29\xfa\xce\xed\xf7\x79\xba\x70\xa0\x66\xab\xcd\xa6\x42\xa8\x32\x42\xdc\xa7\x21\xcd\x9f\x01\x7a\x5c\x1a\x64\x72\x5a\x23\x93\x19\x01\x5d\x33\xf9\xf3\x89\x4d\xd5\xf2\xc2\x62\x90\x78\x43\xf4\x98\x30\x35\xb7\x2d\x2c\xa7\x80\xf1\x6d\x35\xca\xf2\xf0\xad\x8e\xd9\xa0\x85\x2d\xd9\x9a\x76\x4e\x2f\x5a\x62\x34\xb1\x6e\x49\x07\x4b\xd0\xc2\xaf\x47\xaf\x19\x0c\x6a\xb3\xe4\x14\x33\x97\x17\x4b\x68\xb6\x60\xcf\x98\xe3\x03\x35\x2a\xa9\x30\xde\xf1\x7d\xce\xb3\xee\xe2\x14\x30\x3f\x4b\xf9\x42\xf1\x5a\x4b\xa7\x42\x07\xeb\xd3\x16\xa8\x78\x57\x27\x72\x39\x69\x8b\x6b\xd2\xf6\xd0\xd8\x60\x14\xf0\x71\x29\x30\x18\x61\x19\xfc\xc0\x3b\x72\x70\x4e\xa3\x7a\x4f\x5a\x07\x04\x66\xe0\xf5\x2c\xd7\xc2\xd2\x9f\xb2\x37\x70\x05\x16\x81\x6d\xf2\xbf\xa6\xd3\x35\x03\xe0\xfc\xa9\x31\x18\x3d\xf7\x3b\xfa\xbd\x79\x5e\xb7\x1b\xec\x88\xa8\xee\x19\xdd\x4e\x5b\xfd\x15\xed\x62\x89\xbd\x66\x87\xc5\xea\x69\x0f\x03\x88\x83\x0a\xa2\x74\x43\x80\xe2\xb2\xb2\x75\xaf\xb5\xd4\x73\x3c\xaf\xf3\x25\xf3\x06\x5f\x02\xfd\x76\x2b\x61\xd1\x6e\x3b\xf8\x41\x77\x7a\x85\xec\xb9\xc9\x2f\x2c\x9e\x2b\x33\x05\x8f\x62\xd4\x74\x27\x56\xfe\x7c\x77\x62\x55\xb3\x55\xed\xae\xb3\x15\x61\xcb\x0c\x9e\x9d\x4a\x47\x75\xb9\x50\x45\x1c\x52\xa5\x33\x48\xcc\x97\xfd\xfe\xc8\xc5\xf9\xd0\x0c\xc3\x4c\x8e\x1c\xb9\x45\xc4\x69\x2f\xef\xf7\xed\x7c\x78\x97\x73\xcf\xa2\xe4\xc8\x41\xb8\x9b\x1f\xa2\x38\x1f\x7e\xa1\x0f\x38\x47\xd5\x01\x61\x21\xce\xb5\x38\xbd\xdf\x4f\x6d\x43\x6c\x0c\xfa\x2a\x90\x86\x73\x84\x69\x87\x78\x4d\xf2\x63\xae\x7b\xc5\x83\x6d\x8e\x4e\x4f\x4c\xa5\xa0\x2e\xa1\xef\x51\x59\x13\x35\xe6\x76\x89\xba\x3d\x11\x96\x93\x0c\x68\xc3\x16\xb8\xbb\xea\x6f\x18\x5d\x1b\x73\xfb\x91\x46\x34\xa7\x69\x20\x27\x18\xfc\xca\x2d\xfd\x22\xfd\xad\x88\x1e\x1d\xa7\x71\x19\xfb\x49\x5c\xd0\xb0\x37\xe8\x15\x9b\x35\xcd\x6d\x54\x2b\x01\xda\x82\xa1\x8e\x72\xdf\x04\x45\x0d\x03\x0c\x41\xae\x36\xb5\x91\xe2\xd1\x82\x32\x34\xe7\xe0\xbd\x89\x26\x22\x75\x51\x4b\xf5\x3a\x6e\x4e\x0c\x91\xfd\x7e\xdf\xf9\x15\xa7\x16\xed\x12\x19\xf3\x9c\x1e\x9e\xb1\xd1\xe9\xf9\xe1\x89\x3a\xe0\xe1\xaf\x54\xaa\xe0\x65\xf7\xda\xb9\x65\xb0\xeb\xd1\x7b\x70\x6d\x0b\x86\x1d\x9b\xa2\xec\xd1\xb8\x5c\xd2\xbc\x37\xa7\xa0\x69\xda\xcb\xf2\xba\x6f\xbe\x47\xae\x33\xfa\x7d\x53\x33\x77\x67\xdc\x62\x78\x82\xb3\xa7\x58\x2e\x02\xee\xcb\xba\x1e\xb7\x9c\x71\xfd\xfd\x7e\x0e\x83\x7a\x74\xca\x8c\x45\xf0\xe4\xa4\xd5\x83\x93\x75\xcd\x10\x29\x31\x85\xb9\x60\xcb\xee\x99\xb3\x71\xf9\xe8\x6c\xd4\xe3\x48\x0a\xcf\xc5\x29\xce\x40\x58\xc1\x0a\x31\x02\x54\xa3\x85\x71\xc9\xc0\x55\x95\x0b\xa9\x6b\xfa\x58\x19\x9b\x72\x07\x81\x19\x71\xc6\xd9\xb7\xd2\xc1\xe0\x38\x3b\x3e\x46\x29\xf1\xa7\xd9\x0c\x97\xca\xd2\x38\x45\xdf\x11\x47\x61\xa2\xe1\x03\xae\x43\x1d\x5a\x2a\xdd\xa6\x8c\x9e\x8c\xa5\x52\xa4\xa1\x88\xfa\x15\x9b\xf8\x01\x40\xe4\x38\x63\x47\x49\xdc\xb8\x96\xe0\xca\xb4\x10\x94\x57\xde\x40\xf0\xd8\xbc\x24\x9e\xe6\x1d\xc3\xb1\x33\xd5\x3b\xe5\x99\xe1\x31\xbc\x79\x0c\x69\xfc\xa2\x88\x17\x69\x5d\x8b\x5b\x47\x1e\x76\xc7\x65\x3b\x2c\x76\x29\xcf\x87\xd4\x08\x8b\x5d\xce\xd4\x5d\x49\x0e\xfe\x93\xd1\x13\xd7\x4a\xc2\x7f\x2f\xce\x19\xb8\xe9\x34\x9f\x81\xc3\x3f\xad\xd7\xc9\x78\xca\xce\x6b\xd3\xc7\x51\xf5\x9f\x26\x87\x3b\xf8\x81\x12\x33\xee\xf4\x49\x08\x2e\xdd\x69\xd9\xf6\xf7\xac\x2f\xdb\xab\x0a\x99\x37\x76\x67\xee\xaf\xae\x77\xea\x9e\x76\x88\x11\x4f\xbe\xee\x1e\x88\x8f\x85\x0b\x14\x0f\xdd\x05\xd5\x45\x53\xbb\x0a\x83\xd5\x1b\x8f\x38\xf3\x30\x2c\x36\xf3\x25\xf5\xc3\x38\x5d\x60\xc9\x14\x8c\x4e\x4d\x81\x9e\x08\xe4\xc6\x25\x7a\x42\x76\xc8\x45\x68\x6d\x51\x1c\xa3\x15\x6f\x54\x2a\x4d\x92\x78\x5d\xc4\x45\x5d\xd8\x96\x66\x20\x6a\x93\xe2\xc4\xef\x69\x54\x7a\xee\xb9\x7c\xfd\xc8\x55\x54\xcf\xb1\xd5\xff\x46\x45\x0c\xf3\x76\x5a\x2e\xf8\xaa\xfb\x5e\x45\x96\x65\x9b\xb9\xf2\x16\xb2\x3b\x70\x81\xf2\x28\x2b\xa8\xef\x49\x12\x42\x55\xbd\x70\x99\x92\x67\x09\xc5\xe1\xb3\x79\x3c\xf3\xc6\x43\x8d\x85\x71\x76\x89\xc9\xc0\x1d\x12\xdc\x2b\x21\x0b\x6e\x4c\xe0\x7c\x53\x96\x19\x44\x31\x00\xe5\xa9\xa8\xc6\x0a\x1c\xd2\x50\x12\xdc\x5f\x83\xf8\xaf\x18\x2f\x22\x47\x98\x20\x46\xe2\x6b\xf9\x7e\x5e\x81\xa7\xee\xaf\xb9\x2a\x50\x57\x03\x49\x6c\x09\xd5\x2e\x19\xe0\xc2\xd2\xd3\x72\x24\xc8\xf6\xc7\x44\xff\xef\x68\xba\x79\xcb\x3e\xfb\x57\xca\xfe\x7f\xe9\x3d\xe7\xe4\x57\xdf\x73\x9e\xb8\x7b\xbe\x50\x57\x17\x97\xfa\xe6\xc2\xd1\x37\x17\xae\xba\xb9\x80\x4b\x8c\x50\x6d\x54\xe2\xbe\x42\xdf\x56\x9c\x34\x2e\x2b\xf8\x37\xac\xe8\x8a\x0d\xef\xfc\x14\xe1\xf9\x33\x94\xd8\xa3\x84\xde\x5b\xf8\x6f\x9b\xa2\x8c\xa3\x07\x11\x29\x81\xa7\xf2\x78\x67\x16\x86\x38\x77\x0c\x53\x0a\xcf\x0a\x68\x5a\xd2\xdc\x94\xfe\xeb\xdb\x10\xb6\x35\xbd\x56\xa1\xbe\x9a\x97\xe2\x70\xfb\x71\xe0\x16\x83\x7d\xf9\x92\xb5\xe2\x59\x09\x8d\xf4\x45\xc8\xa7\x6c\xed\xb9\x23\xf9\xf6\xfb\xac\x2c\xb3\x95\xe7\x8e\x2a\xf0\x74\xe0\xc7\x29\xcd\x3b\xef\x65\x2a\x7e\xeb\xf7\x1f\x71\x11\x33\x2c\x7a\x7a\x6b\x5b\xb2\x7d\xb6\x92\xbc\xb7\xc7\x16\x1e\x4d\x0b\xea\xed\x8c\x7e\x5c\x36\xba\x71\x59\xe1\x50\x5d\x45\xcb\x80\x25\xc3\x33\x96\x0a\xc6\x9f\xde\x8e\x8f\x50\x14\xb7\xdc\xf5\x7d\xaf\xc8\x92\x38\xec\xa9\x2b\x50\xdd\x0f\xf1\x0d\x32\x6e\x67\x5e\x25\xf1\xda\xb3\x44\x9b\x00\xa6\x0a\x2f\x36\x65\x49\xf3\xc2\xa3\xc3\x55\x7c\x1f\xa7\xc5\x50\x24\xd8\x08\x8b\x2d\xeb\x69\x1d\x7b\xdd\xc2\x40\xdc\x1b\x3f\x53\x65\xa0\x28\x2b\x84\xad\xbe\x07\xc0\xb2\xbc\x5d\xf7\x74\x3f\x0f\xd6\xd8\xfa\xf7\x15\x0d\x63\xbf\x67\xc3\xab\xd7\x63\x1f\xa3\x8e\x53\xa8\x7e\x45\x55\x55\x58\xe9\x19\x48\xdd\x82\xda\xa9\x76\x32\xaa\xcc\x0b\xa6\xb9\x90\x5d\x1c\xb8\x60\x92\x4b\xa2\x21\x5c\x97\x37\x4b\xf5\x3b\x24\x71\xad\x14\xd4\xae\x95\x3a\xc9\x37\xa4\xc5\xf8\x51\x5b\x8c\x5f\x74\x88\xf1\x1b\xae\xe3\x3b\x84\xad\x62\xed\x72\xb4\xd4\x32\xd7\x21\x24\x70\x35\x3b\xe9\xc3\x40\xa6\x1d\xb9\xcf\x15\xe2\x4a\x0f\xd0\x5c\x8c\x9b\x92\x72\xc8\xb1\x09\x6c\x39\x95\x16\xc4\x86\xbd\x88\x33\xbd\x90\xcf\x70\xa6\x27\xe0\x02\x55\x9e\xe9\x01\xe1\xa6\xee\xb0\x3e\x95\xb4\x09\x47\x66\x32\x1c\x67\x78\x4d\x6c\x19\x82\x83\x10\x12\x4d\x76\x95\x17\x21\xa3\xde\x87\x86\x32\x44\x54\x0b\xbb\x0b\x2a\x0b\x62\xb4\x78\xc1\x03\xc9\xc3\x72\xc4\x77\xfa\xe5\x0f\x7c\x81\xe0\x1b\x48\x82\x45\x86\xaf\x49\x39\x34\x37\x88\x57\xaa\xc1\xdb\x46\x83\x25\x9e\x5a\x1c\x14\x8c\xd6\x78\x5a\x0d\x43\x13\x23\x6d\x00\x98\x89\x30\x7c\x10\x51\xa7\x10\x01\x4f\xf6\x5c\x3f\x8a\x7e\x43\x02\xf7\x5f\x21\x42\xea\x36\xfb\xcc\xc0\xf0\x89\xcc\x0f\xa1\x00\xfe\x40\x42\x2d\xfa\x6b\x04\xf6\xb1\x73\x84\xdf\x91\x0f\xc3\x22\x5b\x51\xbb\x7d\x52\xd8\x0e\x5e\x0d\xe3\xe2\xdd\x26\x16\x04\x13\xa7\xc4\xbe\x8f\x8b\x92\x9d\x06\x2f\xb7\x7e\xe9\xe7\xd6\x0c\x55\x08\x7f\x21\x1f\xb4\xdf\xa5\xf6\x67\x1f\xa6\x1f\xb4\xcf\x6a\xa3\x8a\xdb\xfa\x62\x66\x63\xf9\x1b\x9b\x82\xa5\x9e\x82\x0d\xa7\xaa\x36\x9a\x54\xa3\x6d\x7d\x14\x0a\xf9\x0c\x0f\x3e\xed\xf7\xef\x9a\xca\x27\x2c\x57\x6c\x94\xf8\xe8\xae\x2b\x57\x62\xc6\x4d\x77\xa6\x40\xab\x96\xee\x38\xcb\x15\x2b\x25\xed\xca\x6b\xec\x55\xf8\x0b\x62\x7b\x40\x81\xf0\x3d\x39\xa8\xb1\xf2\x37\x7d\xaa\x2c\x2a\x7c\x8b\xf0\x67\x92\xec\xf7\x8c\xda\x53\xda\xca\xfd\xbe\x7d\xaf\xd7\x1b\x64\xc3\x4d\xc4\x7d\x37\x56\xb7\x00\x6a\x96\xc2\xd7\xac\x85\xad\xca\xc6\x5f\x26\xf6\x67\x62\x54\xbf\xdf\x27\x93\xcf\x1e\x6f\x80\xf5\x82\x10\x12\xf4\xfb\xb6\x78\xfc\x3c\xf9\x4c\x20\xcf\x13\x09\xc6\x97\x8d\x6e\x42\x31\x46\xd1\x1c\x22\xc6\x1f\x35\xd8\xa8\x0d\x40\x9d\xfe\x78\x8d\x2a\xfc\x70\xb8\xce\xcf\xf8\x1e\x7f\x40\xf8\x03\xf7\xfd\x8d\x90\xf7\x78\x41\x29\x2c\x0f\xbb\x84\xe5\x8b\x3a\x65\xbe\x68\x50\xe6\x92\x65\x70\x71\x7b\xe9\x73\x62\x9d\xef\xdd\x47\xae\x9e\x60\xfd\x2c\x96\x3b\x4f\xe1\xe4\xc3\x91\xcb\x1a\x31\xe3\x37\x11\xb1\xfd\x2b\x8d\x82\xe1\x3c\xcb\x12\x28\xd5\x0c\x4f\x72\xa0\xa8\xb0\x96\xae\x8b\xf2\xe7\x06\x4f\x20\x17\x26\xe3\x09\x16\x26\x4f\x70\xf7\x7f\x90\xaa\x3e\x39\x57\x64\xb5\x03\x64\x75\x4d\x12\x30\x02\x49\xc0\x83\xa6\xb5\x39\x85\x7d\xea\x02\x81\x0d\x8d\xb2\xb6\xe6\x8a\x02\x5f\xb0\xe1\x9f\x9d\x21\x7c\x27\x78\x11\x56\xfd\x0d\x7f\x3e\x67\x15\x5c\x93\x03\x06\xa4\x9c\x04\xef\x22\xb3\x9b\x64\xf9\x63\xe4\x37\x0f\x30\xf7\xc9\x5f\xff\x31\x5e\x2c\x21\xac\x71\x07\x09\xd5\xa2\xcf\xea\xb9\x4d\x5d\x21\xae\x48\xe4\xe0\x95\x9f\x2f\xe2\xd4\x93\x51\x0f\x3f\xfa\x61\xbc\x29\x3c\xa7\x43\x61\x49\xc4\x38\xb6\x70\x5b\x3d\x56\x46\x6b\x16\x94\xfe\x2a\x0e\x43\xb0\xb3\x1b\xac\xb2\x9f\x06\xfe\x7a\x4d\xfd\xdc\x4f\x03\x6a\xc9\xf2\xd6\xe0\x0e\x86\xd4\x95\xd7\x4d\x7c\x36\x35\xe9\xac\xbe\xe7\x41\xed\xb0\xe5\x0d\xe2\x34\x05\xca\x95\x0f\xe2\x16\xae\x69\xf9\x97\x15\xb6\xfa\xdf\xa8\x53\x98\x31\x15\x30\x8a\x6b\x08\xd4\xac\x6a\x17\x43\x94\xac\x6a\x65\x72\x00\x4d\x9e\xc3\x24\x43\xaf\x01\x91\x6f\x0f\x93\xa1\x9c\x0a\x4b\xc7\x9d\x84\xa8\x96\x3a\x92\xa6\xa0\x12\x67\xe0\x3c\x4d\x1d\xe6\x31\x71\xc6\xf1\xb7\xf9\x38\x3e\x3e\x46\xd9\x34\x9e\x19\xd2\xcb\x58\x1a\xbf\x73\x85\xa9\x16\x65\x0b\xc7\x44\x8d\xb8\xe5\x4a\x53\x82\xc4\xa5\x18\x02\x05\xcc\x24\xeb\x92\x21\x84\xd0\x30\x8f\xd7\xeb\x44\x69\x3e\x7d\xa1\x0f\xaf\xb3\xbb\x14\x22\xad\x8a\x73\x51\x66\x99\xb0\xf9\x14\xaf\x68\xb6\x29\xbb\xb2\xc0\x87\x32\xcb\x27\x67\x4e\x23\xeb\x9d\x7f\xaf\x72\x0b\x72\xa6\x94\x85\xde\x65\x9b\x82\x42\xb3\xb6\x83\x6f\x74\xff\xeb\x77\xac\xf5\xb7\x14\x21\x6c\xa9\x0f\x55\x70\x79\xd3\x39\x01\xa8\xa3\x88\x9e\xda\x9d\xfd\x57\x4a\x5a\xb5\xcc\x7e\x3f\x35\x14\x2a\x6a\x28\x71\xe4\x56\x8c\x54\xaa\x75\xfc\x87\xf5\xcf\xea\xf6\x0f\x6b\xe8\x74\xb6\xb6\x1a\xf5\x7d\x4f\xfd\x2d\xfd\x59\x55\xc2\x97\xb2\x56\xdc\xd0\xd2\xea\x18\x26\x05\x9f\x82\x34\x2d\x5f\xf3\xba\x6c\x73\x6c\x9f\xb2\x4d\xb0\x84\xb0\x9f\x5f\xdb\x17\xfd\xa5\x9a\x96\x46\xb5\xd7\x69\xf8\xb3\x2a\xbd\x4e\xc3\x36\xd0\x20\xe7\x5d\xf6\xf5\x30\x53\x1f\xb6\xeb\xfc\x7d\xb2\xc9\xbf\xb6\x3a\xf6\x4d\x1b\xf8\xbf\x2c\x1a\x0a\x6d\xb4\x0a\xa7\xc3\x2c\xfd\x08\x2b\xb9\xe9\x3a\x2a\x95\x2b\x9c\xf2\x52\x6f\x8c\x8a\xfe\x08\x83\xcd\x1b\xe5\x6b\x7b\xc0\xa1\x1e\x38\x95\xa9\x75\xf7\xa6\xd1\xef\xae\x74\xdb\xd4\x46\xfc\x93\x68\xa3\xed\xcd\x46\x7c\xcc\xf9\x56\xc5\x79\x66\x92\xdf\xe3\x83\xc4\x31\x29\x87\x59\x2a\x6a\xc1\x3e\xbc\xbd\x4a\xe2\xe0\x0b\xde\xb0\x79\xdb\x1a\x44\x3c\x04\x68\x3b\x52\xc3\x02\xb0\x76\x02\x9b\xc3\xa9\xdf\xb7\x78\x60\x71\x1e\xa5\xc3\x36\xe0\xe1\x60\x3a\x5c\xd3\xbc\x88\x8b\xd2\x66\xa3\xe7\x1f\x0c\xd9\x8c\x9b\x1e\xc6\x35\xcc\x87\x80\xfd\x6c\xe0\x8c\xf4\xe9\xf7\x63\x1b\x4c\xc9\xb8\x5e\xd0\x11\x21\x54\x6a\x6a\x7e\x82\x94\xfd\xfe\x28\xdf\xef\x25\xb7\x4a\x08\x61\x6f\xbc\x33\x47\xd0\x19\x8b\x93\x0e\x47\xe0\x9b\xcd\x7a\x09\x6e\x4a\xc5\x2e\x3d\x2c\xfd\x05\x23\xb4\xd9\x40\x44\xca\x32\xa7\xd1\x7e\x6f\xb7\x57\x39\xf6\xfb\x7d\xdf\xa6\xa8\x3e\x1f\x3f\xac\x1b\x78\xc0\x27\xd1\x80\xba\x09\x9a\x26\x90\x4d\x00\x76\x03\xd8\xae\x61\xd6\xd7\x42\x72\xbd\x49\x0a\x86\x86\x1c\x96\x1a\xc3\xa0\xe3\x26\xca\x41\x42\x0d\xd7\x00\x09\x3b\xc7\x26\x8f\x7e\xd0\x3a\xe5\x50\x33\x1e\x9b\xd3\x83\x6a\x9d\xb6\x1d\xe0\x1f\x4a\x1a\x94\x26\x96\x3f\xbd\x51\xc8\xea\xeb\xc3\xec\x5c\x98\x30\xda\xe6\x32\x6b\xad\x2f\x31\x93\x5f\x2d\xb1\x7a\x8e\xe2\xa9\x56\x10\xe4\xf1\xc2\x04\x64\x14\x2b\x37\x8c\xe2\x34\x7c\x7d\xf3\xee\x7d\x16\x72\x53\x4e\x01\x98\x24\x2e\x4a\x9a\xbe\xc9\x72\xe8\xe1\x9f\xe8\x43\x01\xa0\x58\xd5\x49\x16\x51\x1d\x52\x1e\x6e\xd9\xa8\xb8\x8c\x51\x28\x36\x9a\x49\x8d\x2d\xc8\xe8\x25\x7d\x74\x9b\xa2\x72\x41\x40\x96\x8d\xaa\xea\xab\x94\x66\xe1\x9e\xda\xe8\x4c\x6d\x41\x1c\x99\x72\x3c\x8e\x4d\x3a\xab\xb1\x00\x0c\x2d\xc2\x8e\x8c\x06\x9e\xff\x3c\x75\x5c\x93\x62\xab\x9d\x3b\x90\xdb\x75\xf4\xfc\x4c\xf1\xa2\x5d\x8a\x49\xc1\x52\xd0\xf8\x91\x46\x88\x6f\xda\xb0\x49\x89\x7d\x7a\x63\x4a\x1f\x0b\x43\xfa\x98\xd4\xa4\x8f\x41\x6d\xb3\x8f\x4c\x41\x60\xa8\x5f\x44\x9d\x4b\xd6\xba\x48\x82\x33\x5c\xa4\xd7\x4f\x88\x03\xf2\x41\xc6\x03\xda\xec\xb4\x60\xc7\x35\x2e\xe5\x1a\xd2\x4f\x52\xa8\x62\x9e\x2f\xa5\xdc\x57\xe0\x49\x51\x9d\xfa\x0d\x28\x2f\xfd\x2a\x0a\x4a\x9a\x45\xbf\x30\x6a\x43\xbf\x01\x8d\x84\xcb\xa1\xbc\x99\x64\x4c\x69\x39\x34\x86\xc4\x45\xac\x73\xc2\xfd\x96\xe2\x45\x87\x68\x93\xcf\x82\x85\x2d\x35\x0b\x16\xb6\xcc\x29\xf8\x5a\xa9\x67\x5b\x8e\xa9\xea\x69\xc3\x5c\x4a\x34\xeb\x6f\x2d\xf9\x26\xb6\x38\xbc\xe1\x01\xa0\xac\x9f\x44\x61\x48\x10\xf0\x96\xcf\x40\x22\x1b\xf0\xd6\x6f\x92\xd2\x55\xf0\x86\x67\x83\x46\x34\xe0\xad\xdf\x24\x4d\x2a\xe1\x6d\x09\x1a\xd0\x00\x36\xcb\x7d\x58\x53\xee\x1b\xa6\x2e\x63\x29\xc4\xdd\x70\xa7\xec\x52\x9f\x25\x38\x6a\x8b\x11\xeb\x4b\x0f\x1f\xd8\x08\xda\xdf\x2d\x0f\x17\xa5\x08\x27\x48\xba\xae\x09\x04\x5f\x68\x90\x0e\xb7\xfd\xfe\x02\x28\x80\x7e\xdf\xbe\x25\x96\x6f\x21\x6c\xe6\x4e\xec\x6b\x1e\x73\x6f\xae\x09\x0e\x7c\xad\x06\x41\x22\xe4\x5d\xc3\x45\x3e\x51\xb9\xeb\x03\x72\xb7\xdb\xa6\xd0\x8f\xcf\xb5\xa9\xcf\x0a\x6b\x4d\xcc\xb7\x99\xce\x97\x9e\x9a\x77\x33\x4b\x2e\x3d\x81\x08\x8d\xac\x1f\xd6\xd8\xc0\x0b\x33\x53\x2f\x4e\x13\x55\x5a\x25\xf8\x82\x55\xe8\xd3\xca\x87\x06\x24\x3e\x99\xb9\x6a\x4d\x1b\x18\xd6\xca\x87\x65\x6e\x22\x5d\xab\x84\x58\xfa\x52\x25\x21\x9a\x58\x03\xd7\xf2\xb6\x86\x62\xc2\x0d\x28\x05\xa7\x15\xbe\xc6\x0b\x84\x37\x38\xdc\xef\xa3\x09\xdb\xd8\xbd\x43\x13\x71\x67\xaa\x42\x98\x13\x02\x32\x93\x8f\x52\xc5\xd8\x60\x14\x30\xdf\x28\xbc\xbc\xc2\x2b\xae\x68\x6c\xdc\x66\x75\x86\xad\xee\x3e\x1d\x05\xf6\x6d\x52\x2e\x30\x0c\x4d\x9b\xa4\x1a\xde\x4e\x9a\x7c\x0c\x4e\xfc\xa2\x54\xe6\xc0\x54\x1b\xfe\x7a\x47\x25\xd0\xad\xd0\x3c\x63\x55\x65\x4e\xbf\xff\xb3\xab\xdc\x1d\xca\x91\x42\xe3\x75\x97\xd0\xf8\xb6\x2e\x34\xbe\x6d\xaa\x73\x18\x7b\x2d\x6b\xdd\x50\xef\x90\x2b\xa7\xb6\x8f\x1a\x12\x63\x63\xf3\x61\xa9\xc6\x4e\xca\x5e\x15\x72\x58\x8e\xc5\xa3\x06\xc8\x0a\xb9\x0c\xf8\x13\xdb\x9f\xe6\x7a\x9a\xaf\x0d\x19\xf0\xef\xa1\xe0\xef\xfd\x82\x5a\x15\xb2\x6f\x4d\x29\xf0\xa7\x5f\x58\x0a\xdc\x24\x88\x5b\xde\x3a\x39\x45\x91\xb5\x04\x61\xdf\x9d\xf4\xfb\xca\xa2\x46\x0b\xbd\x4e\x66\x13\xf3\xc5\x73\xc7\x65\xa7\x28\xaa\xa0\xa5\x24\x76\x1a\xc4\xcb\xa6\xe5\x09\x66\xec\xf3\x2a\xfe\x44\x1f\x3e\xe4\xb4\x28\xc0\x9c\x68\x23\x6c\xd9\xa5\x3f\x67\x08\x26\x91\xca\x8b\x8a\xa2\x99\x8f\xd0\x24\xb7\x91\x97\x7d\x5b\x1e\x96\x71\xf5\xfb\xca\x43\xe9\xb1\x0b\x6e\xad\x3b\x25\x65\x90\xd3\xa6\x98\x6b\x2c\x0b\x1d\xfa\x61\x08\xb2\xcc\xef\xa1\x20\xcd\x6d\xeb\x0b\x7d\xd8\xac\x2d\x5c\x08\x3f\x92\x99\x16\x6e\xc7\x5c\x0e\x7e\x2e\xe5\xe0\x67\x08\x04\xee\xbb\xc6\xa8\x19\x9a\x7d\x61\xbb\x29\x54\x2c\xc0\xe7\x0d\x84\xe2\xd1\x86\x4c\xd9\x51\x69\x61\xc1\x76\x62\xc1\xfd\x61\x8b\x16\x81\x85\x2d\xd6\xb6\x15\xf2\x73\x99\xab\x7c\x58\x79\xbc\x58\x96\xd6\x6c\xcc\x1d\xab\x9a\xfd\xef\xb8\x9b\xec\x6d\x94\xca\x68\x7d\xc3\xa2\x08\x7d\x37\x70\x2b\xce\x56\xda\xad\xb9\x62\x8c\x78\x8d\xb8\xf5\x87\xad\x41\x20\xdc\x91\x78\x00\x47\x3a\x1a\x70\x2b\xec\xd2\x13\xd4\xd4\x73\xfe\xa5\xaf\x4c\xca\xe1\xeb\xeb\xef\x5f\xfe\xf5\xf3\xc7\xb7\x1f\x3e\x7c\x7f\xfd\x3c\x8b\x6a\x77\xe4\xfe\xab\xae\x50\x46\xe7\x8e\xd6\x52\x3a\x51\x77\x28\x57\xea\x0a\x65\x74\x3e\x82\x4b\x94\xb3\x33\x07\xdf\x91\x4b\x67\xdc\x18\xd0\x1d\x8c\xe5\xe6\x19\x1a\x4d\xc2\xbb\x46\x97\x81\x72\x5b\x9f\xb2\x76\xa1\xa1\x6f\x0e\x1e\xb1\xe0\x66\xe8\xea\x39\xb8\xcc\xd6\x9e\x83\x3b\x2f\x0a\x7e\x12\x01\x59\x2a\xcc\x19\x33\x69\x10\x7e\xe6\xc8\xaa\xce\x9c\x7a\x35\x52\x7f\xc8\xe9\xea\xb5\xac\x46\xdd\x2d\x28\x6d\xa3\x13\x6c\x78\x97\x2c\x02\x3f\xa1\xb6\x8b\x2c\xdc\x70\x8e\xc9\xbf\x1e\xc0\x42\xd4\xca\x47\x0b\x6c\xad\x0a\xc3\x3d\x5b\x5d\xf7\x87\xfa\x45\x9c\x2e\xd8\x0f\x7d\x9b\xde\x30\x5e\x4f\x74\xe2\x03\xe7\x31\x0d\x0f\x9c\xaf\xa5\xf6\x90\x65\x75\xd7\xd5\x74\x3d\xc2\x1a\x06\xc7\x9e\x8c\xb5\xd0\xa3\x71\x71\x73\x06\x1f\x99\x84\xfa\xb4\x9d\x41\x52\xf3\x66\xab\xe9\x8b\x94\x35\xc7\x68\xb7\x38\x5d\xe8\x56\x9d\x43\xd0\xba\x8f\xcb\x7f\x00\x58\xd0\x98\x82\x55\x17\x2a\xd6\xe6\xbf\xbb\x0f\x82\x9f\xef\x8d\xce\x1c\x87\x35\xff\xbc\xd6\xb1\xd5\x1b\x41\x79\xe5\xec\x14\xb5\x1d\x8d\x9a\x38\xa1\xdc\x8b\xb6\x90\xc9\x41\x96\x42\xcd\xa1\xab\x5d\x81\x76\x62\x9d\xc6\xca\x0e\xc7\xa6\x06\x54\x55\x73\x6a\xe2\x75\xc5\x6a\x56\x0e\x57\x21\x80\x72\xb8\xd3\x2e\xd2\x4e\x4f\xdb\x23\x1a\x5e\x8d\x90\xf5\xf8\x48\xaa\x9a\x0e\xd9\x0d\xec\x3b\xd7\xff\xf7\x2e\xef\xe2\x45\x9a\xe5\x71\xba\xd0\x37\x68\x5c\x68\xcf\xb8\x0b\x76\xd2\xe5\xca\x13\x82\x4a\x79\x95\xad\x56\x71\x69\xa4\x97\x94\xec\x52\x7a\x5f\xfe\x89\xb2\x95\xc4\x67\xa8\xf0\xa6\xb3\x0a\xa7\x52\x1a\x45\xea\x5e\x0f\x40\xa8\xbd\xab\xf0\x4e\x64\xc3\x79\x56\xc9\x56\x48\x4b\x7c\xd8\xa2\xf4\x9c\x4e\x4a\xcf\x31\x29\x3d\x67\xe6\xed\x2a\x5c\xb6\xbf\x75\x3b\xbf\x75\xcd\x6f\x5d\xf8\xb6\x3d\x5b\xdf\x8d\x8c\x42\xa3\x99\x0c\x20\x90\x91\x52\x0e\x14\xc7\x44\x55\x9e\xf5\xfb\x19\xdc\x2c\x70\x0a\x1f\x6f\xb4\x9a\x9b\x3f\x91\x22\x58\x9e\xb7\xdf\xab\x1a\x3c\x1f\xc4\x5c\x91\xff\x45\x12\x8a\x38\xd1\x75\x16\xfd\x3e\x8f\x84\xbb\x62\x13\x06\xb4\x13\x21\x44\x06\xd0\x4f\xdb\xf3\x89\x3a\xd2\xc8\x91\xcb\x43\x34\x5a\x25\x63\x20\xf8\x0d\x9b\x51\x8d\xdd\xf9\x8d\x08\xc8\x1b\xe0\x08\xaf\xf1\x03\x49\x38\x2f\xd9\x2d\xc8\x7d\x42\x84\xcd\x68\x80\x87\xc9\xc3\x70\x41\xcb\xdf\xb3\xbd\x3a\x4e\x17\xaf\x92\x98\xa6\xe5\x47\x1a\x94\x36\x92\x47\xa5\x3a\x29\xeb\x07\x25\xb8\xd9\xdd\xf0\x48\x8e\x74\x18\xc0\x87\x7f\xe9\xf7\xcd\xd7\xbf\xee\xf7\x47\x46\xd6\x11\x1d\xc2\x48\x69\x81\x02\xd3\x67\xee\x76\x08\x0d\xbd\x18\x31\xaa\xa6\x96\xce\x1b\x7e\x31\x42\x3a\x96\xe5\x4a\x37\x36\x51\x4f\x9e\xaa\x79\xea\xcc\x64\x22\xf8\x22\x16\x1d\x51\x45\xff\xda\x55\xf4\xaf\xe3\x5a\x7f\x56\x83\xed\x90\x8d\xb4\xd1\x9d\xf9\x60\x3b\x2c\xb3\x35\xc4\x1f\xdf\x20\x7b\xcd\xf3\x8a\xbf\xe7\xa5\x6d\x0b\x3f\xc2\xeb\xec\x4e\x8e\x06\x8f\xd0\xb1\x91\xc6\x47\x82\x47\x08\xbd\x38\x41\xe8\x37\x23\x02\x81\x22\xec\xf5\x31\x71\x91\x19\xa8\x53\x54\xb4\xf2\xef\x6d\xe5\x32\xc0\x66\x93\xc4\x7b\xca\x3d\x9a\x3a\x68\x10\x20\x1c\xa0\xe3\x11\xbe\x79\xea\x0b\xe1\x91\xc6\x41\x83\x08\xe1\x08\x1d\x8f\xc6\x66\xc7\x55\x0f\x17\xb5\xfe\xde\xb0\x8e\x56\x0a\x52\x13\xbb\x63\xe7\x69\xef\x25\x3c\xc3\x56\xdb\x49\x2c\x76\xa1\xbf\x78\x81\x78\xfa\xab\x17\x89\x27\x70\xa2\xb4\xc6\xc1\xdc\xcb\x8d\x3d\x87\xef\x75\xdd\xe4\x7d\xbb\x0b\xb0\x44\x9a\x89\x36\x3a\xb4\x4d\xa2\x0a\xdf\x21\xe4\xfd\xc3\x9d\x55\xbd\x6d\x02\xc2\x30\xb8\x91\xfb\x50\x4e\xa8\xb8\x11\xf8\x0b\x84\x60\x11\x35\xe3\x58\x3d\x83\x5b\xb2\x0d\xc3\xd4\xf9\xd8\xb8\xa6\xed\x20\xad\xe5\xe6\x4e\x87\xe2\xe9\xd8\x55\xdb\x7c\xc3\x53\x99\xa8\xbb\x50\x44\xd2\xf4\x90\xb0\x69\xae\xdd\x1c\x7c\x31\xeb\xc6\x42\xc2\xec\xa9\x1d\x52\x08\xfc\x4b\xc1\x5d\xee\x18\xfd\xe0\x2d\x30\x97\x3c\x2d\x2a\x2c\x01\x59\x2a\x40\xe6\x0a\x90\x99\x09\xc8\xb8\x42\x33\x06\xc5\x8d\x98\xf7\x6c\xdd\x30\x69\x6c\xdc\xb4\xeb\xc9\x94\x81\xf4\xe4\xc5\xa4\x18\x25\xec\xc4\x1c\x55\xd3\xb0\xbe\x11\x37\x11\x41\x45\x9b\xae\x5d\x5b\x3e\x1f\x87\x30\x3b\x02\xec\x67\x62\x2b\x5c\x82\x32\x0a\xd4\x41\x68\x7c\xa8\xc2\xbc\xdf\xcf\x95\xbe\xae\x79\x4f\x2f\xa7\x36\x1f\x16\x49\x1c\x30\x6a\xa8\x82\xca\xfe\x81\x0b\xc2\xc7\x6f\x9e\xda\x17\x4d\x06\xe4\x7f\x96\x0f\x12\x9b\xca\x43\x57\x99\xa0\xa1\x96\x0d\x5a\x87\x7d\x99\x94\x53\x74\xdd\x72\x68\x53\xb2\x43\x28\xfd\x70\x48\x7e\x6a\x3a\x73\x5b\xfb\xa9\x25\x70\xf7\xc8\xc1\x80\xcb\x20\x8e\x30\xf4\x5c\xb7\x2d\x7b\xb2\x94\xb1\x5e\xc8\x14\xe6\xcb\x75\xd6\x96\x3c\x7e\xd8\xe4\xd4\x90\x3e\x5e\xd7\xa5\x8f\xd7\x9d\xd2\x47\x65\x2b\x06\xca\xef\xc6\x25\xeb\x0d\xde\x09\xe7\xd0\x58\xc9\x06\xcd\xeb\x9b\x0a\xd9\xd7\xa6\x70\xf0\xf6\xd9\xde\x01\xea\xd1\xce\x29\x32\xed\x71\x1d\x9c\x1a\x64\xb1\x0a\x67\x34\x2e\xbf\xa5\xa6\x75\x6e\x3a\x2d\x67\x84\x4e\xcb\x99\x11\x7b\xe6\xd9\xed\x8b\x68\x88\x71\xc9\x63\x6c\xf5\xe2\xb4\xc7\x25\x30\x10\x74\xa8\x2b\x62\x97\x8a\x91\x65\x18\xfb\xca\x40\x54\x32\x6c\x91\x5c\xe6\x7c\x74\x51\x9e\xad\x6c\xda\x36\x76\xef\xe8\x14\xda\x75\xda\xf0\xbf\x4d\xb7\x7e\x12\x87\x3d\xbf\x2c\xe9\x6a\x5d\xf6\xca\xac\x57\x40\x00\xab\x5e\x9a\xa5\x03\xe8\xfc\x3c\xd1\x9e\x34\x5a\xde\x30\x5a\x02\xa7\x72\xa8\xc5\x49\xe4\xc8\x39\xe4\x1f\x78\x23\x24\x38\x19\x3c\x39\xc2\xbb\xb4\xeb\x9c\x23\xec\x83\x61\x99\x6b\x44\x00\xdb\x98\xae\x11\xfa\x7d\x6a\x34\x31\xa1\xde\x4e\x5a\x54\x51\x23\xba\x62\xa1\xed\x6e\x8a\xff\xf9\x36\xda\x07\x6c\x7c\xf4\x70\x92\x7f\xb9\xcb\x0b\x20\xc5\x25\xe4\x60\x4b\x2c\x3a\x63\x94\xd5\x4d\xf0\x87\x2b\x7f\x6d\x77\x79\xd1\x9e\x96\x33\x46\x0d\x45\x6d\x9a\x02\xa7\x63\xc3\xd9\xb7\xf6\x93\x80\x33\x62\x83\x1d\xaf\x8a\x32\xc4\xf2\xb8\x09\x0a\x12\x37\x55\xd7\xf7\x71\x49\xc3\xe1\x3c\x4e\x43\x3b\xb1\x13\x3b\x47\x48\x0d\x21\x57\x9e\xd0\x8c\xa2\x5e\x86\xa3\x38\x2f\xca\x8f\xb0\xd7\x33\xb6\x10\xe7\x55\x4a\x28\xb6\x4b\x92\xa3\x83\xae\x29\x52\xd3\xd3\x76\x79\xc0\xd3\x76\x89\x4b\xc3\x29\x44\xfa\x98\xf7\xf1\x86\x29\x56\xdb\x95\xb8\x61\x61\xf7\x87\x3c\xdb\xac\xbd\x5d\x5c\x80\x06\x4c\x9c\x2e\x3c\xae\xd2\xc1\xf5\x95\xe1\x6e\x08\xc7\xc3\x96\xaa\x0c\x69\x6a\x5e\xc8\xf2\xb0\x28\x59\x02\x9c\x96\xf0\x5e\xab\xc0\x38\x4a\x5b\x75\xa8\x4f\xdc\x0a\xe7\xc3\x43\x57\x70\x9d\x0e\xf4\x4b\xd3\xd3\x6d\x59\x9b\x3f\x01\x97\x9d\x8a\x38\xcd\x78\x3d\x35\x49\x13\xa0\x00\x17\xb4\x7c\xcb\xb1\x18\x00\xf7\xce\x5f\xaf\xe3\x74\x81\xc0\x57\x8d\x27\x4b\xbc\xa7\xf7\x65\x33\x9b\xad\xba\xfa\x9c\xbb\x00\x30\xb3\x03\x9d\x1d\x96\x95\xd6\x2b\x34\xb4\x69\x54\x90\xef\x31\x65\xe8\x0f\x3b\x81\xd0\x66\xe3\xba\x4f\xbc\x72\xae\xc5\x6a\xa6\xd8\x25\xaa\xcd\x40\xd3\x45\x9a\xb9\x7e\x78\x5f\x0a\x6e\xe2\xad\x5b\x14\x98\x14\xd2\x84\x96\xb4\x97\x4e\xa1\x07\x33\xac\x41\x98\x56\x15\x3a\xe0\xac\xbe\xdb\xa5\x9a\xd2\x6d\x51\x4e\x89\x85\x87\x7e\xdc\x74\xe6\xfe\xeb\xf8\xe5\xe0\xf4\x93\xa1\x06\x62\xf6\xd1\x9a\xb1\xf3\x23\x30\x5d\xd0\x29\x58\xc1\x96\xd4\x02\x59\x2e\xd6\x03\x56\xef\x9c\x9c\xd3\xaf\xf7\x71\x89\xa5\x3b\xf4\x49\xec\x1d\x8a\xf6\x50\xe2\x1c\xc7\xdc\xd9\x7f\xd6\x75\x39\x1b\x75\xd9\xcd\x34\x57\x77\xae\xbe\xe4\x54\xc1\x30\x2e\x3e\xd2\xbf\x6f\xe2\x1c\x1c\x4c\xd7\x09\xac\xe8\xb0\xb5\x3e\xd8\x4f\x99\x70\xe9\xf4\x2d\x54\xf1\xe9\x12\xfe\x0f\xd6\x59\xf2\x10\xc5\x49\x82\xec\xc8\xa4\xb3\x42\xac\x69\x08\x95\xfa\xd5\x47\x7f\x63\xf9\x40\x00\xe2\x15\xcd\x17\xd4\x4c\x2d\x20\xbc\x70\xf7\x02\xef\x8e\x23\x90\xd9\x86\xdf\x6c\x55\x22\x35\x4c\x0a\xf3\x61\x90\x64\xa9\xba\x09\xb5\x53\xbc\x93\xab\xcf\x2b\xf9\x79\xc1\xe5\x8b\x08\xc7\xe0\x82\x81\x63\x83\xe7\xdb\x29\xb6\xf8\xb3\xc5\xf8\x0e\x4e\xbc\x42\xaa\x20\xdd\x59\x22\xa3\xa9\x79\xda\x7d\x5c\xb2\xa4\x8a\xfd\xc7\x07\xd1\xdc\x83\x48\x97\x13\xa0\x0d\x31\x87\x80\x70\x41\x62\xbb\xc4\x1b\x85\xa4\xe6\xfa\x29\xd0\x30\xca\xf2\x6b\x3f\x58\xea\x8d\x21\xe3\xd5\xc4\xa4\x98\x66\x33\xc6\x24\xc2\x90\xeb\x81\x97\x91\x1d\x23\x5e\x2c\x21\x19\xdb\x9c\x4a\x1c\xf0\x87\x0d\x8e\x48\x39\xcd\x66\xdc\x05\x46\xfb\xbb\x08\xe2\x7a\x8a\x4d\x2b\x4e\xc7\x47\xc1\x7e\x9f\xf4\xfb\x47\xe1\x24\xd8\xef\x8f\x92\xfd\x3e\x9c\x04\xfd\x7e\x02\x46\x98\xdd\x5f\xdb\xac\x5f\xa4\x63\x1e\x62\x63\x1e\x52\x63\x1e\x62\x98\x07\xdd\xa6\x84\x71\xac\x61\xac\xe6\x22\x36\xe6\xa2\x42\xc8\x7b\xa4\x2d\x36\xb7\x6e\xf5\x68\x91\x47\xba\x23\xd9\xa7\xe7\x74\x03\xfc\x95\x54\xea\xba\xd5\x41\xad\x70\x0f\xb5\x40\x0a\x92\xae\xd8\x24\xda\xf3\x38\x65\xfc\xb2\xb2\x9e\x65\xbb\x16\xed\x8a\xaa\xc2\xa8\xc5\x16\x42\x50\xb4\x93\x87\x40\x67\x98\xd2\x03\x73\x45\x11\x77\xc8\x0b\xd1\x62\x2b\x84\x53\x4d\x71\xc6\x2d\xf7\x47\x46\xd0\x0e\x40\xa7\x49\x39\x4d\x67\x1e\xdb\xa6\x2b\x4a\xe8\x7e\x0f\xd2\xf0\x92\xfd\x8e\x25\x01\xd7\x31\x5a\x1c\x93\xa9\xa6\x9f\x7d\x56\x13\x45\x3e\xaf\x30\xd6\xe6\xbd\xd9\xd4\x9f\x91\x18\x0a\x23\x2f\x1e\xae\x37\xc5\xd2\xf6\x65\x80\x9e\x5d\xa5\x2a\x28\xe0\x4b\x1e\x02\x63\x5a\xcc\x90\x3e\x6a\xd8\xab\x79\xda\xc8\xa5\x30\x2d\x66\xd3\x7c\x36\xde\x4c\xc5\xd3\x8c\xa4\x76\x82\xaa\xcd\xb4\x60\x4f\x8c\xe8\xee\x3e\xad\x36\xd3\x58\x94\x66\xbf\xda\xed\x8b\x06\x99\x2f\x97\x78\x2d\xd2\x2e\x63\x22\x27\xec\x8f\x27\xe8\x00\x46\x0a\xff\x3a\x81\x8f\x7e\x39\xaf\x21\x1d\xee\x8d\xb8\x03\x91\x8b\x11\x5c\xce\xff\x9f\xbb\xd7\x12\xbc\xc5\xd6\x50\xea\x12\x97\xbe\x8c\x36\x96\x8a\xfd\xd7\x6c\x83\x68\xc8\x93\x95\x18\x6c\x6b\xa8\x80\x1b\x9f\xdc\xb7\x24\xd0\xea\x0b\xd5\x04\xff\xe2\xab\xc5\x65\x4f\x69\x50\x4b\x6f\xc2\xd2\xbe\x25\x55\xb2\xd1\x8d\x7c\x06\xd1\x56\x41\xd4\xc5\x1b\x4e\x48\xaa\xe4\xc0\x81\x7a\xfe\x2b\x8e\xd4\x33\xc8\x81\x9b\x5e\x16\xd2\x83\xde\x96\xe4\xd5\x2b\xb6\x44\xb5\xea\xe9\xaf\xea\x09\x62\x4e\xcc\x10\xde\x12\x4d\xf1\xe1\x15\xd9\x0e\x05\x4c\xf1\x9c\x6c\x87\x02\x5a\x5c\x29\xd9\x70\x90\x9e\x8b\x7e\x1d\x50\x94\x95\xd9\x52\x17\x76\xd5\xd6\x7a\x95\x45\xc4\xd5\x3b\x2e\x40\xdb\x75\x83\xf0\x1d\x11\x37\x4b\x91\xbc\x59\x8a\xe0\x4a\x69\x10\xbd\x18\x1d\x07\xfc\x92\x09\x9e\x93\x8a\x6b\xef\xd6\xba\x05\xf4\xc0\xc1\x50\x18\xa6\x66\x01\x9e\x77\xc4\xbe\x18\x9a\xea\x00\xac\x4f\xa5\x66\x86\x0f\x99\xa4\x2f\x0f\x49\x14\xb3\x14\x70\xd7\x54\x0b\x85\x04\xcc\xcf\xcb\x5a\xfa\x7d\x5c\x3e\x6a\x20\x2f\x64\x92\x86\xad\xfd\x42\xb8\x2f\xbe\xab\xbe\xe2\xa3\x9b\xca\x70\x35\xdb\x69\x3d\xff\x50\xa7\x94\x1f\x1a\x94\xb2\xba\x0c\x16\xb2\xc8\x2d\x79\x30\x28\xde\xed\xaf\x10\x19\x8b\x6b\x1b\x36\xa3\x63\x65\x68\x07\xb2\x73\xe1\x48\x31\x93\x81\xcc\x54\xec\x23\xed\x99\xea\x03\x37\x9c\x02\xf5\xc0\x18\x1c\xc3\xd2\xba\xad\x87\x21\x4b\xed\xf7\xb9\x05\xe0\x11\x21\xa5\x2a\x7e\x14\x33\xfe\x54\xda\x45\xc9\xa7\x69\x3a\xb3\x33\x84\xbb\x5c\xf8\xcb\x43\xcc\xca\x52\xa5\x2a\x52\xa2\x99\xe2\x72\x9b\x19\xac\x9e\x23\xe7\x67\x85\xf7\xfa\x79\xa7\x9f\x49\xe1\xfd\x39\x2e\x97\xda\x45\x85\x2f\x73\x25\x91\x55\xcf\xee\x66\x35\x86\x2d\xbf\x26\x07\x29\x33\x5d\xb6\x4e\x67\x81\x96\xa0\xcf\x6f\x4c\x80\x4d\x30\xfd\x96\x3c\xd5\x6c\x47\x55\x03\x97\x4d\xa1\xe2\x9a\xf9\x9d\x90\x0c\xcb\xa2\x1b\x50\x0b\xa3\xb3\x89\x56\x25\xea\xfb\xce\x48\x89\xec\x4c\x1f\xd7\x29\x9d\xae\x40\x88\x06\xec\x6d\xda\x88\xb3\x69\x6e\xa1\xe6\xd5\x1b\x1c\x29\x00\x9a\xff\xbd\x2e\xe1\xce\xcf\xff\x07\xb9\x84\xd3\xb4\x9d\x03\xb4\x5d\x5d\x5d\xf2\xfc\x02\x29\x3a\xef\x4a\xbb\xa1\xbc\x30\xe2\xda\x5c\x28\x42\xef\xe2\x02\x08\xbd\xd4\x1e\x5d\x9d\x28\xef\x70\xa3\x4b\x20\xef\x42\xd1\x15\x8d\x16\x0f\xe6\x45\xb1\xbf\x29\x33\xb8\xd4\x3f\x1c\xe6\xaa\x20\x54\x06\xc5\xbc\x5e\xad\xcb\x07\x1c\x10\x3a\x7c\x1b\x64\xa9\xe9\xd0\x89\xf2\x90\x23\x10\xfb\x0a\x9e\xb8\xcd\xd1\x92\xd0\xe1\x3b\x9a\x6e\xf8\xdb\x96\x30\x04\x4e\xca\x78\x2d\xe2\x36\xf3\x70\x54\xa0\x28\x91\xa5\xaf\x92\xac\xe0\x61\x9b\xb3\xf4\x66\x4d\x53\x7c\xc7\x1e\xd9\xc3\x0d\xa1\x42\x42\xc6\x43\x06\x5c\x13\x3a\xe4\xfe\x24\x5e\xf3\x7e\xf1\xea\x6f\x3b\xee\xf2\xd4\xf8\x0e\xd9\x2f\x99\x23\xb3\xb0\x55\x1b\x97\x85\x2d\x18\x8b\xfc\x95\xa6\x3d\x6a\x44\x16\xb6\xe4\x78\x54\x70\x2d\x1e\x5f\x80\x8d\x05\x9e\xd8\x48\xd8\x03\xff\x31\x46\x61\x61\xab\x3d\x06\xee\xc2\x69\x35\x51\x14\x87\xa7\xe8\x6d\x79\xaa\xf8\xdd\xeb\x38\x6a\x5b\x6b\xac\x37\xa5\xf6\x3b\xf3\x09\xeb\x21\x34\xa3\x05\x6b\x79\x24\xae\x8d\xdf\x0b\xb8\xc1\x00\xc7\xe2\x0a\xaf\x26\xbb\xca\xdb\x29\x90\x7a\x25\x36\xa1\xe7\x15\x58\x01\xc6\x5b\x62\x09\x18\x6f\x8b\x05\x3c\xbc\x39\xe6\xf0\xf0\x16\x98\xc1\xc3\xbb\xc3\x06\x3c\xbc\x1b\xdc\x86\x87\x77\x5d\xe1\x50\xec\x50\xb4\xf0\xc2\x49\x9d\x35\xd8\xcd\xfd\x82\xdb\x87\xd1\xc2\xcb\x71\x4a\xef\xe4\x4b\xa8\xd0\x57\x8f\xe6\xa1\x42\x1e\x3b\xd5\x26\x5a\x82\xa1\x20\xb2\x63\x7b\xfe\xad\xe9\x80\x73\x89\x9f\x20\x54\x34\x1c\x8e\xdc\x3a\x20\x8e\xdc\x26\x1c\x15\x01\x07\x4d\x7a\xfe\x01\x72\x4a\x71\x08\x98\x73\xe1\x0a\x86\x70\xf1\xca\xb0\x0b\x18\x97\x07\x23\xba\x17\x80\xcc\x12\x94\x52\x9d\xa3\x90\x4b\xdf\x8c\xf1\xc5\x8b\x57\xc8\x7e\x40\x5f\x41\x55\xfd\x3a\x9c\x2e\x57\x49\x2f\x14\xd7\x9b\x28\xae\x37\xd0\x5c\x6f\xa4\xb9\xde\x50\x73\xbd\x07\xf5\xd0\x5d\x43\x0f\x1d\x4c\x1c\xb6\x0d\x13\x87\xf3\x4b\x24\xdc\x66\xba\xee\x79\xd3\x6d\xe6\x21\xa6\xb8\x19\x73\xea\x17\x62\x8a\x83\x4e\xa6\x38\xfa\x39\xca\x9e\xf4\x3d\xbd\x2f\xc1\x3d\x05\x68\x7a\x0a\xf4\x35\x03\x5b\x15\x6c\xa5\x1a\x51\x8e\x74\x94\x1a\x79\x51\xc2\xb6\x66\xa5\xfa\xb9\xa2\xe9\xe6\x5d\x9c\xf2\x05\x01\x75\xc0\x12\xe7\x7c\xf6\xa6\x11\xb8\xd7\x38\x80\x80\x32\x86\xf3\x86\x95\x1f\xb7\x1b\x9e\xe4\x13\x6d\xa8\xce\xb2\xec\x12\x79\x46\x58\x26\xb6\xb3\xf0\x24\xcd\x82\xd7\x3b\x23\xad\xbf\xe5\x7a\xe5\x2a\x8b\xe6\xa0\x4d\xed\x36\xde\xef\xdc\xe4\xf6\xc1\x23\x44\x33\xc2\x56\x03\x8a\x8e\x1a\xa6\xbd\xe3\x23\x77\x30\x8c\xcd\xa3\xf5\xaa\xb2\xa2\x19\xcf\xaa\xfe\x99\xdb\xf5\xd9\xdb\x92\xae\xda\xbd\xe8\x88\xc8\x2c\x07\x2b\x77\x8e\xfd\xfe\x50\xfd\x65\xa5\xd5\x99\xb8\x28\x21\x23\xb9\x0e\xc4\x13\x93\x7c\xc8\xb6\x8d\x71\x1c\x49\x41\xb6\xcf\x03\xc8\xd6\x1b\xe0\x59\x05\xb1\x7d\x52\xd7\xe5\x90\x05\x79\xb0\x9e\x49\x5d\x74\x54\xcf\xf4\xa6\x33\x64\xd0\xb8\x66\xd6\x78\xe0\x12\x42\x8a\x89\xcf\x85\x8b\xf5\x4c\xcf\x1f\x16\x6b\x50\x4e\x2a\xb0\x8b\x2a\x9a\x14\xb4\xe7\x93\x5a\x99\x71\x69\x68\x5a\x95\xc2\x65\x06\x11\xfb\x93\xcf\xb5\x59\xe2\x0a\x67\x20\x91\xa9\xaa\xaa\xee\xba\xa5\xa1\x2c\x72\xe4\x80\xa7\x8c\xfa\xd4\x6b\x95\xae\xa2\xcc\xd6\x6c\x47\xf4\x17\x3e\xa7\x47\xa5\xb6\x56\x6b\xc5\x21\x13\x92\xdc\xce\xb5\xcb\x6f\x09\x0f\x28\x96\x91\x92\xcf\x84\xa9\x34\x46\x1b\x43\xc9\xf9\x50\xb2\x0a\xd7\xab\xe5\x7a\x27\x8f\xb9\x4b\x91\xe5\x65\x38\x9c\xfd\x1e\x98\x8e\xa9\xb2\xd2\xd2\xf6\x59\x33\xd3\xd0\xea\xa1\x66\x68\xd5\xef\x77\x39\x08\xf9\xca\x65\x62\x20\xfc\x6b\xbd\x21\xd5\x3b\x6b\xec\x54\x46\x9c\xb8\xb7\x32\xde\xdd\x41\x47\x30\x2a\x24\x1e\x84\x05\x93\x51\x1e\x76\x69\x16\x52\x8f\x0a\x59\x5b\x0d\x2b\xab\xf1\xa1\xd8\x78\xb9\x19\x1b\x2f\xaf\x6a\x32\xbe\xb0\x2d\xe3\x4b\x7e\xa6\xcf\x0c\x11\xab\xac\xbe\x1b\xd6\xfc\x59\x30\x00\xca\x00\x66\xc6\x66\x26\xfc\x53\x60\xe1\xac\x21\x0f\x28\x77\x49\x61\x37\x1c\x64\x6c\xca\x4c\x78\x02\x39\x50\xc3\xd7\x39\x75\x68\xcb\x25\x35\x73\x01\x92\x49\xed\xbf\x21\x35\xfc\x37\xa4\x35\xff\x0d\xa9\x61\x00\x4f\xd2\x3a\xdf\x11\x92\xb4\xc1\x77\x3c\x10\x5b\xc7\x3a\xc4\xa9\x66\x35\xd8\xc1\xad\xb4\x70\x1e\x18\xd9\xfa\x80\x17\x24\xd5\xdc\xc7\x1d\x49\x61\x51\xe1\x1b\x56\x85\x70\xe3\x90\xea\xed\x2f\x55\x0c\x89\xf2\xa9\x82\xf0\x35\x2f\x7b\xc3\x0f\x3e\x06\x7d\x84\x6f\x49\xaa\x96\x0e\xfe\x04\x2f\x9a\x51\xf9\xc0\x3e\xc8\xc5\x1d\x31\x4e\x3b\x98\x16\x84\xdf\x91\x54\x79\x6e\xc0\x5f\xd8\xcb\xc3\x9a\xe2\xbf\xe9\xee\x7f\x99\x48\x0b\x35\xef\x0b\xbe\x57\x51\x0c\x3f\x77\xc8\x6a\x9f\xe4\x76\x6a\x41\xd1\x6a\x1e\x1a\x9e\x64\x82\xb8\x4b\x88\x83\xac\x4f\xd3\x3d\x83\x8a\xb0\x66\x32\x43\xda\x67\x43\x93\x2d\xe2\x00\x6c\x71\x48\x12\x76\xdd\xcc\x52\xcd\x05\x03\xf8\x5b\xd0\x11\xdb\xf0\x7b\xf2\xd8\x02\xd2\xc8\x3e\xb9\x36\xe3\xb2\x01\x11\x22\xd4\x0b\x3e\x4f\x79\xcc\xb1\x98\x6b\xdf\x09\x7b\xd4\xd7\xc4\xb2\xf0\x2b\x32\x9d\xe1\x8f\xe4\xc8\x1d\xdb\xc2\xc7\xed\x9b\x98\xd5\x6e\xaa\x9e\xa0\xfd\x1e\x6e\x59\x3f\x4d\x28\xf9\x64\xdf\x23\xef\xa3\xb2\x9e\x78\x49\xd6\xdd\x12\xab\x0d\x6e\x1e\x39\xeb\xc3\x32\x26\x64\xdc\x60\x71\xdd\x0e\xb6\xb7\x2d\xf8\x77\xf5\xc3\xf8\xde\x0c\xac\x25\x14\xd0\xde\xf9\x25\xcd\x63\x3f\x19\xfc\xf0\xd6\xeb\x95\x4b\xda\xfb\x6f\x80\xdd\x7f\xf7\x64\xbc\x18\x1e\x29\x68\x4e\x7b\x7e\xda\xf3\x59\x35\xbd\xbb\x25\x4d\x7b\x9b\x22\x4e\x17\xfc\x03\x3e\x27\xff\xdd\x53\xdb\x59\xef\x2e\x2e\x97\xbd\xff\x96\x98\xf1\xdf\x43\x0b\x8d\xed\x94\xc0\x89\x72\x7f\xe0\x88\x47\xfd\xfe\xc7\x7e\xff\x55\xfd\x80\x57\xb7\xee\x70\xaa\xdb\x29\xb9\x07\xbd\x6a\xf3\x3b\xf8\xcc\x7e\x4d\x5a\x9f\x74\x28\xe8\x36\x24\x5e\xc2\xc9\x97\x57\x36\xc9\x2b\x9b\x22\x11\x49\x21\x5b\x73\x87\x28\x2a\x8e\x42\x2a\x76\x3f\x61\xed\x63\x85\x7e\xe9\x0f\x38\xb6\x79\xb5\x8e\x55\xa8\x42\x63\xd6\x35\x4a\x16\x93\x57\xc3\xbf\x65\x71\x6a\x5b\xb8\x67\x21\xef\x35\x9f\xfd\xb7\xf8\x8d\x71\x23\x32\x34\x89\x55\x19\x36\x3f\x17\x68\xfa\x24\xf6\xf6\xfb\xb6\xa8\xac\x9b\x9a\x45\xf8\x2d\x31\x1c\x2a\xe8\xb8\x51\xef\x26\xef\xbc\x80\x53\xc2\xce\x41\x9f\x1c\xad\xb0\x86\xdc\x79\x49\xf5\xc4\x07\xcf\xf4\xde\x5b\x88\x68\x18\x58\x3e\xb0\xcd\xa5\x71\x63\xb2\xab\x4c\x9f\x28\x01\x78\x2b\x69\x44\xb9\xd3\xa4\x82\x88\xde\xbd\xe6\xe6\xd7\x96\xf7\x7e\xc2\xc3\x04\xaa\x78\xdf\xca\x17\xc2\x5b\x31\xcb\xca\xa3\x37\x7c\x98\xdd\xa5\x05\x7c\xc5\xa6\x64\xa0\xe4\xe3\x77\xfb\xbd\x65\xf1\x58\xde\x32\x3e\xb8\x5f\xac\xb3\xf5\x66\xad\xe2\x10\x3e\xe1\x7b\xe4\x80\x23\x13\x8e\x84\xc1\x7e\x7f\xcb\x27\xc2\x0c\xe8\x07\x4e\xe8\xa4\xaf\x93\x9b\x0a\x7f\x40\x98\xee\xf7\x07\xe1\x2e\xee\x61\x42\xb6\xe9\xe6\xd9\xa6\x48\x1e\x6e\x69\xf9\x36\x4d\x69\xfe\xc7\x4f\xef\xbe\xf7\x76\x9f\x3f\x2f\xcb\x55\xe2\x59\xfd\x7f\xbb\x1c\x39\x27\x63\xab\xaa\x18\x97\x7c\xa8\x36\x21\xf5\x6a\xcc\x23\xc7\xff\xe6\xc6\x32\xb9\x97\x28\x6e\x21\xef\x9e\x93\xa1\x77\xcd\x39\x92\xf4\x19\x97\x27\xfd\xad\xc2\x9f\x1f\x69\x3e\xac\x63\x5c\x1c\x64\x69\x75\xb8\xf4\xf6\xa0\xbb\x92\xd0\xeb\x9c\x48\xec\xa7\xc1\x32\xcb\xaf\x05\xbc\xf5\xba\xe1\x9c\xdf\x7b\x25\xae\xaa\x4d\x47\x56\xd0\x0a\xcf\xf1\x8e\xe1\xe8\xf7\x71\xd1\x2d\x48\xe3\x48\x95\xc4\x45\xc9\x83\x34\xcc\x87\xb5\xe2\x08\x7f\xf0\xd7\xc2\xe5\x7b\xf3\x53\x56\x58\xe7\xe2\x1d\xbf\x7a\x6b\x14\x5a\x49\x9e\xf6\x4d\x85\xb9\xde\x82\xf9\xd1\xc4\x7c\xe1\xb2\x1f\x11\x80\x1e\x55\x08\xbf\x44\x1d\x56\x02\x07\x23\x40\x8a\x68\x09\xf3\xc3\x71\x1d\xff\x47\x88\xce\xff\x59\x71\xe0\x47\x66\x1c\xf8\xd1\x48\x29\x46\x5c\x19\x4e\x0b\x74\x68\x95\xd1\xe5\x15\xc8\x88\x76\xd2\x8d\xb1\x67\x81\xb7\xce\x65\x96\xc7\x3f\x65\x69\xc9\x12\xb8\x0b\x8b\x0a\xcf\x1f\x2d\x05\xfe\x2e\x2a\xbc\x20\xbb\x35\x9b\x39\x6f\xb7\xf2\xef\x65\x0c\xf7\xc0\x4f\x02\xdb\x75\x9c\xdf\xf4\x06\xbd\xab\xf3\xf5\x3d\x92\x7e\x9d\x65\xcc\xa7\x5b\x08\x22\x0c\x11\x54\xc0\xfa\xa8\x16\x50\x7d\x21\x1c\x7c\x3f\x47\x7c\xd5\x8e\xa5\xfe\x8b\x88\xaf\x5a\x91\xd9\x69\x53\xd3\xe3\x39\xe2\xab\x95\x58\x51\x86\xac\x6a\x41\x4b\xe1\x16\xfb\xa5\x58\xda\x6d\x5d\xed\x5e\x6a\x7e\xd9\xef\xd7\x5e\x55\x58\x26\x46\x08\x30\x9a\x30\xec\xb4\x67\x7d\xf4\x1b\xd3\xa3\xfc\xc1\x8f\x10\xd7\x99\x06\x9a\xaf\x92\x6e\x8d\xcd\xce\x82\x5c\xe0\xf9\x1d\x45\x3f\xa7\xa3\x92\xbd\xd3\x76\x9f\x94\x3c\xa7\xef\x63\xb8\x7b\xd6\x03\xa8\xbf\x19\x4c\xe3\x01\xc5\x9a\x4e\xdf\xac\xe2\x6c\x7f\x29\x99\x51\xd6\x49\x10\x79\x94\x4b\xba\xa2\x38\x7e\x5e\xcf\x40\x38\x73\x44\x48\xce\xe0\x25\xf9\x5f\xb8\x34\x37\xad\x50\xbf\x8d\x6b\xaf\xfd\xfe\x51\xcc\x97\x0b\x37\x99\x95\xf1\x18\xb5\xf3\x8a\xba\xee\x07\xc2\xd6\xfa\xde\x42\x63\xf1\xd1\xd4\xca\xcb\xc4\x22\x84\x64\xc3\x30\xce\x29\x8c\x71\x62\x19\x81\xd6\x2c\x15\xb3\xe7\x23\xf7\x67\x43\x7c\x5c\x6b\x90\x18\x6b\xfc\x58\xfb\x74\xf0\xb1\x85\x2c\x54\x69\x41\x0e\xc0\xd1\xf4\xd7\x09\x09\x35\xe7\xa4\x0c\x12\x6d\xe9\x0e\x2e\xd1\x0e\x7c\xef\x10\xae\x4d\xd0\x29\xa2\xa9\x49\x52\x6b\x11\xef\x41\xb4\xda\xf4\x0a\xfa\xcf\x0e\x47\x6f\x8a\x32\x60\x0e\xdb\xae\x30\x6b\xc8\x21\x48\xe0\xaf\x13\x51\x70\x01\x45\x2b\xb6\x4d\xcd\xd8\x41\x8a\x24\x7c\xc3\x2f\x64\x1d\x2d\xcb\xe6\x71\xbe\xe1\x3e\x20\xb9\xce\x4d\x69\x9c\xbe\xec\x2c\x52\x0c\xfc\x66\xb2\xab\xbc\x0d\xb8\xaa\xfc\x90\xad\xb3\x2d\xcd\xc5\x2d\x15\xf8\xab\xe4\x78\xde\x8c\x73\x57\xe2\xe9\xc1\xfb\xca\x56\xc7\x04\x5f\xae\x3a\x06\x1c\xf6\xb5\x30\x62\xd4\x9d\x62\x2f\xb5\xf6\x19\xd7\xcc\x5a\x7f\x46\x80\xf3\x83\x46\x8d\xed\xbd\x97\xd3\x4d\xed\x74\x65\xd2\x9b\xe0\x83\x7a\x4b\x9c\x34\xbb\xc9\xe3\x45\x9c\x7a\x72\x7d\x05\xc6\xfa\x5a\x79\x73\xed\xe8\xe6\x89\x72\x8f\x11\x5b\x85\xbe\x54\x6c\xe7\x29\x54\xe0\xee\x84\xf2\x21\x1c\xce\x5c\x7d\x3c\x3c\x1c\xf6\xfb\x20\x25\xda\xc9\x1d\x18\x2b\xb6\xc2\x3e\xde\x31\x8a\xd9\x94\xe4\xd3\xda\x49\x57\x56\x15\xc2\xe9\x13\x41\xbc\xef\xea\x17\x96\x77\x8d\x0b\xcb\x2e\xd4\x01\x0f\x71\xca\xce\x41\xfb\xef\x81\x98\x93\x95\xf0\xb3\x54\x67\xdb\x16\x8d\xc0\x81\x16\x66\x4c\xff\x27\x86\x48\x40\xcc\xd9\x77\xe6\xd5\xe2\xcd\xff\x5e\x75\x91\x0b\xe7\x7f\xa4\xba\xc8\x3f\x9b\xe6\xad\xdd\x7f\xba\xee\x85\x56\x0b\x76\xdd\x4b\x4d\xff\x9e\x29\xf2\x17\x82\x9d\xb4\x7c\x76\x5d\xb8\xe0\xb3\x8b\xf7\x86\x15\xbe\x13\x7d\x38\x37\x75\x92\x6e\x4c\x35\x7b\x47\xfa\x1b\x4d\x37\xab\x39\xcd\x6b\x62\xf6\x94\xe8\x18\x27\x60\xdc\x93\x12\xaa\xfc\x71\x78\xd6\x1c\x42\xe9\xc9\x73\x4d\xe7\xd5\xb4\xe3\xaf\xff\xa1\xc6\x84\x53\x10\x49\xca\x1b\x4d\x71\x6a\xc1\x6c\xe9\x56\x5f\xc7\x4d\xe9\x50\x53\xf8\x98\x0e\x25\xf5\x3f\xab\x5b\x5d\xaa\xf2\xed\xfe\xd0\x89\xe1\x3e\x8b\xd3\x1c\x1e\xad\x90\x60\xb3\x7b\x96\x61\x71\xfa\xc9\xa8\xa7\x4b\x0d\x70\x42\x6d\xf6\x2d\x83\xc0\x07\xc5\x63\x3c\xe6\x0d\xed\xaf\xcd\x70\xb3\x7f\xd1\xfe\xd1\x14\xf7\xe9\x9e\xb3\x67\xc1\xa7\xb0\x17\xff\x9e\x67\xd4\x78\x96\x93\x11\xf0\x2c\x07\x38\x1a\x91\x5b\x8f\x32\x63\x32\x30\x1f\x60\x19\xbc\xfb\xbf\xc7\xc0\xc0\x2c\x18\xdc\x0b\x3f\x0e\xfe\xf0\xff\xb3\xf7\xee\xed\x6d\xe3\xc6\xe2\xf0\xff\xef\xa7\xa0\xf9\xeb\x51\x88\x23\x58\x2b\x39\x76\xe2\x50\x61\x54\x6f\xd6\xd9\xa6\xb5\xe3\xd4\x76\xda\xd3\xe3\xf5\xc9\xa1\x45\xc8\x62\x43\x91\x2c\x09\xfa\xb2\x16\xbf\xfb\xfb\x60\x70\x21\x40\x82\xbe\x64\x2f\x6d\xf7\x39\x4d\xd7\x22\x41\x10\x04\x06\x83\x99\xc1\x60\x2e\x84\x1e\x2d\x16\x25\xa1\xa7\x59\x1e\x1c\x75\x8b\x99\x40\x19\xec\xab\xf2\x63\x52\xc6\x3f\x92\x96\x71\x72\xdb\x20\xfd\xa3\x98\xe8\x38\xbd\x84\x0c\x37\xa5\x97\xaa\xaf\xa3\x1a\x4f\x5e\xbc\x60\xf2\xdf\x43\x3e\xa5\xe6\x27\x47\x10\xa6\xc1\xe3\xb1\x33\x2c\x9f\x68\x9f\x99\xc2\x9e\x01\xa6\xb4\x91\xfe\x2f\xbb\xef\x79\x04\x4d\x65\x1e\xfb\x11\xcd\x72\x10\x56\xb9\xa8\x4c\xb3\x9c\x97\x21\xac\x6a\xb0\x7d\xb3\x56\x85\xdd\x8a\x52\x84\xd5\x7b\xa6\x98\xc0\xda\x30\x4b\x60\xa7\x62\xe9\xcb\x03\x3b\x16\xa9\x3e\x82\x5d\x0a\xbf\x51\xbe\xdd\x90\x50\x82\x67\x48\x3a\x5d\x16\xa4\x5c\x66\x49\x84\xc3\xa0\xbb\x45\xe5\x93\xea\x11\x46\xca\x85\x35\x3a\x31\xac\x10\x84\x65\xba\xb9\x81\xa9\xe1\xec\xec\x92\xd0\x53\x73\x24\x5e\x85\x43\xd8\x04\xf1\x65\xc4\xf6\x24\xd2\xeb\x93\x66\x39\xd7\x5c\x82\x59\x3b\x5c\xb5\xe5\xa7\x13\x4f\x86\xfe\x4c\x78\xeb\x46\x17\x43\xc6\x4d\x12\x06\xff\xcd\x52\x11\x33\xbc\x08\x12\x00\xf7\x66\xa9\x53\xbb\x28\x98\x0f\x2b\x19\x6b\x28\x0f\x16\xc3\x4a\x04\x23\x5a\xb6\x12\x3d\x9c\x7a\x05\x70\x96\xe5\x08\x82\x0a\xf3\xd1\x6d\xc6\x78\x25\x4b\x00\x08\x9b\x31\x1b\xd3\xfc\x75\xcc\xa7\xe1\x22\x98\x6f\xc6\xd3\xf9\x66\x70\x81\x9b\x9e\x0c\x83\x0b\x7e\xf0\x1f\x2f\xbc\xe8\xcd\x2d\x12\x71\x8c\xa2\xcd\x5b\x56\xf3\xd2\xa8\x79\x59\xc7\x0b\x6f\x21\x9b\xbb\x0e\x16\x9b\xf1\x74\xb1\x19\x5c\x63\x7d\x10\xc3\xe0\x5a\x35\x98\xbf\x59\xf1\xba\x47\x41\xbe\xb9\x62\x75\x8f\x5a\x75\x8f\x6a\x0d\xce\x0d\xd9\x9e\x73\xb2\xcd\x81\xde\x14\x2f\x44\xb1\x75\x06\xee\xdb\x37\x3f\x62\x2f\xd8\xb3\x1e\xf9\x2e\xf1\x97\xde\xbe\xdd\x93\x6c\x81\x9f\xf6\xcb\x7e\xe9\x12\x30\x27\x28\x5a\x16\x85\x16\xea\x75\x83\x44\xcb\xe5\xd8\xda\xc6\xa9\x15\xd9\x2c\x4f\x0e\xd8\xde\x25\xca\xcb\x64\xa7\x60\xe5\x98\x45\xfa\x1a\x72\xe2\x29\x57\x0c\x78\xa7\x5e\x8a\xd6\x6b\xd3\xf8\x81\xf7\x45\x52\xd5\xd1\x45\x16\xdd\xa2\xbe\x90\x66\xb8\x0a\x20\x2c\xc4\xac\x18\x35\x4a\x41\x21\x77\x4c\x35\x44\x0a\xd9\x72\x1b\x6a\xa0\xd2\xb9\x83\x17\xe2\x4a\x60\x56\x08\x6b\xd0\x5a\x91\xf1\x0b\x2f\xc4\x85\x86\xad\xa8\xd6\x21\x6d\x21\x47\x8f\x06\xb8\x65\x73\x57\x58\x20\x9d\x31\xce\xba\xf0\xd2\xc1\xc0\x95\x53\x04\xe9\x68\xa4\x5f\x2c\xfb\x00\xab\xc0\x15\x35\x32\x40\xb2\x74\x88\x0d\x5b\x8a\x0c\xc9\xd1\xd3\x80\xe2\x22\x18\x4f\xd3\xc1\x20\xdd\x08\x02\x32\x45\xc5\x30\xf0\x52\x46\xa3\x21\x75\xdd\x87\x2c\x22\x68\x54\x82\x72\xf4\x34\xcb\x55\xa4\x89\xda\x23\x38\x46\xd3\x2c\x88\x47\x99\x84\xe5\xd0\xd4\x08\x7d\xb3\xb5\x19\xae\xd7\xe3\xba\x56\x0e\xed\x1a\xc0\x5a\x34\xb7\x1f\x58\x5f\x19\x6b\x70\x6c\x18\x50\xb4\x99\x95\x44\x0f\x85\x37\x7d\xd8\x41\x70\xaa\x90\x0b\x0d\xa9\xae\x6e\xee\xc5\x13\xf6\x8e\x15\x4f\xbe\x42\xab\xa2\xa7\xf4\x90\xb3\x8e\x70\x01\xe5\xfa\xd2\x6c\x2f\x42\xdc\xc5\x1f\x2d\x96\x02\x8f\xa0\xa8\xfc\xdc\xa8\x96\xf8\xb3\x0c\xe8\x88\x24\xe4\x0a\x76\xae\x38\x61\x1f\xb2\xe0\x67\x97\x2d\xd3\xd1\x61\x16\x85\xc9\x5b\x19\x18\x6a\x6e\x2a\x73\xc4\x15\x89\xd8\x1e\x49\xdd\xc6\xe9\x25\xbe\xe2\xb7\x37\x31\x85\x44\x1b\xd2\x37\x19\x12\x0f\xf3\x1b\x56\xeb\x88\xdd\xe5\x24\x85\x1c\xc3\xda\xc9\xce\x49\x40\x21\x23\x02\xfe\xc8\xbe\xd7\x9a\x65\x4c\x47\xa7\x6a\x37\xde\xec\xec\xf1\xa1\x94\x5e\x8c\x6d\x3a\xfe\x12\xe8\xf5\x79\xfb\x7f\xb7\x68\x92\x54\x76\x0f\xb5\x0c\xe5\xa5\xc4\xe5\x36\xf9\x93\x05\x6a\x32\x7a\x2d\x4a\xe4\x3c\xb8\xd8\x55\xb3\xe0\xe2\x0e\x85\x81\x6f\xb6\xa6\xc0\xc5\xae\x3e\x05\x86\xda\x4a\x81\xbf\xb9\x8e\xd3\x4b\x7e\x03\x4e\xde\xae\x84\xbb\xba\x14\xcf\xb9\x49\x89\xa1\xf6\x62\xf0\x76\xb1\x4b\xdb\x2b\xd8\xb5\x00\x5b\xd6\x33\x20\x6d\x54\x55\x96\xfa\x37\xc1\xe1\x94\x6f\x97\x36\x82\xe0\x70\xbd\xfe\x38\x5a\x55\xf1\x49\x95\xe7\x59\x41\xf7\x2a\x9a\xad\xd7\xde\x8d\xd8\xd3\x73\xc5\xc2\xe7\xa0\x5a\xaf\xbd\x74\x66\x72\x10\xc6\x55\x38\xe3\xf0\x65\xe5\x07\xb4\x71\x17\x7d\x9a\xa6\x46\xc5\xd6\xa4\xc5\xff\xcc\xcf\x35\x8f\xf0\xb7\xe1\xfc\x4b\x54\x70\x1b\xc5\xd2\xbf\x8b\x53\xcd\xb7\xb5\xc6\x7f\xef\x57\x6c\x7d\x6c\x7f\x46\xc4\x61\xd8\x18\xe3\x98\x35\x7c\x9f\x1b\x22\x9f\x44\x7f\x8e\x9b\x49\xf4\x73\xe9\x9f\x78\x85\x95\x63\xff\x0a\xab\x49\xf4\x2f\xf9\xe9\xfc\x89\x0a\xf6\x77\x53\xe3\x2f\xfd\xdd\xeb\x4d\x58\xd1\x9c\x22\x87\x9c\x43\x63\x85\xa1\x7e\x89\xbb\x0a\x37\xb5\x33\xb3\x9f\x39\x40\x96\xa3\xfd\xfe\x7e\x34\x6e\x9a\x77\xdc\x38\xd3\x77\xaf\xe3\x34\xca\xae\x5d\x9c\xa5\x5c\xd8\xb1\x89\x3f\xb8\x40\x0f\xe8\xf5\x0e\x4d\xbd\xde\x61\xdb\x11\xc1\x5c\xa9\xbe\xb6\xca\x0d\x7d\xea\x23\x0e\x22\x1b\xf8\xec\xe2\xd6\x62\x65\x1b\xfd\xb6\xdc\xfa\x88\x16\x2d\x2b\xcc\x57\x09\x93\x1f\x52\x3d\x7e\x69\xc5\xa1\xfb\xa8\xa9\x1e\x85\x2a\xdb\xad\x91\x77\xa8\x2b\x1c\xbf\xfc\x7b\x29\x1c\xfb\xdb\x04\xd2\x78\x18\xa6\xe1\x25\x23\x88\x8f\x6a\x38\xee\xd3\x64\x6e\x35\x9e\x16\x5b\xdb\xff\x42\x5a\xcd\x5f\x30\x83\xb3\x54\x71\xe2\x5b\x9b\x07\x48\xcb\xed\x63\x7b\x82\x94\x4e\x13\x34\x9d\x5c\xa9\xb9\xfb\x52\xd3\x69\xee\x82\x4e\x33\xf5\xb6\xb6\x65\x2e\xe7\x57\x90\xc9\x59\x41\x15\x9f\x08\xeb\x80\x6d\x5d\xe3\xa9\xa9\xe8\x36\x36\x1a\x17\x3b\x10\x79\xa5\xe9\x1f\x97\xf8\xcc\x70\x74\x9e\x1b\xa7\x2e\x12\xaa\xbb\xde\x4c\x07\x8d\x2e\x6f\x11\xdf\x30\x5e\x28\x12\x0e\x90\x11\xbf\x18\xad\x18\x16\xe1\x42\x04\x50\xe6\x6a\x53\x15\x6b\x9e\xc7\x53\xae\x31\xd7\xf0\xf9\x3c\xd8\x41\x9c\xc4\xf4\x56\x69\xfd\xea\x27\xe8\xe4\x84\x04\x2c\x65\x55\x6b\xb4\x08\xdc\x13\xdf\xa1\x15\xdc\xa1\x09\x28\x07\x67\xfe\x6c\x07\xca\x68\xb0\xd4\x99\xc1\xa8\x34\x1d\x5a\x14\x87\x49\x76\xa9\x15\x34\x31\xd0\x34\x95\x19\x93\x65\xf5\x38\x62\x6c\x5f\xad\xac\xa0\xe1\x2c\x54\xb6\xdb\x6c\x1f\x82\xb1\x76\x44\x2a\x9b\xd0\xf7\xdf\xb2\xcc\xd3\x4e\x63\x8f\x72\x92\x76\x83\x79\x99\xb4\x2c\x6d\x46\x85\x70\x8f\x83\x31\x09\xee\xd1\xea\x62\x7b\xd0\x6d\x82\xd6\x6b\x5a\x2b\xef\x82\x46\x4e\x26\x7c\x6f\x3a\x55\x1e\x1c\x9c\xb4\x8c\xc2\x28\x7a\x30\xd9\x24\xa8\xd5\xac\x99\x63\x78\xe2\x16\x65\xb6\x9f\xcd\x61\x43\x23\x0e\xb6\xec\x6f\x2d\xb8\x15\x70\x3a\x22\x29\x58\xa7\xf3\xf4\x5d\x1b\xe3\x7e\x37\x19\xcd\xaf\x45\x74\xba\x20\xab\xec\xea\xe1\x08\xe3\xd3\x87\x20\x3f\x25\xa2\xa9\xaf\x18\x99\xf5\xc5\xde\xc1\xe1\x74\x54\x90\x92\x66\x05\x39\x08\x4b\x2a\x50\xce\x8c\x28\xd2\xc6\xcd\xc6\xa1\x89\x70\x21\x49\xa4\xcb\xd5\x60\xa4\x37\x21\xe5\xbb\xae\xa3\x90\xf2\x16\xe9\xe4\x8a\x85\x18\xd6\xca\x61\x44\x6f\x40\xc7\x71\xe3\x81\x47\x10\xde\x68\xa5\x3e\xed\x7d\xb3\xcf\xa8\x00\xbb\x17\xfa\x2b\xae\xe1\xfb\x61\x82\xba\xed\x78\x55\x9e\x66\x39\xf0\x46\x0f\x0d\x06\x90\x43\xc8\x9a\x47\xd6\x23\xa3\x76\xf8\x05\x48\xca\xaa\xf4\x66\xe5\x3c\xcc\xa5\x8d\xa6\xa1\x50\xd3\x1f\xd8\x06\xdb\xfb\x66\xff\x60\x89\xfe\x8a\x8b\xf8\x68\xe7\x4b\x32\xff\x22\x33\x35\x99\x33\x9f\x48\x14\xb9\x07\x75\xcd\x3c\x52\x75\x0b\xe5\x5a\x46\x45\x9d\x31\x68\x55\xc1\xc6\x48\x06\x39\x34\x01\xfc\x30\xe9\x32\x7b\x31\xd5\x48\x31\x64\x4b\x56\x77\x8d\x7e\x87\x27\xf9\x6d\x1e\xe8\x76\x43\xc2\x99\x50\xa2\x3b\xb7\xc7\xff\xa5\x92\xd2\xb6\xe2\x6b\xe2\x8e\x39\x8a\x26\xac\x83\xe3\xe1\xd3\xf2\xbd\xa2\x3b\xd1\x7f\x8b\xcf\x0e\x14\x18\xf3\xef\x21\x2c\xaa\xf3\xe0\xa9\x5a\xf5\xf5\xfa\x54\x77\x2b\x98\x3d\xd0\xac\xde\xe1\x8e\x0d\xeb\x57\x26\x84\xd5\xd8\xa9\x77\x7f\xef\x64\x2e\x5b\x6e\xdb\xce\x27\x12\x19\x3d\x6b\xf7\x43\x71\x60\xcb\xc7\x19\xe6\xde\x63\x0f\x64\x47\xcf\xa6\xc7\x36\x0c\x15\x46\xbf\x0d\x92\x9a\x05\x26\x9e\xf2\xb6\x9a\xd5\x28\x92\x6e\x36\xb5\x97\x61\xb9\x47\x69\x11\x5f\x54\x94\x78\x8d\x3b\x8a\x88\x80\xab\x55\x2c\x09\xb5\x55\xc4\x9b\x13\xd4\x6e\x53\x2c\x08\x43\x0d\x67\x32\x8e\xfb\x95\xf1\x32\x4f\x20\x7f\x09\x5e\x10\xdd\x51\x03\xe9\x8c\x8c\x7f\x54\xcc\x53\xab\x54\xba\x92\x35\x60\xe0\x56\xc5\xb2\x77\x0d\xc1\xb0\xf4\x4b\xc6\xb6\x6b\xba\x27\x59\xb8\x46\x67\x40\xce\xfb\x69\xa6\x5c\x8a\x03\x29\xe7\xb0\x42\x2b\xe5\xaa\xb1\x27\x65\x11\x96\x62\xd3\xc2\x66\x0e\x86\xa9\x95\xf3\x35\xc5\x3a\x7d\xd5\x4a\x75\x36\xd0\x14\x7f\xcc\x0a\x1a\x26\x60\xa0\x41\x6d\xb3\x87\xe9\x68\x19\x47\xea\x53\x6c\x77\x43\x47\x5f\x08\xc9\x0f\xf9\xb2\xe4\xb9\x88\x05\x5c\x41\x75\xd9\xee\x95\x74\x66\xa3\x6d\xfe\x06\x25\x52\x84\xc5\x54\x38\xb5\xad\x2c\x19\x82\x3b\x00\x76\xb1\x6b\x80\xf7\x71\x19\x82\x1b\x6d\x61\x1b\xa6\x4d\x91\xd1\xfb\xa6\x58\x87\xa9\x56\x6a\xb0\x56\x55\xcc\x61\xaa\x65\x1f\xd6\xe0\xe9\x62\x57\x87\xa7\x8b\x5d\x0d\x98\xa0\xa6\x14\x9b\x6e\xb7\x05\xc9\x96\x3b\x5b\xfb\xd3\x0d\x24\xa5\x1e\x12\xf2\xff\x76\xe8\x21\xde\x0f\x0c\x9a\x89\x4f\x82\xbb\x5a\xea\xfc\x96\xeb\xf5\xd5\x7a\xbd\x3f\x18\x6c\x1c\xcd\xbc\xfd\xc1\xc0\x3b\x51\x1a\x66\x36\x2b\xd7\x42\xe9\xf4\x76\xc9\xe0\x18\xbd\x13\xab\x43\x50\x3d\x5d\x96\xc4\x55\x2b\xa2\x31\xe2\x0e\xc9\xdc\x26\x51\x7a\xfd\x66\x90\x53\xff\x84\x27\xe9\xd5\x4b\xd7\x6b\x37\x12\x82\x98\x6b\x79\x51\x52\x30\x78\x59\xde\x74\x9e\xae\xd7\xee\xe6\xc4\xed\x77\xde\x68\x34\x41\x36\xfb\x37\xb5\xeb\xa3\x33\xd0\xe9\x1f\xca\x02\xc6\xd8\x6a\x4d\xc5\x39\xc7\xc6\xac\xfb\x0b\xdc\x4c\x85\xa9\x72\xe3\x65\x4f\x74\x60\xb2\x75\x4d\xec\x3f\x59\x37\x74\xf7\xa6\x6e\xa2\xe7\xc4\xe6\xd1\xc4\x37\xd7\xf8\x88\x09\x82\x2b\x84\xa3\xfb\x33\xf2\xa6\x1d\x83\xc2\x9c\xa4\x22\xae\x0a\xb8\xb1\x69\x9e\x45\x3a\xba\xd6\xb8\xb8\xc7\xcd\x46\x4b\xbd\xc2\x3a\x7a\xdc\x19\x64\xb3\xa9\xa6\xb5\x01\x31\xdd\x9b\xae\xc2\x27\x88\xfd\x0f\x4c\x0b\xbe\x2a\xf3\x6f\xb3\xdb\x05\xea\x33\x53\xd2\xdf\xa4\xf6\x4f\x3d\x82\x38\x6c\xb4\x2d\xd0\xbd\x6e\x2c\x0f\xe8\x4a\xdb\x44\x47\x4b\xa3\x6b\x80\x4e\x2b\xd7\xc9\x8e\x5e\xac\x2f\x7e\xad\x5c\xa0\x60\x53\xa0\x53\x1e\x56\xac\x93\x1e\x9e\x39\x55\xd1\x1e\x76\x2b\x88\x8f\x0f\x9e\x9a\x6a\x8a\x3a\xd4\xd7\x57\x09\x84\x35\x55\xe9\x91\xa1\x2a\xed\xa4\xec\xe0\x3c\xfa\x6b\x15\xa6\xcf\x9f\xa3\x7b\xf2\x46\xd8\x02\x28\x17\x81\xeb\xe2\x39\xfb\xb3\x08\x28\x1c\xb2\x97\x90\x26\x43\xb7\xbd\x33\x13\x26\xa4\x7a\x34\x85\xdb\x84\x9c\x99\x88\x4f\xd1\x39\x1c\xbf\xeb\xb9\x86\xe0\xb0\x5d\x2a\xcd\xc0\x6f\xd8\x6b\x1d\x80\x21\x34\xf5\x16\xc1\x5d\x8d\xce\xe8\x79\x90\xd6\x7a\xd8\xe6\x85\x25\x4a\xaf\xb2\x18\x5c\x9c\xd1\xf3\x69\xca\x33\x8c\xa5\xb3\xb6\xa5\xd7\x6c\x3e\x0c\xe8\xd0\xf5\xdc\x61\x3a\x74\x91\xe3\xfa\xc5\xb0\x7d\xf2\x86\x86\xae\xef\xc0\xf3\xa9\xeb\x9b\xda\x30\xd2\x8e\x0c\x89\x50\x8d\xf0\x7c\x30\xf0\x8a\x61\xa0\x1d\xfe\xf2\x16\xe6\xac\x05\x34\x95\x96\x4d\xf3\xb2\x3c\x25\x37\x74\x18\xb8\x53\x77\x58\xe8\xa1\xe0\x26\xa0\xbc\x8c\x85\xd6\x77\x47\x29\x57\xb7\x5e\x36\x56\xa3\x5b\x2f\xb9\xdd\x28\xbb\x7a\x25\xf5\xab\x5b\xbb\x63\xc4\x3e\xf0\xd3\xa3\x89\x77\x11\x42\x5b\xe0\x05\xc9\x93\x70\x4e\xbc\x02\x5b\xf5\x5d\x74\x44\xb3\x4f\x79\x4e\x8a\xb7\x21\x6c\x11\x90\x8c\xd5\xfc\xcd\xa6\x37\x42\xdf\x5c\x7e\x45\x07\x9f\x8a\xbd\x5a\x78\x72\x23\x95\xb0\xea\x7a\x8c\xdd\xcd\x55\xb9\xe9\x1a\x21\xf8\xb6\x5e\xbe\x00\xb8\x7f\xf3\x3f\xab\x72\xf3\x9b\x5f\x13\x8e\xee\xe6\xef\x26\x2e\x1a\xd1\xec\x20\xbb\x56\x70\x93\x50\xf3\xce\xf6\x36\xff\xfb\xfc\xd7\x02\x1c\xdb\xac\xe9\x19\x4f\xb4\x04\x36\x1f\x32\x47\x30\x0c\x27\x67\x72\x61\xe4\xd0\xcc\xf9\x5f\x38\x23\x5e\xe5\x15\x65\x4c\xe2\x36\x21\x1e\xfa\x5f\x97\xab\xec\x68\x40\x46\xd9\x75\x4a\x0a\xa9\x0b\x92\xc6\xbb\xe2\xbb\x7f\x89\xc9\xb5\xcb\xc3\x5b\x8f\xb4\x22\x60\x20\xa4\x98\xb5\x5e\x36\xaa\x74\x3e\x4a\x78\xb0\x2d\x9f\x9f\xd5\xf5\x3f\xbf\x6b\xd3\x19\xbf\x4b\x32\xc4\x0a\x9d\xba\x8b\x24\x0b\xa9\x1b\x04\x1e\x0d\xda\x24\x0c\xb6\x95\x81\x0b\x15\xdf\x41\x35\x19\x88\x47\xe9\xe6\xe0\xc3\x67\xf4\x7c\xbd\x06\xdf\x7e\x95\xcb\xa1\x18\x0c\xd2\xc1\x20\x3d\xa3\xe7\x8c\x50\x40\xd0\x6a\x84\xc3\x11\x25\x25\xf5\x0a\x04\xfe\x4c\x70\x4d\x91\x8c\x60\x9f\x82\x85\x10\xc4\xf0\x2b\xaa\x94\xc6\x2b\x02\x6d\xe3\x04\x72\x48\xc2\xc3\x69\x32\x18\x78\xfc\xb2\xd5\x03\x61\x50\xc9\xdb\x08\xdc\x45\x96\x52\x88\xe9\x0b\x26\xd2\xee\x84\xac\x5c\xbf\x80\x40\x1f\x79\x7c\x43\x92\x03\xb2\xa0\x43\x37\xbf\x71\xe5\x0b\x15\xd6\x5a\x4e\x54\x22\x9d\xa2\xae\x6d\x24\xeb\x9b\xff\xf1\x68\x96\xaf\xe1\xa4\x62\xcd\xcf\x29\xd6\xf0\xfd\xdf\x7d\x83\x43\xf6\xf4\x6c\xb8\x79\x3e\xf3\x66\xfe\x0f\xd1\x7f\xfe\x30\x5a\xa3\x1f\xa2\xa1\x37\xf3\xcf\xc8\xfe\x39\x3c\xf8\x21\x1a\xae\x11\xf2\x66\x1b\xf9\x0d\x3a\x0b\x37\x7f\xfc\x8f\xf3\xe1\xef\xbe\x89\x7f\xa1\x95\xd8\x90\x2c\x97\x2b\x81\x25\x5e\x30\x9c\x14\x38\x30\x93\xd4\xda\xac\xe1\x51\xe4\x9b\x4f\x1a\xb5\x00\x45\xf5\x57\x24\x74\x78\xdc\x42\xa5\x23\x95\x58\x78\x3f\x8d\xf4\xdb\xef\x48\x12\xde\xea\x05\xa7\xf1\x2a\x4e\x2f\x8d\x2a\xe2\x70\x56\x2f\x83\xf8\x73\xba\x55\x0a\x6f\xb6\x7b\xa2\x6b\x16\x8a\x8f\x35\x25\xea\x6b\xd4\x30\xb0\x60\xb0\xd2\x4d\x76\x8d\x53\x44\x1c\xe3\x10\x57\xb8\xc4\x09\x9e\xe3\x05\x8e\x70\x8e\x97\xc2\x4f\x61\x02\x67\x7e\x57\x41\x63\xec\xe1\x42\xc4\x1f\xbd\x25\xdc\x02\x46\x88\xdb\xe3\x88\x71\xb7\xd3\x73\x6c\xe9\x76\x82\xad\x43\x2e\xb1\x75\x3c\x15\xee\xc0\x7d\x89\xbb\x90\xcf\xb1\x0d\xf6\x11\x6e\x43\x7f\xa1\x6d\x37\x44\x72\x52\x4d\x5b\x22\xed\xe5\x78\xc8\x70\xb9\x97\xb3\xed\x77\x10\xc7\x47\x5c\x04\x77\x47\x16\xc1\xdc\xcd\xdc\x21\x69\x71\x18\x7c\x98\xfd\x68\x97\xe1\x5b\xf5\xb8\xcb\xb2\xad\xd5\x6b\x78\xe2\x0e\x49\x8d\x57\xa5\xad\xc2\xe1\x09\x7b\x58\x37\x19\x0a\x40\x64\x03\x8b\x7d\xd7\xc5\x61\x30\x9e\x86\xaf\x33\x19\xfc\x3f\x94\xc9\x03\xaa\x20\x3b\x0b\x21\xdd\x46\x35\x6c\x19\xed\xc8\x15\x9a\xa2\xbb\x38\x70\x37\xdd\x61\x65\xf6\x16\x93\xa0\x38\xab\xce\x3d\xed\xb5\xfd\x34\x72\x11\xa6\xa2\x7c\x4f\xc3\x1a\x17\x4d\x2f\x0a\x12\x7e\xa9\xeb\x0d\x32\x18\xb8\xdd\xd9\x86\x2f\x41\x18\x10\xed\x21\x81\x17\x37\x28\x98\x44\x6a\x73\x29\x2b\xd3\xa0\x29\xe7\x75\xa5\xfb\x32\x3f\xd9\xbc\xd3\x11\xd7\xd7\x0d\x28\xd8\x3d\xc1\x79\x41\x16\xf1\x8d\x1f\xd7\xb5\x87\xa6\x59\xb0\x1a\xf1\x82\x2e\x82\x07\x2b\xb3\xa4\xb3\x26\x82\x95\x51\x80\x8d\x15\x14\x64\x43\x06\xbf\xab\x1e\x34\x87\xc7\xcd\x83\x4d\x19\x51\xc6\xed\x59\x2d\xed\xfa\x91\x32\xbb\xb2\x2c\xc3\x4e\x65\x56\xec\x5a\x17\x67\xbb\x2a\x85\xf2\x4d\x75\xa6\xda\x5d\x51\xf0\x86\x2a\xdb\xe4\x71\x8d\xac\xab\xb1\x55\x53\xef\x72\x67\x3d\xb7\xeb\xca\x1e\xb7\x69\x41\xab\x5e\xbb\xbb\x35\xb7\x82\xd7\x32\x95\x5f\x61\x92\x46\x7e\x8c\x25\x80\xfd\x0a\xf3\x97\xfc\x04\xc3\x57\xfc\x39\x96\x3d\xf3\x4b\x3d\xbc\xf7\xc5\xcf\x28\x90\x6e\x78\x1b\x64\xbd\xde\x28\xb8\xf0\x41\x50\x23\x80\xfe\x8f\xe7\x41\x67\x93\x90\x92\x75\x91\x51\xf6\x03\xc9\xd5\x91\xf7\x5f\xeb\xbf\xad\xff\x7b\xfd\x3c\x42\xb3\xf5\x2a\xa4\x45\x7c\xe3\xc1\x75\x4e\x8a\x32\x27\xa0\xb1\x5f\x97\x5f\xc8\x35\xab\x87\x66\xe8\xeb\x78\xf9\x4f\x33\x64\x89\xcb\x6f\xb3\x88\x13\x6d\xdb\xd8\xb9\x9c\xda\x0a\x39\x8c\x70\xda\xd6\x9d\x72\xef\xf4\xb6\x14\x38\x18\x6c\x54\x5a\x0c\x27\x22\x2c\x0e\xb8\x1d\xf2\x1b\xd3\xed\x43\xc5\x69\xec\xc8\xa6\x94\x9f\xe9\xe3\x32\xc8\xc3\xa2\x24\xef\x53\xea\x15\xdd\xfd\xb0\xb0\xbb\xdc\x04\x93\x2c\x84\x27\x63\xb6\xeb\x7b\xcc\x0b\xdc\xf3\x0d\xde\x90\x74\xa8\x1c\xf2\x6f\xea\xce\x2a\xc3\xe4\x75\xaa\xb9\x6d\x18\x1b\xa3\xdd\xc6\xf4\x68\xab\xd9\x8f\xb2\x2d\x68\x6f\xe6\x48\x97\xb5\x2f\xf2\xe8\x86\x97\x6c\x5d\xb6\x98\xca\xcf\xba\x97\x82\xef\x70\xd9\x7f\x46\xfc\x57\x70\x9b\x66\x11\x39\xe5\x49\xd0\x89\xbe\x79\x58\xaf\x89\x30\x32\xff\x2b\xbc\xf0\x55\xf2\xda\x57\x60\x62\x58\xc4\xe1\x1f\x40\x65\x08\x92\xc9\x32\x8e\xc8\x49\x7c\x91\x40\x5a\x2e\x53\x2a\x85\x34\x46\xb6\xb0\xf7\xb1\xb7\x31\xe6\x39\x90\x30\x1d\x95\xcb\xec\xfa\x2b\x1a\x98\xf0\x06\x04\x3a\x9e\xb9\x94\xac\xf2\x84\x67\x01\x29\xe7\x45\x9c\x53\x76\xc1\xf0\xd2\x3d\x6f\x25\x56\x62\x40\xa0\xc1\xd9\x79\x93\x72\x00\x9f\x9d\x4b\xd5\x8b\x48\xa1\x60\x49\x16\x46\xd0\x1d\xc4\xff\xd4\x22\xe0\xa3\xc1\xc0\xd2\xb9\x49\x6b\xda\xe0\xad\x42\x0f\xbe\x6f\x43\x24\x54\xf3\xc3\x68\x48\xab\xd4\x49\xaa\x04\x0e\x66\x33\xda\x3a\xb9\xe3\xf1\x9f\x84\x47\x24\x8f\xfe\x84\x7c\xda\x11\xe5\x8d\x7a\xe8\xdf\x39\x68\xfe\xee\xce\xbf\xba\xbd\xe0\x18\xd4\x59\x16\x23\xbf\x44\x59\xe9\xcd\xc5\x58\x5e\x80\xe9\xa0\xb0\x9d\x13\xa6\x72\x9b\x13\xdc\xb1\xa2\xbb\xd7\x5e\x0e\x5f\x84\xf3\x2f\x97\x90\x94\xff\x6d\x96\x64\x85\xef\x16\x97\x17\xa1\x37\xc6\x8e\xf8\xff\x68\x47\xc5\xea\x39\x0d\xf3\x3f\xc4\x97\xcb\x84\xb5\x27\x2a\x03\x43\xe4\x54\xc4\xc5\x10\xb8\x67\x6f\xce\x3f\xce\x7d\x60\x71\x63\x98\x7d\xd7\xf9\x92\xfe\x72\x5d\x37\xab\x2c\xd2\x63\x2a\xcb\x63\xcd\x76\xaa\x6b\x32\x52\x4d\xe3\x44\x06\xd7\x5f\x04\xc4\xe6\x5a\x10\xb5\xd8\x18\xe9\x4d\x05\xa4\xda\x6c\x8c\xef\x2d\x06\xf4\x5a\x2e\xae\x9e\xf3\x88\x79\x9f\x19\xb7\x61\x6d\x9e\x28\xa3\xf0\x05\x04\x63\xe8\x6b\xad\x13\xba\xae\x65\x28\xc2\x0f\x67\x3a\x47\x33\x54\x03\x51\x81\x70\x8a\xb0\xb1\x92\x45\xbc\xb7\x5a\x0f\x14\xbf\xc0\x91\x79\xe6\x10\xb5\xce\x1c\x34\x43\x7b\x91\xd3\x26\x6f\x99\x40\x2e\x34\xbb\x66\x75\x2a\x59\x23\x2f\xd2\xf5\xf4\xf9\xbf\x31\x0d\x79\xf9\x2b\xd1\x90\x5f\x35\x80\xc2\xcb\x2d\x1e\x40\x81\xbd\xfd\x5c\x9a\x1c\x6f\x8f\xc1\xe4\x98\x95\xbd\x44\xf8\x2a\xb8\x23\xd2\xeb\xe1\x2e\xcb\xc3\x79\x4c\x6f\xfd\x49\xcd\xd3\x13\x92\x48\x2f\xab\xf1\xea\xb7\xe7\xeb\xfe\xa8\x38\x50\x3c\x04\xce\x14\x4e\x4f\x0b\xb2\x48\xb2\x6b\x26\x48\x0b\x8c\x80\x52\xe9\x7d\xd7\xb8\xdf\xa8\x10\xe2\xf8\x6e\x95\x45\xc4\x17\x59\x1e\xeb\xe6\x90\x84\xab\x17\x9a\xd7\x0c\x0d\x53\x29\xb3\x1d\xba\x62\x02\x5c\xb6\xda\x0d\xcf\xf1\xc7\xbe\xf4\xa4\x30\x4d\x66\xde\x38\x3b\x20\xf0\x13\x06\x7d\x13\xd3\x7f\xf2\x98\x6f\x62\x6a\x0c\xf9\x26\xa6\x5f\xe9\x72\xfc\x08\xb3\x1f\x3d\x15\xb2\x14\x16\xd3\xc0\x23\xca\x6d\x8f\x48\xc7\x3c\x19\x73\x80\x01\x93\x08\xb8\x76\xb3\xc3\x68\xf6\x2a\x86\xe7\x19\x77\x30\xe3\xa2\x6c\x13\x23\x89\xd1\x8f\x4e\xb0\xa0\x54\x73\x07\x6a\x45\xe8\xa5\x68\x46\x05\x60\x78\x30\xc6\xbb\xfa\x41\xcf\xae\xe8\x61\x26\xf8\xe4\xa4\x6f\x05\xd2\x49\x6f\x93\xf9\x72\x61\x3f\xd1\xef\x7c\xda\x1a\x8a\x52\x12\xae\x31\xbe\x8e\x93\x84\x47\x7b\xf6\x15\x92\xd4\xf8\xea\x8c\x9c\xe3\x90\x21\x02\x82\xa4\x51\xf7\xb8\x37\xad\x4c\xf6\xb9\x6a\xb1\x4f\xc9\xef\x39\x25\xf5\xf3\x91\x54\x68\x8c\x24\x69\x3d\x99\x17\x84\x88\x6c\xb4\xda\x63\x91\x5a\x90\x3f\x15\x67\x0e\x17\xad\x60\x46\xc8\x5b\xa1\x27\x68\x45\x7e\x69\x49\x17\xe4\xdb\x36\xbf\x7a\xfe\x18\x49\xd7\x70\x67\x79\x85\x80\x85\x75\x09\x4d\x63\x66\x44\x46\xe5\x32\x8c\xb2\xeb\xd2\x92\xa6\x16\x76\x6b\x67\x9a\x3b\xa7\x24\xea\x29\x3a\x0f\xee\x2e\xb2\x9b\x13\x78\xd5\x27\x75\x0d\xab\x39\xd4\x6d\x65\x40\xb4\x6e\xcb\xad\x6c\xdb\x9c\x10\x4a\xc9\xa8\x79\x22\xa2\x6a\x61\xb8\x61\xbc\xf0\x22\x2b\x22\x52\x1c\x87\x51\x5c\x95\x3e\xf4\x2f\x27\x23\xbd\xb0\xae\x31\x45\x9a\xd0\xbb\x78\x9c\xd0\xdb\x64\x4d\x67\x42\x6f\xf9\x8f\x2a\x2c\x08\x24\xb1\x6a\xbc\x86\x17\x96\xd4\x51\x7d\x16\x6c\x8d\xf9\x1b\x6f\xca\x70\x7c\x3d\x47\x5c\x72\xee\x8a\x9a\x56\x80\xce\xd1\x79\x7b\xb5\x31\x19\x54\x80\x04\x6f\x24\x4c\x04\x7d\x48\x70\x2e\xda\x73\xd0\x08\xbd\x51\x8d\x17\xba\xac\x3a\x7f\x6a\x9e\xf2\xc6\x21\x70\x0b\xf3\xe1\x2a\x21\x36\x6a\x09\x04\x73\xdd\x39\x8f\x4d\x2d\x93\x60\xcd\x74\xe5\xff\xbe\x12\xec\xab\x5f\x2b\x16\xd8\x3f\x2d\xec\x2d\x64\x43\x5a\xb6\xb2\x21\xed\x34\xd9\x92\xb6\x5e\xf1\x74\x49\xbf\x39\x19\x35\x31\x83\xc9\xb6\xa2\xa5\xca\xe2\x8b\xa4\x2a\x4e\xe3\x15\x29\x54\x3d\xee\xaa\xa0\xbc\x69\x44\x64\x71\x30\x83\xeb\xcf\x22\xa3\x37\x54\x12\x7a\xca\x79\x9b\xd7\x8e\x00\x2b\xfa\x24\x65\x1f\x55\x80\x69\x8b\x7f\x75\xcc\xdb\xb5\x40\x1a\x14\xad\xd7\xe0\x74\x44\x54\xf7\x40\x79\xfa\x7c\x8c\x5a\x59\x62\x0c\x5f\x1f\x91\x35\xe6\xde\xa4\x31\x52\x6c\x95\xdd\x2a\x5a\x91\xa8\x08\xc2\x59\xab\xa7\xb4\xdd\x53\xb7\xca\x5d\x1e\xb2\x95\x67\x97\x61\xd7\xeb\x75\x36\x18\x78\x1b\xd9\x7a\x4d\x9b\x71\x64\x08\xcd\x78\x95\x20\x08\x8a\x99\x2d\x8a\x69\x36\x4a\xc9\x0d\x15\x2d\x0b\xcd\xe6\x60\x60\x2b\x55\xd6\xf5\x3e\xfb\x7e\x00\xdf\xb7\xb7\xc8\x8a\xe2\xac\x2a\xbb\xad\xda\x9f\x34\x2d\x77\x90\x68\xd6\x29\x91\x95\x7d\x6a\x09\xa1\xab\xcd\x8e\xc5\xcb\x48\x79\x26\xe1\xa2\x95\x21\xaa\xe5\xf8\xd3\x9d\x27\x9e\xfb\xa6\x59\x8a\xe3\x69\xf1\xba\x31\x89\x6f\xf2\xa8\x07\x13\x04\x67\xe6\xf2\xc9\x59\x71\xde\x75\x1d\x13\x1e\x6a\x0a\xb5\x0a\x75\x20\xfa\x4b\xc6\x1b\xea\xa2\xf3\x93\xbc\x59\x20\x7a\x99\x5c\x75\xd0\xa0\x5a\x8f\x4d\x5b\xda\x17\x6c\xe6\xaa\xdc\x9e\x5b\xf9\xe6\xb5\x29\x80\x1e\xd1\x68\xd1\xe3\xad\xa1\x6d\x69\xb8\x61\x78\xab\x11\xe9\xdf\x20\xe7\x8d\x0e\x06\x54\x73\x1d\xa6\x46\x14\x66\x88\xb1\xf6\x26\x18\xcf\xb4\x09\x23\xe7\xf7\x62\x98\xee\x6c\x71\xdf\x68\x35\x2b\x02\xa3\x43\x0f\xd2\x21\x9c\x06\x67\xe7\x98\x63\x18\xb1\x63\x58\x2a\x33\x7e\x68\x58\x26\x79\x6e\xaa\x54\xf7\x54\x8a\x3f\x90\x43\x24\x9b\x49\xe0\x2b\x14\xc8\x84\x93\x53\x7b\xc9\x75\x2a\x6a\x6d\x5a\xea\x23\xd5\x4c\xf3\xc6\xf8\x67\x0f\x2f\x0c\x32\x69\xc8\x03\xcd\x40\x12\x08\xda\x2c\xe8\x4e\xae\xf0\x6e\x04\xe0\x0f\x9d\x34\x3b\xd2\xf9\xe0\x1c\x7d\x7d\x08\x5f\x9e\xb5\x60\x05\xa1\x5c\xbb\xa6\xee\x92\x3d\xf6\xc6\xc4\xd0\x0c\xe0\x8b\xaf\x49\x84\x51\xe3\x50\x8f\xa9\x61\xe4\xc3\xd1\xce\x82\xa8\x75\xe7\xda\xdd\x72\xf7\xee\x6a\xef\x54\xf6\x8f\x14\x88\x99\x75\xe1\xcd\xc6\xfe\xe6\x84\x67\xaf\x90\x5b\x77\x81\x27\x33\x13\x2c\x6d\x31\xa1\x17\x3c\x32\x61\x8c\xcc\xe5\x41\xda\x04\xbb\x16\xb6\xf3\x0f\x04\x01\xb9\xea\xe6\x67\x58\x05\x57\x9a\x74\xbd\xfa\x37\x96\xae\xb7\xfe\xd5\xcf\x98\xbe\x2a\x26\xc5\xb8\xc9\x29\xd1\xc4\xd4\x7d\xae\x24\x6a\x9e\x50\x42\xec\x98\xd9\x32\x83\x33\x7d\x71\x0c\x24\xc2\xaf\xf8\x63\x2c\x62\xc8\xb3\x2b\x75\x4c\x55\x90\x84\x27\x1b\xae\xd5\xe3\x3b\x71\x71\x9a\xe5\xfe\xae\x2c\xfd\x96\x9f\x5f\xed\xd6\x38\x22\x69\x49\x8c\x4a\xdb\xad\x4a\xdb\x35\x2e\xab\x8b\x25\x09\x23\x08\x12\xdb\x54\x1c\xeb\x21\x20\xae\xa6\x2d\x43\xb3\xf6\x36\xe0\xde\xd8\x0f\x8f\x08\xfc\xc0\x45\x75\x78\xa6\x04\x7f\x84\x9e\xec\x00\x7c\x49\x38\xc7\x83\x20\x54\x37\x36\x51\x40\xc4\xd1\xe0\x80\xd1\xdd\x27\x59\xc1\x63\x43\xa0\x3d\x32\xa6\x7c\x65\x30\x00\x70\x3d\xd4\x94\x12\x94\x7f\x13\x1c\x0f\xa5\x17\x09\x07\x3f\x5e\x30\x94\x95\xb3\x82\x73\x8b\x5f\xde\x23\x7c\xee\x1a\x8d\x05\x7c\x47\x73\x92\xe3\x5f\x71\xb1\xab\xbe\xe1\x9e\x43\xc4\x14\x83\xb9\x17\xe2\xb0\x8c\x04\x77\x75\x47\x8b\x5a\x88\xce\x27\x83\xc1\xc6\x1c\x59\x1e\x0b\x4c\xc2\xf6\xa7\xcd\xe0\x16\x88\x4d\x67\xa5\xf8\x58\xd4\xc3\xc7\xca\xfe\x30\x4f\xb7\x35\xce\x11\x5e\xe0\x54\x91\xd2\xe8\x2b\x14\x8e\x9a\x0e\xa4\x4a\x5c\xb1\x72\x34\x07\x1f\xb1\xe0\x36\x26\xec\xd5\xb9\x86\x64\xa2\x45\xfe\x42\xe3\x9d\x74\x91\x65\x89\xa6\x7d\xd4\x5c\xc4\xae\x34\x95\xc9\x41\x5c\x42\x62\xe6\x7f\x29\x7d\xe4\x23\xd3\xd5\x43\xb2\xf9\x6e\xba\x7a\x9e\xa3\x7e\xde\xe4\xa8\x5f\x3c\x26\x90\x8d\xa2\x6d\x98\xc7\xc5\x75\x27\xe3\xf1\x7f\xb8\xb5\xc8\xc4\xe6\xdf\xb9\x9b\xab\xec\xc7\x4d\xae\x0f\x0f\xd3\x39\x71\x25\xc5\x74\x37\xf9\xf9\x87\xed\x59\x55\x92\x82\x67\xab\x93\x25\x7a\x6a\x0e\xff\xf9\x96\xfc\x98\x2d\x82\xb5\x16\xf7\x7a\x5e\x15\x65\x56\xf8\x6e\x9e\xc5\xe2\xb8\x60\xe0\x73\x21\x5f\x57\x7a\xfa\x6e\x22\x63\x86\x37\x9a\x4f\x7a\x9b\x93\x59\xc7\x54\x60\xbc\x83\x5c\x61\x40\xb0\xb5\xb3\x83\x9d\xe6\x0f\x7f\x86\x0d\xad\xe8\xb8\x66\x1f\x04\x00\xc0\x57\xc1\x9b\xca\xbf\x9b\xdb\x2c\x0b\xc8\x0d\x15\x7a\x5a\x77\xec\xb0\x7f\xff\x6f\x3c\x1e\xbb\xd0\x80\xbf\xb9\x2a\x37\xc9\x4d\x1e\xa6\x91\xeb\xdf\x89\x0c\x58\xca\xfe\xc0\x1d\xfc\x4e\xe5\x86\xf4\xef\xe4\x88\x25\xa7\xaf\xe5\x4c\x1c\x92\xb4\xf2\x45\xec\x62\x11\x34\x9c\x7d\x53\x66\x27\xf2\x5d\x92\x24\x71\x5e\xc6\xa5\x8b\xaf\x97\x31\x25\x27\x79\x38\x07\xee\x76\x5d\x84\x79\x13\x60\xdc\x88\x2f\x2e\x23\x85\x4f\x46\x93\xdd\x97\x3b\x64\xe5\xd6\x72\xd5\x45\xfe\x5d\x8d\xe3\x79\x96\xda\xe3\x97\x4b\x83\x0d\x08\xc3\x0b\x73\xb8\x03\x53\x38\xe1\x53\x38\x6f\x69\xa1\x79\x40\x44\xb1\x65\xc1\x72\x36\x37\x41\x07\x50\xba\x2a\x1a\x79\xaf\x81\x45\x73\xf8\xd4\x28\x9e\x8b\x80\xb4\xd2\x93\x96\x60\x71\x91\x57\x5c\xf1\xdc\x64\x9b\xc7\x73\x9b\xba\xd9\x46\xc7\xad\x99\x38\xe5\xaf\x8c\x43\x28\x09\x66\x68\x97\x7c\x3b\xf4\x12\x5e\x6e\x1c\x09\x15\x9f\xc6\x5a\x3e\xfc\x36\x89\x15\x9d\xf3\xa9\xca\xe2\x91\xb6\x72\xdc\x17\x3c\xb7\x1b\x27\x21\x35\x4e\x70\x39\x2b\x7b\xf2\xec\xcf\x9f\x64\x3e\x61\x7e\x26\x31\x7b\xdb\x9b\x4a\xbf\xb1\x26\xe1\xc1\x0a\x70\xd4\x24\xcd\xff\x00\xf4\x45\x4f\x9d\x9f\xb7\xd4\x89\xba\x41\x86\x51\xfb\xb7\x63\x94\xb1\xfb\xaf\x94\xdd\xe2\xeb\xed\xba\x9e\xc4\x50\x14\xa5\x5b\x24\xe4\xc6\xc5\x61\x12\x5f\xa6\x6c\x1f\x56\xaa\x28\xcc\x35\xbe\xac\x28\x25\x05\xdb\xa7\xad\xe2\x9b\x38\x2d\x47\xa2\xc0\x43\xb8\x20\x97\x55\x12\x16\xcd\x23\x9a\x65\xc9\x45\x58\x48\xe1\xba\x21\x60\xdb\xbb\x06\xf1\x58\x3c\x8a\x78\x34\x02\x22\x23\x17\x82\xee\x7d\xcf\xbf\x0e\xe7\x55\x57\x61\x11\x87\x29\xe5\xa7\x55\x6d\xdb\xac\x47\xa6\xfb\x15\xed\x41\xa6\x5c\x68\xcd\x76\x64\x95\x72\x81\x2f\x3d\x9b\x9f\x77\x4d\xa4\x52\x09\x11\x38\x9e\x2a\x1e\x3c\x9e\x7a\x20\x27\x28\x1c\x51\x61\xfa\x94\x43\x2a\x73\x28\x4c\x34\x13\x63\x61\x73\x0d\x53\xe4\x3e\x7c\x44\x75\xca\xe7\xee\x37\x75\x48\xf5\x9b\x34\xb3\xda\x7a\xb5\xdb\x9c\x52\x6d\xbd\x7a\x85\x5a\xa6\x56\xf0\xfd\xf1\x98\x1f\x4e\xf5\xe0\x60\x6e\x72\x03\xbc\xea\xad\x19\xb5\x6a\x5e\x3c\xba\xe6\xe5\xa3\xbf\xfe\x1b\xcc\xca\xd8\x44\x9f\xf8\x16\x52\xea\x76\x63\xd0\x69\x51\xd1\xc0\x58\xe4\x63\x78\x09\xbe\xb5\xa2\x38\x0f\x2f\xc9\xe6\x44\x3b\xd0\xf8\x40\x6e\xe8\x4f\x68\x6b\x38\xf9\x15\x8c\x90\x98\xc4\xcf\xc4\x13\xde\xcf\x8f\x42\x07\x40\x46\xf3\xac\x82\x00\x44\x04\x0e\xa0\xda\x35\x42\x6e\xb1\xd4\x74\x1d\x13\xe8\x32\x5b\x2e\x64\x54\x64\xd7\xe5\x47\x52\x40\x39\x13\x20\xb9\xed\x52\x62\x91\x18\x2d\x5f\x87\xed\x3e\x9c\x7c\xb8\x96\x2f\x6b\x89\xd9\x59\xf3\x2e\x76\x73\xfe\xa3\x7d\xf3\x09\x39\xe1\x38\x61\x4f\x7a\xe3\x21\xf7\x2a\x9c\x7b\xe2\x96\x68\xb3\xdd\x48\xfd\xe3\x20\x08\xc2\x1a\x53\x84\x65\x9a\xb7\x52\x4b\xf3\x76\xe5\xaf\xfa\xe3\x31\x3f\xe5\xfb\x2d\x6c\x6b\xbe\x1f\xbe\x09\x0e\x43\xba\x1c\xcd\x49\x9c\x78\xe9\x37\x15\xda\x9c\x80\x45\x95\xad\x37\x17\xfe\xe5\x93\x32\xb4\x59\xd3\xab\xfd\x8a\xf9\xd3\xee\x21\xe8\x63\x45\xd0\x77\xb6\x14\x45\xdf\xe1\x96\x48\x59\x1f\x3e\xe4\x21\x5d\xba\xf8\x2e\xf2\xdd\xc3\xc9\xce\x68\x7b\xe2\x4c\x5e\x8c\xc6\xaf\x92\xcd\xed\xd1\xce\x2e\xfb\xf3\xca\x51\x57\x07\x93\x6d\x67\x67\xb4\x93\x6c\xbe\x70\xe0\xdf\x8f\x6e\xcd\x78\x84\xc5\xb5\xa3\xef\x6b\x8a\x3c\x62\x82\x2b\x54\x4f\xbd\xb2\xb5\x44\x4a\x84\x1a\x91\xff\xe4\xea\x92\x2d\x06\x57\xa4\xb9\x29\x35\x08\x27\xff\x9e\x10\xde\x65\xf0\x9c\xbc\x18\x3d\xdf\x4e\x14\x54\x37\x35\xf8\x8e\x9d\x9d\xd1\xcb\x9d\xe4\x85\xf3\x62\xf3\xb7\x0b\xdf\x5f\x56\xa0\x7a\x3e\x9e\xfc\x26\xf6\x48\xa9\xf7\x7c\xbb\x39\x9e\xe0\x22\x16\x8f\x63\x9d\xf7\xef\x9f\x28\xb9\xa1\x7b\x6c\x83\xa4\xf6\x46\x98\xed\x9a\xb8\x32\x89\xab\x7b\x64\x40\x08\x1f\x94\x5b\xd9\x65\x11\xe6\xcb\xdb\x51\x7e\x73\x9a\x1d\x93\x15\xb4\xcf\xb5\x43\xdb\xbb\x32\x9d\xd5\xf6\xae\x76\x9c\x61\x68\xb6\xdc\x9d\xf1\x7f\x3c\xa4\xa7\x69\xcc\x92\x7d\x62\xb5\x51\x6e\x34\x70\x9b\xd0\x12\x5b\x2a\xd2\xfb\xd5\x7c\x43\x19\x89\x96\xcb\xac\xa0\xa4\xa4\x35\xc2\xee\xc0\x5f\x42\x48\xf9\xae\xfd\x22\x08\x10\x8b\x30\x22\xc8\xeb\xeb\x5c\xa7\x1c\xda\x3a\xe2\x06\xb1\x08\xbb\xbf\x5f\x91\x28\x0e\x1d\x0f\x8a\x7d\x27\xcd\x52\x82\x2c\x5f\x32\x3d\x7c\x5a\xba\xb8\x07\xdc\x81\xda\x9a\x3b\x3b\x30\x65\x8d\xba\xe6\xe0\x7e\x9f\x2e\x49\x11\x53\xa5\x45\x8c\xf9\xbd\x2b\x1e\x7f\x2c\xe2\x55\x58\xdc\x76\x9b\xcb\xf9\x83\xd1\x2a\x8c\xd3\x27\xc3\xce\x78\xf9\x17\x01\x9d\x1c\xde\x09\x99\x67\x69\x64\x1d\x41\x29\x1f\x7d\xdd\x18\x5a\xaf\xff\x52\xa3\xd0\x15\xa0\x49\x78\x41\x12\xa5\x74\x05\xc5\xf8\x7d\x4a\x0d\x39\x95\xf8\xef\x55\x49\xe3\xc5\xad\xc8\xc8\xa2\xcd\xb1\xae\xa5\x58\x2a\x2d\x05\x17\x62\x9b\x83\x2c\xa2\x45\xca\x24\x46\xa4\x4c\x26\xeb\x26\x59\x81\xf3\x46\x63\x11\xf1\x6c\x6f\x4f\xd5\x4f\x88\x05\xeb\x2a\x04\x7e\xd8\x63\x6c\xd1\x27\xe0\xf5\x79\x7d\xc9\x83\x2c\xda\x3d\xc8\xa2\xb8\x38\x13\x7d\xd0\xb2\x7f\x47\xa3\x79\x98\xc7\x34\x4c\xe2\x1f\x09\xf2\xe6\x08\x9d\x37\xac\x65\x23\x08\x3a\x27\x5a\x14\x17\x0d\x18\x72\x88\x9b\x9e\x20\xcc\xe9\xe7\x71\x9c\xe7\x9c\x09\x81\xea\xbe\xb9\x55\x13\x9c\xd7\x78\x79\x8f\x47\x5b\x99\x87\xa9\xe1\xd2\x56\x8c\x00\x1f\xb8\x8d\xbd\x62\x21\x39\x5e\x9a\xea\x93\x65\xe7\x7c\x2b\xd1\x15\xfa\xcd\xf7\xa5\x65\xef\x6d\x6b\x07\x98\x6b\x6a\x93\x66\x4b\xe1\xd6\xc8\x5b\xea\xa2\xea\xed\x3f\x47\x90\x7a\xa9\x38\xe4\xae\x62\x90\x93\xb1\xe2\x90\xa0\x67\x28\x1b\x3d\x43\xa2\xf8\xe6\xbc\xe1\x9b\xa9\x37\xd9\x01\x1d\x04\x94\x3c\x87\xb3\xaa\x07\x0f\xb8\x33\xeb\x01\x77\x7b\xdb\xde\xda\x68\x3e\x7c\xc0\x5d\x76\x77\xaa\xf1\x53\x76\xaa\xdd\x88\xbb\x72\xed\xc9\xad\x49\x62\xd9\x9a\xa0\x69\x47\xe9\x76\xbf\xa1\xb8\x3c\x11\x00\xdb\x95\x46\xdb\x36\x1f\x5d\xc7\x74\xc9\x73\x0f\x22\x4b\xba\xdb\x3b\xf7\xf7\x97\x49\x76\x11\x26\xae\x7f\xb7\xa4\xab\xc4\xbf\xe3\x8e\xb2\xef\x98\x2c\xb1\xca\x32\xba\x64\xc2\x81\x1b\xa6\x34\x0e\x93\x38\x2c\x49\xe4\xe2\xc3\xec\xc7\xa3\xf2\xa6\x55\xe3\xb2\x08\x6f\x21\x94\x84\x8b\x2f\xb2\x9b\x93\xf8\x47\x28\xe5\x32\xc5\xe6\x45\x76\xc3\x98\xe7\x7f\x62\xe7\x3f\x7d\xff\x82\x2c\xb2\x82\xc0\x65\xb8\xa0\x9c\xbe\x37\x6f\x34\xec\x0e\x32\x30\xdd\x29\xbb\x8b\x47\xf9\x30\x48\x02\x24\xa9\x7b\x5e\xc4\x29\xb5\x50\xf5\xe6\xe5\x79\xb6\x5a\x65\xe9\x08\x8e\xc4\xea\x1a\xec\x0c\xd4\xe2\x7a\x5b\x96\xdf\x86\x25\x49\xe2\x94\xfc\xaa\x7a\xc9\x5f\x4f\x10\xdd\xd2\x04\xd1\x17\x20\x88\x76\xcd\x55\x7b\x0f\x4f\x9b\xdb\xcb\x82\xdc\x9e\x4d\xc6\xe3\x73\xbf\x55\xf6\x6a\x3c\x96\xea\x2d\x21\xc7\xb6\xd8\x23\xfb\xfb\x9d\xdc\xb1\xfb\x8c\xe2\x57\xab\xd4\x3c\x6a\xee\xc1\xa7\x4e\x6a\x95\x30\xcf\xbf\x0d\x0b\x68\xf1\x64\x59\xc4\xe9\x17\x7f\x5c\x2b\x1b\x9d\x77\xf1\x0d\x63\xd9\x1d\xcf\x72\xcd\x91\x5c\x1c\x9a\x8a\xa3\xcb\xe6\xd5\x3d\x71\xaa\x69\x3f\xe9\x7c\x44\x03\x27\x34\x9e\x7f\xb9\xd5\x5f\x2f\xa1\xe4\x91\x2f\x87\x34\x9e\x9b\x2f\xb3\x12\x29\x0f\x0a\x13\xe9\x2e\x8a\xd3\x8e\xf4\x2e\x72\xc0\x15\x61\x49\x4f\xc9\x0d\xe5\xc6\x82\x86\x4c\xd9\xbf\x4c\x0c\x01\xb1\x4f\xf4\x9c\x6b\xad\x77\xc5\xbd\xfe\xc6\x5b\x92\x5b\xbf\x5c\x68\x7c\x40\x97\x95\xf2\x27\xcb\x4a\x91\x21\x2b\x49\xe8\xfe\x34\x59\x49\xb6\xa2\x8c\x76\xba\xb2\x4e\x71\xd6\xd4\xd2\x04\x9b\xb9\x21\xd8\xe4\x4c\xb0\x79\xbc\x54\x64\xbe\x1c\x81\x54\x24\xc9\xe8\x46\x10\x44\x5d\x9e\xe5\xae\xaa\x78\x53\xac\x00\xb1\x12\x82\x20\x90\x02\xd2\x57\xcb\x79\xd2\x23\x69\x8c\x35\x9b\x1d\x61\xc7\xa4\xb9\x2e\x6d\x63\xc3\x44\x68\x89\x70\xaa\xc9\x4b\x11\xce\x4d\x56\x97\xdb\xe5\x25\x81\x74\x6e\x27\x5a\x04\xe7\x7e\xcb\x96\xd0\x14\x69\x74\x7d\x0f\x28\x05\x23\xe9\xb9\x4e\xd2\x97\x75\x2b\x0c\x6a\x13\x4c\x06\x14\xf9\xa3\xb8\x84\xdf\xf5\xda\x12\x1d\xed\x2c\x03\x2a\xcf\x55\xfe\xe7\x6e\x20\x83\xa4\xe5\x45\x46\x33\x46\x2e\x47\x34\x3b\x81\x70\xbb\x22\xbe\xca\xa3\x83\x90\xbc\x40\x38\x0b\xd2\x51\xca\xcf\x11\x52\x6f\xf2\x02\x41\x0e\xeb\xd4\x8b\x19\xb5\x67\xb4\x1e\xf2\x50\xa7\x5e\xc5\xc8\x3b\x23\xf8\x8c\xb6\x8f\x52\x2f\x61\xc4\x3d\xf5\x5e\x8c\x19\x61\x17\xfd\x09\xcb\x32\xbe\x4c\xcd\x21\xc8\x73\x0c\x1a\x4c\xa6\xf4\x75\xfb\x2c\x63\x4a\x65\x2c\xb7\x54\x3b\xb6\xa0\xe7\xcd\xf1\x87\x03\x41\xdc\x3a\x03\x36\x13\x68\xf1\x61\xa7\xb8\x80\x64\x30\x67\xc5\x79\x00\x16\xe6\x32\x0c\x25\x31\x57\x33\xa6\xdd\x00\xa6\x2a\xa5\x9e\x88\x62\xca\x44\x2a\x67\x19\x96\xe9\x33\xea\x5c\x10\x92\x3a\x71\x1a\x83\x98\x52\x92\xc8\xd9\x74\xca\x2a\x27\x85\x87\x8c\x1a\xac\x0f\xa4\x09\xe3\xb6\x41\xd7\x6b\x97\x4f\x1c\x5b\x29\x32\x08\xf2\x60\xd0\xe4\x79\xd2\x8a\x67\xc4\xa7\x35\xc7\x2d\x8b\xe2\x6e\x0c\xda\xe7\xb0\x31\x98\x06\xcd\x3f\xb8\xee\xdc\xde\x7f\xc0\x94\xe2\x62\xba\x61\x62\x1e\x84\xa8\x22\x4e\x9c\x96\x34\x4c\xe7\x3c\x32\xb3\x3d\x94\xeb\xdb\x30\x4d\x33\x0a\x03\x73\x42\x07\x16\x96\x13\x96\x4e\xe8\xa8\x11\xa0\xba\x73\x60\x95\x75\x0f\xac\x62\x8e\xe3\x5e\x86\x64\x28\x3f\x88\xe1\x17\x9f\x85\xfa\x61\x55\x78\xde\x04\xc0\x2b\x82\x9c\x37\x4c\xee\x3b\x8f\x8a\x99\xd0\x51\x48\xf7\xac\x55\x48\xe7\x4b\xbf\x00\x73\xcb\x8a\x92\x43\x76\xeb\x15\x32\x9b\x3b\xd0\x77\x72\x03\x0e\x97\x94\x14\xa8\xc6\xb9\x57\x30\xe2\x20\x4f\x3e\xda\x30\xb2\x4e\xd3\x60\x20\xf3\xd2\xdb\x21\x76\xc2\xf0\xc2\x21\x37\x79\x41\xca\x92\xcd\xc3\xaa\x2a\xa9\x43\x62\xba\x24\x85\x73\x41\x1c\xf6\xb6\x93\x15\x1a\x08\xb1\xc3\x40\xec\x0e\x55\x90\xec\x29\x69\xd0\x5c\x2e\x2c\xa1\xf4\x02\xd7\x10\xf5\x10\xdf\xcd\xb3\xb4\xa4\x45\x35\xa7\x59\xe1\x0b\x19\x8f\x60\x5d\x09\x3a\xc1\xd7\x45\x4c\xa5\x42\x74\x9e\xa5\x8b\xf8\xb2\x92\x0a\xd2\x9a\x49\x83\x83\x81\x27\xbe\x51\x42\x64\x30\xde\xf4\xd1\x62\x66\x2d\x05\xe0\xf8\x64\xf4\xf9\x33\xf4\xe2\xf3\xe7\x80\x32\x0c\x60\x5b\x17\x7d\x71\xb6\x0c\x72\x83\xae\x25\x2e\x9f\x04\x3f\x02\x1f\x58\x48\x90\x63\xcc\x0e\xe6\x15\xfc\xbb\x24\x9b\x73\xba\xae\x6d\x71\x64\x99\x48\x74\x62\xbe\xc9\x7f\x54\x1d\xcc\x91\x42\xf3\xbe\x81\x82\x1a\xfc\x76\xf4\x2e\xeb\x48\xd3\x0a\x93\x25\xc3\xfd\x8a\x2a\x11\xd4\x01\xee\xaf\xbe\x92\x81\xf8\x0a\x98\x4e\x46\x9c\xc6\xc2\x01\x1f\xb9\x09\xe7\xdc\x36\xac\x24\xa0\x8f\xbc\x22\x10\xe1\x57\x86\x82\x4b\xa7\xa1\x07\x3c\xf3\x6f\x59\xe5\x94\xcb\xac\x4a\x22\x40\x07\x46\xaa\x5f\x1f\xb3\x91\xbc\x61\xd8\xc2\xb6\x59\x70\xc7\x48\x4e\x56\xd1\x32\x8e\x88\x13\x8a\x1a\xc5\x1b\x11\x54\x38\x09\x04\x10\x60\xb7\xbb\x5e\x27\xaa\x7f\x08\x3a\xc7\x58\x94\x5c\x61\x7c\x76\xbd\xc5\x28\x04\x4b\x09\xf6\xd8\xcf\x30\xef\xb9\x1f\x63\xe8\xb7\x5f\x61\xd5\x6b\xbf\xac\x71\xc2\x61\x87\xba\x80\x53\xce\x58\xe0\xce\xa5\x4f\x77\xe6\x21\x6f\x43\x4f\x23\xa4\xaa\x1b\x29\x8d\xf8\x06\x17\xdd\x03\x07\x47\xbd\xf8\xc6\x09\xd3\x48\x96\xf2\x17\xdf\x30\x26\x41\x97\xc4\x29\xc3\x15\x71\x00\x06\xd3\x76\x8d\xeb\x38\x49\xd8\x0a\x8c\x2f\xd3\xac\x60\x64\x1a\x3f\xb2\x6f\x8d\x2b\xd6\xc6\xd2\xb3\x94\xa3\xaf\xe8\xb6\x7c\xf7\xbe\x8e\x37\x75\x1e\xd1\x75\x3e\xca\x9f\xb1\xdf\x12\x6c\x3f\x5f\xa7\xef\x41\x9b\x63\x32\x27\x31\x8f\x9b\xdc\x8d\x51\xc7\x46\xda\x2c\x35\x99\xc4\xc9\x24\x05\x08\x3f\x93\xcb\x85\x70\x41\xb2\xd4\xc7\x35\x87\x73\x70\x67\x51\x64\x2b\xa7\x4a\x41\xd0\xcf\x18\xaf\x76\x68\xe6\x68\x77\x5e\x56\x38\x57\xf1\x9c\x38\x57\xa4\x28\x43\x34\x72\x18\x78\x04\xdf\x4f\x6e\x19\x74\x58\x73\x8e\x2b\xbf\xea\x3a\xac\x17\x00\x22\xba\x24\x29\xbb\xbb\x8a\x23\x12\x39\x59\x4a\x9c\x2c\x75\x42\xa7\xac\x2e\x4a\xf2\x8f\x8a\xa4\x54\x00\x74\xf4\x4c\x4e\xde\x86\x3e\xa6\x9f\x36\x24\x73\x40\xc6\x00\xad\x43\x52\xfd\x0c\x3b\x63\x69\x46\x7b\x51\x51\x27\x5b\xc5\x94\x92\xc8\x89\xe9\x3d\xc3\x69\xb9\x48\x6a\x04\xd7\x60\xc4\x04\x37\xac\xb7\x85\x0b\xbc\xad\x6e\x12\xcd\x36\xd5\x7e\xc8\x01\x43\x19\xe3\x66\x8c\x12\x42\xa3\x38\x0e\x6c\xec\x25\x0c\xe2\xd1\x32\x2e\x69\x56\xdc\xe2\x2a\x88\x05\xd9\x4c\x82\x78\xc4\x37\xc0\x82\x71\xe1\xb9\x94\x2a\x08\xbe\x9f\x13\x55\x0d\x2f\x10\xed\xfa\x21\x36\xda\xf2\x13\x15\x8f\xa3\x98\x91\x19\x93\xe6\xda\xa1\x1d\xe6\xdc\x3b\xcc\xcf\x66\x64\x96\x79\xf2\xce\x96\x16\x34\x9d\xa5\xf0\x1c\xd6\x76\x8a\x66\x86\x6c\x98\xa5\xc9\xad\x97\x0a\x4f\x33\x4c\x6b\x0f\x9e\x36\x86\x09\xb7\xfa\x16\xc8\x60\x6a\xfe\x7c\x14\x8e\xb8\xc8\x8a\x81\x25\xb0\x7b\x9e\xc7\x43\xb0\x04\x56\x70\x91\x65\x89\x64\x15\xcd\xbd\xe2\x14\xaa\xa8\xd9\xa7\xb1\x22\x36\x0a\xcc\x27\xa5\xb9\x57\x9a\x45\xf8\x70\x4a\x8e\x16\xac\x5b\xde\x59\x53\x61\x14\x42\xa8\xc7\x73\xd4\x4c\x40\xd3\xc9\x1a\xdf\xca\x99\x15\xc3\x11\x72\x05\xf4\x7b\x19\xe6\xc4\xbb\x93\xd3\xd1\xbc\x35\x8a\xcb\x63\xf2\x8f\x2a\x2e\x48\x84\xb9\x98\x61\x7f\x66\x4e\x9f\xf6\x55\x04\xdf\xed\x3a\x83\x68\x1f\xef\xb4\xc6\x30\x3e\x6c\xab\xcd\xa5\x6c\xc1\x84\xc8\xc3\x30\x07\xd1\x80\x2d\x25\x6f\x82\xb7\xd0\x46\x10\xa8\xdc\x2a\x50\x3a\x3d\x0c\x73\x6d\xd5\x94\x84\x5a\x43\x80\x07\x67\xe7\x98\x06\xe3\xbe\xcd\x16\x39\xa3\xe7\xe6\x56\x4b\x62\xa5\xae\xad\x26\x7c\x5d\xd7\xb5\xf0\xd1\x25\xd7\xce\x09\x81\xbc\x2e\x19\x24\x91\x7d\xce\xba\x97\xf1\xee\xc5\x01\x94\x4d\x4f\x88\xbe\xa8\xc3\x28\xfa\x59\xbb\x17\xf7\x76\x2f\x0c\xee\xea\xa9\x6d\x95\x08\x11\x76\x51\x10\xf2\x23\x19\x0c\x8c\x5b\x2f\x44\x53\x5a\xdc\x72\xbf\x76\x2f\xc4\x21\x1a\x45\x24\x21\x94\x3d\xa8\xe7\x40\xb1\x4a\x19\x64\xdc\x16\x4a\x56\x0b\x4d\x4a\xd1\x5d\xd3\x12\xc5\x54\xb5\x44\x51\xbd\x88\x53\x46\x4d\x9b\x90\xe9\xb0\x51\xe5\x3d\xc1\x14\xd5\x75\x3d\x35\xba\x15\x54\x9e\x71\xaf\xcc\x1e\x4a\x12\x26\xcd\x43\x76\xa7\x1e\x89\x78\x06\xfb\x37\x94\xad\xc1\x2c\x2d\x9b\x7a\x9d\x47\x8f\x56\x0c\x3c\x1f\xef\xa2\xd1\xdb\x70\xbe\x24\x38\x83\xdb\x57\x68\x44\xab\x3c\x21\xa0\x26\x78\x3e\x19\xa3\xd1\x7e\x4a\x8b\x5b\x1c\x06\xa9\x37\x79\x3e\x81\xd4\x3c\x8d\xbe\xe3\x30\xfc\x42\xe0\xed\x3f\x91\xdb\x20\xc3\x74\x74\x5d\x84\xb9\x55\xae\xde\xd8\xf0\x6c\xc1\x7a\x2d\xbb\x2f\x8f\x04\x64\xbd\x36\x77\x44\x60\x64\x89\x46\x2b\xed\x73\x10\xe3\x61\x65\x7c\x1f\x61\x37\xad\x56\x17\xa4\xd0\xb6\x72\xac\xce\x8d\xa8\x7b\xc3\xed\xbe\xf2\xec\xda\xdb\xc2\x93\x17\x08\x61\x52\x83\x2d\x64\x14\x97\x79\x06\x27\x66\xb8\x82\x45\x50\x30\x06\x77\xe3\x53\xf6\x12\xe6\x4f\xf5\x80\x01\x10\x4b\x56\xbc\x05\xd1\x8b\xb5\xc8\xc7\xa5\xc8\x9b\xa2\x84\xff\x4a\xe2\x09\x19\x7d\x21\xb7\x08\x6f\x8c\x9b\xb8\xb4\x89\x4c\xe5\xba\x5e\x87\x1e\x92\x9e\xcb\x1f\xe1\xa4\x18\xe0\x2e\x29\x03\x35\x86\x2a\xd6\x08\x84\x2d\x69\x0e\x9c\x20\x28\x75\xd1\x84\x9f\xb6\x57\x6a\xf6\xef\x67\xe7\x38\xe9\x6c\xe2\xa7\xc9\xe6\xe6\x14\x65\x67\x89\xbe\x3c\x93\x73\x40\x98\x79\x50\xb1\xe9\xf7\x0a\x34\x9d\xcf\xe6\xa3\xb0\xb8\x2c\x83\xcc\xf7\x2a\x58\x11\x05\x9e\x07\xf1\x28\x9c\x03\x1d\xf4\x08\x2e\x70\x86\x10\x9e\x8f\x98\x30\x31\x2f\xe2\x0b\xc2\xdd\x1e\xf9\x35\x4e\x07\x03\x6f\x3e\x2a\x48\x9e\x15\xf4\xa8\xc8\x97\x61\x1a\x94\x22\xb7\xf3\x22\x60\x0f\x04\xc3\xf2\x34\x4d\xa2\xf8\x0a\xc2\xe3\x20\x08\xe6\x22\x6a\x73\x39\x2a\x63\xb6\xea\xab\xd1\x3c\x21\x61\xea\x21\x9c\xce\xf8\x41\x87\xbf\xa8\xe5\xa6\x3f\x19\x45\x71\x41\x6f\x2d\xa2\xc7\x63\xc0\x0a\xad\x2f\x43\x9e\x3e\x94\x43\x80\x20\xd6\x9b\xef\x58\xa3\x1e\xaa\x71\xf2\xd0\x72\x53\x13\x5e\xa8\x68\x13\xab\x30\x97\x0c\x81\xcb\x56\x29\xb9\x26\x25\xe5\xb1\x68\xa0\x20\x4b\x22\xb3\x80\x61\x30\x19\x0c\x00\x95\x65\x86\x51\x40\x41\x5e\x2a\x6e\x6a\xca\x17\x74\x50\xc8\xa3\x9e\x86\x5c\x4f\xdb\x11\x91\xe5\xa6\x77\x15\xe6\x30\x30\x1e\xda\x3c\x1d\x0c\xd2\x0d\x08\xbf\x0c\x7d\x6a\xd8\x13\xeb\x52\xc1\x55\x89\xe4\x9a\x14\xd3\x6c\x30\xf0\x32\x5e\x1a\x14\x08\x17\x83\x81\x57\xf0\x47\x6c\x35\x8a\xfa\xaa\x1d\x59\x20\x6a\xa4\x38\x95\x57\x6c\x88\x44\x41\x00\x73\x6f\x7e\x3e\x7e\x58\xbb\x02\x14\x99\x52\xe3\xa4\x75\xc6\xa6\xc4\x46\xb3\x25\x74\xc5\x94\xd5\x38\x63\x23\xb3\x1c\x4a\xc5\x92\xc9\x48\x14\x03\xbd\x0b\xe8\x57\xd8\x4b\x06\xe3\xd5\x80\xd5\x79\x2d\x9d\xa5\xfc\xad\x80\xfa\x5e\x1a\xc0\x59\x2e\x11\x87\xb8\x14\xc3\x08\x41\x48\xc3\x30\x78\x5f\x9b\xec\x5a\x9f\x79\x99\xc0\x95\xdf\x49\xc8\x20\x13\x39\x0c\xcc\xd0\xae\xd7\xeb\x14\xab\x81\xb3\x85\x42\x70\xca\x26\x00\x7a\x01\x30\x80\xe5\xd1\x4a\x21\x2d\xc9\xa5\x96\xbc\x4d\xe0\x19\x44\x94\x99\x6a\x1f\x10\x9b\x17\x68\x3e\xfe\x91\xbc\x91\x15\xa7\x88\x23\xa2\x60\x85\xcd\x0b\x40\xec\x6a\xd0\xed\xb3\x47\x16\xf8\xab\x06\xf9\x8a\x92\xfa\xd4\x0d\x80\x04\xeb\x52\x1f\x6c\x02\xca\xf1\x08\x61\x55\x4d\xe1\x8a\x01\x1f\x0e\x44\x84\xc5\x05\x7b\xcc\xaf\x04\x62\x36\xed\xf0\x0b\xa8\xa0\xa3\x68\xd3\x82\xec\xab\xa4\xe5\x08\xdb\x44\x11\x7d\x51\x0a\x88\x49\x2e\xc1\x36\x46\x7c\x36\x20\x2f\xfe\x03\x04\x23\x1d\x15\x1e\xe4\x69\x8a\x3c\x8a\x5d\xe0\xc8\x2e\xee\x5a\x04\xe4\xb5\xaa\x93\x64\xd9\x97\x2a\xb7\x55\x5a\xb4\x2b\x81\x96\xd6\x56\x33\xaa\x65\x8c\x56\xdb\xe0\x4e\x6e\x57\x17\x59\x82\xb3\xa0\x98\xf1\xcb\x11\x43\x12\x37\x5e\xad\x2a\xd0\x3d\x6e\xf2\x6e\x22\xdf\xfd\xfd\xef\x3f\x7f\x7e\x7f\x78\xf8\xe9\x74\xef\xdb\x83\xfd\xcf\xa7\x9f\x3e\x1e\xec\x7f\xfe\xfc\xfb\xdf\xbb\x38\xbe\xff\xdd\xcd\x22\xcb\x68\x5f\x03\xc7\x47\x47\xa7\xd0\x4a\x43\xc4\x42\x0e\x3b\x5c\xa8\x11\xd8\xcf\xc9\x59\x2d\xa1\x38\x4d\x0d\xc5\xe9\x46\xa1\x69\x4e\x27\x2d\xcd\xe9\x84\xc1\xad\xe6\xb2\xa1\x21\xad\xd9\x0e\x6f\x8c\xc3\x07\x90\x01\xca\xeb\x98\x89\x97\x52\x0e\x41\x77\xf3\xb0\x24\xf2\xa4\xc0\x57\x09\xc0\x02\x22\x38\xf6\xc6\x64\x0a\x35\x14\xe4\x7d\x51\x3e\x9e\x0a\x69\x4b\x16\x4c\xb8\x40\x9c\x04\xed\x48\x4a\x9f\xaf\x49\xf8\xe5\x90\x31\x16\xc5\x33\x3e\x97\xb4\xc8\xd2\x4b\xb3\x30\x0a\x69\x18\x70\x2b\x8f\xc4\xd4\xe7\xf6\x2d\xd3\xcf\x97\x84\x1e\x86\xb9\x47\xf0\xc6\x04\xf1\x98\x53\x2a\xc1\x1f\x5f\xbe\x35\x4e\xfa\x76\x2d\x46\x3e\xc0\x56\x6b\x63\x24\xc8\x15\x45\x98\x9a\x6d\x88\x5a\x3d\xed\xcc\x18\x90\x67\xc6\xb0\xd7\x6b\xaf\x05\x06\x72\xed\xfc\x95\x5f\x8b\x58\x40\x0d\x38\x54\x65\x0d\x40\x9c\x1d\x23\xbf\xdb\x74\xfb\xed\x5a\x08\x44\xb0\x94\xce\xe2\x73\x26\xbf\xc1\x35\x8e\x19\xc5\x77\x12\x80\x93\xe6\x2d\xd8\xac\x31\xaf\x11\x2d\x6a\xd3\x17\xb9\x39\x43\x9b\xc3\x11\xb4\x38\x56\xe1\x21\x97\xd2\xe9\x70\x58\xf0\x39\xc9\x02\x72\x56\x9c\x4f\x19\x81\x63\xb0\xcf\xd0\x7a\x0d\x1a\x7c\x2f\xe3\xdf\x56\x5c\x92\xc2\x4c\xb3\x91\xf2\x29\xb7\x09\xd5\xb5\x76\x64\x26\xc5\x22\xd5\x43\x4c\x83\x45\xbf\xb0\x49\xf9\x56\xa1\xc1\x04\xb8\x55\x12\x66\xda\xfa\x9e\xb6\xab\x45\xd8\xea\xef\x34\x9e\x66\xaf\x8b\xe9\x70\x98\xa1\xf4\x2c\x3b\x0f\xc8\x59\xa6\xf6\x85\xa1\x97\x62\x97\x57\x74\x71\xc1\xa0\x8b\x2b\xd9\x81\x20\xd5\x46\xb1\xec\x24\xb1\x19\x33\x51\xe6\x2c\x3b\xd7\x2a\xdd\x9a\xe0\x3e\x3b\xd7\xe0\x3d\x4d\x99\x04\x4c\xcf\x52\xd6\x81\x54\x75\x80\xd6\xa1\x3e\x02\x9c\xe1\x8d\x31\x74\x23\x1f\xc5\xe5\x29\x74\x63\xd9\x67\x61\xa6\xa5\x4f\x15\x20\xb9\x24\x54\x3b\xd7\xfc\x8e\xf0\x64\x1b\x59\xc1\x91\x48\xfb\x0c\x45\x53\xe2\x51\x36\xe2\x8d\x14\xd5\xd4\x73\xc9\x15\x29\x6e\x5d\x84\xa9\xe7\x2e\xe2\x84\x92\x42\x5e\xf3\xb4\x56\xfc\x4a\xa4\xac\x87\x5b\x1e\x0b\x96\xdf\xc4\xe9\x3c\xa9\x22\x52\xca\x3b\x08\x9e\xc5\x6f\xfe\x9e\xc5\x29\xbf\x4a\xc2\x92\xbe\xd7\x1f\xad\xc2\x9c\x5f\x14\x24\xaa\xe6\x44\xbf\x3e\x16\xe9\x64\xa8\xe7\x96\x49\x2c\x9f\x95\xd9\x4a\x5c\xd1\xec\x20\x9b\x87\x09\xe1\xc7\xd6\xb2\x4c\xbf\x63\x5b\xd7\xa2\x24\x2e\x23\x05\xfc\xdd\x82\xca\x9b\x62\x30\x10\xdc\x22\xa6\xa4\x08\x69\x56\xac\xd7\xee\xef\x7f\x2f\x6f\x5c\x54\x7b\x6d\x2e\x2a\xb6\x4b\x4a\x92\xb3\x6a\x0c\x38\xa3\xe7\x32\x5b\xbf\xf2\xa2\xab\xb8\x60\x88\xd1\xd5\x5c\x48\x29\x5b\xac\x93\x19\x57\x5e\x70\x82\xa3\x89\x89\xc6\xf9\xbf\x97\xa1\x59\x2e\xde\x90\xd1\xa4\x90\x9f\xd5\x3d\xee\x0f\x3a\xe2\x31\x9c\x40\x82\x51\x5f\x05\x2d\x7c\x11\x47\xa6\xd3\xbc\x53\xf4\x33\x0c\x54\x0a\x1d\x66\xbf\xaf\xc4\xad\x18\x36\x86\xcd\x84\xc5\x4c\x10\x56\xe6\x8c\xad\x3c\x9f\xd4\x08\x81\x72\xf8\xa9\x3e\xf7\x52\x03\xd1\x24\x90\xd3\x69\x19\x8e\xd9\x78\xc2\xe0\xec\xdc\x48\x44\x64\xb3\x03\xe0\xe7\xb8\x74\xbd\x76\xc3\xb2\x24\x05\x27\xd2\x61\x9c\x54\x05\x71\x35\x3a\x51\xaa\x4c\x37\xa0\x0d\xe6\x3b\x4e\xa9\x26\x13\x27\x9a\xcb\x38\x89\x20\xc7\x52\x69\xee\xe7\x60\xcb\x29\xb5\xb5\x9c\xf9\x26\x62\xeb\x00\x6d\xe2\xe1\xb0\xe4\x07\xfc\xba\x3e\x40\x09\x34\x64\xb4\x48\x03\x8a\x41\x69\x10\xa4\x98\xf0\xed\x76\x81\x89\xc0\xdb\x0c\x13\xb1\xab\xdd\x18\x63\xa2\x6d\xb3\xc5\x66\xaa\x4a\x3b\x45\x72\x57\x1d\xa7\x97\xc1\xc6\x04\x0a\xb4\xfd\x37\xc8\x03\x74\xf4\xf1\xe8\xe8\xe0\xf3\xe9\xde\xf1\xf7\xfb\xa7\x9f\x4f\xde\xff\xf7\x7e\x30\x19\x8f\xb1\xe8\x68\xc0\xae\xc4\x16\xbf\x27\x3d\x74\x38\xca\xb3\xbc\xd9\xb5\x17\x33\x2f\xf1\x0a\x39\xe2\x02\x41\x0e\x6c\x09\x55\x86\x01\xa0\xe5\x08\x4a\xc1\x4e\x4b\xdb\x56\xd5\x70\xb5\xd7\xbb\x3c\x6d\xeb\x90\x02\xfd\x04\x7f\x2c\xac\x0d\x75\x2d\xc1\x06\x2b\x04\x69\xc5\xe4\xbc\x4d\x3d\x5b\xee\xe8\x5b\x38\xfa\xae\x0d\x56\xf9\xe0\x4b\x57\x9d\x97\x96\x46\x52\x45\x98\xbb\xf5\x9a\x98\x78\xc2\xf7\xf1\x5a\x01\x74\xdc\x60\x5c\x02\x9d\x2b\x19\x66\x91\xe3\x1e\xec\x76\x29\x62\x5c\x71\x09\xbf\xad\x76\xe0\x9d\x76\xdb\xe2\x1d\xde\xa7\x9a\x24\x25\x71\x5a\x55\x82\x98\xcf\xe7\x7a\x2d\x75\xc3\xed\x36\xc2\x28\x62\x3b\x95\xc8\x00\xea\x55\xeb\x48\xbd\xe9\xe7\xb4\xf2\x52\xad\xaf\x1b\xd0\x59\x3d\x1b\x1a\x84\x87\x0c\x82\x20\x9b\x29\x4d\xab\xd8\x37\xf9\xc5\x46\x10\x88\x1b\x06\xa7\x46\x03\x83\x57\x5c\x80\x64\x10\x5e\xaf\x73\xa3\x2b\x2b\x1e\xfc\xfc\x4a\xa4\xe3\x35\x3a\x3f\xe5\x0a\x0b\xb1\xa7\x4b\xb9\x66\xa9\x10\xb8\xe2\xc5\x82\x1c\xbe\xee\x2e\x8a\xc1\x20\xe6\xa1\x2e\x8b\x0e\xa0\x83\xb6\x58\x75\xc1\xa6\xbd\xf2\x36\x8c\xf5\x87\xdd\x30\x29\x48\x18\xdd\x3a\x5a\xa1\x8b\xda\x8b\x74\x2c\x52\x27\x5f\xf3\x34\x74\x85\xc7\xed\xb8\xba\x7a\xc2\xa9\xad\x30\x20\x53\xae\xb8\xdf\x18\x83\x12\x5c\x92\x0e\x46\x5a\x74\xa9\x8e\xd3\x16\x46\x3e\x37\x26\x4a\x95\xdd\x21\x17\x6c\xe2\x2c\xdf\x60\x1b\x18\x6c\x7d\x92\xe1\x78\xbd\xde\xd0\x19\x81\x61\x6e\x13\x68\x3a\x5a\x45\xaa\x10\xeb\xe7\x3e\x1b\xad\x49\xc1\xb4\x2a\x96\x9e\x0b\x4d\x3e\xd5\x96\x97\x86\x1c\x1b\x93\x5a\xee\xa4\x6a\xc6\x82\xf4\x87\x46\x14\x58\x45\x50\x27\x3a\x26\xb1\xff\x94\x84\xab\x56\x3a\x92\x84\xb8\xd6\xb4\x95\x2d\xf5\x4a\x77\x2f\x55\x58\x95\xbc\xc6\x7e\xaa\xa1\x2a\x62\x65\xd1\xce\x32\x27\x20\xf0\xeb\xa5\x7c\x0b\x95\xf1\x15\x30\xe3\xf4\xca\xbf\x12\x16\x3b\xdc\x76\x0b\xb1\xb9\xe0\x57\xa8\x65\x0b\xe5\x10\x8f\xd3\x14\xca\x01\x20\x9f\x5f\x08\x75\xe0\x12\x92\x1b\xca\xa7\x6a\xe5\x77\xa8\x5e\xca\xf0\xbc\xdb\xdd\x14\xf1\x33\x18\xb6\xc2\xc4\x4c\x15\xe8\x8e\xea\x1a\x54\x6e\xb0\x0e\xdf\x36\x3e\x5e\x49\x31\x0d\x8e\xa1\x94\x28\x2e\x20\xcf\x47\x53\xe3\xb9\x6a\xaa\xb3\x23\x16\x54\xd6\x6b\x6e\x20\x7d\x20\xbb\x93\x6c\x34\x12\x72\xcb\xbe\x00\x0e\x6b\x4f\xea\x55\xad\x67\xd5\x53\xb6\x1a\x75\x4c\x10\xf8\x7a\x1f\x37\xd0\x47\x8b\x8f\x04\x6b\x30\xb6\x0b\x95\xd7\x65\x58\x8c\x42\xf2\x52\x63\xb2\xc5\x13\xa9\x3f\x68\x11\x7a\x1c\xde\x47\xb7\x42\x11\xa2\x97\xe3\x35\xd0\x87\x4b\x43\x60\xba\x6e\xb0\xf5\xb2\xc9\x2c\xd1\xfe\xfe\x9b\x31\x28\xe9\xce\xce\xb1\xf9\xac\x8b\x13\x4c\x96\x39\x82\xc8\xd6\x98\x4a\x9a\x59\xa3\xfb\xfa\xaf\xc9\x43\x47\xf2\xac\x45\x42\xa5\x51\xbf\x99\xdf\x55\x47\x71\x82\x15\x34\x4d\xec\xeb\xd2\x83\x46\x52\xac\x1b\x03\xae\x6d\xee\x88\x4e\x94\x87\x57\x7e\x8c\xca\x4e\x89\xaa\x3b\x3b\xa8\x95\x31\xb1\x57\x0a\x6d\x27\x2a\xd4\xc2\xe2\x52\x27\x4e\x1d\x32\x7b\xa2\x5a\xab\x63\x03\xa8\xdb\x07\xd6\xc8\x07\xd1\x3e\xc5\x84\x9f\xab\xe2\xaa\x23\xcb\x09\x1d\x37\x4f\xdb\x89\xb9\xa0\x8f\xb0\x2c\xe5\x29\x74\xdb\xa5\xf2\xe0\xfe\x68\xb1\x28\x09\x6d\x9e\xf3\x90\xdc\x59\x74\x1b\x10\xa1\xcb\x86\x34\xe3\xeb\xb5\xfb\x7d\x11\xe6\xcb\x3f\x1f\x38\x05\xf9\x47\x45\x4a\xea\xf2\xc7\x66\x3b\x41\xba\x5e\xdf\x25\x71\x4a\xfc\x09\xe6\x9e\x1d\xfe\xa4\xb6\x55\x1c\xb1\x4a\x6f\xc6\xeb\x75\xe6\x8d\xb1\xcb\x6e\x18\xe8\xcc\x3a\x4e\x5c\x3a\x93\x4d\xd8\xf6\x92\x08\x0c\x7a\xc0\x6e\xf3\x82\x38\xdc\x00\xfc\x0a\x76\xad\x96\xb6\xf9\x97\x55\xeb\xfc\xf6\xeb\xda\x37\xd5\x84\x0c\x2b\x94\xbe\x04\x17\xc1\x37\x3f\x14\x3f\xa4\xeb\xb3\x1f\xd2\x1f\x8a\xf3\x6f\x2e\x71\x16\x4c\x70\x1c\xd0\xe1\x64\xea\xa5\x41\x31\x22\x37\x64\xee\x11\x9e\x20\x16\x0d\x06\x22\xfc\xf5\x6b\x3a\x45\xd9\x50\xd6\xdc\x94\x51\xb1\x87\xe9\xd9\xf8\x5c\x90\x02\x49\x3a\x39\x24\x33\x09\xc9\xb8\x6e\x6d\x3d\x1a\x91\xcd\x0a\x80\xcd\x09\x2e\x82\xb9\x97\xa2\x21\xef\x04\x58\xe0\xb0\x26\x37\x27\x60\x12\x69\x99\x91\xcd\x09\x0e\x45\xa5\x61\x8c\xab\x80\xe7\xfe\x64\xb7\xb3\xd4\x1f\x8b\xb8\xa9\xac\xed\x61\x85\x13\x26\x7b\xe5\x49\x4c\x3d\x13\x0c\xb2\xf7\xae\xf2\x58\x20\x80\x44\xd8\x75\x3c\x17\xc9\xb2\x10\xbb\x7e\x73\x57\x62\x17\xfd\x90\xba\x68\xd8\x65\xc2\x64\xc4\x15\x27\x06\x7f\x26\x67\xe3\x73\x21\x6c\x91\xb3\x89\xda\xeb\x72\x24\x66\x72\x67\xcd\x04\xb0\x31\x2e\x18\xff\xc8\x98\x88\x10\x4b\x87\x2a\xc6\xdb\xe4\x1c\xb2\xc5\x44\xcf\x5a\x4a\x8b\x73\x0f\x4d\x37\xbc\x22\xf0\xc2\xa0\x82\xf0\x31\x1e\x42\xa3\x28\x4b\x09\x93\x74\x37\xc6\xbc\x5f\x65\x10\x72\x96\x84\x93\xa0\x64\x9d\x49\xf9\x69\xf5\x2a\xbc\xf1\x52\x9c\xc8\x89\xac\x05\x07\x5d\xa0\xbb\x8c\x75\x25\x0e\x16\x4a\x64\x63\x1d\x29\xd6\x6b\x4e\x57\xab\x11\x1f\xc2\x7a\x2d\xaf\xbc\xc6\x4e\x21\x5e\x78\x99\xa0\x43\x71\xdd\x48\x37\xed\x8d\x3b\xf7\x86\x29\x02\x06\x1c\x9c\x19\x80\x99\x7b\xe9\xa6\x47\x83\x02\xc9\x8e\x0d\xe9\x30\xab\xd1\xe8\xef\x59\x9c\x7a\xee\x0f\x60\x32\x7e\x76\xd6\xcc\x58\xb8\x39\xc1\xae\xef\xb8\x08\x27\x67\xd9\xe6\xe4\xfc\x1c\xeb\x0f\x9b\x47\xfc\x01\x9e\x7b\xe5\xe6\x04\x0d\xdd\xff\x71\xcd\x8a\x43\xad\x95\xe1\xe4\xfc\x5c\x57\xea\xcd\xb5\xfd\x15\x57\xb2\x90\xe1\x44\xf6\xc8\xd1\xb7\xf5\x0b\xb9\xcd\xc6\x19\x8e\x71\x28\x0d\x40\x4c\x0d\x0d\x45\x33\x98\x78\x31\xc0\x19\x15\x81\x10\x7d\x3a\x3b\xa3\xe7\x32\x06\x78\x12\xa4\x70\xee\x9e\x0c\x06\x15\x6f\x67\x1e\x54\x6c\xfa\x92\x60\x3e\x18\xcc\xd9\x92\x10\x3f\xa3\x32\xab\x8a\x39\xa7\xb9\x11\xce\x83\x62\xba\x91\x0f\x06\xd5\x60\xe0\xe5\x30\x59\x51\x35\x27\x9e\x5d\xd7\xcd\x5b\x21\x9c\x7d\x52\xde\x18\x0d\x0b\x8a\x30\xa9\xf1\xd9\x39\x42\x38\xe7\xfb\xdd\x5c\x74\x16\x1a\x95\x04\xb8\x18\x0c\xd2\x59\x14\x14\x7d\x7a\x99\xd2\x4b\x41\x1c\xf1\x59\x5f\xa2\x27\xf5\xa5\x94\xbd\x81\xa1\x61\xbd\x6b\xaa\x6f\xc2\x95\x26\x5c\xaf\x63\xb6\x6d\x22\xca\x48\xc5\xea\xd4\x18\x93\x92\xf3\x93\xbb\x15\x29\xcb\xf0\x92\xd8\x2d\xde\x4d\x8e\xa6\x8c\xc6\x4a\x59\x3b\x5a\xaf\xc5\x04\x69\x6f\x7d\x9b\x65\x60\x23\x10\xa1\x9a\xdb\xbd\x89\xca\xd9\x7d\x95\x33\x54\xe3\x34\x8b\x88\x6a\xba\x92\xb5\x6b\xcc\x87\x2d\x1f\x24\xcd\x03\xe9\x4f\xa4\x5e\xca\x9b\x67\x59\x11\x5f\xb2\x65\x08\xcc\x5f\x3e\x8f\x6b\xdc\x00\x46\x16\x2e\xef\xeb\xd7\x12\xa4\x66\x00\x69\x49\xc3\xf9\x97\x1e\x19\x81\xf3\x66\xa8\xa1\x1c\x44\xc5\x1b\xf7\x3a\x0d\x20\x1f\xfa\x37\x9a\x87\x39\xad\x0a\x72\xc2\x5e\x38\x2d\xc2\x39\x99\xf5\x94\xf3\x2f\x2d\x90\xff\xf8\x7e\x70\xf1\x07\x3d\xa6\x37\x86\xbe\xc6\x90\x90\x98\x1c\xb5\xf0\xdc\x93\xdb\x94\x86\x37\x5c\xa2\xf2\x1d\x2d\xbd\x19\x96\x20\xc4\x67\xf4\xbc\xad\xc2\x69\x8e\x00\x88\x9d\xf3\x60\xa1\xb9\x2b\x82\x09\x24\x56\x51\xd9\x2e\x86\xf2\x28\x86\x9e\x15\xe7\x38\x0e\x96\x5e\x06\x7b\xa5\xf8\x75\xd6\xac\x41\x21\xe1\xa6\xeb\x75\xfc\x3a\x45\x7c\x89\x7a\x69\x10\x23\xc4\xd3\xaa\x80\x99\x90\x62\x1d\xc1\x64\x1a\x36\x9f\x08\x87\x43\x44\xcf\xc2\xf3\x80\xfd\x19\x81\x72\xdd\x4b\xb9\xf9\xce\x54\x56\x62\x52\xf8\xad\x47\xcf\xc6\xe7\x68\x8a\xe8\xa8\x5c\xc6\x0b\xea\xf5\xd4\x91\xf7\x9b\x13\x5e\xd9\x50\xd3\x51\x9d\x6e\x9b\x0a\xab\x06\x44\xe3\x29\x7d\x4d\x9a\xc1\xb9\x0e\xf8\xf3\x9e\xd1\xf3\xf5\xda\xfd\x81\xca\x1b\xd6\xf8\x70\xd8\x9c\x9a\x98\x67\x2e\x9a\x2a\x18\x44\x7f\xde\x5a\x8f\xe2\x08\x54\x4e\xde\xe5\xe8\xe4\xe8\x1d\x1e\x8b\x7f\xa0\x5d\x91\xd2\x8c\x58\x7f\x04\x67\x39\x5f\x6d\x14\x27\x61\x49\x4f\xb3\x2f\x24\xf5\x53\x4c\xc5\xaf\x10\x1f\xd9\xcf\x09\xa3\x4d\xfe\x18\x87\xd1\x55\x98\xce\x89\xbf\xc2\x49\x96\x7d\x09\x97\x24\x8c\xfc\x8b\x5a\xd7\x1a\x99\x27\x96\xaa\x59\x7e\x1c\x0a\x2d\xe3\xe6\x52\x64\x52\x91\x4d\x79\x86\xfa\xc7\xb0\x73\x86\xea\x53\xd0\xc5\x7d\x89\xd3\x68\x23\x08\x2e\x47\xfb\x47\xef\x50\x94\xdd\x11\x11\x5c\x6e\xbd\xf6\xf8\x45\xf0\x51\x9a\x9a\xa0\xfa\x7a\x19\x27\x44\xbc\x14\xb0\x97\xde\x1e\x1d\x1e\xee\x7f\x38\x55\x53\x48\xea\x30\xa8\xac\x46\x09\x5c\x1a\x51\x47\x29\xf2\xf8\xe5\x34\xbc\x54\xc6\x92\xad\xc5\x1a\x6a\xc7\x0d\xdd\xb7\xf0\x9d\x3d\xe4\x92\xb4\xc0\x96\xbe\x4a\x20\xa3\x31\x22\xb5\xe8\xf5\x74\xe2\xb4\xe4\x7e\x57\xa7\x45\x8d\xc1\xeb\x52\xdc\xca\x5d\x03\xbc\xea\xd6\x58\x76\x4c\x55\xef\xda\x3f\x74\x24\xc0\xb3\x73\x3e\x03\x40\xd7\x95\x85\x22\x08\x77\x13\x9c\xd9\xe4\xba\x18\x87\x22\x1b\x7d\x69\x97\xee\xd2\xc0\x8b\x83\xb0\x25\xdd\xa5\x4a\xba\xab\x82\x58\x9c\x47\x55\x9c\x81\x8a\xbd\x70\xe2\x55\x3a\x03\x2d\xcd\xdb\x4a\xe7\xa7\x4a\xf4\x5b\xa1\x3b\x21\x85\xae\x0c\xd1\x2f\x95\xa2\x5f\xa8\x44\xbf\xd0\x2a\xfa\x15\x42\xf4\xcb\xea\x9a\x2b\x7d\x01\x18\xfc\x9b\x8c\xb5\x2b\x6e\x2a\x05\x1a\xf9\x10\x2f\xd8\x77\x23\x06\xa5\xdc\x06\xa5\x25\xbe\xd5\x76\x01\x3d\x90\x5a\x04\xde\x32\xb8\x6d\x41\x6a\xa1\x20\x75\x15\x2c\x05\xa4\x14\x88\xe6\xf8\xca\x18\x7d\xc4\x7a\x91\xb7\x46\xbf\x90\xa3\xbf\x55\xa3\xbf\xb5\x8e\x3e\x12\xa3\xcf\x6b\x25\xf9\x8e\x03\x4d\xce\x23\x23\x29\x79\x9c\xa9\x4b\xe5\x8a\x48\x1b\x09\x17\x76\x17\x8c\x62\x4a\x3d\x94\x8c\x34\x76\x69\x5a\x8b\x78\x77\x27\x47\xef\x7c\xf7\xf5\xc9\xd1\xbb\x37\x2e\xde\x87\xeb\x7d\xb8\xfe\x76\xef\xc3\xf7\xbe\xbb\xe1\xe2\xef\x8e\x0e\x0e\xf6\x8e\x7d\xf7\x77\x2e\xde\x3b\xfc\xe8\xbb\x03\x17\x7f\xdc\x3b\xde\xff\xf0\xf9\xc0\x77\x3d\x79\x7d\xec\xbb\xc8\xc5\x27\x1f\x8f\xf7\xf7\xbe\xf3\xdd\xd1\x68\xe4\xe2\xb7\x47\x07\x47\x1f\x7c\xd7\x77\xf1\xfe\x9f\x3f\xed\x1d\x9c\xf8\x6e\xe0\xe2\xbd\x53\xdf\xfd\xbd\x8b\xbf\x3d\xde\x7b\xfb\xa7\xfd\x53\xd6\xc4\x59\x73\x77\xec\xbb\xe7\xfc\x6e\x9f\x3d\xb9\x73\xf1\xc7\xf7\x1f\xf7\x7d\x77\x2d\x0b\x8f\x7d\xb7\x76\xf1\x87\xbd\xc3\x7d\xdf\xe5\xae\xe9\xef\x3f\x9c\xfa\xee\xfb\x94\xba\xf8\xdd\xc1\x11\x6b\xfc\x5d\x92\x85\xd4\xc5\x27\xa7\xc7\xef\x59\xff\xc5\x61\x2e\xfe\xf6\xe0\xe8\xed\x9f\x3e\xcb\xd2\x6f\x93\x6c\xfe\x45\x3e\x12\xb4\xca\x77\xdf\x66\xab\x15\x04\x41\x42\x56\x85\x93\x50\xa9\x2a\xe6\x31\xd3\x77\x7c\x8c\xf2\xe1\x67\x8e\xfb\x4c\xed\xf1\x28\x7e\xe6\x3e\x43\x3e\x7f\x54\xf3\xc8\x8b\xc2\x3f\x5a\x3b\xfd\x5c\x86\xc5\xdb\x2c\x22\x7b\x14\xef\x77\x9f\x02\x5f\x6d\xfa\x72\xd2\xde\x18\x00\x4d\x03\x9a\x2b\x94\x17\xb0\x18\x03\x71\xf6\x47\xd2\x48\x9a\xe4\x31\xe6\x12\x14\xd2\xc9\x91\x6d\x68\x83\x4c\xd7\x33\x86\x58\x38\x94\x90\xab\x20\x96\x36\x7d\x37\xdc\xba\xb3\x61\x16\xa7\x1a\x8f\x8c\xcb\x0f\xe1\x07\x8f\xa0\x19\x30\x08\x9f\xbc\x9e\x6c\xbd\x9c\xfd\xf1\xe4\xe8\x83\x70\xd5\x88\x17\xb7\x9e\x18\xcf\xa2\xc8\x56\x6f\xc5\x38\x3d\x82\x90\xff\xcc\xfd\xe1\x87\xea\x99\xf2\xef\x77\xc7\x63\x77\xd8\x78\x8f\x7b\x93\x17\x68\x44\xb3\x4f\x79\x4e\x8a\xb7\x61\x49\xd8\x32\xe4\x02\xc6\xe6\x36\x02\x98\x36\x3d\xfa\x68\xaa\x05\x04\x1d\x28\x82\x54\x2a\x00\x8a\xc6\xfb\xd7\x7e\x22\x48\x1a\xfb\x0e\xca\x45\x93\xec\x75\x31\x95\x3e\x05\x47\xc2\x95\x1d\x73\xf1\xe9\x55\x10\x04\xf1\x7a\xfd\x7c\x8b\xff\x6e\x6f\xf3\xdf\x17\x3b\x5b\x2f\xe1\x11\x1a\x0e\xb3\xa9\xa4\x59\x93\xb1\x2c\xc2\xc3\x61\x0a\x53\x80\xf9\x0f\xb0\xf9\x80\xd7\x64\x6b\x7e\xf2\x7c\x83\xd5\x04\xa9\x6b\x0a\xaf\x35\xdf\x1d\x4e\xd0\x2c\x1b\x06\x5b\x7e\x7f\x3b\x8a\x50\x64\xb5\x57\x60\xca\xe6\x1d\x13\x04\x2c\x01\x2a\x57\xc1\x64\x18\x6f\x92\xe6\x15\x90\x04\xdf\x04\x19\xd2\x84\x54\x26\xc9\xec\x1f\xbd\xc3\x19\xce\x70\x88\x2b\x2c\x74\x85\xa5\xec\x4a\x81\x63\x34\x15\x46\x63\x25\xb7\x16\x73\x9e\x3f\xf7\x5b\x2d\x30\x9a\x81\x63\x1c\x0f\x27\xb2\x11\x5e\x71\xc7\xb7\x38\x38\x73\x4c\x16\xa0\x86\xee\xc2\xa4\x55\x01\x9d\x46\xd9\x9d\x02\x7e\x88\x87\xc3\x4a\x8a\x18\xc2\xf1\x39\x1e\x0c\xbc\xf8\xcd\xf3\xc9\x7a\xcd\xe1\xde\x58\xbb\x8a\x8e\x88\x35\x8d\x29\xae\xc4\x82\xd9\x97\xad\xd1\xe1\x04\x57\x08\xd5\x5e\xca\x16\x91\xde\xcb\x17\xed\xe1\x70\xca\x67\x1b\xd0\x6e\xbb\xea\xde\xe1\x47\x4b\xbd\xed\x71\xbb\x9e\xa0\x9c\xb6\xba\x13\x7b\x5d\xdb\xf7\xb7\x5f\xf8\xf1\xc2\xdb\x7e\xd1\xa0\x4a\xc1\xea\xa0\xc1\xa0\x5d\xb6\x85\xda\xb3\xcc\x69\x34\x34\xfa\x5c\x36\xca\x51\x0f\x9a\xde\xe9\x0c\x0d\xe8\xb8\xa5\x13\x2f\x3a\x1d\xe6\x74\xde\x56\x75\xbb\x03\xaf\x53\x4b\xb5\x57\x9d\x16\x15\x9f\xb0\xd5\xee\xa2\x9f\xe4\x23\x96\xda\x93\x2d\x6b\xf5\x7d\x6b\xd3\x93\xad\x4e\x87\x19\x27\xb2\xd6\xdc\xb1\x37\x6b\xeb\xc3\x8b\x1d\x9f\xff\xbe\x10\xbf\x2f\xc5\xef\xae\xf8\x7d\xc5\x7f\x5f\x8e\xc5\xef\x44\xfc\x6e\x89\xdf\xe7\xe2\x77\x5b\xfc\x8a\xf6\x5e\x8a\xf6\x5e\x8a\xf6\x5e\x8a\xf6\x5e\x8a\xf6\x76\x45\x7b\xbb\xa2\xbd\x5d\xd1\xde\xae\x68\x6f\x57\xb4\xb7\x2b\xda\xdb\x15\xed\xed\x8a\xf6\x76\x45\x7b\xbb\xa2\xbd\x57\xa2\xbd\x57\xa2\xfe\x2b\x51\xef\x95\xa8\xf7\x4a\xd4\x9b\x8c\xc7\xf2\x62\x22\x2f\xb6\xe4\xc5\x73\x79\xb1\x2d\x2f\x76\xe4\xc5\x0b\x79\xf1\x52\x5e\xec\xca\x0b\xd9\xf2\x44\xb6\x3c\x91\x2d\x4f\x64\xcb\x13\xd9\xf2\x44\xb6\x3c\x91\x2d\x4f\x64\xcb\x13\xd9\xf2\x44\xb6\x3c\x91\x2d\x6f\xc9\x96\xb7\x64\xcb\x5b\x5b\x0f\x92\x2f\x49\xbc\xc2\x40\x9e\xcb\x33\x3a\x36\x9c\xe0\x32\x18\x73\xb6\x52\x6d\x04\x41\xa8\x22\x37\x78\x8a\xb0\xc6\x8c\x18\x0d\x06\xde\xab\x9d\x20\x08\xca\xf5\xba\x7c\x13\x6c\xef\x0e\x06\xe5\xeb\x60\xe7\x25\xdc\xbd\xd8\x81\xbb\x57\x63\xb8\x7b\xf5\x12\xee\x26\x5b\x5b\x68\x8a\x86\xc3\xaa\x4d\xf8\x98\x6c\xd4\xa5\x7a\x31\x2b\xb2\xd1\xbc\x6d\x01\x99\x6d\x01\x86\x6d\x01\x85\x1d\x01\x84\x1d\x01\x83\x1d\x01\xdc\x1d\x01\xdb\x1d\x01\xda\x1d\xf1\xfe\x8e\x00\xec\xce\xcb\x7e\x50\xe1\x98\x03\x4b\xa3\xf4\x29\x2e\x03\x8a\x93\x60\x63\x32\xdd\x66\xe3\xaf\x06\x03\xaf\xd2\x09\x7f\x89\x80\xf1\x6e\xef\xb2\x87\x70\x44\xd5\x79\xce\xe1\x55\x31\x78\x09\xd9\x39\xf2\x08\x2e\xb1\xfb\x3e\xbd\x0a\x93\x38\x72\xb8\x1b\x01\x76\xaa\x94\xdc\xe4\x90\x43\xd1\x89\xe2\xcb\x98\x3a\x10\x9c\xcd\x19\x6b\x0a\x99\x53\xaf\x42\xd8\x1d\xb9\x08\xf1\xad\x47\x19\x1c\x42\x5b\x15\xc2\xda\x67\x4b\x34\x05\x32\xcb\x7a\x9b\x30\x69\xbf\xd5\x25\xdc\xf7\x1a\x9a\xbe\x78\xb5\x01\xef\x4d\xc6\x13\x76\xb1\x5e\xf3\x06\xb6\x99\x04\xd0\x19\xd9\x60\xb0\xbd\x23\x6a\xb5\x1f\x69\x9f\x68\xf1\xbe\x64\x76\x39\xe2\xa2\xf0\xe5\xe8\x3d\x70\xc0\x52\x08\x8c\x0d\x07\x64\x5d\xe1\xb8\x50\x9a\x6c\x4d\x51\xbd\xe7\xdb\x5d\xd6\xd2\x2e\xdb\x42\xb3\x47\xac\x07\x3a\x7c\x8e\xab\x20\x64\x0b\x01\x27\x81\xeb\xf2\xd5\x10\xbe\x8e\x95\xae\xc6\xb2\x24\x42\x84\xa6\x30\xdb\xf0\xcd\xd2\xfc\x76\x8c\xc3\x4e\x7f\x58\x59\xc3\xea\x92\x61\xa0\x10\xbf\xc2\x21\xc2\x8a\x34\x6b\xbb\x00\x4c\x71\x38\x7c\x2e\x50\x33\xf7\x12\x8e\x69\xe5\xeb\xe7\x5b\x83\x01\x9b\xa5\x92\xcd\x92\xf8\x65\xd3\x53\x6a\xd8\x15\x36\xd8\xc5\x24\xf8\x70\xce\x10\xe9\x3a\xa6\xcb\x38\x75\xc4\x86\x5f\x47\xaa\x52\x20\xd5\xf4\xd5\xd6\x53\x86\xd3\x2d\x7b\x8e\x66\x5e\x7b\x70\xc3\x67\xae\xeb\x3e\x63\x30\x1e\x06\xdb\xc8\x1f\x0e\xc3\xda\xe8\xe8\xa7\x94\x92\x62\x15\xa7\x21\x43\x7c\x2e\x9c\x8f\x5c\x83\x14\xf8\x8f\x9a\xc6\xc9\x57\x4d\x63\x1b\x88\xfa\xb4\x3e\x38\x5d\xda\x44\x4d\xc4\x44\x25\xed\x59\xfa\x19\x66\x25\x5e\x78\xc3\x61\x88\xf9\xe4\x28\xd7\x88\x56\xaf\x36\x27\x6c\xd1\xe9\x43\xbb\x93\x6b\x26\x19\x06\xcf\xdc\x67\xba\x10\xb5\xfd\x92\x15\xba\xdf\xb8\x7a\xe1\xab\x2d\x28\xfc\xe1\x07\xb3\x74\x97\x97\x5e\x18\xa5\x8c\x4f\x42\xf1\xc2\x2c\x9e\x8c\x79\x71\xda\x2a\xde\xe6\xc5\x45\xab\xf8\x05\x2f\xa6\xad\xe2\x97\x3e\xd7\x9c\x78\x0b\x13\x09\x71\x6e\x22\x20\x5e\x9a\xc8\x87\x6f\xf5\xfb\x6d\x84\xbf\x78\x0b\xf4\xfa\xf5\x64\x6b\xfd\xc5\xcb\xd1\xeb\xd7\xbb\xeb\x2f\xde\x12\xbd\x7e\xbd\xbd\xfe\xe2\xdd\x72\xc0\xce\x5f\x8f\x1f\x9a\x21\x52\xce\xc3\x9c\x38\x3c\xa8\xc3\x9c\xf8\x8e\x3b\x64\x1b\x44\x35\x53\xb1\xd8\xfe\x31\x24\x08\x87\x3b\x72\xd6\x92\x61\x60\xdb\x60\xce\x11\x66\x0b\x41\x0c\x58\xfa\xa6\x3c\xb5\x0b\x3f\xfc\xa0\x3e\x6f\xfb\x88\x44\x9d\xba\x0a\xd8\x7a\x83\xdd\xfd\x02\xe7\x78\x89\x6f\xa7\x4f\x5c\x7c\x6a\xb1\xb2\xa2\x96\x39\x1a\x51\x68\x4e\xc4\x3a\x22\x62\x1d\x49\xb7\x06\x15\x1d\x8b\xe7\xae\x87\x88\x28\x71\x67\x78\x1a\xd2\x13\xde\x73\x36\x35\xcf\x5f\x69\xfe\x3d\xee\xa7\x86\x3b\x96\x71\x7a\x99\x10\xe7\x1f\x55\x06\xc1\x54\x64\x2b\xde\x33\x84\x9d\x28\x8e\x9c\xdb\xac\x72\x56\x24\x4c\x21\xd0\x47\x49\x9c\xd0\x89\xb2\xea\x42\xbd\xe1\xfd\xe0\xa2\x99\x3b\x35\x3b\x98\x87\x45\x49\xa0\x7b\x1a\x1b\xbe\xaf\x87\xb5\x57\xea\x76\x8a\x87\xed\x6d\xbb\x3c\xe1\xc7\x31\x3f\xe3\x8c\xb9\x1c\x10\x83\x1c\x70\xa7\x6f\x20\x0b\x3c\x1c\x66\x72\x03\x69\x54\x9b\xaa\x8d\x73\x33\x69\x59\x57\x70\x68\x89\x0d\x17\x15\x75\x2e\x33\x6a\xd0\x92\x58\x22\x84\xea\xf0\x17\xdd\x9e\x96\x7f\x94\xb0\x8f\xce\xc8\xe6\xf6\xae\x4f\xb8\x5c\x47\x5e\x07\x2f\xc7\x33\xb2\xb9\xb3\xc3\x4a\x98\x6c\x47\x5e\x07\x93\xf1\xd6\x8c\x6c\xee\xbe\xf4\x37\x27\xf5\x89\x11\x5e\xef\x8f\x27\x47\x1f\x02\xbd\x28\x4e\x4b\xd6\x35\x4b\x6c\xab\x2f\x71\x1a\xf9\x4a\x3f\x24\xfd\x3d\x95\xc6\x87\x9f\x3a\x28\xdd\x90\x34\xb9\xd0\x14\x44\x35\x37\xbf\xfa\x7b\x5b\x5d\xa8\x2b\xdf\xbe\x3b\x7a\xfb\x89\xab\xce\xbe\xcb\xe6\x60\x89\xef\xe2\xa3\x8f\xfb\xc7\x7b\xa7\xef\x8f\x3e\x7c\xfe\x6e\xff\xdd\xfb\x0f\xef\xd9\xa5\xef\x1e\xe5\x84\xc7\xbf\xff\x8e\x2c\x20\xbc\x4b\x96\xba\xf8\x2f\x7b\xc7\xef\xc1\x85\x4e\xaf\xf9\x97\xb0\x88\xc3\x8b\x84\xe8\x15\x4f\xf6\x0f\xf6\xdf\x42\x9b\x27\xfb\xa7\xbe\xcb\x53\xe3\xc5\x59\x7a\x42\xa8\x8b\xdf\xbd\xdf\x3f\xf8\xce\x77\xdf\xc5\x24\x89\x5c\xbc\x77\xfc\xbd\xe8\xd2\x9e\x70\x0e\x70\xf1\xbb\xe3\xbd\xef\x59\xd9\x67\xa9\x9e\x7c\x57\x84\x97\xec\xd1\x49\x5e\x90\x30\x72\xf1\xfb\x0f\x07\xef\x3f\xec\x7f\x96\xf5\x7c\xf7\x7d\xca\xa0\x22\xab\x69\x2d\xe8\x3d\x95\x8f\x6d\x43\x6a\xc6\xd1\xa8\x28\xc1\x18\xcc\xd4\x53\x8a\x22\x53\x59\x29\x0a\xbf\x3d\x3a\x3a\xd8\xdf\xfb\xe0\xbb\xe2\x4c\x55\x14\x7f\xf8\x74\x70\xe0\xbb\x1f\xaa\x24\x11\x05\xfb\x1f\x3e\x1d\xfa\xee\x7e\x5a\xad\x44\xc1\xc1\xfb\x93\x53\xdf\x3d\x88\x4b\xd9\xfc\xd1\xb7\x7f\xdc\x7f\x7b\xea\xbb\x7c\x26\x8d\xc2\xcf\x02\x7a\xfc\x91\x80\xe1\x77\xef\x8f\x19\xb8\xff\xb2\xef\xbb\x22\x72\xed\x15\xe1\x5a\xd7\xef\x3e\x9f\xfe\xed\xa3\x98\xfe\xe8\xf4\x36\x17\x5f\x13\xa5\xec\x93\xbc\xf0\xc3\xd1\x87\xcf\xac\xa3\xb2\x7a\x96\xb2\x0e\xf3\x67\x27\x6f\xff\xb0\x7f\xb8\x67\x40\xf2\x64\xbe\x24\xab\x50\x87\x63\x83\x45\xac\x05\x3b\x2a\xb1\xe6\x0c\x2c\x79\xbb\x77\xb0\x77\xdc\x7d\xe1\x64\x1e\x26\x61\xd1\xae\x2d\xc6\xdf\x6d\x1e\x20\xd1\xae\x0d\x60\x32\x67\x9f\xc1\x4a\xaf\xf2\xfe\xc3\xc7\x4f\xa7\x9f\xff\xb2\x77\xf0\xc9\x6c\xf0\x7d\x9a\x57\x1c\xe8\x66\xed\xd3\xfd\xe3\x77\x7b\x6f\xf7\xbb\x3d\x78\xcf\x78\xc6\x22\x9c\x93\x76\x27\x3e\x7d\xb0\x02\xe4\x53\x6a\x01\x06\xc3\x8a\x6e\x55\x86\x25\xd6\x9a\xdd\x6e\x2b\x84\xea\x8e\xb1\x0f\x74\x30\x52\x3b\xfc\x14\x4a\x19\x2f\x28\xec\x32\xa7\x11\xf0\x63\xff\xbf\x4e\xf7\x3f\x9c\x68\xe8\xa1\xe2\x87\x98\x33\x6d\xd4\x93\x13\xad\xd5\xd5\x3b\xab\xd5\x6d\xba\xa9\xd5\x6d\x4d\x8a\x56\xdd\x98\x13\xed\x0d\x6d\x4a\xb4\xda\x6a\x46\xb4\x9a\xcd\x84\x68\x15\xe5\x7c\x18\x7d\x68\x83\xd8\xe8\x86\x01\xe1\xe6\xb5\x1a\xe1\x9b\x36\xa5\xfe\xf3\xa7\xfd\xe3\xbf\xf9\x2e\xfc\xb8\xf8\xf0\xd3\xe9\x1e\x87\xba\xbc\x72\xf1\xc9\xa7\x6f\x4f\xde\x1e\xbf\xff\x28\xd6\x89\x76\xd7\x90\x55\xf6\xd3\x47\x00\xbb\x85\x36\x62\x6b\x16\xd8\xa8\xad\x59\xd0\xc7\x18\xba\x85\x12\x59\x7c\x97\xff\x4a\xcc\x60\xf7\xec\x57\x23\x7d\xf0\x6b\x5d\xc7\xad\x92\x86\x85\x18\xd5\x2c\x85\x1a\xbe\xb0\x31\x88\x4b\x81\x13\xbe\x0b\x3f\x8a\x3c\x7f\xf8\x74\xa8\x2f\x35\x5e\xc2\xaf\xcd\x39\x67\x4d\x35\x77\xf2\x59\xb7\xdf\xf6\x72\xe3\xec\xea\xb3\x7e\x3a\xe2\x72\xe9\x53\x77\x6c\x98\xb1\x7d\x56\x05\x2e\x6f\x60\x25\xe6\xa5\x7a\x3c\xd6\xaa\x27\x1e\xeb\x61\x55\x52\x19\xbd\xcd\x39\x81\x13\x97\x91\x23\x82\xe7\x45\x9a\x50\x24\xa2\x3b\x16\xa3\x10\x79\x29\x6a\xd4\x14\x36\x93\x47\x6e\x77\xa0\x8b\x2e\x7f\x1f\x49\xe1\x02\x47\x8a\x38\x94\xfe\x29\xf1\x08\xe6\x36\x17\xc7\x98\xdb\x26\xe0\x24\x9b\xfb\x57\x84\x1b\x56\xd7\xde\x95\x97\x62\xba\x5e\xdf\xd5\xba\x30\xf6\x41\x87\xc4\x95\x77\x3f\x2c\xc4\xeb\xd3\x6b\xe2\xa5\xfc\x5b\xd2\x6e\xfa\x7b\x2f\x05\xcf\x69\x31\x12\x51\x01\x3a\x51\x34\x1f\xfb\xee\xe7\xf9\x18\x01\x8b\x9a\xfb\x3f\xf5\xb6\x01\xe2\x35\x87\x0c\xe3\xd2\xa8\x05\x49\xd0\x09\x0a\x09\x50\x8a\x7f\x3a\xcc\x54\x73\xc7\x62\xdf\x71\xa1\xb5\x85\xc4\x76\x58\x4c\x92\xf0\x76\xe2\xe1\x02\xfe\x51\x91\xe2\xd6\x05\xcd\x9f\xbb\xaa\x28\x8f\xe1\xc7\x6f\x85\x8d\x7a\xae\x15\x2d\xa4\x38\x25\x95\x4c\x7b\x1e\xe1\x8a\x27\xb7\x04\x0a\x2f\x5f\x05\x32\x2e\x6e\x18\xc8\xc4\x65\x2c\x69\xb0\xb8\xaf\xd2\xa6\x6d\x92\x56\x2b\x55\x2d\xaf\xa8\xb8\x8e\x94\xf8\xd2\x28\xe9\xd5\x47\xc1\xa4\x2d\x72\xbb\x0a\xcb\x06\x2f\x35\x9b\x19\xee\x52\xae\x0c\x5c\x00\x36\x32\x88\x82\x01\x14\x39\x96\x07\xd1\xfd\x88\x41\x59\xf6\x02\x61\x7e\x2b\xde\xe6\x48\x90\x06\x7f\xe2\x51\x08\x70\x11\x88\x39\x11\x67\x16\x68\x76\x6a\xdc\xe3\xb8\xb9\x39\x46\x3e\x37\x21\x19\x07\x41\x90\x2a\xfd\x0c\xf7\x1e\x13\xf6\xb0\x7c\x65\xef\x93\x26\xb2\x89\x44\x96\x36\xfb\xc5\x0a\x86\xa5\x9f\xe2\x4c\x17\xbe\x4a\xbf\x68\x2d\xbe\x66\x3e\xf9\x14\x7e\x2d\x0c\xe0\x6d\x09\x03\x86\xe4\xb8\x90\xa0\x90\x03\x7b\xd4\x50\x2c\x62\x02\x37\xd7\x49\xf5\x61\xf5\x8d\x82\xe3\xde\xd7\x8d\x01\xde\x6d\x8d\x20\x04\xd7\x90\x4c\x4d\x6a\x1c\x54\xd0\xeb\xd6\x88\xf8\x54\x65\xc6\x5d\xfc\xf0\x68\xad\x22\x83\x1c\xad\x5a\x3b\x6c\xb4\xda\xd0\x33\xbc\x60\x72\x6c\xe9\xc7\x3d\x30\xd0\x16\xdd\xd7\x01\xa2\x69\xc0\x3e\x9f\x38\x7b\x0c\x14\xee\x19\x77\x9f\xd0\x66\x9d\x68\x31\xda\xac\x67\xb4\x82\xa4\x7c\xdd\x48\xf9\xcb\xbd\xa3\x5c\xfc\xa4\x51\xda\x04\x4d\xeb\x08\x29\x2c\xcc\xbe\x01\x72\x3a\xf9\x75\xe3\x83\x77\x7b\x87\x17\xfd\xa4\xe1\x59\xa4\x63\xeb\xe8\x80\xd0\xf6\x0f\x4f\xd0\xfe\xaf\xc5\x54\xf6\x72\xef\x00\x97\x3f\x11\x4b\x7b\xc5\xfa\xa7\x21\x6a\xdd\x7c\x83\x15\xb1\x12\x69\x47\xd2\x62\x11\x48\x67\xb3\xf1\xc2\x2b\xc0\xfa\x46\xe7\x83\x5a\x5b\x9a\xb0\xb4\xf7\x4b\x49\x01\xe2\xd3\xef\xd5\x74\x75\x24\x82\xfe\x19\x8b\x17\x1e\x9f\x25\xf5\x0e\xc2\x64\x24\x2c\x6b\x47\xe4\x26\x27\x45\xcc\x8a\xc3\x44\xaa\x65\xa4\x02\x46\x1e\x33\xc8\x99\xb0\xec\x5a\xf8\x0c\x7c\xcb\x66\xfc\xaa\xa3\x7e\x2a\xfd\x03\xf6\x80\xad\xab\xb7\x59\x1a\xf1\x4c\x1c\xa2\x33\x19\x04\x25\x01\xb8\xea\xd3\xf7\x27\x1e\x89\x08\x97\x9a\xa2\xca\xff\x2b\x6b\x45\x9f\xcd\xe9\x53\xfa\xf5\xf3\x7f\x5e\xa1\x8e\xd3\x8f\x3a\x30\x55\x56\x24\x79\x6f\x9d\x22\x7b\x33\x8a\x43\x59\x54\x83\x8d\x44\xe1\x0b\x44\xe2\x83\x96\xe1\x3b\x2c\xd3\x71\x76\xae\x0f\xf6\xec\xfc\x21\x30\x4b\xef\xb5\x77\xcd\xaa\x74\x74\xdc\x1e\x0c\x3c\xbe\xdc\x11\x7e\x64\x4f\x0b\xb9\x64\x7b\xb1\xe5\xe9\xb3\xa1\x20\xfb\xae\x47\xa6\xb7\x0a\x9b\x62\xed\x09\x5d\x3b\xbf\x9b\xb6\x56\xa2\x78\xa8\x0a\xa6\xbd\x4b\xd3\x2c\x6c\x51\x1a\xd5\xc1\x03\x4d\xb3\x2d\xe0\x28\xac\x9a\x94\x54\x2a\xad\x9c\x3e\xa9\x6b\x10\x4a\x9b\x36\x3e\xf5\xed\xfe\x1c\xfb\xa2\xee\x6a\x85\x95\xee\xa8\x9c\xc9\x59\xb3\x68\x08\xd4\x0c\xf9\x7f\x96\xab\xc8\xf7\x04\x58\xc1\xae\x09\x61\x22\xd6\x0f\x3f\x29\x02\x95\x97\x7f\xc9\x6b\x70\x7b\x26\x34\xfb\x9e\x33\x01\x89\x94\xed\xc9\x1d\x9b\x53\xe9\xff\xda\xfd\xb1\xe3\xd1\x9f\x7b\x41\x2c\xbe\xc7\xad\xdb\x1a\xa4\x97\xdd\xe5\xc8\xfd\xb6\x1f\x43\xff\xfa\xd0\xd6\xdd\xd0\xd7\x37\x88\xaf\xb6\xef\x72\xd3\xf2\x0f\x6d\xcf\xd2\xf3\xad\x7f\x74\x91\x8d\xeb\x91\x74\xe3\x03\x3d\x33\x96\xa2\x45\xd7\x46\x6d\x6c\xae\x78\x97\xc7\xf4\x35\xd9\x59\x0f\x3d\x16\x06\x73\x0d\x2d\xb6\x2c\x6e\xd5\xf9\x14\xd5\x53\x97\x3b\x38\x18\x8d\x83\xeb\xb6\xf0\xeb\xf0\x10\xa6\x01\x27\xdb\x1d\x29\xc1\xd0\x84\xb5\xa8\x3e\x7d\x22\x59\x49\x39\x91\xf7\x2d\x80\x82\xcc\x21\xdc\x4f\x24\x03\xda\x37\xbd\xd4\x91\x70\xe6\xd1\x20\xc3\x82\x2a\xfa\x69\x90\xb5\x79\xd5\xfb\xfd\x83\xef\x30\xe4\x4b\xf4\xa9\x24\x86\x2a\x1a\x93\xff\x37\xd1\xb7\x87\xba\xdb\xde\xd3\xb2\xee\x77\x90\xba\x10\xac\x4a\xa1\xc4\xdf\x74\xfd\x0a\x9d\xfd\xc5\xff\x71\xfa\x38\x6a\x94\xf6\x51\xa3\x1f\x1f\x42\x68\xa9\xfd\xd3\x96\x06\xd7\xa7\xb4\xd6\xee\xf7\x7c\x94\x7d\xc8\xfc\x97\x9f\xeb\x3b\x7f\x04\x12\x61\xff\xc8\xb7\x32\x96\x89\x05\x0b\x2d\x02\x2a\xe8\x90\x9a\xb7\xbf\x37\x2d\xaa\x79\x27\x05\xeb\x49\x41\xfd\x21\xec\x1e\x34\xdb\x4c\x9b\xc9\x57\xab\x09\x5c\x04\x74\xf6\x47\xff\xbf\x5a\xe3\x3d\x78\x7f\x72\x2a\x65\xfa\x93\x06\x19\xb8\xc5\x67\xa1\xdd\x1d\x77\xd0\x5a\x19\x2d\x29\xfc\x79\x44\x37\xa6\xd7\x26\xc6\x09\x55\xdb\x19\x4f\xf5\x35\xdd\xb8\xd4\x1f\x1f\xa3\x29\x2a\xb8\x97\xc7\x7f\x43\x5b\xf6\x1d\xb7\x14\xd5\x8b\x7b\x7a\xf8\xfe\xc3\xa9\xaf\xf8\x5b\x43\x05\xb4\x2d\xac\x98\xe7\xb4\xad\x9f\x63\xf4\x44\x34\xc2\x0f\x0e\xef\x69\x06\x2a\x3c\xa2\x21\x71\xdc\x28\xa1\xa7\x7b\x46\x88\xd6\x7f\x27\x45\x74\x87\x53\x4c\x29\x1f\xd0\xa2\x22\x2e\x68\x95\xa0\xf5\xf5\xda\x5d\x84\x49\xa9\x17\xcd\x3c\x5b\xcf\xc4\x59\xa6\xe8\x5b\xbb\x19\xa3\x93\xc8\x77\xd3\x2a\x49\x1e\x6c\xf2\xc3\xa7\x83\x83\xd6\x8b\xd6\x7a\x6c\x67\x79\x0f\x4c\xd4\x30\x85\x97\x4b\xbc\xf0\x36\x54\xb4\x9b\x3f\xf7\xee\x91\x7e\x77\x8f\xfc\xd2\xed\x83\xb0\x63\x32\x55\xb0\x17\x49\x36\xff\xe2\x6b\x2a\x45\xc3\x38\xcd\xbe\xb6\xff\xa8\x71\x43\x21\x04\x34\x0f\xff\xab\xfd\x70\xa2\x3d\xfc\x6f\xdb\x6a\xb0\x2a\x90\x38\x6d\x7f\x04\xa1\xa3\xa8\xb5\x28\xd5\xc7\xfe\xd4\x0a\x1d\xc1\x16\x98\xa0\xcd\x7b\xa7\x68\x8a\x52\xbe\xaa\xfe\x60\xac\x2a\x27\x6d\x1a\xf8\x43\x7f\x6f\xa5\xf4\xb2\x77\xda\xc0\x57\x9d\x2e\x6a\xdd\x36\xb9\x11\xed\xeb\x2a\x48\x5b\x1d\xf1\x41\x7c\xea\xb2\x45\x92\x80\x2f\xc2\x1b\xf8\xda\x7c\x74\xcc\x58\xba\x4e\xd5\x60\x8f\xcf\xe5\x3b\xda\x42\x53\xc1\xfb\xb1\x6c\x7d\xef\xc3\xf7\x48\xc9\xb0\xc6\xc9\xb9\xed\x7d\x5f\x73\x5a\xa5\xe4\x21\x86\xd2\x1c\xda\x3f\x28\xd5\xa5\x5a\x63\xa0\x2a\x98\x19\xfa\x6f\x5f\x13\xad\x7e\x09\x3d\x78\xaf\xe2\xfb\x3e\x45\xb7\x5d\x77\xad\x89\xdb\xbf\xa4\xf2\x1a\xa7\x41\x06\x8c\xd4\xa2\xb5\x2e\xb8\xfe\x48\xe9\x7a\xef\xd1\x4c\xeb\xbd\x25\x6a\xf7\xe5\xa7\x7c\xc2\x5a\xda\xda\x9f\xa2\xa8\x6e\xf5\x57\xd3\x50\xab\xde\x72\x0d\x75\xac\xa0\x1f\x0a\xdd\x6c\xbf\xa6\xf9\xa1\xde\x6b\x8a\xe7\x4c\x1f\x4a\x2c\xd9\x66\xf8\xd3\x15\xcf\xad\x81\xb5\x35\xce\xed\xb9\x50\x7a\xf7\x7b\xf5\xc8\x4f\x9a\x96\x07\x94\xe8\x8f\x54\x2b\xb7\xc6\xa1\xeb\x93\x2d\x63\x58\xdc\xaf\x25\x7e\x52\xff\xb9\xd2\xb8\xaf\xfb\x8f\x53\x1a\xb7\x7a\xaf\x69\x8b\x2d\x9d\x8f\xee\xd5\x01\x3f\xa9\xef\x42\x7c\xec\x3f\xc0\x78\x94\x4a\xb8\x83\x43\x8d\x2e\xd8\xd2\xfd\xe5\xa3\x34\xbc\x3f\x27\x0a\x75\x4f\x32\x1f\x3b\x94\xe6\x4d\xc5\xb5\x18\x13\x36\x46\x96\x68\xf5\x15\xce\xc5\x46\xb8\x75\xc1\xad\x3e\xbe\xff\xb8\x8f\xa6\xca\x51\x3d\xca\xee\x84\x23\xf4\x2d\xec\x67\x85\x95\xa5\x5e\xb9\x09\xe3\x50\x77\x81\x66\xb3\x0b\xb2\x03\xab\xe1\xe7\x99\x16\x50\xa5\x0b\xae\x3e\xad\x15\xb0\xb4\xb6\x26\x01\x64\x2d\xb4\x5e\xcb\x8d\xa8\x26\x81\x69\xaf\x02\x34\xef\xda\x1a\xf4\xdf\x19\x02\x61\xdc\x65\xc5\x38\xe5\x2a\x47\x43\x72\x12\x70\xa7\x36\xb2\xda\x67\xf3\xa6\x69\x1e\x53\x2e\x12\x14\x3d\x3c\x3c\x24\xed\x30\x02\x6e\xbc\xca\x45\xe6\xbe\xee\x6e\xf0\x4e\x17\x56\xc5\x9c\xed\x1d\x7e\x44\xda\xb4\x52\xcb\xb4\xb2\x2a\xeb\x75\xa3\xa8\x0b\x93\x24\xbb\x3e\x20\x97\xe1\xfc\xf6\xe4\xbb\x83\xf7\xea\x83\xca\x68\xaa\x1c\x0c\x8c\xc3\x84\xba\x1b\x7f\xa3\x22\x46\xfc\x59\x7b\xd3\xfb\xab\x9c\xde\x82\xe1\x5d\xd3\xa2\xdc\xca\xf1\xd0\x00\x4a\x5c\xd1\xc4\x6a\x2e\x2b\x98\xbb\x08\xfd\xfa\xec\x1c\x75\x34\x11\x2d\xa1\xa3\x6c\x9d\xae\x6b\x31\x98\xad\xf3\x0e\x18\x83\x5b\xcb\xab\x8b\x07\xb1\x10\x26\xc3\x1e\x31\xa1\x6d\xdd\xf3\xf0\xca\x00\xec\x88\x75\xca\x12\xf6\xa0\x4a\x62\x59\x0f\x7d\x8a\x93\x39\xe9\xd3\x9c\xcc\x1f\x1c\xbe\x65\xd8\x19\x16\x03\x9f\x9a\x7a\xcd\xc1\xc0\xcb\x02\x50\x6d\x4c\xb9\x9f\x98\x1d\x2a\x76\x43\x4b\x3b\x6c\x24\x3c\x74\x65\x6a\xf6\x18\xf0\x2c\x3a\x2b\xc9\xec\x6b\x8b\x20\xde\xbf\x60\x38\x1d\xb4\x60\x7d\x64\x99\x84\x3e\x1c\xcc\x7b\x71\x30\x7f\x0c\x0e\xda\x61\x69\x35\xfe\x7c\xaa\x1c\xda\x84\xe4\x79\xc2\x70\xe6\xbd\xc3\xb9\xb5\x0e\xe7\xad\x38\xc5\xbc\x69\x65\x5d\xf7\x24\x31\x6b\xd2\x19\xf7\x70\x00\xd1\x5f\x1e\xe7\x52\x51\x98\x14\x72\x00\xb0\x6b\xdd\x51\x7a\x45\x3c\x8a\x49\x13\x58\x07\xcb\xe0\x02\x7a\xec\x66\x62\xc4\x5f\xe7\xb1\x17\x08\xff\x6d\x22\x30\x70\x7f\xfc\xa6\x06\x8f\xd3\x43\x54\x05\x11\xb7\x47\xd4\x80\x6f\x04\xda\x4e\xf8\x82\x18\x01\xce\x24\xfd\x16\xd4\x4d\x43\xa5\x4b\x62\xd9\x33\xab\x7a\x6a\x8f\xcd\xc8\x64\x43\xfa\xb4\x0f\x5d\xdb\xde\xe7\xc9\x20\x65\x23\xc8\xa2\xe2\x48\x1b\x7f\x17\x19\x7e\x21\x15\x20\x70\xf7\xa5\xdf\x84\xdb\xc4\xc4\x70\xb1\xb3\xc8\xaa\x34\x72\x9a\x60\x88\xd7\x60\x1e\xa8\x85\x55\x7d\xb0\x27\x9c\x8f\x0c\x06\x32\xb3\xd5\xd3\xfb\xf6\xac\xe9\xdb\x33\x3d\x60\x87\xec\xdd\xb3\xde\xde\xed\x1b\xbd\xa3\x8c\x0f\x1a\x3a\x03\x1b\x20\x34\xdf\x1a\xb7\xaf\xdd\x13\xd2\x44\xd7\x17\x73\x61\x64\xc3\x13\xca\xc9\x02\x4d\x51\xc6\x29\x4d\xaa\x1d\x20\x38\x99\x16\xa6\xe3\xfe\x96\xd8\x6b\x0f\xb7\x26\x52\x32\x81\xdb\x8e\x2d\x19\xd3\xe7\x26\x6d\x13\xd4\x11\x5e\x05\xdd\x8a\x1f\x5a\x15\xb9\x13\x40\xb7\xde\x77\xad\x7a\x6f\xb3\x54\x39\x30\x74\x6b\xff\xd1\xd2\xea\x31\x59\x90\x82\xa4\x73\xeb\x0b\x84\xb4\xde\xd0\x5c\x18\x2c\xc1\xa2\x58\xed\x15\xe9\x3a\xdf\x18\x65\xfd\xde\x37\x30\xef\x7e\xb3\xe8\x31\x91\xde\x38\x24\x8d\xea\xba\xc6\xf8\x81\x70\xbd\x32\x4e\xef\x98\x87\x54\x4f\xbd\x02\x41\xce\xcb\x09\x13\x16\xd8\x7d\x8c\x70\xc5\xee\x5f\x20\x5c\x42\x41\x85\x70\x12\xa4\xde\x8b\x09\xc2\x73\x69\x09\x1e\x96\x65\x7c\x99\x9a\x09\xa1\x9a\x88\x69\x93\xbe\xf4\xa7\x02\xb7\x8d\xec\x1a\xf2\xb5\xc2\x89\x53\x27\x45\x2a\xb5\xa7\x84\x85\x49\x94\xb9\xe3\x15\xc3\xc0\xc1\xc0\x23\x67\xc5\x79\x90\x9e\x15\xe7\x8a\x03\xea\xd9\xa8\x16\xf6\xe0\xc3\x6a\x32\x85\xd5\x31\x03\x9e\xb3\x0c\xcb\xf4\x19\x75\x2e\x08\x49\x65\x92\xe8\xb8\x24\x91\xb3\xe9\x94\x55\x0e\x79\xe9\xf5\x1a\xac\x0f\x24\x72\x55\xea\x36\xba\x5e\xcb\x04\x57\x1b\x7a\x4c\x65\x4b\x96\x4f\x87\xce\x88\x4f\x79\x30\x4c\x4b\x16\xbf\x8d\x0d\x8f\x8c\x56\x84\x86\x7f\x22\x90\x24\x21\x4c\xa8\xb8\x9a\xd3\x22\x11\x97\x10\xef\xee\x4f\x90\x66\x2e\x37\xda\x68\xd4\x77\x22\xf8\x5a\x8a\x8b\xe9\x86\x79\x6a\x01\xe6\xd8\x44\x37\xc7\xa6\x3d\xe6\xd8\xd2\x01\x30\x4c\x12\x27\x74\xe6\x49\x58\x96\x4e\x58\x3a\xa1\xda\x1f\xba\x88\x87\x80\x32\xc9\x40\x27\xbf\x51\x1c\xc8\xd4\x2f\x38\x0c\xc6\xd3\xf0\x75\x06\x41\xfe\xe2\xb3\x50\xcf\xb3\x12\xaa\x10\xab\x69\x50\x04\x0b\x11\x01\x0e\xa6\x5b\x44\xbe\x27\xf8\x8c\x15\xaa\x98\x54\x31\x42\x08\x17\xa3\x65\x98\x46\x09\x79\x9b\xc4\xf3\x2f\x41\xcb\xcb\xb1\x10\x89\xac\xb3\x14\x1e\x0f\x06\xad\x02\x26\xbf\x6c\x10\x99\x8d\xe5\x23\xcf\x26\x4b\x22\x99\x43\xe3\xa2\xa2\x14\x52\xb2\xcb\xd7\x68\x58\x5c\x12\x3a\x18\x6c\x44\x8c\xa4\xdd\x11\x99\x80\xf6\x3b\xde\x80\x27\xb7\xaf\x45\x2b\x21\xb7\x4a\xc6\x9d\x06\xa2\x29\x58\x7b\x05\xc9\x93\x70\x0e\x29\x67\x47\x34\x9b\x66\x33\x2a\x8b\xbc\x18\xf9\x42\xea\x8b\x21\x67\x9e\x57\xe0\x54\x21\x79\x67\x42\xad\x78\xa6\xfc\xa6\xa9\x7d\x7a\x4f\x18\x62\x3b\xe4\x26\x2f\x48\x59\x82\xd4\x51\x95\xd4\x21\x31\x5d\x92\xc2\xb9\x20\x0e\x7b\xdb\xc9\x0a\x6d\xbe\x31\xa4\x66\x77\x87\xf2\x0b\x68\x4a\x7a\x23\xdc\x41\x26\xa2\xfb\x03\xdc\x99\x91\x4d\x27\xf7\x06\xc2\xac\x11\xa6\x83\x41\x93\x1f\x98\x7e\x94\x4d\x1f\x2d\x66\xd6\x52\x00\x8e\x4f\x46\x9f\x3f\x43\x2f\x3e\x7f\x0e\x28\x43\x57\xc8\x0c\xf0\xd8\xe4\xec\x7c\xaa\x68\xe0\x11\x35\x57\x8c\x5e\x23\xd0\xe7\xc7\x69\x4a\x8a\x63\xb2\xc0\x85\x35\x5d\xe6\x5d\x6d\x52\x36\x82\xe8\x48\x24\x9e\xf2\x0a\xf4\x26\x18\xab\x5c\xbf\xf7\x93\x3a\xc2\x49\x1d\xa3\x72\x90\xfe\x4c\x3b\xd4\x60\x2b\xc2\x15\x1d\x73\xb1\x4b\x33\x17\xbb\xb2\x57\xee\x39\x9a\x96\x1e\xf2\x6c\xe9\xe1\xdd\xbf\x65\x95\x9e\x6c\x9f\xb1\x87\xd7\x07\x71\xfa\xe5\x8d\x93\x55\xb4\x8c\x23\xe2\x84\x0e\xcf\xce\x5f\xbc\x71\x11\x66\xed\x34\x01\xa1\xf1\x33\xf6\x3a\x20\x0b\x63\x52\xf1\xe2\x16\x9c\x6f\xd9\xe7\x21\xc9\x3e\xeb\xfa\x33\xb9\x0b\xb5\x7c\x5e\x2d\x86\xd0\xe2\x39\x42\xc5\x64\x7a\xc9\xe8\x02\x79\x14\xc2\x5e\xf2\x3f\xb1\x8a\xaf\x87\x7c\x0a\x59\xed\x39\xa6\xfd\xa1\x20\x0b\x2f\x6c\xe4\x8b\x4e\xe2\x79\x37\x74\xf1\xdc\xbb\xab\x71\x81\xef\xc4\xba\xe7\x0c\x53\x23\x1c\x78\x59\x90\x85\x5f\x61\xf6\x37\xad\x21\x47\x53\xed\x65\x66\x5e\xf9\x5c\xcf\x2b\x2f\x1b\x0a\x65\x26\x77\x4e\x1a\xe0\x5e\x64\x94\x17\x13\x03\x45\x90\x30\x9e\x66\x70\xad\xe5\x81\xd7\x6a\x87\x2a\xab\xfa\x39\xd2\xb3\xb4\xcb\xf9\x7c\xe0\x55\xd6\x87\x73\xc6\x0f\x1a\x62\x96\xe5\x65\x70\x27\x3b\xb1\x31\x61\xcf\xac\xc9\xe4\xc3\x6e\x32\x79\xad\x88\xd1\x20\x35\x4a\x23\xb5\xbc\x36\xbc\xf6\xb3\x66\x66\x6c\x8f\x6b\xd4\x7b\x03\x59\xe4\x1f\x9b\x14\xeb\x21\x09\xa6\x2d\xc0\x30\x89\x66\x0e\x05\x09\xc2\x0b\x56\x61\xcc\xd1\x34\xea\x67\xa2\x7d\x14\xf7\x17\x60\xa1\xb8\xfb\x91\x7f\x39\xb1\x45\x72\x65\x2d\x57\x7d\x93\x1a\xf1\xff\xf8\xd3\x2f\xc0\x9f\xe6\x92\x00\xfd\x35\x4e\x92\x43\x48\x46\xa6\xf1\xaa\xf9\x53\x28\xfc\x09\x9c\xa5\xda\x69\x7c\xdd\xff\x51\xe1\x80\xc7\x09\x8a\xbe\x50\x18\x5b\x60\xe2\xaa\xa4\xcb\x83\xc1\x46\xc3\x35\x1b\x6a\x8d\x9f\xa9\x2f\x13\xa1\xbe\xd5\xbb\x36\x5f\x86\xe9\x25\x71\x16\x45\xb6\x72\xaa\x94\x8d\xa3\xc8\x18\x9a\x3a\x34\x73\xb4\x3b\x2f\x2b\x9c\xab\x78\x4e\x9c\x2b\x52\x94\x21\x1a\x39\x6c\x84\x02\xe5\x93\x5b\x36\x40\xd6\x9c\xa3\xb2\x71\x70\x5e\x04\xb9\x28\xe8\x92\xa4\xd2\xad\x30\x72\xb2\x94\x38\x59\xea\x84\x4e\x59\x5d\xf0\xa8\x1c\xd4\xe1\x42\xc0\xe8\x19\x67\x75\x1b\xde\x86\x3e\xa8\x9f\x38\x26\x73\x44\xc6\x08\xad\x63\x52\x1d\x0d\x3b\x83\x69\x86\x7b\x51\x51\x27\x5b\xc5\x94\xed\xfb\x63\xda\x3f\x9e\xfa\xf1\xb2\x4e\x8b\x49\xc3\x0f\xa6\x9a\x1c\xc4\xf3\xce\x14\xa0\x32\xb3\xc0\x84\x6d\x4c\xe4\x35\x2e\x44\x94\xdc\x26\x59\x84\xc6\x9e\x3b\x89\x94\x68\x43\xfa\x38\xbd\xe0\x01\x6d\x8b\xc1\x80\x55\x8f\xcb\xbf\x84\x49\x1c\x49\x76\x4e\x91\x8c\xf5\x45\x85\x7c\x56\x05\xe1\x28\x0f\xe9\x12\x97\x41\x38\x22\x37\xe1\x9c\xe2\x24\xe0\xdc\x71\x4e\xf1\x9c\x5d\x92\x94\xa7\x21\xc1\x51\x10\x42\xbc\x15\x9c\x07\xd5\x7a\x1d\x4d\xe3\x80\x62\x99\x9c\xd4\x5b\x80\x43\x29\xb4\x05\x69\x36\xee\x20\x58\x7e\x8e\xa1\x4d\xbf\xc4\xbc\x45\x3f\xc1\xaa\x3d\x7f\x5e\x43\xde\x47\x3a\xe7\x61\xe9\x8b\x19\xc8\x1f\x49\x96\x2a\xf1\x23\xc6\x77\x12\x2c\x7e\x8a\x45\xc2\xac\xe8\x90\xbd\xe2\x17\x35\x82\x0c\xe9\x36\x71\x23\x7a\x90\x5b\x43\x89\xdf\x08\x0e\xfd\x5c\x35\xd2\x45\x17\x39\x8d\xf0\x66\x9a\x45\x44\x1d\x7a\x69\x6d\x71\x4e\x1c\xfd\x4c\x9c\x78\x67\xbb\xc5\x8a\x9f\x8f\x77\xfe\x3d\x94\x09\x0c\x0a\xdd\xe3\x50\x1d\x5d\x85\xb6\x6e\x74\x5d\x84\x79\x4e\x22\x35\x83\xff\xdc\x9d\x01\xc5\x67\xae\xa5\x47\xee\xf9\x3d\x82\x72\x32\x0a\x71\x83\x1d\xfa\x18\x7b\x5f\x21\x52\xb2\xa6\xf8\x4e\xc9\xce\xb5\x72\x40\x71\x28\x64\x14\x4b\xc2\xdb\x0f\xe1\x8a\x04\xee\x75\x4c\x97\x9c\xe5\x78\xee\x10\xb2\x32\xaa\x87\x8c\x7c\xb0\x45\x87\x86\x2e\x72\x31\x1d\xfd\xb5\xd5\xf9\x80\x70\x52\x26\xb1\xd8\x32\x38\x25\x6b\xd6\x40\xc6\x21\xd7\xd8\x23\x11\xf8\x45\x0b\x81\xc7\x6d\x65\x98\x55\x17\xc6\x45\xca\x05\x3c\x98\x23\x1c\xfd\x1b\xe0\x73\x73\xb2\xf3\x2f\x2c\x65\x42\x48\xf5\xdf\xa8\x62\x2b\x7f\xbc\x62\xab\xa4\x21\x25\xc1\xdd\x8a\xb3\x8a\x91\x60\x1d\x87\x3c\x91\xa0\xe0\xbe\x62\xc7\xa6\x38\xaf\x62\x5e\x6c\x2f\xf8\x7f\x4a\xa3\x5f\x48\x28\xbf\x24\x14\x84\x98\xb7\x9c\x43\x5b\xd4\xf4\x82\x5b\x47\x8c\x3a\xda\x04\x74\xb5\xd5\xd6\x24\x29\xa9\x17\xe1\x7c\xbd\x91\x1a\xba\x55\x1a\x41\x8b\x23\x87\x3c\x0e\xa0\x42\x16\x61\x24\xb8\x2b\xd1\x4b\xe4\xb1\xa8\x9d\xb9\xa4\xe3\x7e\xe3\xe2\xaa\x48\xe0\x37\x0f\x8b\x70\x55\xfa\x77\x35\x8e\xcb\x7d\x90\x7f\xdc\x6f\xc0\xcc\xc3\xd2\x70\xff\xfe\xa4\x91\x2f\x0d\x51\x92\x49\x90\x8d\x38\x59\x04\x54\x0e\x6c\xba\xf0\x90\x90\xfe\xd2\xf5\x7a\x12\x04\x41\xa8\x0b\x8c\x90\x8c\xd9\x4b\x11\x76\xf7\xd4\xde\xc5\x59\x85\xb7\xce\x32\xbc\x62\x52\x7d\x72\x0b\xe2\x3d\xb4\x2c\x05\x73\x99\xd9\xae\x4a\x93\xb8\xa4\x24\x0d\x8a\x11\xbf\xf0\xb4\x7e\x42\x6a\xd4\x13\x06\x40\x4f\xac\x37\xd2\x5e\x6f\x96\x15\xc6\xfe\x7d\xc5\xbe\x29\x93\x9b\x36\x63\x4e\x41\xe3\x2c\x51\x00\xf6\x6f\x73\x41\xa6\xf8\x66\x42\x8c\xd7\x11\x55\xee\xdf\xb3\x7d\x4a\x57\xed\xa9\x30\x80\xe0\x3d\x65\x67\x60\x4a\xff\xca\x1a\x7d\x66\x4c\x0d\x03\xbe\x47\x34\x71\x36\x34\xc5\xd9\xa5\xce\xbc\x25\xf2\x97\x36\xd9\x15\x2b\x11\xa4\x14\x02\x6a\x8d\x97\x76\x61\xb8\xd4\xe4\xd5\x25\xef\xe1\xdb\xfb\xeb\xe9\x62\x31\x70\xff\xdb\x60\xd9\x30\xc5\xab\x7f\x71\xa6\xb8\xfa\x8d\x32\xc5\xab\x27\x9c\xf6\x88\xd5\xa2\xd4\xc4\x21\x92\xcc\x10\xe1\xab\xff\xe3\x78\xff\x14\x35\x14\xa3\x68\x1b\x16\x4e\xe6\xbe\xfe\xb6\xc8\xae\x4b\x52\x48\x5a\x1d\x5f\xa6\x59\x41\x4a\x38\x30\x10\x95\x40\xb5\x31\x72\x4e\x65\xc0\xcf\x79\x55\xd2\x6c\x25\x9f\x62\x28\xfd\xdf\x78\x95\x67\x05\x75\xee\x1c\x41\x04\xeb\xff\x05\x94\x26\x61\xe4\x64\x0b\xed\xb1\xf1\x39\x86\xbe\xaa\xfe\xa8\x4d\x2f\xbb\x24\x4f\xa0\x4d\xd8\xd9\xe5\xdc\xb6\xd8\xb5\xec\x9b\x22\x54\x16\x32\x59\x23\x1b\x15\x5c\xe9\x54\xf0\x22\x2c\x09\x58\x40\x95\x8d\x2e\x7f\x91\x15\x73\x72\x4c\x16\x05\x29\x97\x50\x0e\x27\x07\x97\x84\x7e\x2a\x49\xf1\x96\xcd\x76\xb1\xe2\x52\x41\x29\x4f\x1e\xbe\x90\xdb\x03\x58\x7a\x9c\x5e\xf2\xc8\xa2\x5d\x1a\x0a\x5b\xd9\x55\x7d\x7e\x8e\xa6\xff\xdf\x37\xdf\xfc\x3f\x87\x5b\x92\x1c\x86\x79\x1e\xa7\x97\x9f\x8e\x0f\x82\xc9\x68\x12\xcd\x5f\x6c\x85\x8b\xf9\x68\xbe\xac\xd2\x2f\xa3\xbf\x97\xa3\x55\x98\xff\xff\x01\x00\x00\xff\xff\x06\x94\x56\xb4\x8b\x74\x09\x00"), + }, + "/static/js/main.47cebbb7.chunk.js": &vfsgen۰CompressedFileInfo{ + name: "main.47cebbb7.chunk.js", + modTime: time.Date(2018, 12, 23, 12, 50, 1, 999259338, time.UTC), + uncompressedSize: 14648, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\xfb\x73\xdb\x36\xf2\xff\xfd\xfb\x57\x30\x68\xda\x21\x2e\x1b\x46\xf2\x23\x49\xe9\xb2\x1d\xdb\x49\xdb\xb4\x79\xb8\x76\xda\x5c\xce\xe7\xe9\x40\xe4\x4a\x42\x4c\x01\x0c\x08\x5a\x76\x15\xfe\xef\xdf\x01\x40\x52\x94\x44\xc9\xf2\xa5\xed\xdc\x75\xa6\x95\xb9\x78\x2d\x96\xfb\xf8\xec\x2e\xeb\x4f\xb9\x48\xe4\x34\x98\xe2\x20\x63\xf1\xe5\x4f\xb9\x14\x59\xd4\x41\xfb\xf4\xe9\xfc\x82\x06\x59\x91\x8f\xfd\xf3\xf3\xde\x05\xcc\xfa\x7b\x8f\xc3\x61\x21\x62\xcd\xa5\xf0\x11\x18\x68\x3a\xc3\x00\xaf\x33\xa9\x74\x1e\x69\x7f\xb7\xdf\xa7\x25\xec\xf6\xfb\x2b\xb3\x48\x91\xa3\x97\x6b\xc5\x63\x4d\x0e\x74\xa0\x7c\x46\x0f\xae\x98\xf2\x44\xa4\xfd\xfe\xde\x1e\x05\x15\x69\xbf\x47\x21\x8d\x74\x20\x7c\x45\x41\x46\xda\xdf\x79\x42\x81\x9b\xdf\x5d\x0a\xb1\x1d\xe0\x14\xdc\x39\x5f\x53\x28\xec\xd2\x3e\x85\x89\x1d\x2a\x28\x24\x96\xd2\xa3\x90\x59\x4a\x42\x61\x64\x28\xfb\x14\x86\x91\xf6\x9f\xf6\x29\x0c\xec\xc0\x90\xc2\xd8\x6c\xfb\x98\xc2\x73\x4b\x18\x53\xb8\xb1\xdb\x3e\xa1\x70\x65\xfe\xe8\xed\x53\x78\x63\x29\x4f\x29\xbc\xb6\x7f\x3c\xa6\xf0\xc1\xec\xf6\x94\xc2\xd4\x10\xf6\x29\x1c\xdb\xc5\x53\x0a\x67\x66\xe0\x09\x85\x6b\x4b\x38\xa3\x70\x62\xb6\xdf\xa1\x70\x19\x69\x7f\xff\x6b\x0a\xa7\x76\xe0\x92\xc2\x91\x19\xf8\x9a\xc2\x7d\x4b\x38\xa2\xf0\x22\x7a\x33\xf8\x80\xb1\xf6\x47\xc1\x94\xeb\xf1\x99\xbe\x49\x31\xa7\xfe\x5c\x7e\x74\xa6\x50\x17\x4a\xcc\x58\xa1\xc7\x52\x85\xd5\xf4\x93\x80\x51\x7f\x56\x02\x06\xfa\x26\x93\x23\xc5\xb2\xf1\x4d\x30\x90\xc9\xcd\x0e\x85\x81\x4c\x93\x70\x36\x94\x42\xbf\x43\x3e\x1a\xeb\x90\x18\x0a\x29\xcb\x72\x71\x63\xf3\x02\x58\x84\x81\xdb\x19\x74\x84\x81\x99\x08\x22\xc2\x20\x4e\x59\x9e\x63\x6e\xde\xcb\x77\xe7\xa2\x9e\x22\xec\x84\x8b\xb0\xa1\x5c\x1c\x38\xee\x3c\x16\xe0\x84\xf1\xf4\xbb\x34\x60\x41\xac\x90\x69\x7c\x9e\xe2\x04\x85\xf6\xef\x07\x0c\x66\x9a\xeb\x14\xc3\x6a\x52\x09\xab\xb3\x48\x9e\x31\x41\x60\x66\xcf\x7d\xcd\x26\x18\xaa\xe0\x83\xe4\xc2\x27\x1e\xa1\x25\xb0\x20\xe1\x79\x96\xb2\x1b\x33\x44\x69\xf8\x99\x1b\x94\x14\x7e\x31\x2a\xb1\x43\xe1\x65\xd4\x25\x92\x84\x69\xac\xaf\xb6\xf1\x4a\xbf\xf8\x8c\x06\x43\xa9\x26\x4c\xfb\xe4\xd5\xab\x57\xaf\xbc\x67\xe0\xbd\x7f\xff\xfe\x3d\x78\xe3\x70\x32\xf1\x98\x39\x7c\x2d\xb7\xa2\x48\x53\x20\x1e\x01\xb7\x8d\x92\x93\xd7\x72\xea\x53\x43\xa2\xb4\x84\xb7\x86\xc7\x3d\x0a\xaf\x8c\xc2\xed\x51\x38\xb4\xba\x49\xe1\x63\xa5\x34\x01\x0a\xad\x38\xe6\xfe\x21\x0d\x86\x3c\xd5\xa8\x3a\xde\x6f\xa5\x30\x6f\x8d\xc2\x20\xec\xd0\x03\x76\xde\x9b\xbf\xb6\xf3\xfe\xc5\xbd\x28\x3a\x0c\x62\x39\x99\x48\x51\xd2\x60\xc2\xb2\xff\x64\x93\x92\xc2\xf7\xd1\xaa\xd6\x7a\xd5\xc2\x57\xc1\x08\xf5\xb1\x14\x5a\xb1\x5c\x9f\x32\xcd\xa5\xd9\xa7\x3e\x36\x98\x8e\xb9\x46\xfa\x6d\xb4\x13\xec\x7f\xb7\x48\x0c\x9b\xc7\x41\xca\xe2\xcb\x12\x9e\x75\x9c\x32\x1b\xb0\xf8\x72\xa4\x64\x21\x92\x63\x99\x4a\x15\xb2\x2e\x56\x3e\x9e\xfb\x22\x42\x60\x91\x08\xf2\x2c\xe5\xda\x27\x84\x06\x0a\x93\x22\x46\xbf\xed\xaf\xea\x05\x3e\x7e\xf3\xcd\x3e\x7d\x88\x0f\x58\x10\x8f\x99\x3a\x96\x09\x1e\x1a\x27\xf5\xa9\x57\x42\x8f\x82\x8e\x3e\x06\x29\x8a\x91\x1e\x83\xcf\xbe\xd4\x0f\x34\xfd\x52\xd3\x8b\xf3\xfd\x5e\xef\xc2\xba\x36\x06\x1a\x44\xe9\x23\x85\xd8\xf2\xf4\xbd\xcf\x8c\x69\xaa\x04\xd5\x91\xd4\x5a\x4e\x1c\xab\x8d\x80\x12\xa6\x2e\x51\x50\x9f\x41\xb0\x43\x4b\xb7\x45\x09\xef\xb6\xf6\x0f\x29\x1b\x60\x7a\xbb\x7b\x80\x59\xc6\x92\x84\x8b\x51\x48\x7a\xde\xe3\xec\x9a\x80\x71\x14\x67\xfc\x0f\x0c\x49\x2f\xf8\x1a\x27\x04\x26\x4c\x8d\xb8\x30\xe3\x7d\x33\xee\x78\x3e\x65\x09\x2f\xf2\x90\xec\x1a\x52\x65\x4b\x21\xe1\x22\xe5\x02\x1f\x0e\x52\x19\x5f\x92\x85\xdb\x85\x24\x97\x29\x4f\xbc\x7e\xb0\x6f\x56\x5c\xa1\xd2\x3c\x66\xe9\x61\xca\x47\xc2\x38\x24\x33\x87\x94\x74\x9d\x4f\xb2\xb7\xb1\x2e\xa9\xf2\x44\xeb\xad\x71\xd5\xf2\x75\xb5\x3c\x37\xd2\x0a\x9f\xf9\xcc\x38\x00\x5a\xd2\x83\xfa\x24\xef\xbd\xef\x8e\xc2\x5a\xbc\x1f\x8c\xc0\xce\xc9\xbf\x85\xe7\x0d\x15\x1b\x99\x8d\xbd\x97\x66\x93\xe3\x31\x13\x23\xf4\xa4\xf0\xde\x64\xa8\x98\x5d\x3d\x33\xd3\x3c\x2f\x08\x02\x43\x6f\x4d\x5b\x99\xe2\x79\xc6\x93\xd4\x7f\x3b\x9f\x39\x1f\xf3\x3c\xc1\x26\x38\x7f\xb2\xde\x71\xfe\xd8\xf2\x58\x35\xb1\x6c\xb6\x4a\x12\x4c\xea\x07\x85\x13\x79\x55\x3f\xda\x29\xe5\xbf\x05\xb9\xa0\xb5\xcc\xde\xcf\xcd\xa1\xb1\x06\x2c\x01\x4b\x23\x82\xdf\x3b\x1d\xa0\xcc\xda\xc2\x07\x11\xb1\xc0\x1e\x09\x2a\x62\x41\x75\xde\x86\x57\x92\xf0\xab\xa5\x37\x32\x61\x5c\x74\x79\xc2\x17\x50\x47\x36\x56\x47\x19\x1b\xbf\xee\xf5\x4a\x0a\xa2\xb2\xb0\x6f\x7b\x5f\x7d\x75\x9b\x13\xb5\xec\x79\x7a\x8c\x1e\x31\x0b\x17\xfd\xd8\xdc\xaa\x3b\xb8\x7d\x07\xb3\x4b\xbc\x09\x19\x38\x13\xc2\x92\x2e\x1d\xad\xee\xc2\x86\x48\x08\x85\xbb\xac\xa8\xa4\x59\xb3\xae\x3e\x9b\xf5\xdb\xc3\x0d\xb1\xd3\x49\x73\xc9\x07\x0d\xbf\xfd\xaf\xbe\x22\x39\xb1\x01\xa8\x63\x9f\x97\x30\x33\xfa\x1c\x32\x1b\x20\x4b\x4a\xcb\x83\xdf\x83\xda\x5e\xa2\x6b\x9f\xfa\xef\x7d\xea\x90\xdd\x4f\x5b\x3b\x2e\xa3\x19\x5b\xc0\x1a\xe3\x29\x7e\x6f\x99\xf0\x1f\xdb\x98\xf0\x19\xea\x33\xcd\x74\x91\x6f\x32\xe0\x66\xd2\xdf\x67\xbe\xb9\x3d\x6f\xad\xc1\xfe\xb1\xc9\x60\x7f\xd8\xc2\x60\xff\x7a\xd3\xbc\x5d\xc9\x58\xe0\x6e\x19\x68\xf9\x52\x4e\x51\x1d\xb3\x1c\x2d\xb6\xd1\x63\x9e\x6f\xab\x5e\x3f\x2c\xaa\xd7\x1f\xb5\x7a\xfd\xf8\x57\xa8\xd7\x0f\x2d\xf5\xfa\x79\x4b\xf5\x7a\x6b\x60\xe0\x2d\xda\x65\xe7\xfc\x7d\xca\x65\x91\x69\xfd\x30\x65\xeb\xd5\xec\xe7\x4d\x6a\xf6\xeb\xff\x84\x9a\xc5\x36\xee\x3a\xe7\x69\xef\xed\x19\x14\xdd\xed\xbd\xba\x80\x82\x39\xc9\x64\x07\x53\x96\xdf\x7e\x98\x96\x77\xdf\xd8\x32\xb5\xa5\xb2\xff\xba\xa8\xec\x3f\xd7\xca\xfe\xdb\x9f\xad\xec\x1b\x53\xc4\x5f\x29\xfc\xd3\xe4\xad\x8f\x29\xfc\xcb\xfc\x3e\xa1\x80\x18\x69\xff\xf1\x0e\x05\x66\xfe\xd8\x7f\x4a\x41\x5b\xca\x6e\xcb\x60\x04\x6e\x63\x31\xc7\x72\x62\x7f\x37\x18\xcc\x61\x92\x54\xb3\xfe\x3e\x93\x99\x60\x9e\xb3\x11\xae\xb5\x14\x81\xeb\x4c\xa5\xb9\xbf\xda\xee\xfe\x56\x07\x36\x5d\xdf\xcd\xf8\xef\xb9\xba\x5a\x7b\x75\x73\xd9\x14\xff\x04\x37\x61\xcd\x6b\x2b\x1f\x32\x46\x96\xa0\x5a\xe3\x45\xda\x13\x2b\x47\xf2\x19\x8e\xc5\xa9\x20\x26\x5b\x22\xa1\xed\xf8\xaf\x84\xdd\x75\x81\xe7\x01\x73\x67\xb3\x7a\x16\x35\x3e\x21\xc5\x6a\xde\xf7\x6d\xd7\x60\x94\x8d\x82\x19\x73\x6c\x2e\x0c\x1a\x4b\x74\x8e\x43\xe2\xd6\x9e\xc3\x49\xf6\x4e\xf9\xe3\x6e\x76\xed\xd5\xff\xda\x4c\x72\x39\x0d\x27\x5f\x0c\xfb\xc3\xa7\xc3\x61\x9d\x19\x86\xa4\x9f\x5d\x7b\x2e\x2f\xfc\x22\xe9\x27\xfb\x09\xab\x87\xde\xca\xec\x25\x0e\x75\x95\x65\xee\xce\xa9\xa7\xc6\x3d\xd5\xe4\x92\x42\x25\x9b\x70\xe6\x66\x98\x45\x1b\xb6\x3d\x75\xce\x6d\xed\x78\x9d\xab\xde\x32\xa1\x83\x35\x37\xb0\xc0\x5d\xd7\xfd\xcd\xe5\x27\x5c\xfc\xe8\xbc\xec\x7e\x0f\x6a\xe9\xed\x83\xad\x6f\x9c\x65\x2c\xc6\x90\x64\x0a\x1f\x4e\x15\xcb\x9c\x07\x36\x01\x83\x2f\x1a\x56\xe3\x66\x98\xbf\x5c\x5b\xf9\xa7\x79\x57\x06\x53\x01\xa3\x50\xd1\x10\x1b\x62\x45\x61\x96\xc2\x68\xc0\xb2\x2c\xbd\xa9\xe6\xab\x51\x61\xb4\x26\xa7\xb4\x5c\xdc\x53\xbb\xd9\x80\xcd\x8e\xff\x72\x84\x73\x9b\x6f\x10\x85\x22\x41\x45\xe0\x8a\xa5\x05\x86\x2d\xff\xe0\x1c\xa0\xd9\x3d\xc8\x94\xcc\x72\x70\xde\x20\xff\x4c\xd4\xc0\x3a\x92\xa2\x7c\xca\x75\x3c\xf6\x31\xf8\xfd\x77\x7d\x93\xa1\x71\x80\x74\x16\xb3\x1c\xc9\x92\x0b\x25\xa1\xa5\x76\xc4\x15\x12\xae\x65\x45\x62\x9d\x5a\xc9\xcc\xe4\x55\x07\x76\x8f\xae\x5c\x7f\xc3\x26\x3f\x75\xed\xb1\x02\x08\x37\x6c\xf0\xdb\x9a\x0d\x96\xf2\x95\x0d\x3b\xfc\xb8\xb4\x43\x82\x43\x56\xa4\xba\x5e\x10\x4b\x91\xcb\x14\x83\x54\x8e\x7c\x52\x88\xbc\xc8\x32\xa9\x8c\xd7\x93\x4d\x00\x32\xc2\xf5\xc8\x83\x05\x39\x5b\x4f\x55\x1a\xd0\x52\x5e\x50\x60\xa5\x6f\x0e\x3e\x96\x93\x4c\x0a\x14\x9a\x42\xbc\xbd\xe3\xb1\x90\x65\x46\xbe\xf2\xbe\xf5\xfe\x11\x0a\xa9\xfd\x30\x65\xb9\x7e\x18\x8f\x79\x9a\x50\x12\xce\x5c\x35\xaa\x32\xd4\x7e\xaf\xb4\x16\xc2\xb1\x85\x3c\xf2\x4d\x91\xf7\x63\x81\xea\xc6\xbf\xcf\x93\xd0\x3b\xd3\x8a\x8b\xd1\x3d\xf0\xee\x0f\xb9\xca\x75\xe8\xbd\x10\xda\x8b\xbc\x7e\x0f\xbc\xfb\x6c\xa8\x51\xd5\x53\x68\x1d\x58\x2b\x61\x9d\x62\x26\x73\xae\xa5\xba\x99\x47\xdc\x41\x31\xf2\x33\x85\x43\x7e\x1d\x7a\xf7\x79\x42\xdb\xb1\xb8\x91\x5d\xee\x57\x27\xb9\x13\xc1\xab\x8e\x71\xc7\x2d\xac\xf1\x3c\x21\x13\xcc\x17\x49\x16\x14\x38\x6d\x5e\x25\x3b\x5d\x5e\xa1\xb7\x54\x74\x65\xac\x56\xbd\xae\x81\xb3\x56\x4a\xba\x04\x11\xcc\x3f\x19\x1b\xe1\x0b\x31\x94\xcb\x0c\x8e\x59\xfe\x1a\xaf\xf5\x09\x5b\x3e\x0e\x45\x72\x5c\xa8\x5c\xaa\x35\x5b\x96\x4b\x48\xa4\x86\x1e\x9e\x47\x80\x6c\xfe\x69\xa1\x93\x7c\x23\x3a\x29\xd0\x06\x44\x9b\x77\xca\xe5\x40\x6a\x29\x8b\xe1\x13\x7e\x6a\x10\x38\xfc\x36\xff\xf3\xc7\xe6\x4f\x13\x7f\x3a\x01\x0f\xdf\x50\x0d\x93\xc1\x2f\x46\x09\x61\x66\x75\x31\x2c\x10\xae\x98\xe2\x6c\x90\x62\x1e\xce\x78\x12\x32\x70\x5a\xd2\xef\xf5\xca\x12\x3a\xab\xa1\x92\x99\xa0\x61\x9d\x28\x2a\x25\x95\xed\xd1\x24\x4c\x33\x50\x11\x06\x43\xd4\xf1\xf8\x95\x54\x4d\xcb\x82\x75\xf4\x61\x8e\x2b\x7c\x41\x43\xdd\x31\x4a\xb2\x1a\xf9\x3c\x37\xfb\x87\x1e\x01\xdd\xd5\x66\x89\x11\x66\x32\xcb\x43\x11\xac\xd8\x46\x30\x28\x46\xc1\x5c\xf5\x03\xab\xcf\xd0\xf0\x16\xaa\x92\x96\xb4\x9c\x9b\x6d\xb2\x15\x60\x3e\x2a\x46\x06\x15\x9b\x9f\x4a\xf3\x78\x55\xe8\x1c\x17\x13\x26\x5e\x54\x0f\xed\x82\x4a\x2b\xff\xb5\x75\xae\x8a\xec\x2e\x92\x1c\x56\x26\xb3\x0c\xa1\x17\x20\x73\x1b\x4d\xaf\x80\xe7\x0e\x90\x9c\x6c\x54\xc3\xac\x5b\x67\x06\xc5\x68\xcb\xb0\x68\x7c\xe4\x96\xd9\xf4\x9d\x40\x73\x57\xe2\x6a\xa5\xb7\x31\x73\xed\x5a\xc5\x6d\xb2\x5b\xbd\x92\xae\x45\xa7\x01\x83\x99\xeb\x84\x10\x8d\xd7\xfa\x0c\x63\x29\x12\xa6\x6e\xc8\x76\x35\x81\x2d\x20\xbb\xcc\x50\xd8\x52\x00\xcf\x8d\x7b\xbe\x0d\xb8\x37\xfa\x50\xd2\x6d\xe1\x7b\x2c\x85\x66\x5c\xac\x11\xe6\xea\x7c\xcd\x27\x98\x72\xd1\x89\xf7\x27\x08\xd6\xf8\x8d\xe8\xb6\x3d\x3f\xe7\x09\x0e\x58\xe7\xe9\x56\xbe\xd6\xaf\x08\x1d\x92\xbc\x18\x98\xb7\xce\xc5\x88\x94\xe0\x50\x4b\x77\xc9\x8d\x14\x69\x57\xeb\xe4\x25\xcf\xb5\x79\xa1\xce\x7e\x56\x9a\x82\xeb\x35\x35\xe5\x5d\xdb\x75\x31\xfc\x0e\xaa\x96\x15\x82\x01\x28\xb6\x02\x42\xa9\xcd\x79\x32\x5c\x2c\x84\x24\x4d\x42\x33\xba\x2b\xae\x98\xb0\xeb\x77\x3c\xd1\xe3\xf0\x71\xaf\xd7\x34\xb6\x58\xa1\x65\xdd\xe6\x7a\x2b\xb3\x70\xef\x1f\x18\xe4\x19\x8b\xb9\x18\x05\x85\xe0\xba\x84\x2a\x1b\x9a\x95\xe0\xda\xbc\x9b\xd2\x22\x33\xd7\xbc\x64\x0a\x3c\xd9\x38\x71\xfe\x52\xa0\x42\x35\x36\x7b\xe9\xef\x97\x14\x1a\xcd\x0a\x67\x4d\x73\x6d\x98\xe2\x75\xcd\x66\x85\x7f\x76\x7b\x86\x23\xa7\x54\xe1\x6c\x6a\x6f\x46\x9e\xf4\xbe\x6c\xdf\x66\xa7\xbe\xa8\x4b\x7e\x76\x7a\x25\x54\x7a\xd3\xac\xd8\xed\x7d\x69\xcc\xae\x7e\xd3\xe1\x2c\xe5\xb9\xb6\xb2\x0c\x89\x90\x02\x49\x93\xa6\x34\x42\xeb\x55\xf3\x6b\x40\x16\x92\xbd\xec\xda\xeb\x11\x70\xc8\x8d\xb4\xf8\x76\xdd\x40\x07\xd4\xb2\x36\x50\x1b\xde\x0a\xd4\xbc\x1f\x50\x1f\x15\xa3\x05\xbc\xf6\xb9\x68\x2c\x08\x82\xa3\x62\xb4\x06\x6d\x74\x61\x8a\xe1\x46\x67\x3e\x70\x98\xc2\xdc\x05\x46\xd8\x42\x06\xe3\x6e\x2f\x3f\x61\x3a\x1e\x6f\x0d\x0e\x06\x2b\xe0\x20\xc8\x98\x62\x93\xdc\xb8\x89\xbb\x82\x83\xbf\x1e\x0e\x8c\x10\x66\x83\x62\xb4\x0e\x0e\xd8\x88\x0f\xcf\x31\xd2\xfe\xd3\x1e\x85\x1b\xb4\x9f\xbd\x3c\x47\x0a\x57\x86\xd6\xdf\x7d\x4c\xe1\x8d\x23\x5e\x21\x85\xd7\x76\xe2\x2e\x85\x0f\x8e\xf6\xba\xad\x3c\xd3\x6d\xe1\xc2\xa9\x9c\x6e\x83\x18\x5a\x28\xa1\x0d\x1e\x96\x50\x42\x1b\x40\x2c\x23\x86\xbb\x82\x84\xe9\x46\xbd\x3a\xee\x56\x9f\xc6\x97\x6e\xf5\x39\x0a\x79\x93\xa1\xe8\x8c\xa8\x1f\xd0\xcc\x12\x4c\xf3\x2b\xac\xab\x13\x3b\x4f\xd9\x93\xbd\x7d\x02\x73\x7f\xcd\x8c\x17\x86\xb3\x3f\x85\x95\xe3\x54\xe6\x98\x6c\xcd\x4c\x3c\xd8\xd9\xdb\xed\xaf\x32\x73\xdd\xcd\x8c\x7b\x67\x73\xfc\x64\xf9\xaa\x4a\x02\xac\xaa\x03\xbc\x39\x79\xfe\x7a\x43\x6a\x7c\x8c\x0b\xa1\xaa\x4e\xaf\x8f\x5f\xbe\x39\x7b\xfe\x6c\xc3\xba\xb3\x95\x75\x8b\x49\x35\x29\xc4\xa5\x90\x53\x51\xe9\x95\x47\x1e\xb0\xb2\x84\x93\xcf\x04\x81\x6f\xac\xcc\xc6\xf2\x0a\x55\x78\xaf\xd7\x25\xd5\x1b\x3b\x63\x01\xaf\x60\xda\x19\x7b\xaf\x11\x66\x8e\xb9\xb0\xee\xd2\xc1\x02\xce\xb0\xa4\x6e\xc8\xb5\x8a\x4a\xf0\x3a\x63\x22\xe9\x3a\xe7\xb5\x55\x07\x19\x92\x41\x31\x7a\x44\x1e\x34\x00\x71\x4b\xf8\xb4\x7e\xe3\xe7\x0b\x68\xc7\x2a\x1c\x81\x4d\x28\xb6\x81\x32\x5b\xf4\xe5\x57\xf1\x4b\xfe\x9f\x60\xa1\xaa\x37\x8f\xed\xde\x7c\x37\xd2\x7c\xbe\x01\x1b\x37\x32\x6b\x00\x2e\xd9\x16\xd5\x02\x19\xdc\xd8\x3e\xac\x73\x5c\x8b\x9f\xd0\x19\x9c\x75\xb2\x84\xb3\xa6\x0d\xce\xba\xdc\x1e\x67\x19\x1d\x5b\x01\x2d\x2c\xe5\x23\xf1\x42\xe3\x24\x0f\x49\x8c\x42\xa3\xb2\x40\x81\x91\x70\x66\x2e\xf8\x0c\x63\xe9\xd2\xc4\x0a\x6f\x94\x25\x54\xfa\x58\xc3\x8b\x7e\xaf\x04\xf7\xfe\x1b\xd4\xd2\xef\x59\xd8\xe2\xdc\xcb\x6c\xe9\x1b\xa4\x1a\xcf\xe4\x61\x5d\xa0\xb6\xe0\x6a\x09\xd8\x19\x48\x72\x82\x14\x4e\x5d\xf8\x79\x42\xe1\xc8\x85\x9a\x53\xa4\x70\xdf\x11\x9f\x52\x78\xe1\x88\xf7\x91\xc2\x2f\x8e\xf8\x35\x85\x97\x8e\xf8\x0b\x52\x78\xbb\xa1\x38\x6b\x43\x14\xe8\x83\x8e\xea\xec\xc1\x50\x2a\xdf\x7d\xf6\xda\x94\x5e\xeb\x6f\xc8\x54\x24\x70\xea\x1d\x2a\xc5\x6e\x7c\x41\x21\x8d\x7a\x07\xe9\x37\xe2\x20\x7d\xf0\x80\xaa\xf3\xf4\x62\xbe\xe0\x3c\xad\x3f\xbc\xf3\x75\xb4\x5a\xee\xf5\x9b\x37\x57\x57\x7c\x69\x10\xb3\x34\xad\xea\xbe\x08\xe7\x66\xda\x85\x49\x65\x62\xa6\x7d\x65\x34\xc1\xda\x3b\x46\xb3\x8c\x8d\x30\xec\x81\x92\xd3\xfc\x04\xd5\x89\x79\xea\xf7\x20\x65\xb9\xb6\x18\x25\x9c\x95\x25\xe8\x60\xcc\x44\x92\xa2\xab\x30\x99\x39\xd1\x62\x59\xb6\xfa\xac\xb7\x2a\xff\xaa\x48\x18\x17\x97\x43\x1a\x89\x79\x9d\x02\x64\xe4\x9c\x0c\x06\xad\xc3\x80\x47\x2a\xa8\xeb\x4c\x07\x7c\xe8\xb3\x28\x6a\xe6\x19\xfa\x83\x3e\x9d\xf1\xa1\x7f\x8f\x07\xad\xaa\x13\x75\xc2\xb0\x6a\x1b\x47\x33\x57\x61\xe3\x41\x53\x7e\xaa\x8a\x2b\xb2\x6c\x5c\xab\x3f\x9b\x43\xac\x18\x8a\xcc\x58\x8e\xbb\xa0\x0e\x5a\x4f\x25\x85\x2b\xc9\x13\x4f\x07\xb9\xab\x8e\xa1\xef\x24\xc4\x5a\x22\x89\x4b\x5a\x76\x70\xfa\xb0\xcd\xe9\x89\xc2\x2b\x2e\x8b\x7c\x99\xdb\x3c\x9a\x0d\x70\x28\x15\x86\xdc\x2c\x55\xba\x62\xd8\xec\xbe\x8e\xdf\xfc\x33\xf9\xcd\x4b\x5a\xea\xb1\x92\x53\xcf\xa8\x9b\x05\x77\xbe\x31\x41\x4f\x20\x1f\x8d\x07\xb2\x50\xb6\xd2\x67\xfe\xc3\x85\xab\xff\xf2\xdc\x13\x52\x7b\x4d\x69\x98\xd0\x65\x2d\x38\x9d\xbf\xc3\x8e\x18\x57\xa9\x42\xeb\xed\x8b\x46\x56\x0d\x63\xb6\x8e\xa5\x99\x1a\xa1\x0e\x6c\x53\xc1\x28\xcc\x81\x08\xec\xcb\xfb\x2e\x75\xbf\x91\x0a\x85\x5d\xf2\x5d\x6a\x7f\x22\x15\x36\x23\xc0\xda\x62\x4a\x37\x8a\xa9\x2d\xa1\xb6\xb2\xab\x96\xa0\xd2\xd2\x5e\xb3\xb5\xb0\x43\xcf\x75\xc4\xe6\xd7\x3a\xc5\xbc\x48\x75\xfd\xd6\xf4\xa7\x4f\x58\x82\xfe\x4b\xfb\x2a\xf5\xd7\x79\xda\xe1\x88\xdc\x08\xd6\xcc\xb0\xb2\xb5\xa6\x67\xde\x25\xc8\x48\xb4\xcd\xec\x2e\x75\x26\xb6\xb6\xce\x74\xb4\x04\x36\x58\xa0\x8d\xe8\x3b\x8b\x39\x58\xb7\x36\x75\x80\xc9\x08\x57\x63\x68\x83\x30\x9d\x01\x98\xfb\x08\x99\x6c\xe0\xf4\xb2\xca\x3b\xb4\xad\x1d\x30\x17\x5a\xbb\xe2\xa2\xe3\xb2\x6e\x4c\x84\x0e\x64\xc4\xb2\x10\xda\x80\x04\xa9\x59\x7a\x6c\x1e\x16\x7c\x9e\x84\xcc\x69\xc3\x80\xc5\x97\x2f\x62\x29\x8e\x0a\xad\xa5\x38\x31\x72\x0f\x67\xc4\x28\xd9\x43\xf7\x01\x5d\x48\x6a\xdb\xf6\xcc\x4a\x52\x82\xc0\x6b\x7d\xcb\x12\xe3\xb8\xea\xe9\x52\xcc\xfd\x68\x68\xdf\xdd\xb2\x77\x6d\xa6\xb4\x8c\x6c\x75\x66\x6b\x70\x7d\x53\xe6\xd5\xdf\x53\x3c\x31\x31\xf6\x6d\x3b\x73\x3b\xdc\xa2\x3f\xb3\xda\x91\xb1\x5e\xd0\x10\x96\xbb\x33\xe0\xdd\xaf\xdc\xe6\xdd\xda\x35\x79\xe8\xb1\x34\x3d\x2a\x46\xb9\x3f\x2f\x0e\x2c\xf4\x67\xe6\x64\x77\xb8\xe5\x61\x4e\x5c\x68\xde\xcc\xc9\x35\x33\x15\x57\xf5\xc0\x42\x0d\x62\xae\x69\xad\x6f\x34\x8c\x29\x2c\xb6\x53\xe2\x95\x86\x89\x31\x83\x8e\x9e\x90\x4b\x73\x6f\xeb\xac\xac\xeb\xda\xac\xe9\xd9\x2c\x85\xaa\xf6\x50\x2b\x3c\xb5\xc9\x1d\x3d\x9e\x75\x6d\x9d\xae\x42\xcb\xe1\xc6\x84\xf8\xa3\x2b\xb4\x18\xed\x81\xcb\x76\xa1\xe5\xfb\xae\x65\xb7\x56\x56\x3e\xe2\x7f\x7b\x6f\xe5\x95\x73\x6a\x6b\x9b\x2b\xab\xcd\x14\x78\xb6\xbd\x49\xb3\x2c\x7b\xeb\x90\x73\x95\x69\xd8\xef\x0f\x08\xac\xc1\xe3\x25\xf5\xab\x9d\xdf\x18\x63\x6d\x6f\x68\x64\x16\xdb\xd9\x07\x0b\xa5\x81\x4d\xd9\xab\xa1\x34\x5d\xb6\x35\xdf\xfb\x64\xb5\x14\xbb\xaa\xe5\xc6\x8f\x5b\x61\x58\x26\x4d\x84\xe3\x31\xa9\xfe\xd7\x0a\x92\x29\x3e\x59\xd7\x4a\x18\xd4\xc1\x67\x43\x7a\xfa\x68\xa1\xec\x10\xd4\xa2\xda\x3e\xf3\x74\x6c\x70\x31\x46\xc5\x35\x29\x81\x8c\xb8\x7e\x38\x28\x46\xde\x14\x07\x05\x27\x6b\xf2\xbe\x9b\xf5\xac\x5d\xd9\xfb\x32\x93\xf6\x3c\x22\x80\xd7\x2c\xd6\xe1\xbd\x1e\xcc\x23\xd9\xf7\xd8\x99\x9e\xb7\xd7\x99\xa4\x3b\xe4\x49\xe7\xf2\xb1\x89\x13\x26\x6a\xc2\x3b\xb4\x99\x87\x08\x98\x3f\x2b\x14\x0f\xc9\x23\x5b\xae\xfe\x98\x9a\x6b\x09\x81\xb1\x7e\x2b\x9f\xe1\xd5\x5b\x29\xd3\xdc\x7e\x3a\x75\x10\x07\x2c\x70\x40\xc5\xef\xb2\xba\xc3\x4c\xa6\xa9\x3c\x51\xf2\x8a\x27\xa8\x0c\x46\xe0\xe6\xc4\x77\x9d\xe2\xcc\xd7\x8b\x60\x1b\x95\x79\x86\x4e\x63\x8c\x7c\x13\x19\xdb\x0c\x29\x18\xa1\xae\xc6\x8f\x6e\x5e\x24\x3e\x51\x52\x6a\x62\xa2\x22\x9c\x9f\xf7\xf7\x1e\xc3\x0e\xf4\x2f\x2e\x2e\xe8\xc1\xff\x3d\x7a\xf4\x85\x97\xcb\x42\xc5\xf8\x8a\x65\x19\x17\xa3\x5f\x4f\x5f\x46\x26\xf4\x05\x7b\x4f\x62\x1c\x0c\x06\x4f\x82\x78\x5c\x88\xcb\xe0\x83\x85\x2c\xff\x1f\x00\x00\xff\xff\xc2\x27\xfb\x61\x38\x39\x00\x00"), }, - "/static/js/main.44889b06.js": &vfsgen۰CompressedFileInfo{ - name: "main.44889b06.js", - modTime: time.Date(2018, 10, 7, 17, 2, 28, 738962059, time.UTC), - uncompressedSize: 630405, + "/static/js/runtime~main.229c360f.js": &vfsgen۰CompressedFileInfo{ + name: "runtime~main.229c360f.js", + modTime: time.Date(2018, 12, 23, 12, 50, 2, 15259598, time.UTC), + uncompressedSize: 1502, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7b\x9f\xdb\xb8\x91\x28\x0c\x7f\x15\x8a\xc9\xa1\x89\x15\x4c\x4b\xdd\xbe\x52\x46\xb4\x89\xc7\x93\x38\x3b\xb6\x27\xb6\x27\x39\x39\x1a\xbd\xfd\xa2\x29\xa8\xc5\x31\x05\x28\x20\xd8\x76\x47\xe2\x77\x7f\x7e\xb8\x12\xbc\x48\xdd\xf6\x4c\xf6\xd9\x3c\x67\xfe\x91\x48\x10\xd7\x42\xa1\x50\x55\x28\x54\x8d\xd6\x15\xcd\x44\xce\x68\x4c\xc0\xde\x3e\x07\x22\xe6\x60\x9f\xaf\x63\xba\xe0\x4b\xc0\x89\xa8\x38\x0d\xe4\x73\x42\x3e\xef\x18\x17\xe5\xec\x1a\xf3\x80\x21\x99\x84\xf6\x79\xca\x61\x91\x8e\xa6\xd0\x7c\x4c\xf7\x75\x3d\x33\x85\x88\x2c\x94\xe1\xa2\x88\x99\x2d\x0b\x19\x6c\x9e\x05\x80\x2c\x29\xd0\x68\xd2\xa4\xd5\xb2\x6e\x8a\xf6\xf5\x4c\x24\x5b\x44\xa0\x48\x32\x44\xa1\x48\x56\xa8\xe9\x2a\xa4\x90\x83\xbd\x48\x98\x7c\x04\x87\xc3\xdb\xcb\x9f\x48\x26\x92\x15\x59\xe7\x94\x7c\xcf\xd9\x8e\x70\x71\xa3\xb2\xed\x33\x46\xd7\xf9\x55\xc5\xf1\x65\x41\x54\x27\x69\xb5\x25\xe6\x6d\x02\xaf\x88\x48\x79\x0d\x6a\x28\x12\x8a\x7c\x50\xe8\x4e\x90\x28\x22\xc9\xc5\x05\x29\x5f\xb3\x55\x55\x90\xb9\xcb\x01\xf6\x76\x80\xb2\x51\x5c\x15\xa2\x4e\x07\x3e\x3a\x38\x88\x64\x15\x53\x18\xe2\x10\x52\x00\xa9\x6c\x8e\xf9\xc3\x11\xae\x88\x19\xc9\x8e\x33\xc1\xc4\xcd\x8e\x24\x1b\x5c\xbe\xfd\x44\xed\x98\x34\x2c\x65\x01\x59\xc7\x0e\x85\x0f\x42\x28\x62\x91\x94\x68\xfa\xf8\x19\xa8\xe3\x45\xbb\x52\x37\xa1\x6a\x4c\xb6\x57\x9d\x41\x91\x74\x6f\xc6\x90\x92\xba\x26\x76\x1e\x10\xad\xa1\x5f\x1b\xa4\x60\x1f\x56\x25\x09\x4a\xc1\xf3\x4c\x84\x33\x2f\x67\x7c\x76\xf6\x18\xf4\xb3\xb7\x73\x3c\x01\x71\x27\x4f\xbb\x83\xf2\x5d\xe2\x5c\x55\x14\x08\x11\x83\x76\xfb\x5a\xe1\x1a\x85\x1c\x32\xb4\xaf\x61\x8e\x0c\x84\x3e\x92\x9b\x32\x26\x60\xb6\x66\x3c\xe6\x68\x32\xe3\xcf\xf3\xa4\x20\xf4\x4a\x6c\x66\x7c\x3c\x06\x14\xe5\x0b\xbe\x84\x22\xc9\xe9\x8a\x7c\x7e\xbb\x8e\x29\xf8\x1d\x9a\x1c\x0e\x31\x5b\xd0\x25\x22\x0b\xba\x04\xb3\x7c\x1d\x9b\xca\xae\x88\xf0\x80\xfc\xfe\x66\x7b\xc9\x8a\x52\x23\x01\x46\xa7\xf2\xb4\x7b\x80\xdb\x3d\xc0\x83\x3d\xe8\xcd\xf0\xce\x54\xf9\xaa\x7c\xe9\x70\xd3\xce\x33\x05\x51\xe4\x75\xb9\x36\x53\xc8\x8e\x4f\x53\x0b\xa6\x1e\x9a\xba\xec\x76\x3c\xb8\x2c\xf3\x2b\x7a\x38\xb4\x08\x00\xe3\xb1\x1c\xb4\x40\xd3\x99\x78\x8e\xf9\x55\xb5\x25\x54\x94\x76\x58\x62\x3c\xb6\x2b\xc3\x7d\x5b\x88\xe5\xcc\x16\xe3\x41\x4e\x03\x0a\xee\x84\xc3\x72\x05\x47\x51\x2c\x09\x84\xa2\x23\x6e\x6c\xa4\x86\x34\xc1\xbb\x5d\x71\x13\x8b\x4d\x5e\x42\xd7\x12\xb8\xe3\xa0\x2d\x22\x8d\x62\x12\xe4\xb4\x14\x98\x66\x84\xad\x03\x01\x80\xd8\x70\xf6\x29\xa0\xe4\x53\xf0\xe1\x66\x47\x5e\x72\xce\x78\x1c\xbe\xc0\x94\x32\x11\xc8\x4e\x05\x38\xc8\x0a\x5c\x96\x01\x2e\x03\x1c\xd8\x2a\xc3\x2f\x6a\xd8\xc2\x82\xa2\xc9\x8c\x3e\x17\x16\x74\xd4\x82\x8e\x23\xb1\xa0\xcb\x19\x4f\x1a\x42\x84\xfc\x97\xc3\x61\x34\x85\x3c\xf1\xc9\x96\x24\x8f\xe1\x35\x2e\x2a\x12\xe6\x34\xe0\x51\x14\xf3\xe4\x13\xcf\x85\xf9\x06\xe0\x31\xf2\xc7\xe5\x2a\x81\x1c\xd4\xb5\xeb\x25\x57\x6b\x93\x3b\xc4\x10\x51\x44\x63\xd2\xcc\x95\xa4\xc8\x5c\xa5\x41\x0e\x20\xf1\x46\xce\x6f\x21\x07\x5e\x13\xae\xf6\x17\x87\x43\xfc\x02\xc5\x13\x78\x61\xc9\x24\x88\x01\xa8\xcd\xee\x11\x4f\xcf\x1e\x01\x98\x23\x1a\x4f\xc0\x6c\x78\x0c\x02\x86\x0d\xa5\x0a\xe1\x5e\x41\x21\x1d\x4d\x6a\x00\x85\xad\x12\x89\xa4\xdc\x10\x22\xca\xd7\x98\xe2\x2b\xc2\xd1\x35\xcb\x57\xc1\x64\xa6\x57\x6f\x1e\xd3\xf8\x21\x00\xb0\x52\x4f\xd3\x73\x00\x60\xa9\x1e\x1f\x01\x00\x0b\xf5\xf4\x18\x00\x98\xa9\xa7\xa7\x00\xc0\xb5\x7a\x7a\x06\x00\x5c\xa9\x27\x59\x62\xa7\x0b\x03\x00\x37\xea\xe9\x0c\x00\xb8\x45\xb1\x4a\x9c\x00\x00\x55\xda\x39\x00\x00\xde\xe8\xd4\x27\x4f\x4c\xea\xc3\xc7\xf6\xf3\xd3\x67\xf2\xfb\xb5\x1a\xf6\x13\x00\x2f\x11\x93\xa5\xcf\xe4\xf7\x2b\xd3\x37\xd9\xd4\x27\xf3\x2c\xfb\x7c\xa1\x3b\x25\xdb\x7d\xab\x1f\x65\xc3\x2f\x75\x8e\x87\x32\xf9\xb3\xee\xe2\xb9\x7c\xfe\x68\x9e\x65\x9e\xef\x25\xd0\xaf\x93\x8c\x13\x2c\x08\x88\xe3\x09\xbc\xf2\x67\x00\xbe\x97\xdf\x5f\x7a\x49\xf0\x03\xba\x3f\x25\xd3\x29\xfc\x09\xc9\xf5\xf1\x1a\xef\x66\x5d\xb0\xfe\xa4\x20\xfa\x02\xbe\x96\x74\xf8\x5d\x6f\xb7\x14\xa8\x4b\x2f\x7e\x37\x8d\x22\x3d\x17\x23\xe4\x11\x8c\xe9\x72\xee\xbf\xa4\x7b\xb7\x4b\xba\x2a\xa9\xae\x92\x21\x91\x7c\xca\xc5\xe6\xc3\x86\x6c\x09\xcc\x91\xab\x8c\x45\x11\x83\xd7\x48\x24\xeb\x22\xdf\xc1\x2b\xf3\x01\x21\x74\x3d\x97\xdb\x47\x7a\x0d\x2f\x90\x48\x28\xde\x12\xf8\x52\x8e\x74\xd5\x8c\x54\xc0\x45\xe8\xea\x0c\x61\x28\x6b\x08\x61\x28\xf3\x86\x4b\x00\x15\xb6\x7e\x6e\xb2\x13\x00\xdf\xa1\x17\x89\xd8\x90\x6d\x4e\xaf\x5e\x52\xb9\xe6\x56\x87\x43\x7e\x38\x84\x12\xf1\xe9\x55\x88\x10\x92\x0b\x87\xad\x83\x8b\xd9\x87\x31\x9a\xc2\x17\x09\xdb\xc9\x51\x94\x9a\xf2\xa3\x0f\x0a\x6e\x6f\xd0\x11\x4e\x4b\x12\x79\x3d\xda\x59\x3c\x81\xa5\xd7\x53\x49\xfd\x24\x83\x24\xbb\x94\x75\xd2\x63\x91\x5c\x5c\xa8\x55\x7b\x71\xe1\xf6\x94\x2b\x22\xbe\xb7\x0b\xf9\xed\x3a\x16\x00\x68\x5a\xab\x4a\xc8\x76\x24\xb7\xb5\xca\x4b\x39\x88\xf7\xe2\xa6\x20\xe5\x1f\x09\x25\x1c\xcb\x9e\xa0\xd1\x14\xb2\xe4\xa7\xb2\x44\x12\x82\x90\xe9\xc9\x7f\xab\x47\xd2\x4a\x6b\x10\x42\xa6\xa8\x6a\x5e\x48\x3c\x63\xfc\x3d\xbe\x26\x2b\x9b\x57\x82\x8c\xd8\x97\x8a\x96\xd5\x65\x99\xf1\xfc\x92\xbc\x72\x39\x4a\x81\x05\x91\xc8\x64\xda\x5d\x5c\xca\xff\xe5\xe1\xf0\xbd\x82\x58\x8e\x68\xb2\xad\x72\x35\x51\xdf\x73\x76\x9d\xaf\x08\x37\xfd\xb1\x08\x93\x47\x51\x9c\xb7\x7b\x25\xf7\xcb\x4e\x3f\x3b\x39\x4e\x01\x21\x3f\xf6\x05\x0c\x8f\xf5\x45\x17\x50\xf1\x04\x56\xcd\x54\xed\xaf\x74\x05\xe4\x85\xdc\x56\xde\xe0\x2d\x49\xdf\xd7\x50\x0e\xd4\x2f\xb4\x04\x0e\x5c\xef\xe6\x6f\x6d\xe9\x24\xa7\xb9\xc8\x71\x11\x4b\x06\x97\xc7\x20\x7d\x0d\x59\x82\x85\xc0\xd9\x26\x36\xd9\x65\xb9\x0c\x67\x1b\x5d\x3d\x29\x91\xa1\x8f\x0a\xbe\x05\x2e\x25\x36\xec\x9a\xb7\x3f\xbf\x7f\x2f\x79\x73\xc8\xcc\x56\x1b\x4f\xe0\xda\x5f\x18\x04\xc0\x78\x02\x8b\xd6\x5a\xd9\x7f\x24\x37\x69\x98\xb1\xed\x8e\x51\x42\xc5\x37\xf9\xea\x35\xab\xa8\x08\xa1\x6e\xc9\xe3\x79\xe5\x94\x11\x24\x51\x6d\xf6\x2e\x8a\x14\xce\x75\xa6\xbd\x19\x9a\x4b\xd5\xd9\x32\x46\x05\xf9\x2c\x9a\xfd\x45\x38\x06\x5c\x0f\x74\x66\xfe\x91\x80\xc4\xc2\x80\x58\x18\x90\xa4\x24\xe2\xbd\xc4\xa5\x78\xef\xed\x51\x92\xfd\x5c\x11\x95\x95\x82\x1a\xd4\x00\xd4\x35\xec\x0f\xe7\x87\xdd\x0a\x0b\x32\x30\x1e\xd5\xb3\xfe\x94\xc3\x49\xbf\x9a\xbf\xe5\x45\xf1\x03\xdd\x1e\x01\x8c\xaa\xc8\xf4\x44\x3d\x9b\x7e\xcb\x79\x19\x21\xd4\x07\x54\x14\x35\x90\xf2\x3e\xb4\x61\xd5\x2f\xd6\x8c\xef\x8a\x08\x83\x11\x47\xe7\x69\x34\x95\xec\xef\x48\xf7\xed\x08\xca\x1b\xb2\xae\x01\xe1\xaf\x20\x49\x68\xe2\x23\xf0\x01\x90\x23\xd1\x64\xd0\x63\x9d\x71\x5d\x41\x92\xe9\x6e\xd9\x61\xfb\xc8\x9b\x18\x14\xb5\xb8\x33\xf4\x0d\x75\xea\x81\x8a\xff\xb1\x9c\xa3\x2a\x26\xb9\xe9\xf2\xd6\x76\xe4\xc2\x38\xda\x90\xfc\x88\xfa\x95\xe9\xc6\x20\x19\x2c\xa7\xc0\x2c\x57\xff\x27\x6f\xf5\x5f\xe2\xd2\x66\x48\x8f\x8e\x09\x52\xf2\xa9\x95\xa9\xdd\xe8\x0b\x8b\x64\x29\x85\x94\xfd\x01\x97\x24\x3d\x35\x69\x35\x00\xf0\x48\xef\x1c\x7a\xe8\x05\xd4\x43\x0d\xa2\xb9\xe6\xbb\xa3\x44\x7f\x6d\xd0\xa3\xc8\x02\x66\xf4\x70\x88\xa9\x65\x2e\xe0\x40\xbe\x52\xe6\x93\x9b\xd4\x4c\xf3\xc9\x54\x95\x24\x4a\x4e\xe3\x87\x43\xcc\xd1\x9e\x93\x75\x99\x4e\xa0\x2a\xa7\xe8\x9a\x94\x15\x64\x39\xc9\xad\x02\x28\x39\x00\x9e\xc8\x4c\x0d\xff\xa0\x59\xa0\x98\xc0\x0b\xc9\x6a\x5e\x40\xac\xbb\xf8\x53\x59\x9a\x4f\x6a\x8c\xef\x65\x8d\x31\x83\x1d\xf2\xbd\x25\x02\xa7\x39\xcc\x2c\xf5\xfe\x9e\x93\x75\xfe\x39\xcd\xa1\xe4\x1a\xd2\xf0\x92\xb1\x82\x60\xea\xb1\x00\x57\xf3\xab\x34\xe4\xa2\x90\x49\x24\x59\xe5\x9c\x28\xd8\xc2\x22\xa7\x1f\xd3\xd1\xb4\xf6\xc6\x6d\x88\x3f\x14\x96\x5d\x80\x7b\xc9\x84\xa4\x17\x35\x7c\x09\xdc\x8a\x41\x18\x62\x4b\xf1\x34\x60\x4a\xe4\xd3\x01\xbb\x95\x94\xef\xc8\x55\x5e\x0a\x7e\xb3\x9c\x95\x51\x54\x26\x78\xb5\x8a\x31\xa8\x35\x34\xc6\x68\x5a\xbb\xd9\xd7\x94\xe8\xbf\x79\xf6\x61\x67\x3a\x55\xb7\xee\xa3\x69\x6b\xca\x68\xb2\x22\x05\x91\x93\x65\x70\x58\x4e\x12\x27\x5b\x76\xed\x4f\x92\x01\x0c\x30\x3a\xa8\x5b\x80\x21\x39\x45\x53\x87\x2b\x59\x37\xc0\xe0\x84\xae\x08\x3f\xb9\x9b\xe9\xf5\x08\x05\x8a\x49\x43\x09\x92\x9c\x52\xc2\xdf\x91\xb5\x1c\x59\x9b\xc1\x24\x70\x11\x66\x96\xfa\x86\x36\x9f\xe4\x2d\x15\x23\xf7\xd1\x43\x2f\x45\x1c\xd3\x86\x4e\x42\x83\x00\xc0\xe7\x6f\x2c\x6b\xe0\x6f\x1d\x3b\xb7\x3f\x68\x1c\x7e\x59\x10\xc9\x4e\xc7\x54\x22\x30\xf6\x5a\xa8\x21\x83\xfb\xcc\xa7\x2e\xcd\xde\x10\x03\xc8\xc9\x3a\x15\xb5\x5c\x3b\x75\xbd\x04\x50\xd4\x71\x53\xb3\x23\x3c\xae\x37\x6f\x14\x28\xa4\xe8\x5c\x4a\xae\xed\x8d\x05\xbb\x4e\xe9\x2e\x9d\x61\xce\x2d\xdd\xb8\x06\x98\x62\x5a\x6b\x78\x63\x53\xa0\xcf\xfd\xf8\x75\xa7\xfb\x5a\xb1\x26\xdb\xa6\xfe\x37\x90\x02\xf8\xa6\xae\xe1\x1b\xf4\x6e\xd6\x88\x82\x6f\xfa\x42\x6a\x5b\xf4\xb5\xa2\xe9\x48\x1c\x0e\xa1\xee\x41\x28\x05\x8a\x58\x80\x28\x0a\x9d\xc8\x3f\x72\x2b\x5a\xcc\xf3\x98\x80\x54\x38\xa1\xf5\xa1\x91\x59\xcf\xcf\xc0\xec\xa8\x74\x3c\xa8\x90\x18\xac\x3e\x8a\x2c\x1f\x30\xac\x9e\x78\x5f\xed\x08\x0f\xc8\xe7\x1d\x27\x65\x29\xeb\xdb\x56\xa5\x08\x48\x2e\x36\x84\x07\x97\x24\x90\xa5\x03\xc6\x5b\xfa\x8a\x99\x27\xd0\x5b\x75\x8f\xa1\x83\x22\x8a\x3c\xcd\x8c\x52\x8f\x96\x82\x57\x99\x60\x3c\x35\xdc\x23\x69\xe9\x48\xa7\xd0\xaa\x1a\xd2\xd1\x04\xb6\xb5\xa9\x93\x5a\xca\xe1\x51\x64\xd5\x68\x65\x4b\xfe\x98\x0f\xa6\x2a\x68\xa4\xa4\x91\x5e\x90\x38\xa1\x5f\xe9\x69\x19\xf4\xd6\xe0\x2d\xd4\xfa\xee\x93\x20\x2b\xb3\xac\x42\x90\xd3\x80\xcc\x8f\x29\x4e\x84\xd5\x34\xd0\x8e\xbe\xb8\x33\x7e\x1f\x36\x35\x48\xc9\x42\x2c\x11\x6d\x69\x4d\x06\xc6\xa3\x86\x00\xd9\x6c\xe4\x8d\x62\x58\x93\x22\xbf\x58\x7d\x12\x41\x8b\x25\x14\x68\x72\x52\x2f\xc7\xdb\x7a\x39\x49\x69\xdd\x4e\xa8\xf1\x8d\xcb\x44\x4f\x74\x65\x87\x43\x48\xab\xed\x25\xe1\xea\x0d\x90\x64\x57\x95\x9b\x98\x83\x19\x29\x4a\x12\xe4\xeb\xf8\xf7\x9c\xe3\x9b\x24\x2f\xd5\x7f\xcc\x41\x14\x71\xd3\xae\x55\x90\x5a\x75\x9d\x12\x34\x38\x98\xe1\x28\x32\xd5\x60\x50\xdb\x6a\xec\x62\x53\xad\xd8\x41\x55\x72\x1a\x38\xc8\xb5\x98\xca\x61\x25\x6b\x5f\x54\x4b\x57\x41\x05\x6a\xa7\x17\x4c\x7e\x62\x39\x8d\xc3\x20\xd4\x0a\xa4\x1c\xed\xeb\x8e\x66\x71\x16\x56\x54\xcf\xe5\xca\x5b\x62\x4a\xdf\x6d\xe6\x63\x1e\x53\x47\x2b\x28\xf4\xa6\x09\xa4\x31\x97\x10\x76\x2a\x86\x98\xa1\xbe\x42\x9f\xd6\x56\x33\x29\x69\x66\x14\xc5\x4d\x0d\x0c\x80\xba\xab\xdf\xee\x92\x9f\x2f\x51\xb0\x6a\xaa\xe0\x4f\xe7\xdc\x7f\x49\xf7\x35\xe4\x2d\x5d\x38\x05\xb3\x86\xc0\x34\x1c\xc9\x29\xed\x75\x14\xc5\x1c\x29\x5d\x63\x86\xc5\x49\x5d\x78\x4c\x41\xb2\xce\x0b\x41\x78\xec\x73\x0c\xed\x43\x8b\x76\xc9\x6f\x88\x14\x4c\x76\x82\xf1\x98\x42\x02\x3c\x15\x67\x0d\x00\x80\x3c\x59\x33\xfe\x52\xb2\x35\xbe\xd4\xc7\x34\xd8\x16\x62\x29\x45\x36\xa7\x11\x76\x0a\xc3\xe9\x09\x9a\x7b\x1b\xad\x50\x59\x20\x87\x0c\xe6\x10\xc3\x4a\xf3\x3b\x46\x79\x55\xca\x65\xe1\xb4\x48\x02\x94\x8a\x51\x35\x24\xf8\x75\x4e\xf3\x75\x4e\x56\x01\xf9\x9c\x11\xb5\x8d\x05\x2c\xcb\x2a\xce\xc9\x6a\x16\xc8\x06\xc5\x86\x04\x94\xd1\xfb\x5b\x9b\x71\x45\xae\x03\x42\xaf\x73\xce\xa8\x9c\xb0\x60\xcd\xb8\xca\xb4\x96\xc4\x9a\xc8\x5a\x83\x2d\x29\x4b\x7c\x45\x02\x4c\x57\x01\x5e\xad\x72\x59\x2d\x2e\x82\x0d\x29\x76\xeb\xaa\x08\x3e\x61\x4e\x73\x7a\x55\x26\xa1\x5e\x89\xaa\x97\x05\x5a\x78\x03\x58\xc2\x0c\x4d\x66\x7e\x4f\x45\xc2\xc9\xae\xc0\x19\x89\x1f\xfc\xaf\xf2\xc1\x15\xec\x23\x70\xb1\xc8\xc6\xe3\xa5\x14\x12\x4a\xa5\x1e\x43\xe1\x2b\x7a\x8d\x79\x8e\xa9\x08\xfe\x9a\xb3\x42\xf1\x79\x61\xad\x77\xa2\x32\x59\x73\xbc\x25\xe5\x07\xf6\x3d\xdb\xa1\x29\x2c\xeb\x13\xc4\xb6\x07\xfd\x2f\x55\xe8\x5a\xae\x3f\x9e\x3e\x79\x0a\x66\x34\x59\xc9\xbc\x57\x44\x7c\xa3\x99\xe8\x6b\xf2\x8a\xae\xd9\xb7\x9c\x6d\xbf\xcd\x49\xb1\x0a\x07\x06\xc7\x93\xcb\x1a\x40\x53\xb2\xdc\xb0\xaa\x58\xbd\xa2\x59\x51\xad\xc8\x70\x6e\xd2\xe4\x5e\x17\x58\x08\x42\xdf\x93\x42\x33\xec\xe5\x70\x09\xdc\x94\xf0\x7b\x26\x45\x83\x23\x25\xb2\xa6\xc4\x06\x97\xae\xc4\x91\xdc\xab\xda\xb2\xb5\x34\x9e\x3e\x9d\xf8\x60\xf8\x96\xe3\x2b\x89\x4b\x7f\xa9\x08\xbf\xf9\x86\x65\x8a\x12\x0c\xd5\xc2\x64\x2f\xad\x02\x2d\x7e\xd6\xaa\xe4\x75\x25\xd4\x0c\x7f\x23\x27\x45\xa1\xdc\x50\x0d\x79\x72\xd5\xf4\x3a\xdb\x90\xec\xe3\xa9\xf6\xf2\x0e\x54\xde\xee\x8c\xb8\x70\x5b\x23\x9b\xdb\x8a\xbd\xe5\xdf\xe4\x83\x53\x97\x27\xf9\x70\x59\x39\x11\xc3\x05\x7e\x6a\x15\xb0\xc0\x6c\xda\x1a\x9c\x90\xdc\x47\x91\x2b\x62\x60\x7f\xcb\xb0\x3e\xde\xd2\xd2\x70\xa9\x55\xab\xd4\x6b\x9c\xdf\x0a\xbe\xb5\x37\x47\x8a\xb7\xb3\x4d\xbd\xc6\xbb\xe1\x12\x97\x6d\xec\xd5\xdb\xe0\x5f\xe5\x02\x3c\x32\x7a\x0f\x79\x15\x91\xb8\x2c\x48\xf9\x8a\x3a\x68\x0f\x17\x2a\x0c\xf6\x61\x85\xc3\x53\x87\x7e\x5a\x08\x6b\x56\x80\x5c\xca\xa7\xf0\x0a\xfb\x30\xc1\xab\x95\xe4\x89\x25\xc9\xfa\xc0\x4e\x97\xf2\xb0\x51\x37\xf9\x82\x51\xaa\x57\xb5\x6b\xfc\xf6\xb6\xb3\xe1\x95\x7e\x87\x5e\x5f\x9a\xf1\x57\x88\xc6\x8f\x1a\x4a\x96\x97\xef\x33\x5c\x60\xae\xe0\x3d\x54\xb2\xf2\x17\x44\x5e\xbe\x51\x4c\xd9\x89\xdc\x57\xfe\xe4\x14\x15\xf9\xc0\x34\xc5\x7d\x47\xa4\xa8\x40\xa8\x38\x3a\x47\x55\xb2\xf5\xe8\xa4\x60\x9c\xfc\x17\xb9\x91\x4b\xe7\x24\x75\xad\x3a\x6b\xe8\xbd\x57\x70\x38\xbf\x87\x6f\x8e\x75\xd1\x7d\xbc\xa5\xa1\xd6\x14\x96\x55\x21\xee\xd6\xbf\xdc\x87\xdf\x89\x7c\x99\x9f\xef\x15\x2d\x72\xea\xd6\xce\x70\x01\xd2\x2a\xb0\x3a\x31\x29\x1e\xca\x0a\x76\x32\xe7\x47\xbf\xce\x3f\x97\x8c\x9e\xc8\xbb\xee\x4c\xb5\x84\xc3\x1b\x36\xbc\xad\x55\x6e\x01\x96\x92\xfc\x37\xeb\x4f\x9f\xf7\x0f\x15\x29\xdd\x8e\x51\xc8\x22\x67\xae\x48\x56\x30\x4a\xbe\x21\x64\x90\x9e\x14\xae\x54\x26\x31\xfd\x99\xbf\xcf\xbc\xa4\xd7\x43\x45\x32\x7f\x66\xf3\xf2\x68\xae\xd6\x04\x7d\xcf\xd9\xaa\xca\x8e\xe1\x72\xe6\x83\x3c\x2f\xbf\x21\xd7\xa4\x60\xbb\x63\x53\x99\xf9\x38\x99\x97\x1f\x48\x79\x24\x1b\x31\x43\x5b\x2b\x22\x76\xee\xc6\x26\xf8\xcd\xb7\x26\xfb\x5b\xfe\x1d\xbb\x52\x7c\xd7\x50\x15\xeb\x16\xb5\xe5\x78\xb7\xf9\xcb\x77\xef\x14\x2e\xff\x09\x97\x27\x4a\x59\x98\xae\x54\xc3\x0f\x3d\xf2\xf1\xf2\x1f\x15\x2e\x86\x0a\xad\x5c\xa1\x9d\x2a\xf4\xc8\x15\xda\xe2\x9b\x4b\x35\x7f\xdf\x72\x42\xfe\x39\x88\x2e\x3b\x57\x78\xa3\x0a\x3f\x76\x85\x25\x07\xfa\x96\x66\xe4\x15\xbd\x05\xa8\x1b\x57\xc5\x56\x55\xf1\xc4\x55\x21\x59\xc1\x9d\x91\x20\x86\x4a\x6e\x65\xc9\x3b\x31\xf1\x5f\x67\x22\x70\xb4\x80\xde\x30\xff\xd8\x3d\x9c\x0b\xe1\xbe\x6f\x1e\x36\xc4\x61\x59\x9b\xaf\xdb\xdb\x78\x6d\xd4\x60\x77\xac\x3a\xbf\x53\xd5\x3f\x95\xe5\xf7\x92\xc6\x8b\x3b\xd6\x8a\xef\x54\xeb\xeb\x8e\xc6\xee\x8e\x95\x57\x5f\x00\x0d\xad\x51\xbe\x63\xc5\xe5\x9d\x2a\xfe\x94\x8b\xcd\x17\x55\x5b\xdc\xb9\xda\x2f\x99\xb8\xcc\xab\xd5\xb0\xf0\xdc\x59\x69\xe4\xea\x59\xd9\x71\x60\x9d\xac\x4c\x3d\x2a\xf5\x7c\x7e\xfe\x58\xd9\xa4\xe8\xe7\xa7\xca\x2a\x45\x3e\x3f\x51\x56\x29\x2a\xf5\x31\xb8\x6d\x95\xb4\x8c\x6f\xf2\x75\x3c\xa8\x08\xb9\xb8\x78\xf7\xf2\xf7\x2f\x3e\x5c\x7c\xf3\xf2\xaf\x1f\xde\xbe\xfd\xee\xfd\xc5\x1f\xbf\x7b\xfb\x87\xdf\x7f\x77\xf1\xa7\xb7\x6f\xff\xeb\xe2\xc2\x57\x7f\xa2\x3b\x96\x49\xb4\x74\xf0\xe2\x25\x10\xfc\x66\x7f\xc7\xbc\x31\x07\x75\x86\x45\xb6\x89\x09\x50\xfa\x47\x56\x90\x44\x09\xc5\x31\x01\x75\xcd\x63\x00\x5b\x86\x83\x8f\xcf\x6f\x55\xab\x38\x15\x91\x93\x7f\x17\x3f\x96\x70\x39\x7e\x70\x05\xc3\x20\x04\x89\xe0\xf9\x36\x06\x8d\x15\x14\xf3\x0a\xf1\x98\x24\x25\xab\x78\x46\x92\x4b\xb6\xba\x51\x67\xd3\x4a\x3d\x26\xd3\x05\xe6\x42\xf6\x86\xae\x80\x57\x3c\x8f\xc1\x7e\x8b\xf6\x35\xbc\x41\x7b\xcf\xb6\x0a\xb7\x35\x3c\xfb\x1a\x52\xb4\x58\x42\x6d\x1b\x48\x34\x92\x69\x61\xc3\xb7\x13\xdc\x6b\x51\xad\xf5\x7d\xc1\x95\xf2\x2e\x1c\x90\x1e\x10\x42\x79\xf2\x31\xa7\x2b\xab\x7d\xcb\x95\x20\xaf\x8f\xf8\x60\x85\x58\x9c\x27\x05\xcb\xc0\xec\xa6\xa3\x1c\x8b\x31\x88\xa2\xd1\xcd\x02\x2f\x17\xd5\x72\x1e\x5f\x47\x91\x85\xbd\xa4\xf4\x71\xf8\x37\xad\x71\x48\x83\xb5\x69\x34\x90\x6b\x20\x90\x95\x07\xe1\x18\x8f\xc3\x00\x17\x9c\xe0\xd5\x4d\x40\x3e\xe7\xa5\x28\x93\x1f\xa9\xda\xd7\xfe\x51\xdc\x17\xf8\x2a\x20\x74\xcd\x78\x46\xca\x00\x17\x45\x53\x85\x2c\x5d\x06\x38\xe3\xac\x2c\x83\x1b\x56\xf1\x00\xef\x76\x45\x9e\x29\xde\x34\x10\x2c\xb8\x24\x41\x45\xf3\x7f\x54\x64\x16\xc8\xca\x83\x2d\xe3\x24\xc0\x97\xac\x12\x3f\x52\xb1\xc9\xcb\x20\xa7\x4a\x73\xb2\x62\x59\x99\x06\x1b\x21\x76\xe9\x83\x07\x2b\x72\x9d\xe0\x1d\x2b\x0a\xb6\xc2\x02\x27\x19\xdb\x3e\xc8\x18\x27\x0f\x6c\xb3\x65\xb2\x11\xdb\xe2\x37\xba\xe2\xfb\xaa\x0f\x21\x80\x66\xe8\x68\x34\x01\xe9\x00\x70\x0e\x87\x58\xe6\x50\xd3\xda\xe4\x84\x62\x51\x2d\x0f\x87\x58\xe8\x77\x48\xb5\x5e\x32\x07\x46\xb3\xe9\xde\x6b\xdf\x20\xd8\xce\xa3\x52\x06\x3b\xfc\xa8\x62\xb0\xbf\x46\xa3\x69\x93\x52\x6a\x35\xb5\xd6\xf8\xf5\xcc\x26\x05\x7b\xaf\x10\xd1\x18\x83\xaa\x93\xb3\x70\xa1\xf5\xa8\x81\x52\xc7\x2e\x25\x3a\x50\xe0\x9a\xde\xe2\xdd\x90\x7e\x4e\x37\x53\xb7\x2b\xd0\xcd\x2d\x25\x7d\xa0\xde\xd1\x83\xd1\x79\xfd\x40\xc9\xe7\x1d\xc9\x04\x59\x05\x39\xdd\x55\x22\x09\xc1\x4c\x44\x11\x91\xb8\x15\x45\xfa\x9c\x2e\x50\x6f\xd0\xa4\xc5\x7e\xa2\x5e\x39\x1f\xd8\x47\x42\x61\x2b\x9d\xd0\x95\x4a\x35\xea\x1e\xad\xcb\x1a\xb4\xe9\x95\x33\x8f\x01\xee\x4e\x94\xb2\x1a\x65\x88\x2c\xf0\x82\x2f\x97\x70\x68\x38\x71\x7e\x1b\x2c\x19\x00\x51\xd4\x05\xe5\x08\xa1\xfc\x70\x88\x4d\xcd\xa8\x8c\x19\x1c\x4d\x00\x70\xc7\x5f\xde\x4c\x16\x8d\xd1\x1b\x37\x13\xb3\x5d\x08\x67\x2a\x2f\x9f\xb5\xd9\x32\xda\xc4\x04\xee\x25\x28\x79\x2e\x31\x13\x17\x76\x49\xff\xd5\x0a\xd4\xe9\xa5\x9e\x98\x11\x3d\x1c\x42\x27\x5a\xca\x59\xd1\xcb\xbc\x37\x35\x6f\x98\x08\x70\x70\x8d\x8b\x7c\x15\xfc\x51\x73\x96\x72\x79\xa8\x72\x72\x9a\xac\xae\x1a\xe1\x98\x02\x48\x51\x19\x53\x38\x9a\x02\xb8\xd5\xa7\x13\xb4\x19\x46\x16\x83\xfd\x25\x1a\x4d\x9a\x94\xb5\x4e\xf1\x50\x74\xd5\x3a\x83\xd0\x87\x01\x0d\x58\xcb\x22\xcf\x8c\xb1\x72\x63\xa7\x0b\x05\x22\x8b\xc9\x12\x52\xd4\xb7\x91\x13\x73\x91\x0a\xf9\x91\xa3\xa9\xa2\x8a\x1e\x25\x24\x0b\xbe\x8c\x22\x75\x65\x40\x8e\x3c\x8a\x1a\x70\x20\x84\x5c\xfa\x9c\x8e\xf5\x8b\xc2\xb3\x86\x72\xa7\x26\x1d\xd2\x31\x12\x92\x82\xda\x0d\x3f\xa6\xfa\xc4\x40\xb2\xc7\x67\xd3\x27\x00\x6e\xd0\x2e\xd9\x61\x5e\x12\xe8\xa8\x38\xbc\x96\xab\x5b\x0e\x7d\xe6\xce\x72\xd1\x0a\xae\x12\xc5\x67\xbd\xc0\xd9\x86\x94\x28\x87\x2b\x7b\x36\x6e\xa7\xd1\x50\xcd\x12\x55\x70\x95\x10\x65\x1e\xf8\xf2\xd4\x6c\xa3\xac\xa9\xe3\x74\xc6\xb5\xb7\x0b\xae\xfe\x65\xba\xd6\xa7\x8d\x86\x82\x6c\x77\xe2\xe6\x56\x2d\xe6\x9a\xb3\xed\xad\xea\xd4\x72\x57\xe4\x83\xb2\x02\x6f\xa9\xad\xd4\xb9\xc3\xad\x9a\xdc\xdf\x2b\x4a\xff\x5d\x4e\x3f\xde\xaa\x94\x25\x9f\x49\x56\x89\x23\xea\x5e\x5f\xb9\xfa\xac\x11\x92\x34\x67\x7a\x52\xa9\xc5\xfc\xee\x6c\xf1\x47\x09\xe2\x6d\x5e\x0e\xb6\xc3\xfc\x11\x0a\x76\x32\xe7\x55\x1b\xac\x27\xf3\xae\xda\x79\x8f\x8a\x90\x4c\x4e\x96\x53\xff\x3e\x6e\xd4\xbf\x6f\x2f\x4b\xc2\xaf\x25\x6e\x1d\xd5\xe2\xde\x9d\xc9\xf4\x79\xae\x6c\x83\xf9\xef\x45\x3c\x01\x89\x60\x3f\xec\x76\x84\xbf\xc0\x25\x89\xc1\xd8\x50\x87\x78\xda\x66\xbc\xfa\x97\x5d\x14\xd9\x17\x20\x21\xd7\x84\xdf\xc4\xbe\x11\xb0\x6b\xa3\xb3\x09\x50\x20\xe9\x04\x5d\x4a\xba\xb2\xa0\xcb\xba\xc5\x9b\x75\xcc\xf0\x3b\x26\x8d\xc0\xf1\x63\x8e\xf2\xa0\x69\xe7\x78\x5e\x6e\xaa\x51\x34\x9a\x20\x84\x46\x23\xa1\xee\x28\x40\x0e\x09\xb0\xf4\x5d\x1f\xa2\x36\x07\x9a\x34\x8a\x98\xce\x25\xda\x79\xee\x4f\x47\x08\x2d\x2c\x15\x84\xf6\xa4\x15\x3a\xcb\xa1\xa5\x77\x3b\xa4\xd9\xc6\x6d\x9a\xb0\x5c\xc5\xfd\x69\x8b\xcb\x6c\x78\x06\x3d\x5a\x47\xf2\x7f\x77\x7f\x3a\x97\x70\x49\xf5\x51\x56\x9b\xf5\x68\xa8\x78\xf7\xdc\x11\x0a\x75\x88\xa4\x4f\x78\x89\xdc\x33\x26\x33\xfa\x9c\xa8\x4b\x0b\x12\xbe\xde\x31\x24\x5d\x36\x57\x9a\x38\x59\x55\x19\x89\xdb\x47\xee\xb6\x2b\xea\x16\x8f\x98\xb7\x8c\x6a\x9a\x49\xe9\xf5\x80\x7b\x3d\xa0\x00\x32\x34\x99\xb1\xe7\x74\xc6\xc6\x63\xc0\x17\xcc\xef\x01\x5b\xce\x88\x7f\x3f\x84\x03\x28\xda\xef\x75\xcb\x0a\xb4\xd6\xc4\xbf\xfc\xea\x6b\x06\x19\xde\xe5\x02\x17\xf9\x3f\x09\xe2\x50\x1b\xa6\xe0\x9c\x96\x88\x41\x91\xac\x73\xba\x7a\xa5\xac\xbc\x73\xf3\x86\x30\xb4\xc6\x16\x2f\x36\x58\x4a\x60\x56\x61\x84\x2a\xa3\x63\x2b\x63\x65\x45\x02\x66\xa5\xb9\x3f\xf0\x55\xeb\x4e\x32\x63\xec\x13\x25\xdc\x6e\x92\x87\x83\xe5\x02\xea\x9f\x71\x99\xc2\xbb\x3c\xc1\x10\xf7\x4c\x6b\x58\xd7\xb8\x42\xcd\xe4\x8c\x0e\x1c\x93\xcb\x79\xa8\x63\x30\x93\x42\x21\x45\xf4\x70\xb0\x20\x88\x43\x2f\x47\x08\x62\xc9\x74\x4f\x20\xb9\xc6\x05\x88\x43\x9d\xd6\x88\x86\xde\x02\x33\xcc\xc3\xa7\x9c\xae\xd8\xa7\x28\x8a\x29\xd2\x8f\x5f\x62\x39\xd2\xb6\x03\x92\x9f\x3d\x4b\x08\xcf\x20\x47\xa5\xaf\xf5\xf0\x56\x28\x8b\x05\x98\xad\xa2\x68\x35\x42\x68\x1d\x45\xb2\xec\x0a\x3a\x7e\xa2\x92\x5f\xcb\x28\x8a\x77\x68\x67\x8f\xd1\x25\x29\x03\xc0\xdd\x89\xda\xa0\xc9\x6c\xf3\x7c\x67\xa9\xcd\x78\x6c\xcc\x26\xb6\x68\xb7\xd8\x28\x29\x6f\xc4\x16\xdb\x65\x14\x8d\x72\xf5\xa7\xf8\xc0\x11\x5d\x6c\x97\x40\x67\xbc\x41\x45\x2c\xe0\x56\x43\x53\x2e\xfe\x2d\xbc\xf1\xa0\x54\x37\x06\x12\xdd\xf3\xf2\x7d\xb6\xc9\x8b\xd5\x0b\xdf\x90\x4a\x9b\xb0\xb4\xde\xcd\xfc\x4a\x2c\xd1\xef\x79\xb9\x2b\xb0\xd2\xb7\x1b\x75\xc7\x37\x9d\x1c\x2a\x89\xe7\xd7\x64\xa5\xac\xae\xbf\xd5\x5b\x97\xfe\xb6\xcd\x3f\xe7\x54\x3d\x39\x5b\x31\xf9\x22\x81\x2b\x31\x0d\xe6\x48\x5b\x39\x8e\x26\x50\x43\xc4\x64\xd5\xfc\xa4\xea\x1f\x2e\x0a\xc2\xdd\x93\x4a\x73\xab\x5f\xbf\xe4\xe2\x46\x55\xe6\x04\x87\x36\xa2\xc3\x6a\xf8\xce\x9e\x3a\xa6\x85\xe5\xc9\x0b\x7d\xb0\x18\xfe\xdc\x58\x33\xc0\x0c\x0d\x5e\xb7\x80\x6b\x94\x45\x51\x66\xcc\x28\xbe\xc4\x4e\x61\x70\x7d\xeb\x6a\xe2\x2c\xc1\x40\x8a\x10\x05\xc1\xd7\x24\x5d\xd7\x47\x94\x18\xbe\x0d\x85\xdd\xd1\xe3\x85\x04\x8c\xee\x76\xce\x28\x24\xb1\x00\x4b\x18\xfe\x48\x43\xff\x42\x58\xde\x22\xdb\x64\x4e\x4e\xd8\x79\x90\x1a\x68\x23\x1c\x71\x38\x84\x21\x48\xc3\xb0\xa3\xfc\x68\x68\xd3\x64\x84\x90\xdd\x62\xe7\xe1\xfe\x47\x1a\x8e\xcb\x58\xb6\xa5\xda\x07\xe3\xf0\x47\x5a\x87\xad\x0a\xaa\xae\x89\xd6\x9c\x8c\xc5\x38\xa6\xfd\xa6\xca\x76\x53\x61\x10\x84\x63\x4f\xf5\xf3\x23\x7d\x70\x25\x9b\x09\x82\x10\xb4\x44\x36\xe8\x5d\x2b\x70\xb9\xc3\x30\x7c\x70\x05\xef\xfd\xf8\x63\x18\x86\xf7\xec\x4e\x1a\x06\x92\x22\x48\x21\x26\x8a\xc2\x1f\x85\x7d\x39\x1c\xd4\x86\xde\x6c\xd0\x6a\x30\xf3\x7b\x61\x18\xfe\x48\xef\x8d\x63\x31\xa7\x69\x29\x77\xf2\xf1\xbd\x1f\xa9\xac\x2f\x95\x9f\xee\x8d\xa9\xd7\xdc\x6f\x1f\xc0\x7b\x32\x37\x18\xab\x6f\xb5\x48\x30\xe2\xee\x18\x65\xfa\xe4\x09\x80\x6b\xb4\x57\xab\x6f\x68\x06\x8c\x29\x37\xb4\x72\xc2\x40\xa6\xf0\xb7\x12\x1c\x72\x95\xd5\xd0\xee\x0d\x43\x75\xe5\x71\x4b\x57\x21\x41\x26\x87\x23\xa7\x26\xac\xe1\xc0\x79\x7c\xab\x12\x2d\xfd\x92\x84\xd9\x7c\x50\x82\x55\x5d\xb9\xe2\xa8\x8a\xc3\x38\x84\xb2\x01\x7b\x6e\xfc\x8d\xdf\x10\x0c\x42\x00\x43\x10\xca\x7d\x5e\xf5\xc2\x1d\xaf\x2a\x75\x1d\xc4\x88\x24\xa5\x35\xc5\x78\x4f\x84\xe3\x6f\x0e\x07\x76\x38\xf0\xc3\x21\xfc\x47\x45\xf8\x8d\xa2\xda\x73\x89\xe7\x30\x8f\x17\x14\xf2\x25\x80\x0c\xe2\xa5\xaa\x24\xc5\x0d\x90\x8e\x0c\xc1\x83\xa9\xce\x37\x0e\x53\x85\x4a\x72\x41\x8f\xab\x38\x0c\x50\x10\x42\x77\xc3\x5b\x1d\xd0\x81\x1a\xbe\xf7\x7a\x36\x54\x1f\x8e\xbd\xde\x97\xa0\x86\xea\x28\x72\x10\x78\xb8\xc8\x71\xe9\x03\x8e\x24\x8e\xd4\x41\x86\x5a\x90\x39\x06\x94\x3c\x5e\x54\x71\x18\x42\x01\x65\xef\xc1\x98\x8e\x2d\xf4\xb9\x0f\xe9\x3c\x66\x06\xb8\x1a\x3e\x35\xfc\xbd\x69\x69\x18\x26\xb2\x43\x16\x1e\x06\xe7\xac\x8c\xfa\x7e\xc7\x09\x5e\x0d\x61\x5e\x92\x24\x16\xf7\x14\xfc\x34\x0e\x74\xa6\x17\xd4\xb0\x7d\xe8\x3a\x08\x1a\x39\x07\x2f\x18\xd5\x86\x51\x0a\x44\x5e\x35\xfc\x38\x2c\x54\x1f\x60\x15\x87\x8c\x06\x21\x14\xea\xf2\xa5\x1e\x38\xb7\x03\xef\x6b\x55\x07\x7b\xa0\xa6\x84\xf6\xba\x22\xdb\x1e\xc2\xea\xbb\x4d\x57\xe8\x54\xa3\xe1\x58\x0c\xce\xd4\x38\x0c\x64\xd7\xc7\x74\x1c\x06\xe1\x58\x4d\xad\x9b\x3b\xf9\x33\xc6\x12\x7e\x1a\x1b\x4f\x92\x88\x6f\x0b\x86\xef\x90\x4d\xeb\xc5\xba\xf9\x7c\x5a\xa9\x32\x3a\x2d\x58\x72\x59\xb0\xec\xe3\xbc\x90\x60\xf5\xb6\x17\xc5\xa6\x81\xf4\xcf\xef\xdf\xbe\x49\x34\x53\x95\xaf\x25\x2b\x5f\xc3\x3f\x68\x59\xe7\xb6\x9e\xcc\x43\xc1\x2b\x12\xa6\xe1\x1a\x17\x25\x09\x6b\xf8\xa6\x2a\x8a\xbf\x76\xed\xf2\x0d\x14\xa5\x78\x11\xd6\xf0\x25\xad\xb6\xb7\x8f\xf0\xbb\xbc\x3c\x0a\x87\x70\x11\x8e\x35\x9d\x2a\x2a\x62\x48\xd3\x38\x5c\x4a\x02\xa8\x36\xe0\xa3\xe5\xf6\xba\xdc\x5a\xae\x6d\x57\xae\x76\xe5\xfa\x6b\xfe\xd4\xca\x72\xf6\x25\x43\x2d\xfd\xa7\xbf\xa4\x0c\x59\x6d\xa8\x44\x83\x38\x35\x94\xbb\x86\xb2\x93\x39\xde\xb0\x86\xc6\x91\x3c\x12\x18\x86\xfa\x29\x10\xbc\x61\x54\x4e\xc2\xf1\x1a\x75\xd6\x51\x58\xc3\xf7\xd9\x86\x6c\xf1\x2d\x2b\xca\x5b\x1e\xd4\xdf\x3a\x14\x9b\xe8\xaf\xe1\x52\xd5\x26\x87\x2a\x0c\xd1\x8a\x29\xb0\xcb\xf7\xad\x5f\xec\x36\xd2\xee\xda\xf0\x69\xbb\xec\x2e\x2e\x30\xef\x54\xc0\x86\x78\x1e\xdd\x1d\x99\x5b\x6e\x05\x8a\x26\x0c\xd0\x34\xd3\x37\x7b\xa0\x78\xb2\xe2\x1e\x7d\xc9\xa9\x20\x7c\x8d\x33\x43\xd8\xbc\xaa\x25\x4d\xd1\x18\xe6\x43\x47\x0e\x41\xd2\xfb\x2a\x0e\xf3\xed\x4e\x5f\xfd\x28\x15\xad\x95\x94\x2e\x92\x24\x56\xd3\x14\x0d\x39\xd6\xf4\x4e\x61\xe5\xdd\x3b\xd6\x60\x19\x37\x64\xb0\x43\xe5\x9c\x2e\xc0\xa1\x26\x6d\x51\x32\x09\x72\xee\x76\x02\x66\xc8\x3f\x80\xaf\xe8\xae\xd2\x4b\xeb\xee\x9d\x51\xcd\x73\xd4\xde\x8e\x8f\xf4\x47\xf2\x04\xba\x75\x2a\xa1\x24\xb7\x71\xde\x6c\x81\x0e\x1c\xaf\x2c\xe0\xbf\x6c\xbe\x3a\x1b\x51\x7f\x82\xdc\x84\xca\x59\x72\xfb\x0f\x8e\x79\xd3\xf4\x0f\xb4\x8f\xc0\x5f\xd6\xac\xe8\x2e\x9a\x8a\x2a\xf5\xa5\xd7\x22\xd7\x7c\x38\x77\x7c\x38\x0a\x24\xd5\x92\x98\x71\x08\x14\x53\xed\xfa\x23\x29\xe9\xcf\xea\x8e\x26\xa0\x7e\x7f\x08\xad\xb6\xc7\x01\xe0\x48\xf7\x1d\x16\xe0\x1d\xd6\x9d\xc2\xa8\xaf\x59\x7c\x77\x98\xcc\x5d\x25\x8e\x8f\xa3\xa1\x24\x2f\x3f\x0b\x42\xcb\x23\x94\x48\x01\x44\x66\x58\x05\x77\xa6\x26\x1e\x31\x19\xae\xfb\x67\x53\x12\xd3\xa3\xaf\x25\x28\xed\x05\x74\xc7\x3e\xde\x0a\x70\xd3\xa9\x5b\x17\x51\xb3\x86\xbe\xae\xe5\xde\x02\x32\x0d\xff\x8c\x75\xe4\x96\xd1\xd7\xf5\x68\x60\x0d\xe9\x2e\x9d\x5a\x4a\x5d\xd4\xff\xc5\xa7\xe1\x04\xfa\x37\x8c\xcb\xd7\x6e\x2a\x05\xd3\xb6\x00\xb6\xe9\xd0\xf5\x2b\xf8\x4f\x9f\x43\xa6\x03\x1c\x72\x33\x03\x75\x4b\xe7\x7b\xca\x8c\xec\xec\x49\x73\x22\x82\x8f\x9e\x27\xb9\x73\xa2\xb3\x27\x8d\xed\xdf\xe5\xed\xd6\xf6\x67\x4f\x1a\x8b\xbd\x41\xe3\xd3\xdc\x65\xc7\x88\xc6\x0f\x3d\x53\xcb\x5b\x8d\x99\xd7\xb7\x9b\x1b\x9f\x37\xd6\x9e\xc7\x4d\x72\x7f\xc1\x0b\x76\x5f\xa0\xa9\x3e\xea\x6f\xac\x7b\x34\xf4\xcb\x3a\x6e\xfa\xaa\x83\xd1\xfc\xdf\xc0\x45\x16\x46\x43\xd6\x5a\x5a\x89\x19\x45\x61\xa9\x1e\x7a\x5f\x92\x5c\x48\x76\x98\xf1\xf9\xc0\x16\x65\xaf\xcb\xd5\x83\x9c\xf4\xb0\x79\x98\x6d\x90\x24\xde\x45\x52\x84\x90\x4b\x1f\xd9\xe7\x66\xac\x73\xdb\xbb\xd4\xb5\x08\x2b\x1f\xe3\x1c\x4a\x90\xff\xc9\x2e\xb5\x7a\x9a\x57\xed\x94\xd0\xaa\xaa\xa2\x88\xc4\xfe\x4d\x5b\xaa\xb6\x11\xa2\x6e\x0e\x42\x51\xd7\x31\x80\xda\xba\x4d\xdb\xfb\x95\x00\x66\x88\xc6\x4f\x9e\x02\xb8\x46\x3c\xce\x00\x5c\x49\x02\xf1\x04\xc0\x1d\xe2\xf1\x0a\xc0\xcd\x11\x08\x99\x66\x99\x71\xf2\x63\x6e\xce\xab\x9b\xbf\xa1\xba\xa3\x1f\xea\x14\x65\x48\x9d\x91\xb2\x24\x2b\x34\x9a\x1a\x3c\x37\x37\xe2\x21\x46\x3c\x79\xa7\xae\xc2\x13\x0e\x2b\x99\xac\x34\x17\x8c\xcf\x54\xd9\x8f\xe4\x06\x19\x8f\x23\xc6\x57\x01\xe2\xb0\xf1\x02\x80\x28\xac\xac\x53\x0c\x5b\xf0\x03\xf9\x2c\x50\x65\x7a\xc3\x4d\xd5\x28\x9f\xe7\xee\x25\x95\xcb\x19\x5b\x30\x56\x31\xb1\xce\x66\x76\x9c\xed\xfa\xee\x09\x0c\x6d\xf0\xee\xe8\x79\x47\x49\xba\x1f\x0b\xa2\xce\x53\x5a\x09\xdd\x9c\x33\xe3\xbe\xc0\xba\x68\xfa\xa9\x2c\x93\x5d\x51\x5d\xe5\xb4\x4c\x18\x7d\xb1\xc1\xf4\x8a\x28\xb6\x34\x16\x90\xa8\xde\x83\x59\x73\x21\x13\x21\x21\x91\x49\x56\x2a\x77\x2f\x6d\x9c\x66\x5b\x93\x6d\xd3\x28\x1a\xf1\x56\x7b\x66\x27\x89\x22\x75\x20\xcc\xe6\xc6\x1a\xaa\xd5\xc9\xb4\xdd\x65\xe1\x43\x4d\x62\xa4\xad\x90\xcd\x5b\xe0\x34\x7e\x0d\x1a\xb2\xd6\x2e\x05\x09\x48\xdb\xf9\xf5\x4d\xec\x23\x99\xa1\xd0\xb3\x65\x50\xa3\x05\x25\x85\x25\x9e\x53\x82\xdc\xb8\xa4\x20\xab\x28\x6a\x9f\xaf\x8f\xa6\xf0\xde\xbb\xaa\x20\x41\x5e\x06\x92\x3a\x17\x39\xfd\x48\x56\x49\xf0\x3a\x2f\xcb\x9c\x5e\x05\xaa\xa6\x40\xd7\x1b\x84\xca\x2d\x46\xa0\xf4\x3e\xc9\x3d\xdd\x7c\xe3\xa5\x64\xb7\x2b\x6e\x3e\xb0\x21\x47\x15\x9e\x1b\x0a\xc1\xfe\xfc\xfe\xed\x9b\xb8\x39\x6f\xa3\x6a\x52\xc0\xf1\x81\x13\x48\xa1\x50\xfe\x1f\xfd\xd3\x4a\xdb\xaa\xae\xef\xa8\x43\x88\x7d\xed\x1a\x12\xed\xd9\xb7\x54\xdf\x9b\x4a\xb1\x9c\x79\x2e\x06\x7c\x9b\xdc\x86\x80\xd2\xb9\x97\x9c\xe2\x98\x02\x30\xd7\xd7\xc8\xd3\xf6\xc5\x6b\xaa\xb7\x02\xb1\x44\xf1\xa4\xf1\xff\x00\x64\x81\x66\x5b\x68\x46\xf1\xde\x98\x1c\x9c\x04\x5e\x6b\x7a\x21\x45\xa3\x91\x72\x0f\x60\x93\xe5\xec\x40\x8e\xe8\x3c\x8f\xf7\x35\x24\x70\x8f\x8b\x82\x7d\x7a\xb9\xdd\xe9\xe3\x37\x90\x5a\xa5\x60\xc7\x91\x94\x4f\x07\x3c\x32\xa1\x4f\xe6\x75\x07\xed\xe7\x10\x96\x1d\x25\x7a\xbe\x8e\x89\x75\xdb\xe3\x13\x93\x41\x02\x43\x7a\x2b\xc5\xf3\x62\xe2\xcf\xfe\x7b\x53\x6a\x60\x8d\x44\x51\xb7\x0e\x1f\x44\xde\x5a\x53\x27\x38\x12\xb7\x7b\x95\x68\x32\xe1\xba\xd8\x7c\x41\xca\xd9\xc8\x11\x93\xf1\xde\x70\x94\x0f\x0e\xa2\x0e\xce\xdd\xa9\xfb\xe6\x8e\x7c\xed\xd3\x87\x00\x32\x44\x13\x1a\x73\xe3\x9e\xe2\xd1\x14\x40\x8c\x62\x99\x94\x03\xa8\xbd\x17\x56\x2a\x07\x96\x5b\xcf\xa0\x7e\x0e\x0b\xa7\xe7\xad\x12\xdc\x71\x2e\xc2\x12\x0c\xf7\x22\x17\x05\x49\xf3\x58\x80\x64\xcd\xf8\x16\x8b\x38\x7c\xfd\xfa\xf5\xeb\xe0\x1b\x18\xfc\xfd\xef\x7f\xff\x3b\x0c\x36\xe9\x76\x1b\x60\x29\x1b\xf4\x6b\x08\xcb\x1d\xa6\xa1\x72\x7c\x05\xb5\x4a\x48\x56\xa3\x2e\x33\x7d\x8a\x81\xd1\x0e\xcd\x44\x82\x51\xf9\x55\x8c\xe6\xf3\x27\xf5\x29\xd6\x9e\x29\x43\x87\x4b\x73\xdc\xe6\x3b\x60\x20\x60\x4f\x16\x52\x18\xc1\xab\x9c\x5e\xa1\xe9\x12\x85\xe6\x39\x84\xf2\x43\x49\x3c\xc3\xbc\xb3\x25\x0a\xfd\x04\x9d\x65\x4d\x44\xb6\x79\xcd\x38\x41\xe7\x4b\x14\xba\x37\xfd\x91\x13\x95\x80\x1e\x2e\x51\x68\x9e\xf5\x87\x1d\x2b\x0a\xf4\x78\x89\x42\xf9\x60\xf3\xe2\xd5\x0d\x7a\xa2\x72\xe2\xd5\x8d\x4e\x54\xe6\xf1\xe8\xe9\x12\x85\xea\x29\xac\x63\x76\x38\xc4\x0c\xed\xeb\x2f\xb2\x1e\xf1\x4f\x7a\x25\x0d\x9a\xab\x63\xda\xc3\x41\xfe\x89\xc3\x61\xfa\x40\xa6\x4e\x1f\x88\x54\x2e\x41\x12\x45\x42\xa6\x0f\xb1\xe8\xba\x2e\xb3\x2f\x8d\x26\xbe\x3d\x94\xe7\x78\xe1\x70\xd0\x9b\xa6\x6c\xa2\xff\x59\xb8\xcf\x76\x87\x36\x7c\x09\xed\xd8\x03\x43\x86\xda\x96\x62\x6a\xa7\x35\x6c\xe0\x08\x21\x66\xfd\x51\xb8\x5a\x2c\x8d\xc6\x68\x32\xc3\xcf\x6d\xd6\x19\x1e\x8f\x81\x24\x0f\xc6\xdf\x84\x80\x74\x81\x97\xe0\x70\x18\xf1\x98\x2c\xe4\xf3\x52\xee\x0c\xf2\x1f\x34\x75\xd9\x31\xd6\x2d\xd1\xe0\x18\xe7\xee\x09\x4b\xec\x96\x89\x39\x29\x85\xde\x22\xf7\x31\xcf\x8a\x72\x50\xce\xf4\x6c\x22\x07\xe5\x46\xef\x72\xda\xa0\xa4\xd8\x7c\x1f\x94\x63\xcb\xe6\xfb\xa0\x58\x5c\x38\x1b\xd3\x81\x53\x86\x07\xda\x3b\x96\xb3\x1b\x9c\x93\x34\x7c\x10\x8e\x49\x0d\xd9\xdd\xb2\x9b\x3b\x1a\xf1\x14\xa4\xa4\x86\xf9\xb0\x27\x6d\xc9\x5e\xbe\x23\x57\x2f\x3f\xef\xe2\xf0\xff\x17\x8e\xc5\x38\x8c\x7f\xfc\xf1\xc1\xe1\xc7\x1f\xe7\x87\xdf\x1c\x7e\x0b\x42\x18\xe6\x21\x48\x04\x29\x45\x4c\x80\x14\xa8\x06\x6b\xd1\xe6\x11\x4d\x93\x56\xfa\x50\x2d\x57\xb7\x77\xd7\xda\x40\xdc\x9f\xaa\x4a\x94\x41\xe4\x04\xde\xd7\x3d\x1f\xa4\xc2\x87\x43\xf8\x20\x84\x14\x85\x21\xe4\xf2\x87\xa1\xc6\x85\x74\xf8\x9b\x10\xcc\x94\x0d\x02\x53\xbe\x3b\x84\xed\x16\x03\x50\x34\x6f\x13\xc8\x80\x15\x65\xbd\xc2\x73\x67\x1c\xae\xaa\xc8\x95\x21\x95\x2b\x94\x77\xaa\xc8\x01\x80\xfb\x1d\x16\x1b\x65\xaf\x23\x60\x49\x30\xcf\x36\x69\x38\x57\x16\x8f\xf3\x30\x4c\x29\xdc\xe0\x72\x93\x86\xbf\x91\x29\x5c\xa6\xf0\xba\x86\xc5\xe0\xd6\x62\x2b\x52\x2a\x20\x5d\x95\xd2\xff\xc8\x1a\xe4\x10\xd5\xa8\x67\x8d\xf0\x14\xce\x95\x09\x7c\x14\xc5\x6c\x8c\x4c\x9b\x1e\x0a\x50\xd9\x8f\xb1\x96\xa9\xc2\xdf\xc8\xac\xdc\x64\xd5\x9d\xf1\xb2\x72\xd9\xc1\x31\x07\x90\xd5\xa7\xdc\x03\xb5\xa5\x0b\xe2\xa9\x1c\xde\x91\x35\xe1\x84\x66\x56\xef\xa0\xae\xa5\x6c\x70\x49\xef\x89\xe0\x92\x10\xc9\x70\x2a\x47\x9d\x79\x49\x56\xc1\xfd\xa0\xac\x76\x84\xc7\xa0\x95\x43\x59\x32\xad\x42\xef\x2a\xc1\x1d\x3d\x4a\xdf\x51\x89\xf2\x75\x56\x70\xbf\x6a\x68\xfe\xb5\x1a\x9a\xff\x0b\x55\x1a\x15\xa2\xf1\xc3\xa7\xfa\x3a\x63\x05\x60\x81\x68\x3c\x3d\x9f\xe8\x8b\x8c\x05\x80\x6b\xa5\x23\x05\x70\x85\x78\xbc\x06\x50\x5d\xc8\x78\xf6\x10\xc0\x0d\xe2\xf1\x0e\xc0\xed\x31\x1d\x87\x2f\x5c\xcd\x3a\xaa\x8e\x2d\xde\xa1\xbd\x71\xac\xc8\xf1\x27\xf7\xac\x9d\x2f\x2f\x96\xc6\x53\xaa\x72\xf3\x8a\xfa\x06\x0e\x1c\x51\xe7\x80\x91\x21\xee\x2b\x04\xa0\x53\x90\x74\x9c\x66\x59\xfe\x06\xb0\x84\x51\xed\x40\x56\xc2\xca\x38\x38\x84\xb9\x71\x9e\xd5\xe5\x42\x54\x8f\x7c\x5e\xc4\x2b\x4e\xa0\xf9\xbe\xc0\x4b\x98\x83\xba\xad\x6d\x31\x1a\x01\xe3\xc8\x0f\x39\xff\xa7\x75\x63\x72\x64\xb5\x27\x78\xb5\x1a\x52\x9e\x38\xc7\x63\x2d\xc9\x4f\x8d\x78\x87\x39\xa1\x5a\x07\xa4\x05\xc1\x4a\x83\x01\x16\xbe\x56\x28\x43\x3c\xe9\x79\x33\x9e\x51\x94\xc7\x6d\xff\x82\xd6\x45\xa2\xae\x35\x65\xc6\x59\x27\x86\x3f\x95\x65\x5a\x41\x5b\x5f\x5a\xc0\xbe\x6f\xe4\xac\x96\x38\x35\xa2\x4e\x2a\x32\xb2\x99\xa9\x73\x41\x96\x72\xcb\x72\x5f\x51\x98\x84\xe3\x78\x02\x37\x1d\xd9\xb3\xc9\x6e\x9d\xa1\x72\xfc\x49\x29\x56\xcc\x9d\xfe\xb6\x9f\x6d\x0d\x1d\xb8\xb3\xa6\xcf\xad\xf6\xd7\x3e\x9d\x73\x37\x83\x94\xc5\x6f\x16\xaf\x21\x06\x70\x7d\xaa\x3f\x3b\xd7\x03\xe5\x91\x92\xf0\x78\x0d\x77\xf6\xb2\xbc\xdb\x6d\xcc\xd4\xcf\x1b\xbc\x35\x58\x92\x9a\x2f\xbe\xaa\xc2\x64\x28\x77\x8a\x97\xd8\xc2\x09\x5c\x03\xb8\xf6\x7d\xff\x0e\x49\xfd\x7e\x05\x5b\xbc\x5b\x90\xa5\xe7\x03\x73\xcb\xae\xfb\x1e\x90\x89\xf1\x5c\x5c\x51\xd7\x77\xbb\xe4\x5a\x3d\x68\x52\xde\xae\x65\x8e\x69\x23\xe5\x9b\xd4\xdb\xfa\xa3\xab\x6b\xaa\x70\xe5\x77\x5a\x63\x79\xda\x3d\xe7\x80\x26\x6f\xe6\xf7\x52\xb3\x5c\xc0\xb9\x1b\x23\x09\xa3\x46\x15\x2a\x85\x79\xe8\xb5\x67\x07\x3a\xac\x7d\x6c\x60\x27\x09\xe6\x12\x11\x48\x8e\x21\x87\x97\xd5\x22\x87\xcc\xef\x3e\x39\x0c\xd5\x35\x09\xcf\x37\x75\x03\xee\x21\xb0\xf9\xda\xc3\xa6\x2b\xc7\x3b\xd2\xcf\xef\xfa\x03\xfd\x6f\xed\x0e\x35\xbd\x29\xd4\xad\xab\x7e\x3f\x9a\x3d\xb6\xaf\x48\x6a\x74\x26\x57\x44\xfc\x40\x49\x99\xe1\x1d\x59\xfd\x17\xb9\x29\x5f\xe3\x9d\x87\x2e\xee\x9e\xc9\xc0\xee\x47\x16\x74\x09\xd9\x6d\x95\xff\x17\xb9\x89\x39\x98\x89\x05\x5b\xaa\x4b\xa1\xf2\x01\xf8\xfa\x4b\x39\x64\xb6\x9c\xe5\x4a\x4b\xe9\xb9\xd0\xcf\xd5\x76\x77\x17\x6d\x59\x33\xd0\x30\xb4\x0e\x6e\xdb\x6a\x33\x8e\x46\x23\x1a\x45\xb4\xad\x36\xd3\x17\x58\x7a\x0b\x5a\x5d\x68\xd9\x7b\x3d\xd4\x34\x9f\x2d\x21\x46\xb9\xbb\xa4\x1a\x13\x30\x8b\xf1\xe1\xa0\x98\x0b\x85\x34\x63\xa4\x4c\x8d\xa1\x18\x23\xdc\xf8\xbb\x1e\x52\x18\x6d\xbf\x8a\x01\x74\x1e\xf6\x7e\x76\x24\x8e\x1d\xc9\x72\x5c\xd8\x62\xfe\x75\x92\x1c\xc5\x2a\xe4\xc5\x14\x00\xc8\x6c\x2c\x8e\x90\x7c\xc6\x99\xb8\xbf\xe3\x6c\x97\x06\x3f\x56\x67\x93\xc9\x65\x28\x87\xd3\xad\x27\x37\x87\xa6\xfe\x8d\x14\xfc\x15\x11\x49\xf2\xc3\x21\xce\x51\x9b\x48\x7b\x11\x49\x7e\xde\xf0\xfd\xc1\x42\xac\x02\x7c\xe8\xd0\x23\xcc\xc4\x11\x29\xd5\x93\x8e\x3c\xc2\x5c\xe4\x11\xe6\x22\x8f\x30\x17\x79\x84\x99\x78\x23\x3b\x0d\xb4\x33\x03\x33\x1d\x64\x64\xa3\x13\x55\x6c\x11\x66\x3c\x4b\x48\xee\x89\xd9\x10\x21\x37\x03\x97\x72\xfa\x52\x59\xc3\xe7\xf5\xdd\xd5\x6a\x0d\x99\x53\xef\x76\xc3\x52\xd0\x63\x61\x29\xe8\xed\x61\x29\xa8\x1f\x96\x42\x85\xa4\xb8\x2d\x3a\x84\x79\xd4\xee\x92\xb7\xbd\x00\x09\x42\x07\x48\x38\x16\xd8\x80\x42\xd1\x0d\x6c\x40\xbf\x32\xb0\x41\xdf\xe9\x3e\xda\x7e\x49\x50\x03\x3f\x54\x81\x71\xfe\x5c\x6b\xe3\x85\x2f\x8a\x28\x70\x22\x72\xc0\xf6\xe7\x45\x0e\x38\xe9\x0f\x5b\xf8\xfe\xb0\xa9\xd2\x2c\x68\xe7\xd6\xda\x07\x76\xd5\x0e\xb2\xe2\x79\xbe\xb6\xec\xcb\xea\x88\xdb\x6a\xd2\x75\x5b\xed\x39\xc6\x56\x73\x6f\xdc\x63\x73\xb2\x4e\x69\xe3\xae\x9a\xd6\xf1\xea\x84\xbb\x6a\xd1\x76\x57\xdd\x76\x29\xed\xcd\x9b\x9f\x0c\xdb\x87\x2b\x2a\x26\x86\xa8\x6b\x78\x8d\x6e\x3c\xc2\x73\xfd\xb5\x4a\x79\xa5\x92\x37\x1a\x79\x29\x2a\x4d\x1f\x4b\x9a\xa0\x74\xf4\x15\x80\x7d\xfe\x68\x8f\x2b\xb1\x61\x3c\x6d\x49\xbb\xea\x30\x26\x11\x37\x3b\xa6\xfc\x6f\xdc\xa8\xcb\xef\x67\x00\x5e\xb2\x62\x95\xee\xd7\x8c\x8a\xbf\x91\xfc\x6a\x23\xd2\x50\xa6\x84\x75\x5d\x83\x23\x4a\x19\x5d\xbb\x52\xc9\xc8\xac\x4a\x21\x63\xf9\xf7\x1c\xd1\xf9\x82\xdb\x2c\x5c\x65\x58\xa6\x2e\xc5\xbb\x06\x4a\xb6\x38\x2f\xe6\xf8\xd4\x79\x81\xc9\x54\xc3\x7e\x2e\x73\x26\xb0\x77\x3e\xf6\xd3\xdc\x73\xf4\x2b\x89\x6b\x73\x1f\x0d\x80\xf4\x67\x56\xa0\x4f\x17\xcc\xdd\xaa\x2a\x69\x9c\x07\x81\xb8\x04\x71\x71\x32\x3e\x9d\x3e\x9b\x8a\xa2\xfe\xbd\x44\x0f\xa4\x9f\x36\x79\xb6\x39\x1c\x14\x1f\xf5\x82\xad\x88\x7c\xcc\x36\x98\xcb\x67\x75\x42\xa4\xce\x84\xa4\x38\xd9\x78\x5d\x76\xb5\x58\x69\x6e\x41\xac\xfb\x08\xc7\x0f\x48\x59\x74\x41\x13\xc1\xbe\x63\x9f\xec\x0d\x6b\x75\xda\x9d\xdb\x52\xb9\xd9\x64\x59\x3f\x9b\xb7\xf7\x4d\x95\xb8\x61\xec\xd8\xa8\xeb\x9a\x52\x95\x99\x5b\xc3\xa0\xa6\x49\x5e\xbe\xbc\x26\x54\x32\x58\xa8\x77\x04\x7f\x0a\x04\xf4\x36\x10\xb8\x00\x7f\x88\x1e\x0e\x8d\x00\xd4\xa8\xdb\x07\x25\x6d\x61\x79\x26\xbe\x10\x27\x61\x20\xeb\x72\x70\xb8\x3d\x6b\xe3\x9d\xba\x37\x1b\x8d\xd5\x80\xaa\xd3\xf6\xaf\xae\xa1\x9c\x66\xa7\x6e\x33\x6b\x5d\x52\x91\x15\x31\x7f\x25\xda\x5f\xe2\xec\x63\xb9\xc3\x19\x49\x9f\x42\x81\x2f\xd3\x67\x90\x50\x41\x78\x3a\x3d\x87\xe5\x26\x5f\x8b\x74\xfa\x18\x66\x82\x17\xe9\xf4\x09\xc4\x85\x48\xa7\x4f\x61\xb8\xc3\x55\x49\x1e\x5c\x72\x82\x3f\x86\xe9\xf4\x19\x0c\x33\xbc\x2b\x83\x82\x65\x1f\xc3\xf4\x6c\x02\x49\x99\xa5\x67\x4f\xa0\xae\xf5\xfc\x4c\xe6\xbf\x22\x41\xb5\x0b\xd3\xf3\x73\xf3\xb2\x62\x9f\x68\x98\x9e\x3f\x84\x84\xae\xd2\xf3\x47\x70\xc3\xb6\x24\x3d\x7f\x0c\x0b\xb2\x16\xe9\xf9\x13\x58\xed\xd2\xf3\xa7\x90\x2b\xe2\x70\xfe\x0c\xca\xec\xe9\xc3\x09\xcc\x69\x49\xb8\x48\x1f\x3e\x32\x22\x41\xfa\xf0\x31\xcc\xd8\x76\x8b\xe9\x2a\x7d\x36\x85\xa1\x2c\x1e\x98\x84\x50\xa5\xa8\x2a\xbc\xa4\x73\x75\xb5\x7d\x87\x57\xc1\x7f\x84\xe9\x74\xf2\xd8\xbd\x8e\xe5\xeb\x13\xf7\x7a\x5f\xbe\x3e\x73\xaf\x49\x98\x4e\xa7\x13\xf7\xfa\x40\xbe\x4e\xd5\xab\x19\xf6\xf4\xe1\x43\x18\x96\x19\x67\x45\xe1\x52\x1e\xc1\x70\x7b\x23\xdb\xde\x55\x52\x48\x4a\xa7\x4f\xcf\x74\x0a\x2e\xb2\xaa\xc0\x82\xa9\xb4\x73\x18\xce\xe4\xff\x63\x18\x22\xf9\xff\x04\x86\x50\xfe\x3f\x85\xa1\xec\xc4\xd3\x67\x30\x94\xad\x3f\x9b\xc0\x50\x36\x2b\x07\xf5\xff\x97\xff\x67\x30\x5c\x84\xe9\x99\x04\xff\x8f\x3f\x86\xe9\xd9\xd9\x04\x86\x4b\xf9\x3f\x85\xe1\x3d\xf9\x7f\x56\x2b\x8d\xbc\xba\xb9\x25\x67\x5a\x5f\x44\x2e\x15\x58\x7e\xac\xce\xa6\xe4\x49\x28\x27\x57\x3e\x9f\x9f\x3d\x0a\xd5\xcc\xca\xe7\xc9\x79\x28\x27\x5b\x3d\x4f\x9f\x2a\x30\x66\x42\xcd\xbf\xdc\x7f\x38\x53\x8f\x5a\x84\x90\x65\x14\x32\x48\x2c\x50\xf8\x20\x1f\x24\x36\x48\x3c\xd0\x98\x28\x31\x49\x4b\x56\x1a\x29\x32\x89\x12\x0a\x37\x2e\x31\x97\xcf\xbb\x2b\x39\xdb\xe7\x70\x77\xb5\xa2\x12\x25\x72\x5a\x9a\x19\x56\xd3\xbb\x95\x53\xab\x8d\x19\x72\xf4\xec\xc9\x2c\x7f\x3e\x3d\x3b\x9f\xe5\xea\xba\xbd\xf1\x94\xb3\xe6\x6c\xfb\xc2\xac\xdb\x38\x07\x4b\x94\xdf\x3f\x3f\x73\x6a\xd2\x1c\x3d\x7c\x3a\xcb\x9f\x3f\x7a\x6a\x0a\xe5\xf7\x1f\x3e\x5d\xa2\xdc\xd4\x38\x95\x15\xda\xfa\xc2\x75\x38\xce\x97\x28\x1f\x4f\xa7\x53\xf3\x7d\x22\xbf\x4f\xec\x77\x33\xff\x26\xd7\xb3\xc7\x86\xd7\xd7\x11\xdc\x4a\x24\x12\xb5\x8b\x58\xe3\x8b\x5c\x3b\x8d\xc7\x0b\xbe\xc8\x97\xb6\xc9\x6b\xeb\x4d\x9e\x01\xbe\xa8\x96\x88\x2d\xaa\xe5\xcf\x3b\x7f\xd3\x2b\xbb\x7f\x48\x4c\x19\xdf\xe2\x42\x9d\x11\xeb\xc7\xf6\x11\xef\xd9\xe0\x11\xef\xb9\x3d\xe2\xad\x6d\x28\x9b\xc1\x83\x5b\xaf\x31\xa5\x78\x8d\x85\x3a\xb8\x87\x52\x00\x80\x34\x7e\xf4\x18\x80\x5a\x32\xb7\x7e\x31\x0e\xd9\x31\xb9\x27\x6f\x5d\x85\x51\x7c\x9b\x24\xc6\x58\x08\x9e\x5f\x56\x82\x94\x83\xd7\x77\x47\x23\x73\x4b\xc6\x7d\xac\xba\xf5\x68\x5e\x5e\xf9\xbf\x6f\x14\xe4\x9a\x77\x94\x0d\x34\x69\x79\xf9\x8e\xe0\x4c\x34\xcc\xd9\xe0\x2d\x5e\xd9\xe2\x15\x11\x2f\xbc\xeb\xea\xed\x8b\xbb\x4a\x0d\xdd\x8b\x45\xd0\x38\xe4\x50\x1b\x09\xe9\x7b\x94\x6f\xba\x6d\x6b\xd1\xbe\x96\x08\xc8\xd7\xb1\x1c\x32\xe8\xfa\xfd\xb0\xdb\x99\x82\x80\x8d\x9d\x60\x2e\x9f\x64\xa8\xc7\x87\x39\x57\x90\xea\x02\x3c\x94\x00\x57\x5a\x6e\xb8\xb2\xc2\x60\xbe\x8e\xab\x98\x99\xbb\xfc\x3b\xe5\xe5\x82\xc5\x19\xa4\x7e\xf8\xd9\x8e\xac\xb9\x83\xca\x06\xae\x74\x62\xe6\xce\xce\x5d\x56\x03\xb8\xb3\x0c\x2b\x72\x4f\x87\x03\x85\x3b\x23\x25\x99\x7f\x7d\xb6\x2e\x53\x8d\xc0\xd1\x62\x00\x07\x87\xac\x98\x13\x12\x9b\x0a\xa0\x69\xb4\x69\x4f\x4a\xa3\xa6\x91\x1e\x1c\x6c\x21\x22\xa5\xb0\xe4\x98\x83\x00\x0d\x84\x0d\x3a\x9e\x23\x6e\x5a\x55\x15\x82\x99\x91\x75\x36\x51\x14\xdf\xda\xfa\xc6\x7a\x65\xdb\x25\x3f\xbc\x79\xff\xfb\x6f\x5f\x5e\xb4\x04\x2a\x25\xe0\xcd\x4f\x7c\x8b\x41\x2a\x47\xdb\x4d\x8e\xa2\xa1\xd4\x58\xcd\x60\x19\xef\x40\x14\xc5\xeb\x7e\xa7\xe4\x94\x74\x90\x3a\x96\x62\xba\x32\x1f\xe4\x31\x81\x3b\x48\xe1\xda\xa2\xf0\x6c\x85\x76\x66\x05\xc5\x7a\x10\xea\x9c\xcd\xe6\x55\x93\x49\xbd\xcc\x1a\x87\xea\x55\x14\x75\x16\xc5\x0a\xcc\x57\xb7\x2d\x84\xb5\x5a\x08\x69\x11\xaf\xd4\x63\x13\xa4\x43\x23\x7a\x72\xe1\xf0\xca\x24\xbc\x60\xb4\xac\xb6\x44\x2f\xc2\x63\x9d\xd2\x0e\x33\x0c\xda\x77\x6a\x9a\x77\xab\x4e\x2e\x54\x00\x05\x73\x8f\x15\x19\xea\x64\xbc\x18\xae\xdc\xbb\xf2\x60\xc1\x09\x05\x69\x3f\xad\xa9\xd2\xab\x09\xc0\xaf\x03\x09\x6d\x40\x42\x1d\x48\x4e\x8d\xd6\xf4\x46\x45\x2a\x69\x75\x2b\x8a\x44\xf2\xc2\x3c\x7b\x4a\xe7\x76\xa6\x96\xac\x47\xa2\xa8\xe9\x82\x6a\xb8\xef\x96\x44\x32\xdd\x86\x47\x6d\x19\xd8\x78\x3d\xf3\xfd\xba\x35\xe6\x08\x83\xc4\x4d\x6d\x4f\xdf\x60\x81\x7d\xcf\x6f\xb7\x94\x11\x1b\x42\x7d\xb7\x70\x9e\xd0\xc3\x19\x13\x46\x1c\x53\xc2\xa4\x7c\x37\x28\x0f\xb9\x77\xcc\x31\xdf\xd7\x29\x85\x0c\x2d\x3c\xdf\x6c\x72\x03\x6b\x6f\x83\x86\xd6\x8b\x28\xca\x62\x01\x9c\xb6\xb4\xe9\xb4\x5e\x79\x92\x97\x77\x86\xb1\xda\x0b\xe3\x7e\xa7\x3d\x68\xa5\xb9\xf5\x72\x92\x72\x49\x1b\xad\x72\x3c\x15\xb5\x5c\x7f\x52\x20\x66\xcd\x50\x76\x46\xe3\xe5\x2c\x8b\xa3\x28\x16\x72\x83\x36\x32\xd8\x2a\xde\x7b\x03\x4c\x09\xf4\x86\x27\x6b\xd4\xce\xfb\xda\x36\x48\x81\xf1\xe5\x95\x70\x52\xb2\xe2\x9a\xc4\xd6\x1c\x66\xb1\x54\x1a\x81\xae\xa3\x46\x67\x26\xa1\x8b\x29\x28\x5a\x7d\x0d\x53\x17\xbb\xf4\x08\x1a\xa9\x5b\x4e\xc7\x10\x32\xef\x62\xe6\xe8\x88\x44\x0a\x90\x68\x57\x31\x03\x59\xb9\x86\x1a\x51\xd1\x31\x67\x9d\x8e\x6b\x37\x89\xfd\x66\x54\xf4\x36\x13\xdf\x77\x62\x3b\xae\xd6\x88\x95\x2a\xf9\x62\xb2\x4c\x1b\x7f\x85\x36\x7d\x1c\xea\xc8\x27\x65\xf0\x89\x70\x12\x28\x83\x01\x1a\x7c\xda\x10\x1a\x68\xb7\x6d\x39\xbd\xd2\x2e\x42\xdd\x44\x3b\x9d\xa5\x0a\x83\xa2\x4d\x0c\x44\xa2\x7c\x3f\xa8\xba\x95\x19\x7a\xed\xfb\x44\xd9\x34\xc0\x7c\xe7\xc5\x9b\x6b\x84\xb9\x26\x9a\xfc\xec\x75\x3c\x1a\x91\x28\x92\xcc\xc7\xc7\x9c\xae\x60\x68\x1d\x22\x04\x6c\x1d\x84\x63\x32\x0e\x83\x1d\x2e\x4b\xb2\x0a\x04\x0b\x94\xbb\x40\x1e\x7c\xc2\xda\xac\xb9\xeb\x7f\xd1\xfa\xd9\x78\xc3\x56\x24\x09\xfe\xce\xaa\x60\x8b\x6f\x02\x4a\x74\x61\xc9\x9c\xdd\xf3\x9c\xa5\xde\x53\x01\xbb\x28\x53\x31\xbc\xb6\x44\x6c\x98\xca\x96\x31\x7a\x4d\xb8\xd0\x40\x70\x17\x97\x83\x9c\x0a\x16\x60\xe7\xe2\x31\xb4\x27\x1c\x6d\x8f\xb2\x47\xbd\xb6\x1c\x71\x22\xab\x07\x5d\x6b\x67\x1b\x77\xab\x68\x28\xb2\x87\xab\x29\x8a\x8c\x53\x0e\x95\xe2\x7a\x5f\x03\x58\xfd\x62\x0d\x6c\x4d\xf8\x92\x7e\x1b\xe5\x2f\xd6\x86\x51\x8b\xee\x06\xdb\x91\x38\x93\x1b\x7c\x3e\x1c\xb0\x7b\xaa\xdc\x93\x73\x68\x16\x7e\x8f\xb5\xc5\x3b\xa3\xc5\x4d\x80\x1b\x97\xb8\x82\x39\x5c\xb8\x67\xad\xe4\x6f\x88\x08\xca\x6a\xb7\x63\x5c\x90\x95\xc1\x9f\xaa\x14\x41\xae\xc3\xd7\x04\x38\x50\xb0\x85\x81\xdf\x3b\x89\x44\x16\x22\x01\x96\xcb\xaa\x28\x42\x00\x5f\xc7\xb6\x5f\x63\xdb\xad\xb1\xed\xd5\x73\x24\x85\x77\xc9\x91\xdf\xd7\xfe\x73\x75\xef\x4c\xd3\xe5\x70\x3b\x50\x87\x97\x73\x4d\xed\x08\x0f\xfe\xf4\xf6\x45\x62\xd6\xc8\x46\x49\x6e\xb8\x59\xe5\xb2\x8a\x9c\x94\x30\x08\x5d\xbb\xe3\xb0\x55\x63\xa9\xa2\x1e\x85\x4d\xff\x42\x57\x7b\xa9\x47\x9f\x61\xaa\x57\x8d\xe2\xbb\x4a\x72\x4f\x82\xed\x27\x96\xd3\x60\x5b\x15\x22\xdf\x15\xc4\x5b\x20\xea\x22\x67\xa0\x16\x89\x63\xd3\x42\x00\x39\xb2\x9d\x9a\xbf\x4f\x54\xe8\x96\xf4\x7d\x62\x23\xe0\xc0\xa1\xc9\x8b\x39\x7a\x9f\xbc\xf7\x3a\x6a\xa3\x22\xb8\x8a\x70\x6a\x73\xcf\xab\xb4\x9c\xbd\x56\xfa\xb4\xc2\xcd\xf9\x09\xd0\x32\x4a\x02\x85\xa1\xc7\x61\x58\x34\xe0\xf0\x71\xf9\x97\x02\x88\x71\x32\x54\x2c\x26\xcb\x19\x45\xd9\x90\x13\x93\xc3\x41\xed\x4f\x99\x12\xbc\xa3\x28\x54\x4e\xf1\x11\x32\x09\xda\xfb\x6a\xe6\xf9\x9b\x4e\xc3\x15\x16\x38\x34\x66\x15\xda\xb3\x17\xd3\xce\xbe\x38\x74\x21\x63\x52\xea\x22\xbc\xbf\x33\xd1\x5a\x95\xc9\x82\xa3\xda\xdb\x7e\x2c\x31\x63\xfa\xdb\xf3\x31\xe8\x7b\x88\x72\xb1\xda\xc8\x82\x2e\xe5\xa6\xbd\xa0\x4b\xf5\x0c\xa0\xa8\xe1\xde\xdf\x17\x6e\x3c\x9d\x7a\xd3\xaf\xc6\x91\x4b\x09\x8d\xcc\x9e\x3a\x49\x3e\xb9\xcc\xa9\xe4\x72\xa0\xb3\xe5\x4e\x3d\x2b\x6f\xf7\x55\x1b\x16\x69\xf4\x22\x89\xf7\xe6\x72\x28\x57\xc8\xdf\xb3\xa2\xc8\xe9\x55\x6a\x7c\x8a\x9b\x57\x2f\x0f\xdb\xf9\x59\xdc\x5b\x93\xc3\x1e\xd7\x7c\x60\xa6\x2f\x9d\x14\x9b\xd3\x33\xd8\xbb\x6e\xc9\xed\x9e\x1e\x5c\x32\xf6\x54\xfd\x87\x4e\x34\xf7\x1c\x6c\x5d\x36\x8c\x98\xd5\xad\x30\xb4\xaf\x61\x8e\x26\x6a\xbb\x70\x50\x9b\xe5\xcf\xed\xd2\x50\xba\x9c\xbd\xbe\x89\x8a\x17\xf9\x12\x96\xa8\x72\x19\x61\x81\x2a\xc5\xac\x2b\x91\xc9\x60\x57\xe9\x21\x92\x2e\x99\x21\x3f\x0d\xae\x91\x58\x64\xda\x11\xfa\xd0\xd5\x99\xb5\x12\xde\x3d\x1f\x25\xa1\x5a\x8b\xda\x37\xba\x13\x66\x10\x42\xcd\xaa\xb7\xcc\xfb\x7f\x0d\x3b\xc8\x5f\xc3\xf0\xc3\xc6\x5f\x48\xf7\x9c\xeb\x95\xf0\x5e\xf0\x89\xe3\xdd\x4e\x52\xf4\x7b\xe1\x98\xcb\x84\xbc\x0c\xb4\x93\x6c\x99\x28\x39\x02\xe3\x92\x4b\x66\xf0\x07\x22\xf3\x5e\x56\x22\xc8\x85\xe3\x1f\xd6\xac\x52\x77\xab\x95\x6f\x73\x25\x1a\x78\xbc\xc6\x3d\xe5\xfc\xe7\x5e\x68\xe4\x32\xb6\xc8\x96\xea\x50\x74\xd6\xbc\xae\x9d\xb1\x9e\xc7\xc8\x5e\x49\x59\xc0\x63\x64\xa9\x32\xf0\xdd\x3b\x53\xec\x8d\xb6\xa5\x6f\xec\xdd\xf2\x86\x37\x67\xf3\x3f\xa7\x4c\x1d\x4e\x95\x1f\xf3\x1d\xac\x9a\x2f\x78\xfe\xbf\x53\x0c\x4b\x44\x8d\xb7\xaa\xa2\xf9\x54\xce\x8d\x73\xde\x30\x2d\x61\x86\xf2\xd9\x50\x84\xd3\x2c\x8a\xe2\x6c\xe0\x3c\x3a\x77\x21\x56\xaa\xc1\x72\x6b\x25\x56\x0f\x9a\xa6\x6b\x51\x73\xd6\x3d\xd8\x66\x56\x56\x28\xc6\x61\x1c\x8e\xaf\x63\x06\xc6\x21\x08\x7d\x4b\x4c\xec\x1d\xe9\x54\x71\xcb\x5b\xe9\x08\x21\x1c\x45\xd8\x77\x25\xda\xb8\xb4\x3e\x1c\xd4\x2d\x31\xbb\x96\x48\x5c\x41\x0c\x60\xd5\xd3\x7e\xa1\xce\x91\xa9\x8e\x36\x0d\x2b\xff\xe4\xb4\x44\x6b\x6d\x1b\x59\xce\xdb\xb1\x59\x65\x2f\x40\x9a\xc5\x95\x65\xc6\x47\x65\x14\x8d\x8a\x66\xb9\x45\x11\x6f\x5e\x1c\x13\x1e\x45\xb1\x97\x07\x5d\xc6\x1c\x56\x30\x87\x72\xf8\x00\xc0\xee\x59\xeb\x77\x50\xc7\xc9\x2f\xe0\xde\xf7\xf4\x98\x43\x39\xef\x69\x09\xff\xa1\x29\x19\xfc\x84\x39\xfd\x81\x6e\x30\x5d\x15\x64\xa5\xb8\x6d\x6d\xed\xd0\x95\x5a\x38\xcc\x61\xa1\x63\x23\xe7\x52\xfe\x53\xb7\x88\xb0\xba\xcd\x4a\x4c\x2c\xe4\x5c\x05\x8e\xd1\x5b\xc5\xd2\x5c\xde\xf8\x94\x8b\xcd\x3b\x22\xe7\x18\xdb\x67\x34\x9a\x34\x9e\x1b\x1b\x3d\x4a\x05\xf7\x9c\xac\x53\x2c\x77\x8e\xbf\xc9\x25\x48\x56\xaf\x8c\x34\xa4\xe2\x18\x3a\xd6\xbe\x7b\xfc\x68\x06\x5a\x01\x8b\x67\xed\xaa\x33\x58\x1c\x0e\xfb\x5a\x59\xa1\x5a\x62\xa8\xba\x08\x37\x48\x29\x68\x21\x5f\xec\x96\x68\x0d\xb9\xe9\xf2\xae\x51\x61\x6d\x51\x9c\x2b\x82\xa8\x73\xe4\x09\xd3\x96\xc1\x25\xaa\x60\x0e\x66\x2b\x64\x72\xc7\x5b\xa8\xae\xee\xae\xea\xdb\x3a\xa9\x74\x57\xea\xd2\x94\x37\x2b\x28\x87\x55\x62\xc6\xec\xe8\x34\x62\xb0\xaa\xe3\xff\xe3\x04\x36\x4e\x62\x0c\x99\xda\xee\x1a\x52\xf0\xe9\x17\x21\x05\x7a\xc1\xb7\x68\x81\x5b\xf0\x92\x24\xe4\xb3\xae\xc2\xa0\x59\xbe\x65\x14\xc5\xe5\xf0\xb2\x87\xfd\x15\x5b\xfd\x8b\x57\x2c\xfb\xc2\x15\x6b\x96\x6a\x85\xca\x18\x37\xee\x95\x3d\xac\x55\x99\x3c\xc4\xc5\x7d\xc4\xc5\x1a\x71\xcd\x35\xbf\x21\xdc\x1d\x55\x77\x58\xdb\x55\x67\x6d\xe3\xe3\x6b\xfb\x6f\x30\x37\xd8\xb4\xb7\xfc\x74\x4a\x60\x7e\x45\x19\x27\x3a\xf8\x54\xd9\x5d\xc4\xd0\x04\x08\xce\x61\xa5\x68\xbc\x59\x08\xaa\x38\x09\xe5\xca\x36\x88\x5e\x2e\x11\x91\xb8\xdd\x5d\x0a\x19\x8a\x2b\x99\xa3\xd2\x39\xaa\x66\x29\x60\x58\x81\x59\xe1\x96\x42\x06\x8e\x2f\x02\xdd\x6d\x0c\x8b\xaf\x5d\x04\x78\x68\x11\x5c\xfc\xbf\xbc\x1f\xd2\x44\x07\x21\x95\xa0\x37\xac\x1a\x5c\x1f\xd9\x25\x8f\xed\x76\xb9\x8b\x07\x36\xbc\x4b\xae\xa2\x28\x5e\x9d\xd8\x25\x77\x3f\x7f\x97\x74\x1a\x15\xdc\x98\x6d\x41\x62\x16\x58\xa3\x90\x32\x46\x5a\xbc\x19\x6c\x3a\x9a\xd6\x50\xb8\x1b\xfe\x03\x4b\xb0\xa5\x55\x7f\x47\x32\x92\xeb\xeb\xec\xed\x8b\x51\x99\x31\x03\x6f\x6c\xa7\xfc\x46\xb2\xd8\x5b\xb0\xc4\xe0\xcf\xd7\xed\xcb\xab\x53\xfb\xf2\xfa\x5f\xbb\x2f\xff\x11\x96\x27\xf7\x65\x5f\x7e\x4e\x09\xec\x61\x96\x6f\x2d\xe5\x81\xe7\xe8\x8e\xad\xf7\x69\x98\xa1\x42\x6f\xd3\xff\xed\xbb\x73\x79\xb7\xdd\x79\x75\x7c\x77\x5e\xdd\xba\x3b\xaf\x86\x76\xe7\x9d\xb7\x3b\xef\x54\x30\x90\xe3\x84\xa9\xfc\xb9\xbb\x73\x36\x44\x98\xde\x6a\x8d\x73\xf9\x29\x17\xd9\x26\xee\x2b\x9e\xa1\xa4\x4c\xe6\x04\x32\xc3\x25\x09\x1a\x09\x26\x35\xf5\x7e\xd2\x8e\xff\xcd\x57\x5f\x67\x61\x73\x5c\xb4\x72\x68\x01\xd5\xde\xea\x32\x59\xae\x74\x5c\xa0\xa6\x63\x2f\xbf\x52\x60\xfc\x7c\x0b\xa5\x55\xe1\xd4\x34\x69\x8c\xc3\xb1\x6c\x45\x91\x1c\xef\xba\x27\xf3\x48\x4e\xde\x90\x1c\x76\x9a\xe4\xf4\x70\x0e\x0d\x25\x6a\xc9\x58\x80\x86\x16\xad\x49\x9c\x43\x06\x60\xee\x11\x8a\xab\x7e\x65\x7d\xb2\xba\x23\xcd\xea\x80\xe1\x07\x16\xe0\x2c\x23\x65\xa9\xc4\xb8\x4f\xba\xb4\x33\xc5\x87\xc1\x0d\xab\x9c\x0e\x58\x19\x34\xaf\x6f\x82\x7d\x60\x8a\x6b\xbf\x17\x41\x6d\xa5\x40\xb3\x09\x85\xe6\x8e\xc5\xa7\xce\x62\x6a\xf5\x75\x60\xe0\xbd\x7b\x1b\x9d\x0a\x50\xa7\x8a\x61\xba\xa8\xaf\x07\xcd\x8e\xac\x87\xef\xf5\x51\x53\x7f\x2b\xe9\x91\x05\x6e\x68\xea\x5e\x73\xff\x29\xd3\xb6\x9b\x16\x74\x73\x3e\x30\x04\x1b\xb4\x02\x1c\x6b\x9e\xc0\x95\x5a\x8e\xb9\x5e\x8c\x79\x6b\x31\x72\x98\xf7\x17\x23\x81\x79\x1d\x0f\xd9\x86\x6e\x48\xcc\x20\x81\x36\x38\xc4\x47\x44\xe3\xe9\x43\x00\xbf\x1f\xbe\x04\xfc\x31\x1e\x8d\x84\x15\x70\xee\xbd\x90\x94\x57\x4b\xf1\x39\x5d\x05\x56\xc0\xb1\xf3\x68\x8e\x6d\x02\xb6\x0e\x34\xc6\xdb\xc3\xd3\x24\x90\xfd\x53\x79\x38\x63\xa2\x51\xcd\xa9\x48\x57\x34\x78\xae\xb3\xdb\xf0\x8b\xbf\xbb\x07\x20\x69\x0e\x3b\x6d\xfb\xa0\x9e\x7d\xdf\xb6\x64\xb5\x30\xe6\x89\xb6\xca\x53\x46\x17\xff\xa8\x72\x4e\x56\x35\xfc\xde\x37\x82\xb5\x95\xa5\x3c\x91\xe3\xf4\x33\xaa\x85\xfa\x1e\x7e\xe8\x22\x84\x3b\x6d\x2f\x5b\x46\xdc\x87\xc3\xde\xd9\x79\xa7\x8b\x65\xed\x5d\x3f\x51\x67\xae\x51\xd4\x06\x24\x69\xcc\xc2\x91\xa8\xfd\xfb\x9a\xad\xdb\x90\xc6\x77\xcb\x50\xb8\x97\x58\xc5\x7b\x51\x8e\x5b\xea\x1e\x4f\xd3\x0d\x09\x68\x96\x80\xef\x93\x4a\xd4\xea\x8e\x9e\xdc\x78\xdd\x22\x40\xd6\x14\xb1\xbb\xe1\x83\x34\xe6\x7e\x36\xff\xd2\x23\xf9\x14\x70\xa0\x2e\x3b\xfe\x64\xb0\xe6\x45\x6b\xf1\xb9\x6e\x88\xd8\xbb\x75\x47\x3c\x42\x26\x93\xdb\xa4\x8c\x37\x87\x0c\x3a\x9e\xff\x6b\xbc\x83\x3f\xc5\x0d\xce\xb5\x51\xc3\xa9\x91\x8c\xce\x08\x07\x3a\x9f\x23\x3d\x49\xf0\x1a\x7f\x24\x41\x59\x71\xa2\x88\x90\xcc\x27\x61\xab\x4e\x96\x4c\xde\xeb\x1c\x2b\x5c\x74\xf8\x2b\x11\x45\x79\xe1\x31\xad\x26\x17\x17\x4d\xaf\x2e\x32\x9c\x6d\xc8\xc5\xc5\xe1\x10\x9f\xfc\x8e\xfc\xa1\x00\xc8\x2d\xc5\xfd\x60\x6c\xa9\xdb\x04\xd7\x37\x8e\xe8\x53\x5b\x8b\xd8\x0d\x8f\x66\xe1\xd1\x34\xd1\xff\x38\xd8\xad\xba\x6e\x35\xdd\x27\x7e\xfe\x7d\xb4\xf6\x51\xbd\x29\xb9\xbb\x75\xb1\x41\x6f\x79\x51\xb6\x22\xad\x75\x28\x92\x5e\x30\x8e\x93\x75\x79\x23\xb4\x9f\x25\x2f\xdd\x22\x66\xf0\xb5\x46\xc0\xbe\x8d\x9a\xda\xed\xd1\x64\x89\x42\xf5\xa4\x0d\xd1\x2c\x0b\xa1\x4c\xd7\xec\x8b\xfe\xe4\xf3\x0f\xca\x82\xcd\x4f\x08\xeb\xf8\xfd\xe1\x10\xbf\x57\x36\x6b\x8a\x4e\xbc\x73\x38\xfa\xe6\x57\x7a\x71\x77\x7a\xf1\xcd\x9d\x6e\xad\x43\x8a\xa6\x90\xf7\x22\x24\xcd\xe8\x73\xae\x6f\xc8\x89\x76\x38\x26\xa7\xa1\xd7\xc0\xb8\xd3\xbd\x75\x01\x99\x06\x11\x5b\xea\x4b\x73\xde\xbd\xf5\x57\x03\x97\xa4\xa9\xef\xf8\x4a\x5d\x90\x27\x77\x6b\x88\xa8\x0b\xf2\x8d\x0f\x0a\x0e\x9e\x4b\xb9\x88\x2e\xf8\x52\xc5\xea\x03\xd6\x20\x7c\x84\x8e\x78\x18\x3c\x15\xac\x05\x34\xa7\x13\x13\xc8\x4f\xc6\x75\x89\x09\x98\xb1\xe7\xdc\xbf\x86\xe7\xf5\x4a\x82\xc0\x76\x6c\xc1\x96\xaa\x6f\xf2\xbf\x51\xfd\xd4\xf0\xf7\x88\xc6\xe7\x13\x00\xbf\x35\x54\xff\xbb\x5f\x80\xea\xef\x38\xb9\xce\x59\x55\x7e\x83\x05\x56\x32\x8d\x04\xa2\xb2\x2e\x53\x5e\xfa\x20\xd7\xa7\x45\x6a\x11\xb7\xd6\xa8\xb7\xea\xf2\x75\x3c\xe2\xda\x28\xa2\x75\x74\x69\x96\xa3\xba\x28\xa9\x2a\xd0\x1a\xa0\x18\xcc\x06\x72\x23\x93\xd6\x04\x89\xf3\xae\x33\xed\x29\xf9\xdc\x72\x60\xa5\x2f\x01\x3c\x51\xa7\xe3\x94\x88\x4f\x8c\x7f\x94\x82\x79\x55\xfa\xf6\x98\x31\x31\x8a\x11\xd9\xa0\x3e\x17\x7b\xa1\x0d\xb5\xb4\x0d\x4f\x0d\x95\x39\x48\xd7\xf9\x17\xf7\xa5\xd7\x0f\x4c\xf5\x3c\x06\x70\xd4\x8b\x01\x67\xa3\xaa\x6b\x4b\x90\xd0\xba\xa0\x20\x47\x5a\x53\xb7\xac\xac\xcb\xbc\x93\x00\x1d\x00\x8f\x72\xa6\xd0\x4b\x6d\x5d\xb1\x02\xf6\x3e\xed\xd0\x5c\xc8\x96\x7b\x9d\xea\x93\x4e\xcb\x35\xab\xb8\x2a\x54\x12\x7a\x59\xe3\x4a\x3b\xcb\xa7\x6a\xa0\xca\x9a\xe5\x70\xa0\xd6\x34\xb5\x3f\x6f\xc6\x1a\xce\xce\x36\xcc\x11\xb3\x8e\xad\x20\x46\x4c\xbb\x92\x82\x15\x62\x4a\x01\x30\x1b\x89\xc3\x21\x3f\x1c\xf0\x9c\x46\xd1\x28\x8f\x22\x1c\x45\x34\xc6\x20\x15\x71\x05\x6a\x1f\x1f\xa3\x88\x27\x2a\xc4\xaf\xf1\x58\xa0\x06\xd5\xc6\xad\xfe\x88\xf6\xb2\x8d\x74\x40\x9d\x52\xcf\xda\x32\x03\x81\x37\x71\x6f\x2c\x66\xbb\x11\x77\x18\x25\x45\xc2\x8d\x32\x47\xa2\x8d\x96\x10\x23\xa1\xc7\xad\x54\x3e\xfa\x51\x42\x52\xa9\x8f\x7d\x5d\xab\xb6\xcf\x4d\x34\xbb\xa5\xed\x97\xf6\x2d\x3c\x4b\x71\x0d\x9c\x2b\x0d\xd7\xf7\xbd\x69\x3a\xa5\xb0\xd5\x70\x9a\x1b\x24\x57\xfe\x94\xe6\x9d\x62\x5a\x03\xd3\xa6\x02\x50\xe8\xf3\x93\xb4\xea\xe6\x86\x1a\x96\x7d\x28\xc9\x49\xf8\x0e\x97\x0e\x16\x4a\x6f\xa2\x6a\xa9\x41\x1a\x0f\xb6\x69\x1a\xe9\xb4\x8d\x6c\xf2\x71\x7a\x52\x22\x77\x3e\x3e\x6b\x6c\xde\x07\x6d\xcb\x7a\x35\xcc\x25\x11\x56\x86\x61\xc6\xc6\xac\x7b\xaa\x6f\xeb\x23\xfc\x2f\x15\xa9\xb4\x2e\x91\x15\xd7\x24\x15\x90\x13\x39\x8a\x94\x42\xcc\xaf\xca\x94\xa8\xd5\xec\xf4\x14\x9a\x8d\x42\xdc\x1d\x41\x49\xcc\x34\x89\x96\x59\x3d\x1c\xa8\xfd\xfc\x6d\x3c\x1a\xf1\xaf\x90\xe6\x14\xa2\x2b\x5b\x18\x77\x58\xab\x39\xc5\x2f\x97\xeb\xb8\xbd\xbb\x9a\xff\x53\xd3\xa2\x66\x36\x55\x84\x4a\x3b\xb6\x37\x7d\xae\xd9\x19\xc7\x75\xf6\x00\x8f\x73\x2d\x3f\xe6\xbb\xb6\x47\x35\xe2\xeb\x39\x85\x3a\xad\xb3\x86\xa8\x24\x29\x4b\x2e\xd7\x4f\xdc\x52\xf8\xc8\xf4\x8f\xf9\x0e\x7a\xe7\x7a\x3e\x45\x72\xf4\x08\xbe\xd2\x87\x7c\xa6\xba\x10\x86\x65\xc9\x43\x18\x7a\x55\xc9\xb4\x8f\xf9\x2e\x84\xcd\x51\xa0\x57\x95\x7a\xd3\xd1\x4c\x97\x00\x40\x8e\xa8\x1e\xe2\xf7\xac\xc8\xb3\x9b\x99\xb5\xc0\xf5\x5c\xc4\x85\x66\x89\xdd\x67\xb4\xb8\x31\xae\x9f\x42\xc5\xe7\xdf\xc7\x74\x75\xdf\x7c\x55\x1f\x94\x49\x8f\xf9\xb6\xce\x79\x69\xad\x60\x8c\x67\x01\x23\x30\x7c\xc2\x22\xdb\xe8\x8d\xe6\x1b\x6d\xb9\xbd\xf7\xba\x90\xf2\xda\xc5\x80\x1e\x69\xcf\x92\xb7\x10\x23\x4b\x88\xa2\x88\xa9\xcd\x4c\xa6\xb5\xe5\x8f\xde\xb5\xe3\xa1\xc9\xf4\x59\x81\x09\x1c\x75\x26\xd8\xf9\xc3\x1c\x64\x10\x62\xe7\x76\xc4\x5f\x51\xa0\xe5\x38\xa3\xfd\x4d\x6d\x3a\x72\x75\x69\x0b\x5e\xbd\xf2\xd4\x8d\x50\xbd\xf6\x66\x83\x23\x37\x75\xc4\xc2\x58\x8a\x52\x6b\x6e\xaa\x7c\x7d\x0e\x0e\xf9\x84\xaa\xdf\x5e\x30\x34\x03\xec\x0e\xb9\x75\xdb\xc3\x0c\x61\x70\x37\x8f\xad\xe9\xae\xc5\xde\x59\x3c\xfa\x7d\xfb\x98\x40\x73\x62\xe6\xb3\xf6\x34\xd6\x4e\x70\xfa\x96\xc6\x67\xc7\x6d\x59\xdb\x39\x11\x3d\x1c\x9c\x00\x7f\xba\xb7\x70\x08\xb6\xfa\x1e\xbc\xe9\x74\x9b\x4d\xf4\x3c\x1a\x69\xb4\x25\xd6\xcd\x8c\x06\x96\xaa\x49\x05\xaa\x53\x4f\xce\xc3\xe9\xc9\xe6\xdb\xf5\x99\xf5\x6f\xc0\x74\x0c\xc9\x8e\xa1\xb5\x77\x7d\xdd\xc7\xec\xbb\x74\xa3\xc5\x00\xdf\x4d\x6a\x8f\x27\x70\x40\x6e\x37\xce\x80\xba\xdc\x6f\xa7\xcb\xe4\xb3\xe0\x38\x13\x6f\x77\xa2\x74\x97\x50\x06\xef\x4a\x37\x96\x62\x12\xad\x24\x45\x57\xc1\x2f\xae\x71\xa1\xe3\x27\x34\x04\x43\x19\x6c\xab\x6d\xdf\xbc\xe7\x92\x4d\x66\x22\x5f\xdf\xbc\xa5\x6f\x7c\xf6\x40\xbb\x9b\x56\x26\x55\xda\xee\x52\x99\xca\x7a\x44\xb8\x6c\xce\x16\xab\xb9\x91\xe5\xd3\x4a\x9d\xde\x58\xeb\xf0\xac\xc9\x52\xcc\xf7\x75\x5a\xb4\x7c\x05\x39\x35\x02\xda\xc4\x18\xc0\x6f\xe3\x76\x6a\x63\x21\xa5\xea\xd6\xe6\x4f\xcf\xf5\x46\xf7\xe0\x77\xde\x4e\xc6\xb5\x5e\xa2\x0c\x70\x60\x6c\x57\xad\xa5\xe8\x65\x25\x82\x2b\x65\x11\x1d\x8e\x8f\xd6\x6e\xb5\x0d\xf3\xc6\x84\x37\x6d\x5b\xda\x82\x71\x98\x84\x00\x6e\x63\xcf\x3c\x4f\x40\x1f\xcc\x29\x35\xb6\x29\x18\xb6\xa8\x33\xf4\x40\x9d\x32\x78\x02\xd0\x69\x0e\xb7\x44\x60\xc5\x46\xed\x79\xeb\x5e\x5a\xda\x3a\x74\x2b\xeb\xda\x5d\x20\xc8\xea\x0e\xc6\x1c\xdd\xb9\x07\xd0\x46\xc1\x63\x08\xc5\xa4\x38\xea\x3b\x65\xf0\x94\x66\x96\xba\xf4\x3e\x28\xd3\xc9\x0e\x84\x95\x4b\xc5\xbd\x86\x8b\xb1\x8c\xf7\xec\x2e\x45\x83\xb5\xf5\x11\x22\x73\x64\x1f\x14\x9d\x41\x7b\xc4\xa1\x7f\xd2\xd0\xa9\xd3\xd0\x8c\xe3\x1c\x0e\x19\xee\x8b\x1c\xdf\x5b\x7d\x08\x12\x9f\x02\x5c\xef\x46\x43\xcb\x28\xa4\x3b\x5d\x7d\x69\xf2\xee\x14\xc9\xe7\x9d\x8e\x30\xdd\x5a\x46\x50\xae\x33\x4f\xe4\x72\xa2\xf7\x91\x4d\xb4\xf4\xb3\x95\x96\x14\x1e\xdd\xda\xdb\x3c\xfd\x50\x9d\x70\x5f\xd8\xce\xa5\x04\x16\xae\x6e\xe5\x6f\xa4\xeb\x0a\xe3\xcb\xf5\x90\x77\x3b\x54\x68\xaf\x53\x13\x15\xf0\xe4\x02\xe5\xc9\x25\x63\x05\xf4\xd8\x43\x53\x2b\x34\x3c\xa2\x7d\x6d\x11\x06\x9e\xe8\x9b\x51\x86\x3e\x0c\x0d\xa3\x59\x13\xf6\x2b\x2c\x4b\x6e\xda\xeb\x2b\x56\x7f\xf8\x55\xad\x79\x77\xb5\xe6\x3f\xfe\x2d\xd4\x9a\x7f\x31\x6a\xbb\x3f\x18\x35\xde\x5f\x91\x13\xda\x47\x53\x1d\x6a\x7a\x25\x9f\xb4\xbc\xae\xf7\x54\xa8\xb6\x0a\x73\x2c\x09\xff\xf6\x0b\x28\xfc\xba\xea\x3d\x5e\x51\xa7\x96\x6f\x6d\x1f\xce\x11\xad\xba\x95\xbb\xaf\xa5\xcc\xc8\xe8\x7b\x49\x11\x6c\x81\xb8\xd1\x8e\x58\x57\x8a\x6f\xc8\x27\xfb\xf5\xd5\x2a\x6e\x4c\x04\x13\x6d\xcf\xa5\xac\x0a\x8e\xdc\x1b\xe3\xbe\x7c\xe7\x9a\x50\x51\x21\xc8\xe0\x25\x32\xa5\xab\x63\xae\xfb\x9a\x10\xaa\xfc\x23\xa3\xc7\xb2\x32\xa2\xd5\xcc\xd5\x4a\x65\xa4\xbb\x32\xb0\x59\x72\xcf\xb3\x90\x65\x13\x94\xaf\x85\x86\xf5\xca\x91\x8e\x4e\xb0\xcd\x4b\x91\x67\xef\x48\xb9\x63\xb4\x24\x4a\xbd\xa3\x77\x28\xa5\xde\xb1\xac\x51\x8b\x7b\xda\xd7\x86\x71\x32\x22\xcb\x5f\xf4\x2d\x95\xc3\xc1\x76\xb6\x9d\xee\x2e\x28\x46\x91\xbd\x96\x11\x45\xed\x6b\xa5\x85\xc4\xb5\x02\x15\xbd\xcb\x7c\xc6\x28\xb2\xef\x2f\x34\x8a\xf8\xc0\xbe\x3e\x1f\x4a\x34\x97\xd7\x0e\x07\x92\x92\xda\xe9\x16\xbb\xbd\x07\x4e\xd1\x61\x67\xf8\x1f\x71\x63\xfa\x47\x3d\xb2\xc7\x60\x1f\x6e\x69\x0e\xdb\xd5\xa5\x85\xb9\xce\x90\x62\xc7\xff\x94\x35\x24\x40\x4d\x5c\x07\xfd\xda\x2a\x53\x6d\x78\x64\x56\x54\x03\xd4\x96\xed\xa1\x4c\x6e\x6c\xb8\xdc\xea\x9b\x1c\x5d\x73\x6e\x59\x4e\x6a\xd3\x83\x1e\x86\xf6\xa5\xc7\xd1\x54\x85\x6a\x6b\x56\x9a\x3d\xc2\xb0\xf8\xa5\x2c\xfe\x3c\x5d\x46\x8e\x68\xbb\x9f\xfa\x4a\x1c\x16\xb8\x1d\x96\xc8\x9a\x92\xce\x59\x8c\x41\xaa\x78\x8d\x19\x4f\xf2\xf2\x35\x93\xbb\x6b\x46\x68\xb3\x32\xa5\xd4\x38\xca\xe7\x83\xc3\x9d\xea\x11\xe2\x1a\x56\x20\xad\x62\xad\x96\xee\xac\xa3\x2f\x1f\x95\xd3\xc7\xb0\x81\x2e\xd3\x39\x55\xaa\xb7\xd3\x5d\x3e\xd6\x5d\x3d\x3b\xa4\x86\x0c\xa4\xcc\xf4\x77\x90\xe0\x0c\xb4\xcc\x93\x6d\xaf\xa9\x57\x2b\x34\x9c\x3c\x96\x14\x71\xe8\x83\x6c\x71\xa8\xd3\xc3\x8a\xc7\xc1\x16\x11\x52\x5a\xc1\x6b\xc2\xf3\xf5\x8d\xbd\xad\xf9\xaa\x1c\x26\xbe\x8a\x1c\x6d\x24\x8f\xfe\x97\x58\xf4\xa5\x18\x23\x26\xd9\xd7\x5b\x25\x25\x47\xcc\x3a\xc2\x52\x47\xfa\x9a\x9b\x0b\x94\x83\x92\xd1\x69\x95\xe6\x5f\xbe\x4a\xa5\xc9\xcd\xcd\x13\xb6\x0e\xec\x58\xbe\x54\x97\xa9\xee\x06\x2a\xeb\x02\x4c\xad\xb9\x4b\xdb\x14\x41\x16\xbc\xce\xb1\x51\x95\x2a\xdd\xe7\xb1\x49\x88\x1b\xba\x0f\x8e\x60\x02\x9a\x40\x43\x6b\xd0\x5f\x1b\x35\xe9\x0f\x7d\x35\xe9\x49\x0d\x5b\x5f\xbd\xf6\x15\x7a\x8c\x13\x8a\x8a\xbb\xea\xba\x7a\x4a\xaa\x3f\xfc\x5c\x25\x95\x86\xb2\x85\xa2\x52\x01\xd9\x17\x53\xf6\x28\xf0\x89\x07\xfc\x5f\x48\xe1\xe5\xc8\xc9\x5f\x41\x57\xef\x32\x6c\x7e\xe6\xeb\xa9\x1b\x15\xb5\x40\x8d\x6d\x6b\xeb\xa0\x87\x9b\x13\x0b\xc5\x25\xe8\x73\x2d\xc9\x21\xe8\x5d\x03\x62\xb4\x37\xfb\x47\x0e\x9b\xf3\x19\x45\x7c\x8d\xd2\x20\x65\xd0\x37\x31\xd1\xcf\x8e\xad\xb6\x71\x7e\x1a\x16\x0d\xe2\x5f\x5a\x78\x72\x7b\xf5\x1d\x85\x96\x81\x4d\xdc\x7d\xeb\xec\xe5\x72\x53\x21\x6f\xd7\xb2\xa1\x78\xc1\x13\x2c\x79\x96\xb7\x92\x67\xd3\x7c\x89\x5c\x61\x4d\x9a\xae\x42\xa6\xc9\x19\x59\xda\x6b\x8d\x56\xdc\x3a\x21\xe3\xdd\x2a\xab\xf5\xa5\xab\xbf\xff\x2a\x5d\xdd\x5d\xba\xfa\xa7\x91\x57\xfe\x64\xe4\x97\x3f\xfe\x02\x52\x48\xa3\x9a\x69\xef\xa0\x7d\x4d\x4e\xff\xb4\xd1\x1d\xb3\xf9\x06\x02\xe6\xd2\x58\xd2\xba\x36\x3e\x78\xcf\xb6\xd6\xbc\xa4\x52\x6d\x7c\xc1\x01\x7c\xd3\x93\x2f\xb4\x5a\x18\x38\x77\x37\x6b\xdf\x7e\x51\xb8\x6a\xba\x75\x45\xc4\x2b\x0d\x9b\x8e\xcf\x24\x67\x92\x76\x07\xae\xb5\xbe\xe5\xb4\x5f\x41\xba\xe1\xb4\x54\x49\xc3\x6f\xf6\xb8\x2e\x6b\x12\xdb\x54\xd9\xe5\x0f\xdb\x95\x11\xab\xf1\x71\x15\xe9\xb2\x84\xae\xfe\x5b\xcd\x1d\xfe\x14\x8f\x46\xf4\x2b\xce\x58\x5b\xed\x7d\xcd\xb9\xaa\xdd\x8a\x6c\xdb\x3e\xb2\xab\xa3\x55\xc3\x3d\xf4\xe6\x3a\xf6\x8e\x5d\xff\xfe\x35\xfc\x44\x0f\xa5\x8f\x1e\xfa\xdd\x7e\x02\x36\xfa\xa7\xbf\x9d\x37\xf2\xaf\xb7\x90\x7a\xcc\x41\xc3\x16\xfa\xc7\x66\x5e\x7f\x14\x37\x50\xf6\x8e\xf4\x55\x40\x9e\xee\x6d\x92\xd9\x90\x29\x96\xb6\xea\x1f\x8d\x68\x9b\x4b\xb1\x46\xfe\xea\x9c\x96\xba\x08\x9c\xb7\x71\x0b\x8e\x77\x81\xed\x88\x99\x5d\x5c\x6d\x50\x6d\x50\xd1\xd9\xd1\x35\x3b\xe5\xf2\xc0\x74\xc0\xe6\xe0\xd0\xad\x18\x7b\x46\xd4\x46\x05\x30\xfb\x82\x6a\x4f\x1d\x74\x1e\x63\x1e\x7b\x63\xbc\x1b\x77\xd4\xb3\xb3\xf7\x18\x23\xff\xe0\x64\x00\x77\xea\x56\xbc\xcb\x9e\x2b\xad\x2f\x62\x6c\x3a\x4c\x4c\xeb\x6a\xd2\x1d\x19\x99\x13\x1c\x45\xff\x6a\x53\x87\x95\x51\x4c\x86\x56\xdd\x2e\x41\x9f\xbd\xf8\xed\xaf\xec\xc5\xdd\xd9\x8b\xff\x32\x6c\xc5\x9f\x07\xf6\xba\xba\x86\xff\xbb\x9f\x2c\x85\x9d\xff\x73\x94\x09\xf1\x84\x9a\x86\x05\xe9\x30\x20\xb4\xb9\x53\x36\x85\x74\xe8\x32\xcb\x50\xa2\xbe\xc5\x43\x01\xa4\x96\x4c\xff\x76\xd0\xa6\xfc\xf6\x4b\x3c\xff\xd5\xba\xbd\xfb\xdf\x7c\x8d\x47\xfc\xfc\x6b\x3c\x5d\x84\x27\xe4\x57\x8c\xbf\x3b\xc6\x77\x1d\x48\xfe\x0f\x3d\xaf\xa0\x43\xc1\xaa\x7e\xb5\xc3\xae\x21\x27\x48\xc5\xc1\x80\xec\x57\xb4\xff\x02\xb4\xcf\xff\x3d\xd0\x1e\xdb\xd9\xad\x7e\x9d\xdd\x2f\x98\xdd\xf2\xdf\x63\x76\x8b\x5f\x89\xda\x30\x51\xcb\x2c\xda\xaf\x7f\x45\xfb\x2f\x40\xfb\xd5\xbf\x07\xda\xcb\x01\x28\x2e\x7b\x63\xa7\x79\xab\x1e\xce\x9e\x81\x99\x11\x18\x4b\x82\x94\xd1\xf5\x15\x51\xda\xa2\x6f\x39\xdb\x7e\xe0\x84\xa0\x1d\x24\x49\xfb\x1a\x31\xfa\xde\x25\x59\xd5\x07\x7a\x01\xed\x9d\xbf\xef\xa0\x77\xd1\xef\x6f\xb0\x73\xb5\xef\x8f\xb2\x05\x7d\x2a\x85\xde\x42\x92\x34\xd7\xf2\xd1\x67\xf9\x8a\x8b\x8f\xaa\xd5\xe2\x68\xb0\xd0\x63\x51\xb0\xea\xdb\xc2\x90\x5f\xb7\xa3\x41\x83\x7d\xed\x85\xca\xe6\x3f\xc3\x55\x7f\x75\x4b\x28\xea\xd2\x79\x21\xa0\xf1\xd9\x93\xa9\xf2\xf8\x12\x9f\x3d\x39\x33\x61\xf2\x55\x48\x9e\xff\xf9\xd1\x64\x2b\xd4\x06\x10\x64\xd6\xd9\x9e\x71\xb8\x3d\x60\x6e\x30\x8f\xad\xc3\x8e\x38\x4f\x56\x40\x79\x2b\x34\xea\x2f\x01\xd2\xb8\x42\x58\x85\x12\x32\x7a\x11\x65\x26\xe1\xe2\x34\x2b\xc7\x43\xf6\x05\x85\xa1\x2a\xaa\xc2\x36\xcf\x75\x68\x66\xfb\xda\x44\x5a\x56\x45\x74\x22\x0a\xe7\xe1\xd8\xbe\x80\xb4\x49\x0e\x61\xa5\x42\x3e\xcf\x75\xd0\x66\xfd\xd2\xa9\x42\x26\xa1\xf0\x37\xb2\x02\xf9\x28\x8b\xeb\xa4\x10\x3a\x8f\x8f\x22\x8a\xbc\x4e\xab\x31\xe9\xe6\xcd\xe8\xc0\x4c\xf0\x9b\xbd\x37\x82\x15\xc9\xd8\x8a\xfc\xf0\xee\x95\x37\x2c\x50\x6b\xab\x16\x25\x6a\x29\x0b\x15\x3f\x8c\xe2\x0f\xef\x5e\x29\x5d\xeb\x5c\xd2\x1b\xfb\x12\xdf\xfb\xde\x14\x0e\xc2\x7b\xe3\xa6\xaa\xf1\xbd\x30\xc8\x9c\x96\xf3\x92\x04\xba\xbd\x55\x12\x7c\xd8\xe4\x65\x90\x97\x41\x91\x7f\x24\xc5\x4d\x90\xe1\xaa\x24\xab\xe0\xf2\x26\xc0\x92\xd6\x6a\x2f\xc2\x3b\xc2\x33\x42\xc5\x7d\x42\x33\xb6\xca\xe9\x55\x72\x0f\xa4\xc4\x4e\x3e\x55\x03\xfb\x48\x6e\x10\x05\x90\xcd\x9b\x36\xe7\xe1\x03\x0d\x43\x9b\xd0\x81\xa3\x1b\xbb\xc1\x01\x9e\x60\xe0\x25\x43\xd6\x00\x42\xc2\xd8\x65\x6f\xd2\xbd\xd4\xc3\xa1\x85\x0f\x0f\x24\x42\xb4\x03\x98\x7b\xfe\x12\x9a\x70\xdf\x12\x1b\x3d\x9c\xb2\xa1\xbf\x55\xb2\x7e\x94\x89\x6a\x7a\x65\x92\x7c\x90\x09\x72\xb4\xf2\xfd\x23\xb9\x89\x22\xd3\x7d\x26\xbb\x4f\x8c\xb2\xcb\xb8\x1b\x02\xf5\x17\x44\x3b\xfc\xe5\x63\x57\xbb\xda\xbd\xc8\xd8\xff\xda\xc8\xe1\x23\x71\x38\xd8\xe0\x4b\x8d\x13\x28\xe1\x73\x37\x5e\xf2\x9c\xa4\x5e\x20\x8d\xdc\x75\x72\x30\x73\x14\xd9\xb0\x72\xc3\x00\x79\x2f\x7b\x17\x90\xcf\x3b\x4e\xca\x52\x79\x6d\xad\x4a\x11\x90\x5c\x39\xb1\xbe\x24\xca\xf8\x56\x7b\x0a\xb6\xb5\x43\xb5\x18\xc2\xb1\x8b\xa8\x34\xf3\x42\x83\xa0\xf6\x86\x2f\x24\x23\xd7\xec\xf1\x7b\x8f\x71\x48\xcd\x36\x43\x60\x13\xff\x3a\x1d\x4d\xa1\x0d\x6e\x9d\x8e\x26\xd0\x0f\x84\x2d\xf7\xa3\x1a\xa8\x60\xab\x83\x9c\xd3\x7c\x30\x55\x01\x27\x6d\x71\x49\xda\x37\x08\x96\x7b\xf7\x44\xc5\x6b\x4b\x68\x8c\x01\x2c\xcd\x66\x5e\xa8\x84\x52\xb9\x3a\x8c\xa7\x2a\xec\x47\x42\xe3\x4c\xb9\x2c\x8a\xcf\x8c\x5f\xc1\x58\xf9\xff\xfb\x9f\xbf\xbf\x6c\x8f\x69\xf4\x4c\xeb\x30\x87\x78\xc6\xad\x3e\xaf\x09\xb9\xd3\x63\xaa\x60\x89\xb4\x79\x9c\x72\xa5\x35\x99\x15\xcf\xab\x59\x31\x1e\x83\x72\x51\x2c\xbd\x21\x14\x2e\x04\x00\x45\x39\xb2\x21\xbd\x55\x3f\x8d\x3f\x3f\x02\x17\x32\x71\x29\x79\xc8\x0c\x8b\xb8\x04\x00\xc0\xdc\xba\x19\xdb\x4a\xca\x9d\xe6\x89\x89\x03\xf5\x5a\x11\xf2\xdc\xa8\xb5\x37\x79\x29\x18\xbf\x49\x0a\x96\x69\xab\x96\x86\xe2\x43\x8c\x28\x64\x71\x0e\x9b\x30\xaa\xf9\xd7\xb8\xa6\xe0\xac\x12\x84\xa7\x1b\xa7\x84\xb7\x26\x7c\xfa\x03\xdc\x9b\x3e\xf8\xba\x78\x93\x04\x55\x96\x74\x6f\x7b\x37\x90\xc5\xf5\x1c\xea\x71\x7a\xbe\xbd\x54\x82\xbe\xcd\xdc\x3d\x75\xb0\x70\x18\x30\x8b\xda\x4b\x08\xa4\xe1\x83\x10\x56\xbc\x50\xff\x3b\xcc\xf1\xb6\x4c\xf7\x35\xcc\xcb\x97\x9f\x71\x26\x64\xaa\x32\x93\x3a\x71\x9c\xd1\x3b\xf9\x6a\x8c\x36\x60\x2f\x3a\xa4\xb3\xdf\xe0\x92\xb2\xeb\x81\xcd\x8a\x18\x98\x00\x70\xf4\x70\x98\x22\x84\xd6\x09\x6e\xc2\x65\x64\x2a\xb0\x0a\x05\x30\xfc\x7d\xf0\xfc\x9d\x82\xe4\xef\x94\x27\xfd\x0d\xbe\x26\xda\xa1\x36\xa3\x24\x50\x35\x07\x44\xbb\x05\xb2\x9a\xd6\x8a\x16\x79\x29\x08\x45\x3c\xd1\x0f\xfe\x05\x01\x3f\xf0\xa6\x06\x69\x1b\x64\x31\x1f\x42\x16\xd0\xbd\x4c\x70\x37\x7f\x75\x55\x0c\xe2\xfe\x9c\xaa\xdb\xf2\x16\x05\x42\xe3\xd3\x5b\x6d\x31\xca\xf6\xdd\x8e\x37\x30\x59\x7e\x17\x7e\xcd\xe5\x2a\x0b\x84\xbb\x1e\x28\x0d\x9c\x05\x39\xf3\x97\x79\x6b\x6a\x24\xf0\x9d\x11\x21\x14\x75\xac\xbe\x36\x8e\x95\xb6\xfe\x89\x90\x45\xfe\x5d\x82\x4f\xf9\x49\x91\x9f\x29\x5b\x49\xf2\xd3\x39\x7b\x32\xcb\xab\x29\xaf\xb2\xf4\x3d\xa8\xf4\xf2\x75\x4e\xa9\xf0\xad\xf1\x90\xad\x68\x30\x9d\x3e\x6b\x05\xeb\xdc\x4b\x52\x31\xe9\xf0\xdd\x96\x14\x87\xe1\x58\x24\x84\xae\xc6\x22\xd1\xf5\xc8\x07\x42\xcb\x5c\xe4\xea\xd2\x64\xbe\xa0\xcb\xc3\x21\x96\x7f\xca\x0b\x5a\xbe\x8e\xf9\x82\x2c\xed\x31\x27\xb7\x01\x1e\x2b\xb4\x58\xaa\xa0\xc0\x20\x26\xb0\x82\x42\x92\xcc\x3d\x27\x69\x09\x3f\x92\x9b\x32\xad\x9c\x9c\x8d\x9f\x4f\xc9\xc3\x28\x52\xb5\xa0\x02\xe2\xf1\x18\xc0\xa2\xcd\x7f\x39\x2f\x8d\x1d\x82\xfc\xbb\xa9\xe5\x95\x47\xc8\x23\xc0\xd3\xe5\xdc\x7f\x91\x84\xc0\xdf\x62\xce\x96\x03\x12\x85\x71\x50\xa7\x68\x89\x70\x62\x95\x80\x0c\x71\xb5\x6a\x60\x8e\x78\xa2\x02\x3a\x43\x8c\x5c\x9b\x79\x14\xe5\xb0\x44\xdc\x80\xca\x39\xcc\x1c\x21\x54\x46\x51\x09\x33\xf9\xc9\x01\x6f\xdd\x7c\xcd\xa2\x28\x6b\x02\x46\x32\x0b\x3d\x1b\x69\xa8\x8a\x19\xdc\x13\xba\x4a\x31\xd4\x35\xa7\x05\x74\xf5\xa4\x6b\xe5\xd9\x77\x95\x70\x02\x37\x68\xa5\xfc\xc9\xc3\x2d\xda\x25\xe4\x33\xc9\x4c\x54\x90\xd1\x16\x78\x17\x87\x54\xad\x37\x68\xbb\x98\x2c\xe1\x35\xda\x9a\xc0\xf1\x53\x00\x2f\x91\x64\x63\x6f\xdc\x54\x44\xd1\xe8\x72\x2e\x4b\xa4\x1a\x12\xcc\xd2\x54\x84\x10\x8b\xa2\x50\xfe\xdf\x48\xe6\x3c\xbd\x71\xb4\xf5\xd2\xd2\xdb\x4d\xcf\xa3\xbd\x41\x4a\xbb\xea\x16\x3a\xea\xdd\x12\x5d\x2f\xe8\x12\x12\xed\xc7\x5e\x87\x2d\x2d\x4f\x47\x27\x35\x97\x21\x29\x1a\xd2\x74\x69\x4d\x55\x14\x85\xa5\x7a\xe8\x7d\x49\x72\x41\x38\x16\x8c\xcf\x07\x6c\x6a\xad\x40\x59\x0f\x85\xf0\x3f\xa2\x5a\xb3\x0d\x92\x96\x0e\x08\x21\x97\x3e\xb2\xcf\x0d\x99\x9a\xdb\xde\xa5\xae\x45\x29\xb5\xd6\x1e\x17\x2f\x4e\x05\x29\x1a\x18\x24\x8d\x3b\xe3\x03\x73\x4f\xed\x30\x64\x40\xac\x0e\xc3\xd3\x5b\x32\xfd\x4b\x06\xad\x8f\xe1\xe5\x18\xeb\xbb\xab\x46\x2c\xfd\x3a\x3f\xff\xa5\x42\x97\x33\xc4\x63\x1a\x3f\x79\x22\xd9\xad\x61\xf9\x4e\x28\xcf\xb1\xf1\xa4\x09\x7f\x07\x8c\x4b\x47\x49\x34\xf3\xaf\x0b\xd1\xfe\xe5\x04\x2c\x8a\xfc\x37\xb5\xa2\x8f\x05\x08\x24\x33\x4b\xb8\x67\xfd\x30\x82\x8b\xc9\x12\x38\x6d\x2f\x47\x93\x19\x7f\x4e\xdc\x9d\x8f\x70\x94\x6f\xe5\x4c\x60\xaa\x24\x2e\xc9\x3c\xcf\xf8\x78\x0c\x94\x31\xcc\x18\x85\x30\x08\x01\xa4\x63\xc4\x14\x5f\x0d\xc3\x20\x04\xda\x4f\x3f\x95\x49\x50\x7d\x77\x96\x17\x87\x43\xaf\x3a\xdb\xd2\xfd\xa9\xdc\x31\x64\x8d\x81\x97\x05\x40\x5a\xff\x8c\x59\xe5\x66\x42\x8f\x28\x7b\x51\x18\xc2\x2f\x1c\xaf\x50\x83\xd5\xa9\x56\x7b\xfd\x45\x73\xdc\x2c\x20\x29\x6b\xd9\x01\xcc\x49\xba\xb7\xce\x49\x49\xed\x0b\xd6\x96\x53\xe9\x61\xc5\x64\x10\x2b\x26\xfe\xb6\x36\x59\xa6\x61\x45\x25\x39\x5d\x85\x50\xb4\x70\xa7\xb3\xd9\x29\xbf\x13\x3f\x95\x65\x3f\xaa\xbd\x8a\xbc\x9c\xec\x8a\xea\x2a\xa7\x65\xc2\xe8\x0b\x25\xaf\xbe\xab\x94\xdb\x5c\x06\x29\xf0\xa3\x2b\x87\xff\xa9\x58\xe8\xc5\x64\x19\x45\xed\x90\xe6\xa3\x29\x0c\x17\x7f\x7e\xff\x7e\x19\xfc\x40\x3f\x52\xf6\x89\x06\x58\xdc\xe7\x55\x41\x82\xff\x55\x86\x52\xfc\x90\xd2\xb6\x8b\xb2\x6f\xaa\x06\x3f\x67\xee\x99\x09\x13\x45\xe3\xb3\xc7\x00\x62\xc4\x6d\xd0\xf1\xb3\x27\x52\x86\xe5\x5a\x40\xa3\xf1\xd9\xb3\x73\x29\xc2\xf2\x5e\xf4\xeb\xde\x44\x7e\x71\x67\x8c\x5a\x36\x2f\xff\xc0\xd9\xa7\x92\xf0\x21\xf5\x2c\x6b\x9c\xc4\xfe\x7f\x68\xdb\x82\x0c\x79\x31\xb2\x87\xe3\x97\xe8\xc8\xc1\x73\xef\x5b\xca\x63\x9d\x08\x40\x2b\xc6\xf6\x70\x79\x1b\x10\xac\x53\x83\x4d\x96\x75\x3c\x43\x08\xd9\x77\xc5\x69\x4b\xb6\xd9\x23\xcf\xec\x2b\x96\xae\x0a\x9a\x36\x10\x00\xbc\xa5\x0d\xb3\xb4\xbc\xa7\x97\x10\xcc\x44\x17\xd6\x27\x78\x76\xf5\x84\x0b\x5d\x61\xf0\x8e\x5c\xbd\xfc\xbc\x5b\xaa\x8a\x0f\x07\x97\xfc\x0d\x16\xc4\x26\xe6\x2d\x96\xa0\x1d\xe3\xf6\xb7\xbf\xd5\xdd\x41\x08\xed\x06\x83\xdb\x06\xdd\x1d\x62\xbe\x90\xbc\x6f\x2b\xd6\x6d\xb3\xd3\xa9\x5b\x57\x22\xc9\x0a\x46\x89\x3a\x69\x2c\x5f\x13\x7e\x45\xf0\x65\x41\x8c\x56\x92\x80\x79\xa6\x22\xc9\x42\xad\x3f\x6a\xc5\xb7\x6d\x73\x76\x56\x91\x21\xc0\x91\x1b\x83\xaa\x6d\x0a\xfc\xb8\x45\x85\xad\x44\x2f\x91\x7d\xdd\xd8\x50\x0d\xf5\xc5\x2a\x4b\x5d\xf8\xa4\x5e\xd4\x4b\x39\xb4\x85\x58\xa2\x2a\x26\x0b\xb1\x54\xad\x41\xbf\x8c\x18\x28\xc3\xc0\x7e\xa8\x39\x75\xca\x15\x45\x64\xc1\x96\x73\xbe\x60\x4b\x94\xa9\xd3\x2f\x28\xd3\x21\x05\xa9\x4a\xab\x62\xf3\x5a\x03\xc8\x5b\x11\x2a\xf5\xb8\x28\xa2\x87\x83\x94\x3d\xf4\x65\x04\xd5\x06\xf2\x5f\x0e\x87\x12\x0e\xb4\x8e\x06\xd2\x0e\x87\xb5\x21\x25\xed\x49\x6e\xdc\xfe\xca\x95\xdc\x43\x00\x3e\xf7\xdb\x33\x1d\x4b\x2d\xe4\xd3\x4a\x1d\x5a\x7e\x31\x25\x36\x5e\xcd\x07\x66\x99\xab\x89\x1a\x31\xc5\xed\xad\x4e\x92\x3d\x43\x69\xd6\x8c\x4b\x59\x66\xde\xbc\xc6\x3a\xd4\x58\xe2\x74\x20\xe9\xe3\xc9\x74\x72\x3e\xcb\x12\x5c\x14\x03\xf6\xc4\x3d\xbe\xa8\x51\xf1\x1a\xf5\xae\x72\x8f\x14\xd8\x3d\x31\xd0\x46\x98\xc1\x25\x09\x30\x0d\x14\x74\x1a\x36\x86\x0c\xc8\x30\x0d\x9e\x67\x2a\x94\xa9\x00\x5a\x72\x51\x60\xd8\xa0\xcc\x23\x3a\x9b\x7f\x25\x4f\xd8\x16\x6a\x27\xfe\x36\x6f\x8b\x9e\x0d\x16\x3d\xf3\x8b\x9e\x2d\xd3\xa9\x1b\xed\x73\x31\x17\x29\xf9\x1d\x9d\xd3\xb4\x4b\xe4\x88\xb1\xa8\x16\x3c\x9e\xda\xdb\xd8\x5a\xf1\x2f\xa9\x58\x1c\x26\xfb\x29\x0c\xed\xba\xb7\x3c\xd6\x83\x73\x18\xd6\x21\x80\xe1\x95\x64\xef\x90\x51\xe9\x79\x58\x4a\xa3\x48\x99\x52\x2f\x26\x4b\xc7\x96\xc5\x74\x20\x6a\xa8\xed\xe1\x58\xf9\xda\xa7\xf3\x90\x5f\x5d\xc6\xae\xbd\xa3\xf9\x55\x2c\xcb\x57\xca\xa1\xf6\xf4\x31\xa8\x41\xf2\x13\xcb\x69\xac\x39\xd9\x10\x84\x20\x0d\xc3\x0e\x7d\xf5\xf4\xc1\x9e\x4b\x1c\x4b\xcb\xe3\xe9\x63\xd7\x77\xe5\xab\xcb\x86\xc8\x0b\x27\x61\x43\xf4\x52\x51\xe7\xeb\x58\xdd\x69\x77\xb6\x11\xe1\x6f\xc2\x1e\x8b\xae\x88\xa9\x64\xc7\xd4\x5a\x6a\x6e\xad\x20\x7e\x6c\x3c\x42\x85\x30\x85\xe1\x6f\x5c\x6b\xdc\x0c\x29\x04\xa0\xb3\x0b\xe4\xaa\x51\xd5\x09\x77\x5a\x66\x7b\x80\x63\x39\xa9\x76\x1e\xbd\x5e\xc6\x66\xa2\xf4\x54\xcb\x11\x4f\xa0\x00\xca\xef\x4f\x93\x24\xc6\x53\xd8\x30\xf3\x20\x29\x77\x45\x2e\xe2\x10\x86\xe0\x0e\x43\x50\x53\xf2\x6d\xc1\xb0\x19\xcb\x5e\x12\x02\x75\x81\x5b\xc2\x20\xe5\x75\x27\x18\xbb\x9b\x02\x65\x10\x81\x48\x1b\x58\xf7\xf5\xb6\xe5\xfa\xcf\xaf\x2e\x43\x30\x88\x43\xbe\x50\xf7\xfc\x7c\xee\x63\xc6\x44\xee\x66\x00\xc0\x6e\x65\x9b\xb2\xd0\x95\x2d\xa6\x4b\x14\x36\xd8\x26\x99\xea\xf0\x7f\x49\x48\x2d\xce\xda\x1f\xce\xf4\x07\x00\x43\x6f\x2d\xa8\x9e\x4b\xc8\x36\xe8\xda\x41\xc3\xce\x56\x6a\x75\x6f\x85\xc6\x8f\xa2\x59\x30\xf1\x6b\x2c\x36\xc9\x16\x7f\x56\x27\x1c\xe3\x64\xf2\x08\x3c\x30\x69\x39\x6d\xd2\x5a\xbb\xaa\x23\x2c\x46\x17\x64\x46\x69\x3c\xfc\xf8\x70\xb3\xed\x0a\x03\xe3\xa3\xab\xf0\x01\x3a\x7b\xf4\x08\x92\xe7\x28\x99\x9c\x3f\x3b\x7b\x3a\x27\x0f\xa6\x67\xc9\xb3\xb3\x54\xf5\x64\xc7\x3e\xc5\x31\x91\xfd\x78\x04\x1e\x4c\xe5\x1f\x3c\x4b\x1e\x7a\x71\x77\xdf\x28\x17\x26\x71\x9c\x9c\x4d\xcf\x1e\xff\x87\x5c\xfb\xe3\xe4\xc9\xf4\xd1\xd9\x7f\x48\xc0\x8e\x93\xc9\x93\x33\xf9\x78\xb6\x04\x89\x60\xdf\xe6\x9f\xc9\x2a\x3e\x07\x5e\x44\x1d\xdd\xb7\xc5\xd9\xf2\xc1\x74\x32\xe9\x44\x82\xfe\x59\x24\x34\x99\x3e\x6a\x82\x35\x13\xf0\xbb\xe4\xd1\x7c\xa5\xcf\xca\x74\xdc\xe4\x56\x04\x69\xff\x0c\x78\x1e\x13\xbd\x96\x05\xe2\x52\x8c\x52\xd0\x54\x77\x50\x24\x90\xa3\x48\x21\x92\x7b\x3f\x1c\x0c\x4e\x8c\x51\x88\x43\x00\x2d\x46\x2f\xce\x97\x48\x40\x89\xf3\x2d\xe6\x6a\xe5\x1f\xb8\x3a\x02\x92\xaf\x3b\x6d\xaa\x59\x25\x9d\x59\x55\x08\x0c\x48\x03\xb2\xff\x40\xd3\xfb\x62\x66\x63\xa0\x0f\x96\xd1\x98\xd0\x08\xce\x93\x19\x7d\x7e\x3e\xa3\x63\x34\x6d\x2a\xa2\xa6\xa2\x86\x99\x03\xbd\x20\xd3\xbf\x4c\x87\xc7\x28\x9e\x4e\x26\xf7\xbd\x14\xf0\x1f\xbf\xc8\x00\xc6\x28\x3e\x7b\xf4\xe8\xbe\x97\x22\x2b\xf6\x07\xa4\xb7\x73\x1a\x4f\xbe\x4a\xdb\x64\x22\x1c\xff\x89\x7c\xfe\xc0\xde\xfd\xf1\x0f\x88\x41\x91\xf0\xab\xcb\x0f\xec\x4f\xe4\x33\xca\x95\xf0\x6a\xac\xa1\x5e\xb0\x82\x71\x84\xe5\xf7\x76\x52\x05\x95\x11\xde\x0b\x46\x05\xc7\xa5\x78\x87\x45\xce\x50\xa9\x13\xbf\xab\xb6\x39\x55\x56\xf2\x05\x14\x09\xd9\xee\x36\xb8\xcc\xff\x49\x50\x06\x45\xb2\xc6\x2b\x82\xd6\xca\xf3\x29\xff\x48\x28\x5a\x41\x91\x14\xf9\xd5\x46\x10\x8a\x76\xb3\x4d\xac\x0e\x79\xef\x66\xc4\xf4\x75\xa3\x3f\x5a\xc0\xf0\x45\x21\xdc\xfb\xe7\xdb\x13\x78\x45\x5a\x4e\x97\xad\xbc\x6c\xf9\xa8\xba\x06\x9e\xba\x6e\xfa\xf0\xe1\x9d\x7b\xff\x4b\xab\x0a\xcf\x9f\x3c\x54\xba\x42\xfd\xfc\x04\x00\x88\x51\xac\x3a\xf5\x48\xbe\xc8\xa7\x87\x8f\x41\x3f\x10\x91\x40\x6d\x15\xe2\xd0\xb6\x34\x8a\x27\x30\xf7\xb4\x8c\x92\xe2\x34\xfa\x34\xbd\x59\x56\x08\x7b\xec\x65\xf5\x6f\x3b\x87\xe7\x4f\x9e\xde\x3a\x87\x6d\xe6\xd8\x1d\x8e\x20\x72\x38\x34\x3e\x83\x86\x0d\x38\x5a\x46\x08\xf6\xf0\xf1\x92\x18\x13\x13\x75\x9f\xc5\x19\x71\x34\x1a\x05\x07\x6c\x27\x64\xd6\xba\xc7\xa7\x0c\x62\x61\xde\x97\xfc\xdb\x16\x09\x8d\xd1\x5d\x93\x63\x67\xbe\xbd\x2a\x5f\x3a\x20\x7a\x46\x82\xfe\x59\x27\xbf\x51\xa4\xb4\x35\xa4\xae\xcb\x5b\x39\x7c\xc3\xa0\x86\xf8\x32\x0b\xd5\x3e\x4f\x16\x8f\x96\x28\x5c\x91\x10\x86\x8f\x24\x1b\x38\x38\x8a\x37\x78\x4b\xa4\xf8\xbc\x98\x2c\x9b\x4a\x1b\x43\x0d\x75\x54\x26\x09\xe8\x74\xa2\xcc\x47\xc5\x22\xbc\x08\xc7\x46\xaf\xb1\xe6\x6c\xfb\x62\x83\xf9\x0b\xb6\x22\x31\x05\x4b\x7d\x23\x32\x9c\x4c\xcf\xce\x1f\x3e\x7a\xfc\xe4\xe9\x33\xb9\xe7\x9d\x68\xf5\xb8\x76\x40\x2c\xc8\xd2\x31\xeb\x8e\x6f\x36\xc3\xf5\x74\x03\x72\xb0\x2b\xb2\xbe\xda\xe4\x3f\x7d\x2c\xb6\x94\xed\xfe\xc1\x4b\x11\x5a\x7e\x34\x1c\x10\xf0\x65\x1b\x0b\xb2\x44\x44\x72\xd1\x83\xa5\x1b\x48\x29\x2d\x41\x3f\xde\x0f\x68\x3a\xd6\x58\xd5\xb9\x0b\x63\x75\x0c\xda\xee\xac\xd3\x23\x1a\x69\x15\x85\x50\xa2\x36\x2c\xd0\x74\x56\xf4\xed\x61\x8a\xf1\x18\xec\xa9\x35\x69\xf3\xed\x49\x1a\xa3\x94\x4c\xdb\xc4\xe4\xd6\xea\x25\x93\xec\x6a\xa9\xa2\xe8\x2e\x32\x6d\x15\xce\xc0\xbe\x42\x2c\xa6\x4d\xa1\x35\x9a\xcc\xd6\xcf\x6d\x74\xef\xd9\x7a\x3c\x06\xd8\x56\x50\x2d\xd6\x4b\x5d\x87\x7c\x92\xd5\xa8\xff\xc6\x07\x75\x79\x9b\x0e\xfc\xab\xb4\x07\xca\x62\xf5\x21\xb0\xd6\xaf\x3b\x9e\x53\xf1\xfb\xf7\x1f\x86\xb4\xa8\x3c\xc1\x8e\x94\xd0\xf8\xd1\x13\x57\xa8\xb9\x29\x6b\x22\x81\x0c\x51\x23\x5b\x56\x29\x8b\x9f\xb9\xb2\x2d\x0f\x7d\x43\x25\x73\x57\x12\xcb\x6d\xa5\x29\xf9\x2d\x11\xd9\x46\x85\x64\x1e\x28\x85\x5d\xa9\x0a\xd1\xf8\xf1\xd4\x95\xf2\xbc\xae\x0f\x1a\xfa\xba\x72\xca\x02\xeb\xd9\x79\xa7\xe0\x0b\xe3\x5d\x7a\xc0\x04\x58\x96\xf4\x76\x30\xf9\xfe\xf5\x06\xc7\x6b\x6f\x7a\xa6\x8f\x8c\x3d\xf1\x33\x6d\x4e\xfc\xec\x5c\x6e\x7e\x6a\x54\x4a\xd7\x7e\xfe\x0c\xc0\x52\x59\x59\x18\x1f\x2a\x17\x17\xe4\xb3\x20\x74\x55\x7a\x56\x60\xbf\xda\xf9\xdf\x66\xe7\x5f\xb4\x41\x68\xed\xe8\xfe\x1d\x6c\xff\xb3\xe1\x23\xd4\x4e\xd0\xbf\x90\x32\x4a\xa4\xd8\x23\xab\x49\x5a\x11\x07\xa2\xa8\x93\xe0\x1d\x80\xe9\x62\x5a\x2d\xee\x42\x71\x68\x9f\x7b\x35\x5c\xdf\x7a\x49\x57\x24\x65\xb6\x21\x92\xf8\x70\x65\xa4\x65\xe3\xa0\x32\xf9\x45\x29\x00\xdf\xbb\xc0\xa5\x7e\x6c\xd4\xc3\x81\x29\x1f\x69\xcd\x15\xdf\x81\xed\x0a\x27\x8c\xba\xe2\x8a\x51\x6b\xdf\x02\xc6\x49\x5e\x1a\xff\x18\xc5\x8d\x89\x76\x8f\x46\x53\x28\xd3\x3f\x30\x4e\xbf\x61\x9f\xa8\x7e\x37\xdd\x42\x1c\x62\x2f\x9e\xa6\x17\x72\x53\x69\x90\xb1\x76\x0d\xf0\x6a\x85\xa8\x7e\x7a\x8d\x29\xbe\x22\x8d\xaf\xb2\xbf\xe8\xcf\x31\x80\xb8\x3b\x3a\x94\xcb\x34\x0b\x0b\x44\x6d\x65\xa6\x8a\x4e\x8d\xb2\x4b\x8a\xac\x12\x5e\xa2\xc5\x52\x16\xf5\x2e\x59\xfc\x49\x85\xcc\xd6\x1f\xdc\xfe\xd0\x37\x31\xe4\x47\x22\x66\xb4\x2e\x4a\x1f\x8d\x95\xa0\xe8\x0f\x64\xa8\x13\x9a\x85\x82\xbd\x32\x9f\x23\x4d\x07\x93\x92\x6d\xc9\xa0\xbe\x62\x84\x10\x93\x93\x42\xda\xe0\xf2\xbc\xe1\xc6\xc4\xc2\x14\xc0\x92\x88\x0f\xf9\x96\xb0\x4a\xb4\x1c\xef\xb6\x9d\x82\xd4\x70\x32\x18\xd7\x45\x59\x36\xd4\x33\x8e\x7c\x07\x2d\xac\x6f\x5e\xe7\xfb\xd1\x1f\x72\x89\xdf\x60\x86\xe1\x7e\xb4\xf7\x14\xf5\xcd\x39\xbc\x9d\xef\xeb\x26\x45\xd7\x35\xef\xbc\x27\xda\x07\xb4\xed\x6a\xbb\xbc\xef\x85\xa5\x1d\xcd\x83\x25\x58\xbb\x99\xaa\x7b\x9e\x81\x2d\xf4\xb4\x33\x14\xc1\xb8\x32\x22\xf5\x7c\xf3\xbe\x5a\x29\xc6\x43\x1d\x7c\x68\x1f\xce\x0a\xa9\x7d\x47\xe1\xa0\x35\xa8\x7d\x7d\xbc\x23\x9d\xb0\x3b\x66\x18\x12\x5d\x70\x82\xbb\x11\x4b\x3a\xe4\x03\xfa\x64\x22\x6d\x53\x0d\xab\xb0\x97\x54\xb3\x3f\x36\x29\x76\xeb\x19\xf2\x3d\xaa\xcb\x7c\x5a\x61\xab\x5c\xd8\xe4\x92\x86\x63\x2e\x72\x5c\xc0\x0a\x8d\x88\x47\x98\x74\x67\x25\x01\x49\xb0\xf3\xe1\x55\xa2\x76\x3c\x07\x49\xcc\x7c\xf8\x78\x3e\x84\xa3\xa8\x3a\x1c\x72\x17\xec\xc1\x86\x7f\x38\x96\x7d\x26\x10\x99\x77\x1a\x4f\xcb\xb9\xd7\xb8\x9a\x50\x4e\xf0\xea\xc6\x9c\xd6\xec\x8d\x77\x30\xfb\xdd\x5d\x3d\xb8\x54\x96\x00\xed\xaa\x44\x3d\xd3\x81\x90\x7a\x04\x3b\xc4\x45\xd1\x1b\x88\x37\xd1\x51\x14\xaf\x4d\x3c\x1a\xd4\x29\x0c\xe0\x28\x37\x7b\x6a\x83\xae\xa8\x90\x3c\xf6\x1a\xee\x4b\x81\x95\xed\x7b\xed\x76\x18\xfb\xc5\x80\x3c\xcd\xbb\x6b\xaa\xe5\x81\xfa\x58\xc4\xbb\xa6\xa9\xc1\xc2\x1d\x9f\x43\xfd\xb2\x1a\x79\xba\xf4\xad\xe5\xd4\xda\x2f\xee\xfb\x73\x69\x9a\x86\xdd\x64\xbd\x1a\x3b\x0b\x7f\x20\x2a\x40\x3f\x08\x8d\xe7\x7d\x7d\x08\x31\xa4\x40\xe6\xe1\x90\x17\x5e\xc4\x92\x5b\x13\xf4\x22\xf6\x0e\xc8\x9a\x02\x81\x57\x97\xf1\xf7\x60\xcf\xcb\x8c\x48\xad\xee\xf8\x08\x76\x45\xd4\xe5\x08\x25\x59\xab\x95\x14\x98\xce\x26\x21\xb0\xda\x87\x98\x27\x79\xf9\xf2\x1f\x15\x2e\x8c\xd1\xb0\xe7\xed\x07\x1c\x0e\x9d\xb4\x23\x1e\x60\xfc\x32\x56\x4b\xd1\xab\xd8\x42\xa2\xc9\xdc\x2e\xeb\x5a\xeb\x65\x3c\xd2\xea\xad\x15\xda\x30\x1c\xfd\x15\x7e\x38\x84\x94\xdd\x57\x20\x55\xef\x90\x69\x1c\xf7\xeb\x6d\x47\x61\xa1\x73\x91\xb6\xeb\xe9\x78\xb4\x69\x91\x2a\xe7\x09\xef\xa6\x45\x82\x21\x83\x95\x5a\xf2\xea\xfb\x71\x67\xc8\x0e\x82\x5b\x7c\x73\x49\xbe\x21\x64\xf7\x2d\x27\xe4\x9f\x44\x59\x23\x76\x16\x98\xaa\xea\x35\xe3\xc7\xfc\xff\x2b\xbb\xb4\x96\x07\xfd\xfe\xe1\xab\xf7\xd1\x22\x54\x5e\x5a\x57\xa2\xf6\x12\x59\xa3\xfc\x56\x52\x64\x19\x6c\xd8\xa7\x40\xb0\x40\x17\x56\xce\x47\x34\x92\x49\x22\xa6\x91\x4e\xa6\x29\x36\x5a\xaf\xc1\xc4\x84\xbf\x71\x36\xde\x0d\xb6\xab\x70\x2f\x71\x17\x22\x2e\x28\xf0\x2d\x1c\x55\x73\x97\xc3\x70\x0c\x73\x92\xea\xf9\x74\x93\xd9\x72\x50\xd4\xc7\xa7\x23\x4e\xae\x94\x11\x91\x87\x06\x1d\x54\x82\xe2\xe8\xb4\x73\x48\xd5\x5c\x53\xc6\xb7\xb8\xb0\x19\x5f\xad\x40\xdd\x1d\x24\x6f\xe8\x59\x2b\x08\x4a\xcb\x66\xc2\x9e\x7c\xfb\x19\x84\xc1\xd0\xd7\xce\x75\x70\xca\xf5\x26\xd8\x8c\x94\xfa\x1e\x98\x94\x0d\x44\x07\x7d\xbc\xe8\x04\x27\x90\x68\x70\x3f\x56\xbe\xa8\xfe\xa8\x77\x8f\x96\x37\x29\xe7\x8f\xcf\xda\xfe\x1c\xf3\xc5\x77\x3c\xc8\x1f\x95\x92\xa4\x37\xd8\x28\x3a\x06\x1c\xc8\x9b\x58\x74\xae\xea\xd9\x31\x80\xf9\x9c\xf2\x37\x72\xb3\x6d\x39\xa9\xd6\x37\x2e\x3a\xfc\xa3\x0d\x0a\x64\xbd\x89\xfb\x12\x94\x4b\x8d\x05\x98\x49\x21\x94\x15\x26\xf6\x4a\x1c\xfe\x40\x37\x8a\x15\x5f\x05\x06\x46\x81\xdf\x78\x40\xb4\x9e\x41\x80\xba\x43\x48\x06\x98\xf9\x64\x57\x95\x1b\xc9\x58\xf7\xd9\xf5\xc1\xec\xf6\xd8\x85\x82\x19\xf9\x1d\x9a\x48\x11\x6f\x30\x5f\xb9\x53\x46\xe6\x04\x4e\x25\x9e\xb7\x58\xe9\xee\x05\x9f\x26\x38\xc6\x2d\x3b\xdd\xcc\x7f\x39\x4d\xb9\xa1\x8a\xf3\xe3\xc7\x52\x98\x37\x4e\xce\x8c\x48\x16\xb7\x33\x80\x54\x9f\xe0\xfb\x69\x46\x2e\x2f\x05\xdb\xd9\x42\xc3\x94\x5f\x1d\xb1\xb6\x18\xba\xde\xce\xd0\x8a\xa4\x73\x38\x74\xb7\xe9\x4e\xe9\x36\x23\xd8\x2d\x5b\x0a\x4c\x57\x97\x83\x05\xed\xa7\x7e\xa9\xd1\xb4\x8d\x0c\x44\xfc\xd5\xe2\xe7\xb1\x6d\x94\x42\x53\x87\x61\x75\xba\x2b\xdc\xab\x02\x75\xb5\x4e\x1d\x3d\xc0\x68\xea\xdd\xc6\x36\xfe\xf6\x26\x60\x80\x07\x32\xba\x3e\x1b\x6c\xa5\xb7\xf0\xfa\x3c\x00\xeb\xee\xce\x51\x34\x12\xf3\x89\x63\xa0\x9d\xc0\x68\x4d\x4e\xe8\xdc\x44\x47\xd1\xb1\x4b\x86\x23\xf7\x79\xf2\x64\x0c\x6a\x90\x76\xf9\x15\x76\x84\x55\x40\x0c\x4e\xd0\x91\xa6\xe7\x77\x6a\xe9\xee\x9b\xfe\x00\x67\xd1\xf1\x95\xe7\xbb\x27\xfd\x4a\xa6\xe0\x8e\x01\x73\xbc\xf5\xda\x95\xad\x54\xe6\xbf\xe5\x62\xf3\xbd\x09\xf7\xe5\x09\x58\x8d\x1c\x4e\x91\x70\xf1\xc0\x0c\xdf\xdc\x8f\x91\xe0\xe8\x3e\x6e\x2e\x7f\x0b\x7e\xf3\xad\xe9\xc8\x5b\xfe\x1d\xbb\xd2\xc4\x74\x20\x8a\x0e\x89\xa9\x0f\x20\x45\x94\x67\xd8\x7a\x6f\x6c\xf5\x5a\x6e\x76\x5a\xd8\xdd\x62\xfe\xf1\x87\x66\xcc\xa6\xeb\x39\x64\x10\xfb\xd1\x7e\x6c\xc1\x4b\xce\xf0\x2a\xc3\xa5\x30\xde\x8a\x7b\x71\xb9\x3c\x62\xd2\xbb\xe4\xd6\xd7\x1b\xb9\x60\x78\x56\x85\xe3\x97\xef\x63\x04\x68\x23\xa5\x4f\xcb\x8c\x96\x0b\x1e\x69\x48\x2e\xd0\x6e\x47\x1b\x5a\xd9\x9a\xe9\x46\xc8\xd0\x91\x07\x4f\x08\xb6\x7d\x3a\x77\x24\x63\x9f\x73\x34\xf0\x0b\xc4\x06\x0b\xe7\x9c\x4e\x39\x55\x6d\x9a\x0e\x30\x5d\x05\x83\xe2\x8b\x2c\x69\x0e\x02\x71\x51\x32\x29\xba\xec\xf4\x50\x14\x2b\x99\x13\xc5\x32\xfe\xa2\x40\x1f\x86\xe9\x89\x09\x21\xc7\xcb\x99\x69\xf2\x3b\xd0\x4c\x86\xd7\x03\xbb\xec\x5b\xdd\x69\x4f\xa3\xa7\xab\x3c\xc6\xc7\x3b\x96\xe6\xa2\x6c\xf9\xca\xed\x24\x24\x17\x96\x9e\x45\xd1\xe8\xe8\x37\xcd\xa4\x28\x6d\xef\xc9\x1c\xad\xce\x1c\x65\x70\x0c\x2f\x43\x92\x2d\x29\x4b\x7c\xa5\xa2\x77\x0a\x9c\x7d\x04\x36\xec\x57\x43\x62\x15\x27\xa3\xf6\x7d\xc9\xf0\x99\xad\xbb\x11\xc2\xe5\x70\xe4\x87\xb8\x93\x2e\x0b\x98\x2e\xb7\xe5\x73\x59\x40\xf7\xa7\x9d\x0e\xe0\xf4\x18\x7d\xb7\xfc\x02\x11\x3f\xec\x6c\x7c\x67\x7f\x8d\x7b\xda\x55\xef\x39\x59\xe7\x85\x20\x7c\x88\x2d\x17\x72\x1b\xaf\x81\xde\x51\x86\x9a\x4b\x04\xc1\x5c\xee\x9c\xa6\xb9\x3e\x6f\x65\x7a\x72\x44\x1f\x6b\xf5\x8f\x1d\xb5\xb1\x19\x48\x8b\xb2\xe1\xd5\xaa\x73\xe6\xd6\xde\x8c\xb4\xba\xec\x28\xba\xff\x5f\x40\x37\x7e\xee\xba\x35\x87\xf0\x6d\x79\x45\x9d\x7c\x79\x1a\x33\xd1\xd2\x81\x0f\x9e\x78\xdb\xe5\xac\xd7\x81\x45\xfb\x23\x12\x08\x69\x30\xfb\x4b\xea\x26\x9d\x25\x02\xf4\x65\xce\x61\x51\xee\x08\xb6\x0c\x80\xa1\xa5\x6d\xfe\x4e\xdd\xf8\x26\xfc\x5b\xc6\xdf\x9a\x5e\x9d\xaa\xa4\xbb\xd3\xb6\x96\xc6\xc0\x5e\xdb\x30\x9d\x47\x77\xc5\x5f\x7e\x27\x18\x12\x96\x4e\x02\xba\x7d\x0c\x71\xbc\x16\xb4\x58\x0e\xc0\x51\x9f\x79\x9c\x5a\xb7\x43\x4c\x8c\x1c\xe4\x71\xe6\xc2\x3b\x21\x52\xf7\xe5\xf3\x04\x7f\x99\x71\x8f\x1e\xdb\x22\xd4\x86\x25\x7f\xc5\x45\x45\x42\x18\xfe\x81\xb1\x82\x60\x6a\x5f\x5f\xd2\x6a\xab\x9f\x97\x4e\xea\x24\xc9\xc7\x9c\xae\xc0\xef\xee\x4f\x3b\xe6\xea\xb6\xc6\x57\x54\xd8\xf2\xca\xe6\xf8\x2e\x15\x78\xf7\x6c\x5a\x3d\x52\x32\x9b\xcc\x3e\x78\xdd\xa6\xdd\xdd\x81\xbc\x95\x97\xd7\x75\x6b\x20\x5f\xe9\xe5\xf3\xfa\x3c\x90\xb3\xf0\x72\x5a\xb9\x6b\x28\x5f\xe6\xe5\xd3\x4c\xf2\xd1\x2a\xd7\x5e\x56\xb9\xda\x8e\x66\x5c\x79\x19\x9b\x99\x19\xc8\xb8\xf3\x32\xbe\xa9\x8a\xe2\x68\xc6\x8d\x71\xf7\xc5\xd5\xc6\x50\xc5\x14\x1c\x0e\x65\x4c\x01\x20\x0b\x63\xf4\xbb\x44\xc6\x74\xd8\x58\xcc\x03\x67\x08\x8a\x55\xee\xbc\x93\xdb\x64\x73\xb9\x32\xf9\xdd\x68\x70\xf6\xf5\x8c\x26\xeb\x9c\x14\xab\xa3\x66\xce\x9b\x98\x49\xde\x41\x87\x08\x57\x35\x41\x2e\x17\x9c\xd7\x02\xab\x6d\xdd\x85\xab\x7b\x8b\x62\xae\x02\xd3\x2f\x74\xd0\x52\x93\x77\xe6\x15\xdb\xba\x62\xeb\xe1\x2e\xf7\xfb\xe4\xdc\x47\xba\xce\x51\x28\xa0\xec\x11\xa4\xae\x78\xdd\x40\x64\x75\x02\x16\xca\xa0\x6c\x27\x33\x74\x37\xcb\x7b\x1f\x36\x24\xc8\x69\x91\x53\xd2\x5c\x90\x09\xef\x8d\x4d\x35\xe3\x7b\x61\xc0\xd6\xc1\x47\x15\xda\xe0\xde\x98\xaa\x19\x1c\xdf\x0b\xf3\x52\x1d\x07\x94\xd5\x6e\xc7\xb8\x20\xab\x24\xf8\xa1\x24\x81\x13\xac\x94\x13\x2a\x82\x57\xb2\x6c\xa7\xf2\x32\x10\x2c\x60\xd7\x84\x67\x6c\xab\xcf\x43\x82\x22\xdf\xe6\x26\x44\xd3\x3d\xe0\x43\x4d\xf9\xe3\x68\xf0\x65\xeb\x9b\xca\x2b\xb7\x06\x24\x59\xe5\x9c\x64\x22\xbf\x26\xa5\x52\x28\xec\x6b\xe8\xa7\x0d\xd2\x55\xba\x20\xfe\x34\xe9\x32\xae\x7b\x72\x43\x6b\x0c\x2a\x7a\xe5\x3d\x85\xa0\xc2\x93\x5c\x69\x06\x25\x9c\x9b\x69\x6a\xd7\x0f\x19\xcc\x95\x65\x67\xed\xa2\x09\xa8\xbe\x3b\xf2\x7e\xa4\x69\x77\x3b\x86\x77\x7a\x38\x38\x28\xeb\x99\x5c\x7b\x3f\xb3\x97\x26\x9a\x4e\x71\x48\x21\x53\xdd\x00\xf0\x26\xf6\x3b\x08\x39\xa4\x9e\x31\xf7\x8d\xa5\xde\xf9\x3a\xa6\x51\x44\x93\x8c\x51\x4a\x32\x2d\x0e\xf8\x6f\xc9\x47\x72\xa3\x73\xf9\x89\x9a\x91\xed\xe4\xd4\x89\xce\xb6\xc3\x6a\xde\x07\xf2\xcc\x07\xd2\xd2\xc5\x72\xc6\x93\x92\x71\x11\xbb\x08\xf7\xca\x89\x49\x13\xf4\x65\x08\x22\xf9\x42\x2e\x57\x65\x57\x08\xbb\xfd\x56\x77\xfc\xff\xfc\xfe\xed\x1b\x13\x30\x28\x5f\xdf\xc4\xb9\xbe\xe4\xef\xee\x20\xb6\x4b\x18\x77\x59\xca\xac\x5d\x58\xf7\x84\xef\x63\x10\x0b\x30\xc3\x63\x24\xeb\xab\x5a\xe5\xdb\xd7\x15\xe9\xb0\x65\xe2\x7d\x29\x47\xfc\xd4\xec\x4d\xfa\xee\x09\x59\x76\x0a\x2f\xc8\x12\x58\xfd\x91\x6c\xec\x3f\xc3\x31\x19\x1a\x82\xca\x28\x7b\x91\xda\x5c\x92\x7a\xe1\x66\x72\xaf\xbd\x38\xf4\x27\xd1\xae\x4f\x7e\xee\x82\x80\xfc\x04\x02\x52\xc8\x0d\x02\x36\x4e\xee\xd5\xfa\x76\x9d\xbb\x6c\x31\x3d\xb8\xc8\x71\x39\x37\xff\x89\xf1\x92\xe6\xa1\x6d\x53\xee\xca\xdf\x3e\x25\x7d\x1f\xda\x6b\x3e\xb5\xf6\x62\x49\x91\xbe\xe5\xf8\x4a\xdd\x2f\x1c\xc8\x7d\xd1\xb9\x4c\x9d\x9b\x3a\x25\x53\xd9\xe4\x7a\x7b\xca\xea\x49\xb2\x7b\x1f\x62\x7d\xd7\x49\x96\x87\xf6\x60\x69\x95\x8a\x1a\x0e\x79\xb4\xdc\xe7\xab\x94\x40\xf9\xaa\xfc\x13\x9a\xf0\x38\xa9\x7f\xd3\xe2\xa5\xef\xcb\xc3\x39\xff\xed\xdf\x57\x8e\xa2\xf0\xa7\x52\xdf\xba\xec\x76\xfa\x73\xe3\x12\xd2\x13\x99\x2c\x33\x11\x50\xb6\x22\x65\x80\x39\x69\xd3\xf7\xe0\xf2\x26\x50\x60\xff\x96\xb3\xed\x1b\xb6\x22\xfe\x15\xa6\x8f\x1a\x0e\xe5\xa7\x5c\x64\x9b\xb8\x03\x87\xcf\x52\xba\x56\x2c\xd7\x3e\xc3\x25\x69\xd8\x96\xd4\x33\x74\x9f\xa9\x4f\x0d\xb3\x90\x7a\x63\xd4\xdf\x1c\xff\x94\xf6\x2e\xfa\x19\x32\x36\x9d\x98\x6a\x3c\x16\x2a\x1d\xb8\x82\x66\x39\x09\x95\xb7\xe1\x78\x52\x87\x79\xa7\xaf\x42\x7d\xb4\x76\xfa\xaa\xbc\xcf\x5c\xa5\xcd\x0d\x94\x7d\x0d\x39\x9a\xa8\x65\xa0\x39\x8e\x19\x7f\xce\xac\x75\x1e\xb7\x6e\xef\x72\xc4\x16\x7c\x39\xa3\x8b\xbc\xb5\x1f\x7d\x8c\x73\x33\x24\xe1\x4c\x21\xe8\xcc\x7a\x90\x68\x77\xb3\xae\x45\xb2\x41\x1c\x8a\xe4\x4a\x5d\x38\xd9\xa2\x0d\x14\xc9\x4f\x68\x0b\x45\x72\x89\x6e\x94\x97\xa8\x6b\x28\x92\x1c\x5d\x42\x91\x64\xe8\x0a\x8a\x84\xa0\x4f\x50\x24\x2b\x74\x01\x45\xf2\x11\xbd\x85\x22\x59\xa3\x97\x50\x24\x05\xfa\xa8\xc8\xeb\xf7\x88\xc6\xd3\x27\xcf\x00\x7c\xaf\x3c\x46\x7d\x0f\xe0\x87\x7f\x5f\x13\xc5\x9f\xd0\x22\x6c\x28\x79\x08\xc3\x9c\x66\x45\xa5\x6c\xe4\xcb\x8f\xf9\x2e\x84\x36\x60\x13\x0c\x39\x29\xe5\x9f\x36\xc9\x0f\x97\xb7\xc8\x33\xf1\xa0\x01\x62\xa3\x6a\xf6\x1c\x17\x8c\xbc\x45\x1e\xee\x38\x5b\x55\xba\x33\x69\xb8\x22\xd7\xa4\x60\x3b\x45\x86\xea\x21\x09\x49\x56\xa8\x1c\xd7\x79\xc2\x8e\xb3\x3d\x97\x8b\x8c\xc7\x7e\x8d\x2d\xdf\x01\xdd\x7c\x7e\x63\xad\xab\xa3\xdd\x8c\x42\x02\x02\xd4\x12\x77\xa8\xc2\x1a\xae\xf0\x85\x29\x9c\xca\x15\x06\x61\x15\x36\x59\xc1\x9e\xc6\xd3\xa7\x67\x77\xbe\x9f\xf3\xec\x21\x50\xfe\x9e\xf8\xad\x66\xca\x83\xe0\xe8\x22\x40\x1c\xb6\x2c\x8c\x54\xaf\x2f\x11\x87\xa7\x6c\x9c\x1b\x6b\xf2\x5f\x6d\x97\x7f\x6e\xe0\x85\x01\x7d\x72\x18\xda\xce\x75\x2e\xe6\x77\x8c\xc1\xa2\x68\xa2\x4e\x28\x87\xec\x7f\xfb\x76\xc1\x27\x78\xde\xb9\x53\x0d\xa7\xa1\xca\x1d\x98\x57\x1d\x95\x8d\x55\x74\x95\x84\x33\x31\x46\xa1\x3d\x2b\xd7\x2a\xb0\x20\x1c\xd3\x71\xf8\x23\x0d\x6b\xad\x31\x6e\x4c\x05\xe5\xc6\x35\x46\xf6\x8e\x40\x93\xbd\x9d\xcb\xb6\xaa\xea\x00\x50\x20\x91\x70\xb2\x2b\x70\x46\xe2\x07\x3f\xd2\xdf\x3e\x80\x61\xa8\x7c\x72\x1e\xb1\x54\xa6\x0d\x1b\xdc\xb6\x61\x54\x8e\xfa\xbc\x76\x20\x46\x54\xeb\xd8\x5e\x1b\x0d\x78\x25\x13\x3e\x0b\x8e\x5f\xd1\x35\x83\x65\xcb\x5a\x19\x77\x4c\x91\xcb\x76\xed\x88\x1f\x0e\x8b\x25\x2c\x5b\x2d\x20\x76\x38\x48\x44\x80\xa5\x1d\x13\xc2\x52\xb8\x2e\x01\x2c\x9b\x86\x50\x05\x4b\x1f\x89\x3d\x94\x28\x2d\xc5\x65\xc6\x18\xb8\x8e\x9d\xa5\xf6\x17\xaf\x71\x89\x5f\xca\x81\xc4\xa9\x45\xcc\xd4\xa5\x87\xcb\xbe\x17\x28\x0f\xc6\x64\x20\xda\x7c\x07\xcd\xab\xa2\x00\x46\xa9\xb5\xc2\x02\x23\xe7\x99\x9a\xb4\xfc\xba\x18\xbf\x1c\x47\xac\x04\x65\x49\x29\xa1\xb5\x6c\x0b\x87\xbc\x63\xb8\xdc\x52\x2a\x69\x15\x28\x5b\x05\x24\x45\xf0\xf3\x22\xd1\xce\xad\x8d\x09\xfb\xf1\x94\x6c\x76\x1b\xd5\xdf\x2f\x93\x15\x04\xf3\x9e\x0a\x54\x0d\x7a\x00\x26\xed\xb2\x06\xad\x87\x1b\x44\xc4\x71\x02\x9d\x1a\xea\xf8\x4b\xe6\x5f\x7b\x7e\x87\x18\x56\xb0\xd4\x4b\xa3\xe8\xf9\x3a\xd1\x47\xfa\x56\x14\x12\x86\x47\x4e\xc5\x7c\x21\x96\x2e\xae\xba\xbe\x95\x36\xca\xa2\xa8\xd0\xf5\xac\x51\xb1\x98\x2c\x67\x19\x5a\x47\xd1\x3a\x29\x58\x66\xfe\x92\x92\x55\x3c\x23\xb5\x76\xb9\xc8\x66\xa3\x55\x14\x15\x51\x14\xaf\x50\x31\xe4\xc9\xd0\x33\xa5\x52\x75\x10\x7d\xde\x24\x74\x55\x02\x73\x01\x20\xa9\xe1\x62\x09\x00\x5c\x45\x91\xc4\xb9\x55\x23\xc5\xaf\xcc\xac\xe8\xbd\x67\x67\x6f\x9a\xb2\x28\xa2\xf3\x1d\x62\xc7\xd8\x4d\xe7\xe3\x1e\x83\x98\x42\x29\xcf\xa5\xb2\x8b\xbb\x2f\xea\xa2\x5f\x89\xf0\x46\x0e\xfd\xbe\x37\x9d\x1f\xba\xd0\x95\x1b\x13\x11\xb8\xb7\xb4\x76\xd0\x73\xf5\xc4\xf7\x5c\x5d\x43\xeb\x77\xb6\xb4\xb9\x77\xf6\x2a\x67\xbb\x54\x0d\x95\xb7\x49\x93\x09\x1f\xcb\xa4\x84\x13\x9b\xab\xb0\xb9\x6a\xa8\x47\x63\x3f\x64\xcd\x87\x1d\x2b\xf3\x56\xfb\xab\xe6\x1b\xe3\xf9\x55\x4e\x71\xa1\x6d\xc5\xcd\xf7\xaa\x86\x8a\x0f\x28\xfd\x42\xe5\xe1\x50\x45\x51\x95\x34\x5f\xea\x1a\x40\x95\xa4\x4e\x22\xe7\x47\x6e\xc0\x49\x70\x85\x2a\x87\xbb\xff\x66\x4a\x9c\xf4\xef\x0d\x52\xbd\xbd\x64\x78\x27\x2a\x4e\xde\xcb\x02\x1f\x38\xce\xc8\xfc\x48\xba\x6e\x89\x83\xf4\xee\xfd\xd0\x62\x1f\xb8\x4b\x6f\x14\x1f\xc8\xdd\xfd\xbb\xe9\xe4\x91\xbe\x0e\x36\x9d\x3c\x06\x33\x7e\xd4\xe9\xb9\xee\xeb\x69\xaf\xe7\xbc\x86\x4a\xd4\x35\xaf\x76\x7f\xd6\xb7\xe4\x6a\x68\x7d\xb0\xd8\xef\x7d\xf2\xeb\xbb\xcf\x57\x87\x8f\x75\x3d\x14\xac\xa3\x4d\x66\x0c\xed\xba\xb8\x30\xe1\xe7\x2e\x2e\xec\x39\xfc\xc5\x05\x56\xf9\xca\x8b\x0b\x77\x96\x72\x71\x91\x6d\x70\x4e\x2f\x2e\xd0\x68\x24\x6c\x92\x52\xd8\x5c\x5c\xa0\x89\x4d\xd0\x32\xe3\xc5\x85\x25\xbd\x0e\x5a\xd3\x89\x86\xd6\xe3\x0e\xb0\x98\x76\xe8\xad\xdf\x00\xe4\x2d\x67\xc8\x0d\xcf\xc6\xe1\x51\x6f\x99\x5d\x17\xa9\xe6\x34\xdf\x08\x1a\xb3\xae\x96\x20\x6e\xd4\x04\xe2\x70\xf0\x1d\x33\xb5\x5c\x72\xd2\x13\x8d\x80\xfd\xf1\x8c\x8d\x1f\x2f\x1a\x3f\x7e\x0a\x94\xdb\x5c\x7d\x61\xda\xbb\xe5\x3c\xe0\x92\xcd\xdd\x05\x3d\x7f\x0c\x5a\x8e\xe5\xcc\x40\x4a\x52\xac\xa3\xa8\xf9\x4d\xcc\x56\x6c\xef\xec\xea\x54\x98\x4b\xbe\x86\x1d\x0e\xd6\x0a\x28\x0e\xbd\x2d\x37\x04\x31\xf0\x7a\x91\xdf\xc5\xd5\xec\x90\x7a\xc5\x79\x83\x3b\x01\x2e\xcd\x93\xb6\xf6\xad\xd9\x49\xa0\xb5\x59\xa0\x2f\xc3\xcc\x55\xce\x2f\x2e\xd0\xd4\xbe\x6a\x75\xa9\x2a\x36\x72\x89\xda\x89\x20\x21\xed\x92\x02\x7f\x24\x2f\x58\x45\xc5\xc5\x05\xc2\x0e\x89\x73\xf2\x49\x67\x1b\xc4\x5f\x88\xd1\xc3\xb3\x67\x0f\x9f\x3d\x7e\x72\xf6\xec\xd1\x2f\x8c\xcc\x47\xe5\xc5\xb3\xc7\xcd\xcd\xdb\x41\x46\xd0\xbf\x1d\x1c\xd3\xf8\xec\xc9\x23\x20\x45\xd2\xe9\x63\xe0\xca\x0d\x86\xce\xd1\x37\x83\x65\x81\xc7\xb2\xc0\xd9\x93\x27\xfa\xef\x99\xfa\x7b\x3a\xd1\xb5\x3c\x95\x7f\x4f\x1e\xea\xb4\xa9\xfe\x3b\xd3\x7f\xe7\xfa\xcf\x7c\x7b\x74\x57\x01\xf8\xe1\xb4\xe5\x8a\xbb\x27\x6c\x2a\x3e\xdc\x63\x06\x9b\x3d\x9d\x39\xf7\xf2\x04\x86\xbf\xb7\xbe\xd4\xad\x8e\xae\x6c\x5c\xc8\xef\x38\xdb\xee\x44\x80\x45\x80\x03\x91\x6f\xd5\xdd\x4b\x24\x7c\x18\x10\xa3\x9e\xd3\xcd\x81\xba\x86\x5e\xd8\x6c\x75\x24\x07\x73\xe7\x81\x61\x84\x0c\x75\xc1\x83\xfe\xdc\xc8\x5c\x8b\x95\x29\x19\xf0\xaa\x8d\xe7\x43\x45\xf8\x9c\xc7\x18\xe6\x20\x8d\xe5\x98\x46\x53\x7f\x38\x94\x90\x55\x19\xe0\xe0\x8a\x88\x1f\x4a\xc2\x5f\xc8\xed\x88\x6f\xb1\x3e\xab\x74\xca\x0d\x1a\x30\xbe\xfa\x7f\xd8\xfb\x17\x36\xb7\x6d\x2b\x61\x1c\xff\x2a\x1a\x34\x55\x88\x0a\xa6\xa5\xb9\xd8\x63\x2a\x8c\xd6\xb1\x27\xad\xdf\x8d\x3d\x7e\x6d\x67\xf3\xee\x23\xab\xb3\x14\x09\x49\xac\x29\x40\x25\xc1\x19\xab\x92\xfe\x9f\xfd\xff\xe0\xe0\x42\x90\xa2\xe6\xe2\x24\x6d\xb3\xbf\x64\x9e\x58\x24\x88\xeb\x01\x70\x70\x70\xae\x34\x07\x13\x81\x82\x76\x22\x33\x66\x4d\x9c\x20\x4c\x52\xef\xa8\x8f\x71\x90\x7a\xe0\xe7\x30\xc2\x5a\x00\x27\x53\x77\x24\x0f\xc7\xc6\xc7\xeb\x46\x5d\xeb\x97\x2b\x11\x08\x75\xf8\xe5\xcb\x0f\x79\xc4\x14\xe1\xf0\x81\x07\x8c\xc8\xbd\xc8\x12\xa3\x8a\x10\xec\x5f\x79\x8f\xfa\xa4\x16\x76\x1c\x54\x2e\x54\xa4\x07\x4d\xc8\x58\x1e\x17\x76\xa4\x16\x2d\x8a\xd7\x42\xee\xdc\x3c\xcc\xf7\x14\x82\xea\xb6\x8d\x0c\x62\x24\x30\x2e\xd2\x99\x55\x91\x28\xdc\xf3\xd1\xf0\x13\xf6\x7d\xcb\x12\x11\x1a\x47\x79\xda\xd3\x03\xd5\x8e\x1e\xd8\xa4\xce\x8a\x6b\x17\xab\x54\x0c\x7a\x77\x7c\x4a\xf9\x43\xb9\xf2\x4e\xef\xbb\x13\x4e\xbe\x84\x15\xf4\x7b\xa4\x9b\xdf\x23\xdd\xfc\x8b\x22\xdd\x30\xef\xf4\x14\x93\xe5\x6f\x20\xe2\xcd\xba\x8d\xfb\xd0\x6f\x8f\x48\x42\xf1\x8e\x5c\xff\x2f\x8a\x90\x43\xd2\x46\xbc\x9a\x5f\x3c\x30\xce\xf2\x60\x60\x9c\x5b\xa2\xdf\x98\x34\x6d\xd4\x50\x2f\xa9\x7e\x7e\xb1\xc8\x38\xc4\x0d\x55\xae\xb2\x24\x90\x07\xdc\x3a\xda\x56\x78\x48\x4d\x68\x0b\x6a\x02\x58\x44\x21\xd5\x51\x2e\x4a\x99\x68\x42\x4e\x40\xa8\x8a\x2a\x48\x45\xe6\x61\x49\x58\xfd\x37\x2f\x5d\xe3\x50\x89\xb2\x55\xa4\x97\x6f\x25\x0a\x81\x20\xe2\x30\x3c\x0f\x77\x78\x29\x8a\x34\x91\x27\xb5\x89\x7d\x83\x8c\xbf\x13\x0d\x04\x12\x83\x1a\x4d\x05\x29\x6c\xa3\xd5\x34\x0c\x3f\x16\xf2\xba\x17\x13\x13\xa1\x42\x07\xc8\x48\x09\xf4\x3b\x88\x9c\x40\x19\xe5\x8e\x14\x0a\x76\xb7\x05\x9c\xd9\x8b\xfc\x53\x4a\xaa\xc4\x0d\x73\x63\xb3\x6b\x69\x81\x4a\x55\x81\x67\xf0\x2d\x70\xe8\xd8\x82\xdf\x82\xc2\xa9\x4e\x55\x05\xbf\x35\x61\xd5\x8b\x68\x49\x3b\x00\x83\x61\x33\xc7\x4d\x9a\x65\x12\x2d\xa7\x73\xc6\x73\x79\x82\x90\x7b\xf6\xcd\xc4\xa1\xe9\x76\x8f\xd6\x5e\x4b\x3a\xfe\x82\x6e\x9b\xb2\xb7\x75\xbc\xca\x73\x8f\xae\xab\x51\xfe\x82\xfd\x36\x60\xfb\xe5\x3a\xfd\xf0\x18\x49\x72\xf3\xa9\x91\x56\x5b\xad\xdb\x3d\x6a\x41\x05\x98\x7c\x6d\xb6\x8b\xf6\x75\x5c\xb8\xe3\xd2\xb1\x93\x66\x39\x5f\x76\x4a\x26\x11\x46\xce\xc1\x9b\x99\xe0\x1d\xe7\xcd\xe3\x79\xe7\x3a\x8d\x69\xe7\x9a\xe6\x45\x84\xfd\x8e\x04\x8f\x26\x49\xb2\xb5\x32\xd7\x66\xbc\x83\x4c\xab\x48\xd2\xca\x2b\x00\x91\x58\x50\x26\xdf\xae\xd3\x84\x26\x70\x75\xe0\xac\x13\x81\x29\x21\xfd\x7b\x49\x99\xd0\x00\xf5\xbf\x36\x93\x77\xe4\x8e\xe9\xe7\x0d\xa9\x3e\xa0\xda\x00\x5b\x87\x64\xfb\x19\xed\x8d\xa5\x1a\xed\xb4\x14\x1d\xbe\x4c\x85\xa0\x49\x27\x15\xb7\x0c\xc7\x68\xe9\xd7\xe2\x66\x69\xcc\xec\x9c\x29\x94\x54\xa7\xc8\x43\xc2\x4e\x39\x58\xfb\x8e\xe0\x61\x76\x49\x81\xa9\x93\xaa\x94\xa4\x61\xdb\xf1\x12\x85\xa9\x0d\xb2\x55\x86\xa9\x46\x9b\x45\xa8\x8e\xc5\x34\xd6\x07\x97\xf6\x28\xb4\x77\xee\x94\x15\xe6\x8f\xcd\x11\x4a\x2d\x8b\x36\xc8\x88\x89\x6c\x15\x91\x5a\x7d\x41\x51\xdd\x59\x46\x2a\x72\x96\x22\xf7\x2e\xd4\x0c\x7b\x39\x89\x55\xec\xac\x80\x8f\xe8\x88\x7b\xe6\xad\xed\xea\xc7\x46\x0c\xbe\xc3\xfe\x66\xb8\x25\x0e\x17\x3b\x1c\x87\xeb\xda\x8d\xc3\x55\x3b\xd8\x9c\x28\x59\x8a\x95\x2c\xdf\xd5\x6d\x54\x1f\x0b\x32\x61\xca\x79\x66\x8e\x8b\xea\xdd\x9e\x16\x36\xc9\xce\x09\x24\xc9\x51\x10\x35\x31\xd5\x7b\x2d\xce\x17\x67\xf4\x72\x26\xbb\xe5\x8d\x6d\x06\x13\xff\x6b\x82\x2b\x10\xbb\x21\xbf\xae\x0f\x47\x05\x2b\x16\xd1\x8a\x7a\x77\x04\x1a\x53\xa4\x46\xfb\xb7\xfa\xf4\x39\xad\x62\x68\xf7\x4b\x42\x8d\x5d\xff\x72\xa1\xc6\xac\x87\x67\xc2\xc2\x74\x2c\x54\x30\x31\x61\x83\x89\x31\x27\x98\x18\x33\xc1\xc4\x72\xf0\xab\x22\xe7\x25\xcd\x68\x15\x5a\xc1\xc6\x0e\x93\x19\xc3\x5c\xc5\x0e\xcb\x6b\xb1\xc3\x7e\x6e\x8c\x95\xc7\xb5\xe8\x2a\x0f\x8d\x3b\x66\xdc\x16\xaa\xf0\x83\x23\x1a\x94\x1e\x95\xa4\xd3\x66\x95\x53\x21\xd6\x8a\xc1\xde\x16\x00\xeb\xe7\x07\x28\x69\x75\x6a\x9a\xef\x99\xf1\xed\x2b\xa2\xd5\x5d\xf8\xda\x37\x3f\x49\x8b\x55\x16\x81\x2b\x47\x70\x7c\x03\xbf\xc8\x6e\x4f\xb4\x23\x3c\xcc\xbf\x30\x00\xc7\x81\xd0\x3d\x42\x85\xe7\xe9\x85\xa8\xd3\xb1\x6a\x05\xac\x47\xf7\xee\xec\x8d\x3b\xd5\xc3\xdc\xe1\x6f\x20\xa4\x09\x44\x4f\x3a\xb2\xce\x52\x6c\x88\x19\xd0\xce\x64\x92\x1e\xb6\xa2\xe4\x74\xd4\x0f\x52\x22\x29\xd7\x59\x94\x65\xd3\x28\xfe\x04\x66\x54\x65\xaf\x47\x0a\xbc\x17\x83\xa9\xa8\x7c\x13\xab\x2b\x51\xdd\xe1\x23\x78\x75\x0c\xe1\x4e\x64\xfd\x35\x4a\x5a\x25\x56\x9f\x92\x30\x1e\xcf\x26\x43\x75\xab\x4f\xba\x5d\x8f\xf7\x42\xf4\x91\xa1\x5e\xee\xcd\x7a\x28\xe8\x40\xac\x2a\x27\x18\x4f\x82\x7b\x68\x88\x48\x89\xf1\x4e\xb1\xbc\x4c\xa5\xf2\x98\xec\x68\xc9\xea\x22\x2c\xc6\x2b\x53\xe9\xa2\x56\xe9\xaa\xad\xd2\x45\x55\xa9\xa9\x6e\xa9\x34\x55\xa0\xba\x75\x28\xc6\x4b\x53\xdd\xba\xdb\x45\x16\x2c\xe8\x28\x0c\x97\xb5\xfa\x97\x6d\xf5\xaf\xab\xfa\x0d\xf8\xb7\x5b\xe6\x47\x59\xc6\x6f\x2e\x96\x2b\xb1\x1e\x79\xe5\xa3\x47\x72\x7d\x79\xb4\x87\x3a\x1b\xd4\xe3\xa0\x75\x41\x4a\xdc\xcb\x3d\xb4\x83\xa2\x01\xff\x65\x42\x0a\x9d\x3e\xc5\x0d\xad\x8d\x4a\x13\xf4\x96\xb8\x4e\x5e\xfa\x4b\xc7\x18\xaa\x90\xea\x31\x48\x54\x1e\xde\xa5\x1c\x3b\xfb\x11\xf4\x2a\xac\x77\xde\x5f\xa9\xab\xa7\xcf\xbe\xb4\xa7\x24\x95\xfb\x3e\xd2\x1b\xb1\x72\x9d\xac\x75\xad\x37\xaf\xf9\x3f\x02\xf4\x68\xc9\xff\xf1\x08\x91\x65\x21\x1f\x8b\x47\x88\x5c\x06\xe8\x11\x7f\x84\xc8\x4f\x74\xfa\x29\x15\x01\x7a\x74\x03\x0f\x8f\x90\x3c\x04\x6c\x78\xa0\x3a\xbd\x82\x56\x08\xfb\x85\x58\x67\xd4\xee\xb8\x4c\xae\xe6\x52\xee\xdd\xac\x87\x80\xfd\x3b\xe3\xf9\x12\xa9\x1d\x93\x86\x19\x89\xc2\x52\xee\xd0\x69\x4e\xa3\x4f\xbb\x5d\x05\xd4\xcd\xdf\x8a\x20\x25\x71\x51\x04\xd1\x03\x62\x85\xfd\xcc\x43\x69\xb3\x23\x22\xa4\x3e\x74\x66\xc5\x53\x26\x24\x5d\x59\xe9\xdd\x82\x93\x38\xb8\xea\x2f\xd3\xcf\x29\xf8\x3c\xb4\x1f\xc1\x83\x5c\x4e\xa6\x70\xf5\xcf\xa8\x10\x94\xcc\xab\xaf\x53\xf9\x75\x4a\x6e\xe4\xd5\x7f\x11\x25\xfc\xa6\x20\x57\x4a\x83\x98\x83\x16\xd1\x9a\x5c\x56\x99\xaf\x64\xe6\x2b\x72\x11\xd6\xf7\x32\x25\x63\xe4\xf4\x0c\x11\xa4\x7a\x81\x08\xd2\x2d\x22\x82\x74\xed\x88\xa0\xaa\x6e\x34\xc1\xe4\xb3\xac\x6c\x56\x55\x36\xc7\xe4\x93\x4c\xca\xaa\x24\x86\xc9\xdb\xb0\xee\x39\x7b\xe3\xb4\x17\x7c\x22\xda\xfe\x83\xb3\x00\x65\x22\x47\x44\xb5\x1f\xd4\x83\x9f\x7d\x22\x4b\xf3\x42\x38\x26\xfc\x9a\xe6\x79\x0a\xea\x05\x3b\xa2\xfb\x19\x7c\x26\x40\x43\xcb\x24\xdd\xe1\xe0\x66\xbb\x5d\xd9\x72\x55\xdf\x65\xe5\x49\x55\xf9\x67\x72\x89\x77\xc4\xeb\x93\xd2\xe9\x24\x90\x75\xc1\xc2\x96\x2e\x56\x51\x9c\xb2\x79\x50\xf5\x43\x58\xb9\x43\x11\xac\x6d\xea\x3f\x5e\xb1\x84\x7e\x0e\xae\xab\xad\x7b\x41\x36\x7b\x01\x82\x02\x1b\x60\x6d\x87\x2d\x79\xf4\xd6\x0a\xf2\xbe\xcc\xa7\x7d\x0b\x05\x91\x86\xdc\x63\xde\xe0\x04\x3c\xa1\xcb\x47\xf9\x04\xfe\x86\xbd\xb3\x3e\xc6\x10\xf1\x95\x79\x27\xc7\x03\x8c\x49\x16\x7a\x5c\x3b\x9f\x27\x2a\xf5\x04\x63\x4c\x62\x9d\xe5\x14\x63\x32\xd3\xcf\x67\x18\x93\x44\x3f\x3f\xc1\x98\xac\xf4\xf3\x53\x8c\xc9\x42\x3f\x9f\x63\x4c\x96\xfa\xf9\x19\xc6\x64\xad\xba\x72\x2a\xab\xbf\x56\xe9\x27\xf2\x79\x5a\x23\x43\xa6\xbf\xa2\xcf\xf4\xaa\x15\xe1\xbf\xf8\xcb\xf3\x37\x6f\x2e\x7e\xd8\x77\x21\x3f\x18\x58\x0f\xf2\xc7\x00\x35\x74\x75\xf5\xe1\x2f\x17\xaf\x5f\xbd\xf9\xf3\xd5\x15\x1a\x56\x25\x23\xed\x38\x78\xe3\xde\x0c\x82\xba\x1f\x79\x49\x4f\x57\x4b\x5f\x53\xeb\x98\xe8\x1b\x70\x6b\x30\xb8\x71\x34\x19\xc9\x7f\xfc\xb9\xb9\xee\x9a\x1b\x96\x35\x2b\x0d\x5a\x95\x88\xaa\x92\x95\xfd\xa9\x30\x65\x1d\xa3\xd4\x46\x69\x59\xa2\xdb\x85\x72\xae\xe5\xaa\xc0\x3b\x89\x93\x4b\x67\x6a\xee\xa2\x79\xff\x8d\xdd\xd9\x9f\xde\x5f\xe5\xf9\xe7\x2e\x2c\x38\xa9\x8a\xfd\x75\x55\x05\x26\x38\xc3\x2a\x08\x22\xf3\x9e\xc0\x66\x94\x4f\xe7\x58\x45\x42\x64\xde\x33\xd8\x89\x76\x25\xc6\xea\x11\xf6\x9e\x67\x16\x65\x6e\xb6\x29\x3c\x1c\x63\xd8\x8d\x2a\xf6\xc2\x19\xec\x46\x08\x9b\x8a\x95\x14\xe4\xb8\x2f\xf7\x21\x94\x3d\x39\x33\x65\x4e\x9f\x60\xd8\x92\x0a\x3a\x4f\x61\x4b\xee\xaf\xc6\xcd\x8a\xaf\x56\x34\x0f\x36\x1a\xa9\x51\x5f\x3d\xf8\x82\xf3\x4c\xa4\x2b\xc2\x25\x52\x14\xeb\xc0\x7f\xb6\x23\x3a\x2d\xd8\x48\x52\x72\x9e\xf3\x92\x25\x10\x27\x23\xb0\x67\x97\x3f\xcf\xe9\x7a\xfc\xb4\xdf\x9f\x90\x29\x08\x84\xdf\x45\x49\x0a\x3e\x44\x01\xd9\xfa\x6e\x22\x89\x1b\x65\x63\xbe\x5c\x72\xe6\xdf\x2c\x52\x41\xc9\x8c\x33\xf1\x7d\xb4\x4c\xb3\x75\xe0\x9e\x77\x7e\x95\x4e\x56\x51\x02\x8e\x33\xd1\xe9\xea\x73\xe7\x7c\xf5\x19\x41\xa1\xf7\xe9\x3f\x68\xbd\xc8\xea\xf3\x07\xfe\x8e\x2e\x41\xdc\x94\xa5\x8c\xfe\x85\xa6\xf3\x85\x08\x1a\x01\x82\x4c\x6e\x18\x96\x37\xf0\x4f\x31\x41\x74\x89\x30\x59\x46\x9f\x7f\x4a\x13\xb1\x08\x4e\xfa\x7d\x09\x83\x32\x5e\x04\x1b\xdb\xf6\xf9\xea\x73\x67\xf0\xe4\x1e\x8d\x9f\x3e\xa0\xf1\x27\x8f\x07\xa6\x79\x0b\xf5\xb7\x59\x14\x03\xb9\xf4\x03\x9d\x89\xa0\x7e\x04\x6f\x84\xa1\x90\x2e\x41\x89\x2e\x40\xb9\x6c\xa5\x13\x53\x26\xa8\x3c\x70\xa3\x1c\x52\xfb\x9d\x63\x09\x2b\xb4\x23\x35\x62\xc5\x2f\x57\x1e\x2a\xe4\x58\x37\x55\xce\xc1\xe9\xea\x33\x92\x2b\xbf\xd1\xfc\x3b\xe8\xff\x5d\xed\x67\x74\x76\xa8\xf9\x9f\xd5\xfa\x07\xbe\xba\xb3\x6d\xd5\x6c\x67\xca\x85\xe0\xcb\xaa\x75\x18\x7a\xff\x1e\xad\x0f\x74\xc6\xfd\xd6\xbf\x83\x2a\xef\xdb\x01\xc1\x57\x3f\xa7\x75\x90\xde\x1b\x5c\x03\x68\x66\x7a\x48\x2a\x68\x74\xef\x4d\x8c\xaa\x1a\x31\xa6\x85\x84\x84\x85\x75\xfa\x07\xd2\x3d\x51\x89\x66\xad\xda\xf0\xbc\x2e\xc2\x15\x18\x57\xfa\xec\x18\x8c\x37\x35\xb3\xed\x1d\x9d\x29\xfd\x18\xe6\xc7\x19\x2f\xe8\x87\x74\x49\x73\x93\xa2\x1b\x7a\x95\x98\x04\x80\x4a\x2d\xcb\x8c\xc7\x65\x51\x4b\x51\x7c\xfe\x37\x9c\x7d\x90\xfb\xec\xe2\x5a\x52\xd8\xe1\xd1\x00\xa2\x32\xbe\xb0\x0c\x69\x93\x3b\xa3\xd1\x75\xbd\x51\xd8\x9e\xb5\x14\xce\xde\x71\x2e\x64\x4f\x5d\xe0\xd5\xc7\x40\x77\x84\xf9\xca\xbf\xcd\xf7\xb2\x4b\xb5\xac\xd4\x5f\xd1\xbc\x48\x0b\xe1\xe1\x7a\x97\xdb\xbd\x54\x9b\x8a\x2e\xe4\x68\xb5\x0b\xcf\x5a\x5a\x0b\xe7\x8d\x69\x66\x74\xee\x32\xa3\x79\x28\x14\xc8\x5e\xd2\x2c\x5a\xab\xc8\xc0\x32\xd7\x10\x41\x1f\x2a\x5b\xc2\x6e\x37\xf5\x39\x83\x8e\x3b\x8f\x1e\xc5\x04\x2d\x79\x59\x50\x49\x4a\x37\x73\xbf\x96\x1f\x2e\xc1\x6f\x50\xed\x15\xb4\x50\x5a\x67\xa1\xdb\x45\x00\x5c\x50\x4e\xae\xc5\xd2\xaa\xc1\xd2\x2f\xa8\x78\x2e\x44\x9e\x4e\x4b\x41\x3d\x24\x52\x21\x8f\x52\x84\x30\x01\x85\x77\x03\x30\x77\x35\xec\x7d\xaa\xa6\x15\x13\x3e\xf2\xea\x13\xe0\xac\xa2\xdb\x27\xe0\x72\x45\x55\x90\x73\x8e\x71\xd0\x48\x74\xe6\x44\xa6\x34\x96\x86\xbb\xd4\xb6\x5b\xa6\x85\x07\x7c\x45\x19\xbc\x59\x21\x85\x4c\x31\xc1\x87\x15\x73\x9f\x33\x59\x5d\xb7\x5b\x7f\x87\x5e\x98\xf6\x7e\x90\x83\x7b\xc8\x1a\x00\x68\xec\xad\x81\x69\x56\xee\x4d\xea\x77\x59\x99\x57\x4f\xd5\x02\x80\x1a\x5a\x57\x00\x74\xa6\xf9\x2e\x0b\xfe\x42\x93\xe5\x6c\xd0\xdb\x27\xeb\x85\x44\x1f\x7b\xb3\x55\xa5\xd6\x52\xee\x9a\xae\xc6\x04\x0d\x6a\x13\x04\x35\xb8\x33\x64\x1a\x69\x0e\xac\xc2\x68\xb8\x8e\xdf\x0e\x8d\xe4\x00\xee\xda\xd9\xc6\xc5\x82\x2e\xa9\xef\x5c\x2a\xfd\xa4\xcc\x95\x9f\x85\x62\xc1\x73\x41\x0b\xe1\x0c\x15\x6a\x79\x2f\x77\x5b\x73\xbc\xad\xed\xf4\x87\xf7\xc1\x25\x50\x04\x16\xd3\x30\xb7\x10\xa8\x5a\xea\x76\xdb\x52\x5b\x80\xe3\xce\xfa\x2d\x70\x6b\x7c\xaa\xb0\x33\xf8\x02\x75\x16\x8a\x83\xb7\xef\x89\x56\x09\x6f\xc2\xea\x82\x25\x0f\xde\x57\x87\xe1\x71\xc1\x92\x3d\x68\x5c\xb0\xa4\x05\x16\xee\xa8\x6e\x01\xd3\x2f\xb0\x33\x76\x6d\xe7\xe0\x51\xa8\x70\x13\x61\x46\x1b\x07\x96\xbd\xba\x15\x36\x77\x87\xe7\x62\x33\xb0\x89\x37\xc6\xff\x5e\x9f\x14\x0e\x71\x40\x28\x26\x75\x3e\x92\x20\xe3\xcd\x27\xba\x0e\x90\x95\xc6\xbd\x4c\x13\x50\xd5\x40\x64\xcf\x1e\x40\x59\x23\x59\x0a\x00\x2d\xcb\xf4\x91\xa6\xa6\x1e\x59\xd2\x17\x82\x55\x6a\x92\x97\x9e\xfd\x49\xbd\x46\x2c\xe1\x4b\x0f\x1b\x2b\x30\x0d\x7f\xc0\xaa\x90\x30\xe3\x79\x4c\x95\xf7\x47\xf0\xad\xd6\xe8\xd3\x4f\x69\x96\xfd\xc8\x96\x07\xba\x55\x9b\x1e\x25\xd2\x3d\xb4\x5a\xe1\xeb\x41\xbc\xa7\xbb\x62\x68\x81\xb6\xaf\x07\xb7\x08\x7c\x75\x16\x8d\x1d\x84\x92\x69\xb6\x74\xbb\x12\x64\xdf\x25\xbc\xce\xa2\xa2\x30\x7e\x39\xd3\x42\x5e\xa5\x81\x18\x30\x3a\xa9\x24\xaa\x3e\xfc\x45\xd2\x05\xf6\x43\x59\x7d\x80\xa5\x6e\x3f\x14\xa1\xf0\xd3\x84\xac\x20\x64\x0b\x65\x64\x19\x0a\x7f\x65\x08\x62\x72\x1d\x0a\xff\x2d\x5c\x21\x41\xed\x82\x4c\x43\xa1\xd0\x1c\x99\xcb\x27\x79\xfa\x93\x9b\x50\xf8\x95\x06\xaf\x95\x4f\x91\xab\x5a\xba\x2a\x7f\x19\x1a\x77\x5d\x76\xd1\x8e\x56\xae\xe2\x95\xec\xc3\x10\xc9\xc3\x6c\xde\xed\x7a\x97\x72\x09\x03\xe2\xbb\x08\x37\x28\xca\xd3\xe8\x51\x42\x15\x7f\x23\x99\xae\x51\x70\x39\x2a\xb4\x7e\x97\x5d\x8b\x81\x52\xe8\x96\x3d\x0b\x2e\xc1\x71\x2f\xc8\xdb\x2a\x95\xcd\xf9\x08\x84\xe5\x73\x2b\x64\x2f\xb7\x5b\xef\xa2\x86\x10\x55\x27\x9b\x68\x9a\x5c\x38\x78\x62\x2f\xcb\x05\x4b\x30\x89\x74\x55\x96\xde\x72\xb3\x01\x6a\x23\x17\xb5\xb3\xd8\xfd\x0e\x09\x98\xa4\xba\x0e\x45\xa9\x3a\xdf\x21\x01\xca\xcb\xe3\xbf\xa5\xa4\xe5\xb6\x36\xf8\xef\x55\xba\xf1\xc1\x41\x00\x48\x87\xf2\x5b\xc6\x2a\xd9\xe4\x8a\xb6\x56\x33\x64\x49\xed\x9d\x5b\x34\xe3\xcc\x96\x64\xe4\x02\x1f\xee\x47\xc5\x62\x6d\xf0\xd8\x60\x59\xbf\x89\x96\x34\xc8\x7d\xc5\xb0\x20\x76\x09\x06\x4b\x12\xb1\x78\xc1\xf3\x8b\x4c\xeb\x8b\x54\xc4\x28\x01\x4c\x78\x49\xd2\x24\xb8\x18\xef\x2f\x8f\x89\xc3\xe0\x05\x7b\xb6\x6b\x47\xf7\xdb\x09\x5c\x54\x2d\xf7\x74\x7f\xc9\x9a\x55\x72\x68\x50\x37\xcd\xc1\x08\x85\x06\x82\xe9\x6d\x94\x40\xbe\x23\x29\xb9\x3a\x0c\x2a\x94\xa4\xd7\x88\x38\x80\xa9\xb3\xe9\x73\xcb\xbf\x69\xdc\x55\x77\x24\x57\xa8\x87\xd0\x56\x3a\x02\x93\x7c\x8c\x9a\xd7\x5e\x8b\xb0\xbd\x3e\x59\xf8\x71\xb4\x4a\x45\x94\xa5\xff\xa0\x58\x9e\x26\x2a\xd2\xdf\x23\x04\x01\x0c\xf1\x04\xef\xc8\x1c\x83\x8b\xe2\xdd\x04\xec\x8e\xab\x11\x38\x8a\x23\x53\x57\x71\x64\x47\xf6\x5e\x75\x11\xa5\xca\xb5\x69\xc3\x64\xc1\xd1\x80\xb4\x21\x32\x27\xbd\x86\xc7\x64\x7a\x75\x9b\x0a\xfa\xa4\x41\x0e\x05\x03\x7a\x42\x2a\x52\x3b\xe8\x93\x06\x7d\x10\x0c\xce\xfa\x7d\x67\xd9\x21\xc3\x5f\x68\x41\x6d\x95\x08\x41\x85\xb8\x99\xcb\xab\xf7\xaa\x9a\x86\x6b\xb2\x01\x3b\x3b\xf4\xba\x4c\x3f\x28\x60\x23\x72\x93\x8a\xc5\x07\x89\x3a\xe1\x4a\xe1\x4d\x5d\x51\xe1\xfc\x8b\x7c\x33\xdc\x2a\xe1\x6b\x97\xd8\x6f\x76\x75\xdd\x67\x8a\xab\x68\xdc\x39\xfe\x36\xec\x5b\x26\xc1\xed\xca\xd0\x54\x29\x43\xb3\x71\x3e\x09\xe9\x38\x9f\x54\x51\x1b\xda\x34\xe7\x7f\x0d\xe3\x81\xe8\xb7\x60\x3c\x50\xfe\x6e\x3c\xf0\x50\xe3\x01\x0b\xbb\xc2\xc3\x9b\x9d\x70\x16\x38\x38\x0d\xf5\x2f\xfe\xdf\xab\x0f\xaf\xde\xfc\x39\x14\xfe\xc5\x9b\x0f\x17\xef\x2e\x5e\x9a\x27\x9d\xf8\xff\x5e\x7d\x80\xb4\x1f\xdf\xbc\xbe\xfc\xf1\x8d\x7c\x76\x18\xf9\x99\xb2\x31\x88\x9b\x5a\x39\x8d\xad\x54\x69\xe4\x68\xff\xb0\x10\x9d\xc9\xd8\x66\xd5\x7c\x87\xd0\xfb\x19\x0f\x50\x02\x1e\x45\xc0\xe8\x87\x8e\x59\xb5\x5f\x2a\x1c\x40\x25\x36\xcd\xc0\x20\xc2\x1b\x28\x71\xc0\x0c\xcc\x21\xbc\xc1\x53\x4c\x16\x61\xee\xad\x30\x59\x82\x15\xc5\x53\x4c\xd6\x21\xf0\xfd\x9f\x60\xe2\x0e\x15\x95\x8a\x34\x06\xf5\xdf\xeb\x0a\x1c\x88\x7e\x4e\x65\x22\xd0\x6f\x16\x5a\x08\x70\xa4\xa4\x8e\x80\x9a\x33\xf0\x54\xc9\x32\xf7\x4d\x58\xc1\x1b\xaa\x80\xbc\x57\x07\x3d\x6c\x80\x67\x49\x6b\xb5\xa0\x24\x27\x91\x6b\x6c\xa0\x9e\x65\x3e\x10\x9b\x38\x27\xe4\x9f\x73\x5e\xae\x48\x11\x96\xdd\xee\x51\xe9\xa7\x05\x5c\x3c\x52\x36\x1f\x69\xe6\x44\xc0\xfc\x68\xb5\xa2\x51\x4e\x8c\x5b\xf5\x61\x65\x58\x08\x1f\x74\x44\x30\xc3\x68\x64\xa3\x62\xe4\x65\xe1\x35\x69\x7c\x9f\xe2\x20\x0b\xe7\x41\x16\x32\x5f\x03\xeb\x92\x5d\x7c\x4e\xc5\x76\xcb\x7c\xf3\x2a\x1b\x1c\xad\x03\x59\x56\x5f\xb9\x0a\x15\xa6\x2b\xdb\x11\x0e\xbe\x7d\x5f\x68\x85\x1b\xd5\x1c\x37\x5a\x34\xe5\x97\x58\x39\x34\x80\xa0\x6e\x76\x3b\x15\x85\xfc\x25\xcd\xd3\x6b\x9a\x00\xbf\xe3\xfb\x9c\x2f\xdb\x94\x9f\xad\xc2\x58\x2a\xef\x50\x7e\x61\x22\xa3\xad\x47\xa6\xdb\xd7\x3b\xa3\xe2\xd9\xa6\x5b\x6d\xae\x79\x7b\xce\x2a\x54\xdc\x01\x05\x37\xcf\x78\xec\x75\x81\x79\x48\x5b\xfb\x65\x9a\xa8\x1b\x5c\xdb\x7d\xbd\xcc\x32\x50\x74\x33\xc1\x22\xe0\xaa\x63\x89\xb1\xea\x26\xa0\xfa\x3e\x74\x6e\x89\x29\x1b\xb1\xa3\x30\x9c\x76\xbb\xf2\x07\x3c\x05\xcb\xe9\x74\xd3\xb6\x5b\x4f\x84\x37\x78\xd7\xd2\xff\x01\x11\xb7\x69\x97\xeb\x4b\xe5\x1e\x10\x62\x79\x68\x65\x6f\x9c\x39\xf7\xf6\xa3\xa2\xe9\xab\x5f\x8b\x1a\xa4\xd3\x7d\x4d\x18\x12\x23\xde\xb7\x3a\x24\x24\x6f\x2c\x69\x11\xb2\x30\x0f\x29\xa9\x6c\xa2\x19\xb8\x65\x75\x3d\x5b\xc1\xe8\xa9\x2f\x77\x25\x61\xf2\x01\x6e\x17\x79\x48\xf5\x0c\x61\xb2\x91\xdf\x02\x41\xf4\xfe\x21\x2a\x3d\xc8\x77\x6d\xd1\x25\xf4\xee\xf8\x72\x35\xce\x6e\xd7\x7d\x73\x75\x38\xc7\x83\x49\x85\x3e\x43\x71\x0b\x5c\x75\xa0\x17\xab\xb2\xe1\xcf\x52\x96\xbc\xbc\x7c\xfd\x86\x27\xca\xe9\x02\x1e\x0a\xd0\x9a\x51\x50\xa5\xf9\x8c\xe7\x4b\xc5\x31\x62\x84\xea\x30\x1e\x26\xf9\x73\x2a\x3c\xa6\xcd\x50\x9d\x59\xa8\x6d\x7a\x1b\x6d\xa6\x5a\x70\x61\x18\x5e\x57\x4e\xe5\x35\xa3\x51\xef\xa3\x75\x53\x27\xdd\xed\x42\xab\x3d\x90\xf2\x14\xe1\xae\x02\x35\x4f\xbc\xae\x70\xde\x40\x01\xa3\xdb\x3e\x3a\xc8\x31\x10\x46\x73\xdd\x59\x83\x1e\x56\x8a\x95\xdd\xee\x51\x3d\xbe\x91\x1a\x53\x34\xa3\xef\x9b\xe3\x72\xc9\x4f\xbc\xa9\x58\xa7\x17\xea\x20\x00\x29\x87\xbb\x11\xf5\x17\x8f\x12\x6e\x34\xfb\xdb\xaa\x9d\xde\x56\x2d\x84\x03\x92\xe5\x99\xbc\x55\xdb\x21\x02\x0b\x8e\xa4\x1a\x4c\xb5\xe2\x5f\xd6\x75\x02\xa1\x41\xf7\xac\x09\x9c\x55\x72\x47\x98\x2c\x3d\x6d\x72\x9f\xe5\x87\x80\xcd\xee\x09\xe8\xeb\x5d\x3d\x38\x81\xed\x2d\x1c\xcf\x6d\x70\x96\xab\x98\xde\x06\xe4\x9b\x5b\xaa\x04\x18\xcb\xe3\x68\x1f\xc2\xb9\x1a\x51\xad\xe8\x97\x76\x79\x1f\xba\xfb\x9b\xdb\xc5\x2c\x06\x13\xc8\x31\xb9\x87\xa9\x71\xfd\xee\xa6\xe9\xaa\x3c\x0d\x82\xbd\xb3\xb7\x19\x41\xc5\x19\x42\xd3\xc1\x53\x68\x36\x75\x0d\xe9\x88\xa6\x6d\x0a\xdd\x3b\x27\x1a\x45\x0e\xaf\x97\xa3\x7e\x2d\xde\x13\x6b\x2d\x94\xe3\x8d\x0e\xc6\x34\x20\xa2\x85\x98\xa0\x5e\x0e\x6e\xf5\x0f\x40\xa2\x06\x48\x15\xc0\xb2\x99\xb3\x19\x8d\xa4\x36\xf7\x7b\x51\xa3\x5a\xa1\xc2\x30\xa1\x23\xd7\x1e\x2c\x4a\x92\x8b\xca\x26\xbf\x66\x8b\x54\xff\x64\x62\xd2\xba\x1d\xc2\xfa\x24\x03\xef\x21\xa2\xc6\x27\x75\xb3\x11\x81\x71\x70\x6b\x86\xfe\xc3\x6d\x82\x34\x19\x21\x29\x0e\x49\x13\x61\xd7\xd3\xa9\x13\x40\xa9\x95\xe1\xca\x3d\x41\xc6\xc8\x24\x20\x15\xee\x5f\x47\x16\xcd\xfd\x94\x11\xfb\xec\x52\x8e\x55\x6a\xed\xac\xa9\x92\x35\x21\x6b\xdf\x69\xbd\x14\xad\x65\x36\x54\x43\x55\xba\x06\xee\x2a\x9d\x37\x5b\xaf\x10\xed\x5e\x1a\x4d\x6a\x49\xb5\x06\x2d\xea\x68\x26\xd1\x84\xb4\x5a\x18\x59\x90\x02\x57\x40\x2b\x2d\x26\x15\x5b\xa8\x61\x6d\x64\xb6\x48\xd2\xce\x42\x4c\x49\x8e\xc1\x16\x29\x69\x63\x2c\x5d\x35\xac\x78\x9a\xb4\x73\x6c\xed\x7d\xae\xda\xec\x6e\x9a\xd9\x9d\x85\xb3\x93\x45\x6a\x6c\xaa\xab\x06\x9b\x2a\x65\xf2\x0a\xec\xce\xb4\x7c\xaf\xcd\xb1\x4c\xd0\x64\x96\xe1\x47\xc9\xab\x32\x10\x62\x47\x7d\xa2\xa1\x1f\x14\xa4\x9a\x9b\xea\x85\x26\xea\x59\x66\x36\x0f\x36\x03\xc0\x3f\x28\x64\xaf\xaa\xeb\x5e\x9f\x5c\x99\x1b\xde\x40\x3e\x9a\x8b\xdd\xb1\x79\xb9\x78\x19\x9e\xe8\x3c\x32\xfd\xd4\xd1\x73\xf3\xfa\x64\xe9\xaf\x78\xb6\x9e\xa5\x59\x86\xbd\xab\xfb\x6a\xd7\xd5\xdd\xa9\x30\x6f\x00\x8e\x6a\x3c\x99\x92\x62\xc2\xbc\xb3\x01\xdc\xed\x3c\x6d\xf6\xcf\xbc\x01\xa4\x14\x2a\xa5\xac\x79\xdf\xb0\x77\x47\xea\xd2\x4c\xe3\x09\xc9\xe5\x5d\x9f\x4b\x0c\x69\x42\xc5\x0f\x45\xbe\xb6\x16\x2b\x11\x29\x43\x3a\x56\xee\x8e\x7c\xe5\x70\x87\xe7\x13\x0f\x0f\x8f\xbc\x3c\xf4\xa2\xb0\x54\xf1\x57\x30\xf6\x13\xce\x94\x93\x6f\xe5\xfc\x23\xd2\xce\x88\xc9\x11\xdc\xf7\x14\x49\x0b\x44\xe9\x50\x36\x89\x87\xbb\x58\x99\x21\xe2\x0d\x97\x5d\x48\x43\xba\x9b\xa5\x2c\xca\xb2\xf5\x46\x76\xe0\x28\xef\x76\x4b\x5f\x2d\xe0\xea\xc9\xc3\x36\x53\x3a\xf3\xb8\xe6\xe5\xa4\x3b\xeb\x4c\x78\xd7\xea\x3d\x74\xcf\x70\x45\x98\xa0\xdd\x1d\x21\x11\x4d\x63\x7c\x9d\xd4\x1a\x64\x57\x19\x95\x2b\x98\x61\x2b\xf7\xe8\x15\xbb\x8e\xb2\x34\xe9\x44\x42\xd0\xe5\x4a\x74\x04\xef\x24\x54\x71\x78\x4a\xf0\x37\xcd\x1e\x41\xdd\xd3\xac\xe2\xce\x21\xf0\x33\x8a\x49\xd6\x7a\xc7\xf4\xe8\x1f\x45\x4f\xe0\x3f\x8a\x1d\x89\x0d\x33\x89\x32\x01\x41\xd7\x4a\xdc\xe6\x43\x45\x61\xd8\xc2\xa3\xe4\x18\x0f\xc5\xb8\x6f\xfd\x10\x88\xf1\x60\x72\x14\x86\xa5\xd6\x0a\xdc\xe1\xd6\x78\x0c\x07\x8b\xee\x30\x99\xb5\x5a\x3d\x18\x86\x35\xc2\xb7\xf9\xeb\xf3\xe8\x37\xdf\x9c\xe1\x47\xb4\x27\xd1\x7d\x94\xbf\xe0\x09\x7d\x2e\xbc\x3e\xde\xf6\x55\xd4\xf9\xa4\xad\xee\x78\x9c\x79\x33\x90\x0f\x1b\xa7\xed\x93\xf1\x59\xbf\x3f\xd9\x91\x55\x5b\x76\x3d\x57\x11\x70\x00\x38\x13\x79\x54\x88\x77\x91\x48\x39\xf6\x28\x29\x6b\xda\x90\xf8\xdb\xf0\xd8\x3f\x1b\xd5\x13\x03\xfb\x3a\xcd\xe0\x50\x5f\xb4\xe9\x77\xee\xa9\x6a\x6a\xb5\xcb\x95\xec\xa8\x52\xc7\x54\x5a\x6d\xea\xb3\xed\x54\x12\xe5\x9f\x28\x93\x5d\xf1\x8f\xf1\x6e\x47\x96\x6d\x43\x58\x78\x89\x52\xa6\x69\xf3\x6f\xb1\xc9\xa2\x29\xcd\xf6\xc3\xef\xd6\x14\x1e\xa7\x3c\x59\x1f\x93\x4a\x9d\xb2\xdf\xa9\xeb\x52\xa2\xbe\xff\x8c\x2e\x5d\x15\xc2\x81\xfc\x5e\x53\x2e\x45\x27\x32\x49\x5b\xc3\x05\x48\xc5\xb7\x78\x34\xcd\x78\xfc\x09\xd5\x86\x18\xa0\x82\xcb\x05\x3f\xf0\xcf\x64\x89\x6b\x9a\x8b\x34\x8e\xb2\xe7\x59\x3a\x67\x96\x9f\x0f\x3e\x1d\xae\xdb\xcc\x23\x7d\x18\x10\x5c\xa6\xb5\x9c\xd5\x61\x31\x35\xe5\x33\xc5\x2a\x62\x35\x01\x0d\xd3\xc5\x41\xa3\x2f\x58\x7a\x40\x44\x6a\x5b\x43\xeb\x0f\xf2\x26\x15\x8b\xf7\xa0\xf2\x87\xbd\x35\xf6\xae\x7f\x4d\x95\xe6\x5f\x57\x21\x7b\x70\x76\x7e\xa7\x42\x76\x5d\x6a\xa1\xa0\xfc\x85\x96\x9d\x37\x29\x4b\xf8\x8d\xd2\x71\x74\x74\x1f\x2b\xc3\x54\xab\x8f\xf8\x5f\x29\xbd\x91\xb8\x7d\x15\xe5\x94\xe9\x37\xf1\x6b\x99\x65\x80\xd5\x45\x54\x33\x7f\x78\x80\x6f\x25\xbc\x69\xc4\x54\x92\x47\x8c\x45\x64\x62\x41\x59\x75\x1c\x99\xfb\x65\x48\xc9\x74\xb7\x27\x63\x71\x0b\xca\x95\x77\x57\xb1\xc8\x12\xff\xf9\x7a\xa3\xce\x90\x3b\xcb\x94\xc6\x82\x75\x5f\x16\xb2\x48\x8b\x76\x01\x86\x0e\xbc\x5a\x28\xc1\xc5\x94\x76\xac\x8c\x81\x26\x9d\xeb\x34\x92\xf9\x11\x50\xd5\x6d\xf2\x11\x7a\x6b\xa5\x1d\x47\x5e\xf1\x75\x51\x05\xd3\xd1\xa1\x72\x5c\xa9\x91\xba\x53\x5f\x3d\x3d\xb3\x0e\x24\xcf\x4f\xec\xe3\xe0\x5c\xfb\x80\x83\xb7\x13\xfd\x46\x8f\xc2\x30\xef\x76\x97\xfa\x3a\x53\x93\x4b\x68\xd8\x39\xee\x93\x6b\x7e\xf7\xaa\x13\x87\x93\xd4\x78\x72\x93\xb9\x4a\x2f\xc7\xc3\x48\xc5\x84\x95\x9f\x08\xc8\x05\xe8\x4d\x67\x01\x3e\xe0\x22\x2c\xef\xd1\xb6\x9d\xac\xb2\xd2\x1d\x9e\x80\x72\xdf\xd5\xf9\xc9\x10\x53\xf9\x30\x38\x07\xfb\x57\xff\xea\xf4\xa9\x24\x43\xae\x4e\x9f\x4a\x74\xdf\x37\xb9\xb0\xe3\x81\x88\xca\x71\x8f\x3c\xf8\x09\x07\x10\x10\x58\xbe\x9c\x9c\x87\xf2\xb6\x35\x68\xe6\x38\x76\x73\x8c\xe1\x87\x88\x09\xc6\x81\x0e\x91\x7d\x75\x72\xae\xdd\xf0\xe2\x61\xac\xee\xca\xb6\xc7\xea\x7d\xb3\x6e\xc6\x7c\x67\xe1\xc0\xf4\x6c\x24\x7c\xce\xbe\x2f\x33\x49\x74\xd2\x24\x90\x6f\xef\xa8\x5c\x4e\x34\x31\x3c\xc2\x30\x0c\x6b\xec\x14\xaf\x2a\x3c\xf3\xe0\xf2\x27\x67\x9f\x00\x14\x70\x90\xec\x25\x19\xdb\xc8\xd4\x63\x3a\x65\x98\x03\xd3\xd0\xcd\x7a\x8d\x03\xb7\xb2\xbc\x06\xf9\x99\x95\xda\x09\xd9\xb4\xe9\x4c\xa2\x67\xcb\x59\x8a\xcf\x3b\x2b\xb3\x18\x95\xec\x72\x4a\x3b\x3a\xfe\x7d\xa2\xa2\xe6\xa7\x02\xbc\x68\x22\x0c\xab\x5c\xd4\xfc\x82\xda\xfd\x53\xf7\x0f\x6a\x93\xb1\x01\x1f\x97\xd0\x96\xe0\x91\xe3\x70\xbb\x73\x6d\x93\x15\xbe\xe8\x76\x85\x2b\x68\x2d\x2b\x63\x72\xb9\xe2\x4f\x14\x3c\x42\xa1\xc2\x42\x4b\x12\xa1\xbe\xf5\x5a\x2e\x75\x90\x73\xe9\x31\x7f\x9a\xb2\xc4\x13\x98\x50\xbc\x53\xb5\x0d\x6c\x6d\xb2\xa2\x5a\xdc\x32\xed\x7f\xff\xfc\x24\x3c\xb6\x99\x4a\xff\xea\xe9\x00\x16\xeb\xd3\x01\xe4\x68\x14\x5b\x69\xf4\x62\x57\x64\xb7\xeb\xc9\x2d\x00\x4b\x0e\xab\x1f\xc5\xf1\x21\xc7\x26\x8b\xeb\xff\xab\x3f\x14\xdf\xa8\xe5\xe9\xf8\xfe\xb2\x15\x8c\xc5\x04\x0f\xab\x3a\x76\x7b\x41\xd1\x34\x1f\xc4\x59\x9c\x87\x9c\x2f\x06\x15\xb6\xa8\x16\x6f\x6b\x66\x31\x12\x4e\x66\xbd\x52\x42\x76\x20\xc0\x16\x38\x22\x94\x88\xb9\xa6\x0d\xba\xdd\x42\xd8\x6e\x32\x03\xc9\x52\xed\xc4\x75\xbe\x26\xfa\x2b\x1e\xb2\xed\x36\x3f\x0a\xc3\xa9\xfb\xe5\x1a\x2b\x9f\x6c\x6b\x90\x25\x1e\x63\x72\xad\x70\xdc\x34\xdc\xec\x1c\x67\xa9\x25\x01\x4c\xa2\xbe\xc1\x3c\xd9\xc7\xd3\xd3\x30\x27\xa5\xeb\xa2\x7d\x51\xd3\xaa\x36\xdb\xa5\x11\x02\x41\x12\xf8\x66\x21\x69\x77\xd6\xd4\x48\x06\x59\x85\x12\x75\x0e\x23\x1d\x04\x84\xa8\x26\x05\x13\xf6\x00\x2b\x5f\x79\x6b\x93\x6b\xda\xd0\x73\x70\xc4\x6b\xfd\x9b\x83\xfe\x1d\xd1\xe5\x8a\x2a\xd5\x9c\x97\x36\x7b\x15\xa2\xa8\xdb\x45\xcb\x52\xc5\x4a\x53\x89\xdc\xe4\xde\x61\x79\x25\x51\x2e\x0c\xf6\xc2\xfb\xbc\x96\xc7\x5d\xcc\x99\x88\x52\xd6\x89\x3a\xa6\x8a\x4e\xd5\x23\x1f\x55\x22\xe0\x06\x15\x20\xb7\xe4\x4b\x6d\x49\xad\x14\xf1\x21\x9c\xcf\x5e\x24\xb9\x8b\xcf\x2b\x1a\x8b\x94\xcd\x3b\x91\x0a\xb8\x93\x74\x4c\xc0\x05\x6b\x88\xdd\x79\x4b\xf3\x45\xb4\x2a\x3a\x6b\x5e\x82\xab\x4f\x79\x0b\xbc\xc9\xa3\x15\xb8\x66\x82\x28\x93\x1d\xa5\x21\xd7\x81\x9e\xa2\xf9\xdf\x33\xd4\x11\xd1\x7c\xd4\x59\x08\xb1\x0a\x1e\x3f\x4e\x78\x5c\xf8\xd1\x8a\x67\x19\x07\xe7\xd5\xf2\x52\xf2\x58\xbd\x3f\x52\xa1\x5c\x1e\xc7\x3c\xa7\xfe\x42\x2c\xb3\x3f\xcc\xff\x9e\x7d\xfd\x50\xf8\x1b\x9d\x34\x07\xfc\x76\xd0\x2d\xd7\x42\x09\x9d\xb6\x29\xbb\x05\x50\xef\xe3\x05\x5d\x46\x1d\xb9\x70\x9d\x19\xd0\x64\x42\x96\xf1\x1b\x9a\xc8\xd1\x9b\x68\xb3\x9d\xef\xe5\x75\x2a\xe8\xa0\xaf\x7b\xd4\xc4\xdf\xfb\xda\xce\x16\x55\x5e\x53\x84\xa5\x5f\xf7\x67\xff\xf9\x72\x9a\xce\x4b\x5e\x16\x7b\xf3\x11\x98\x45\x51\x74\x50\xcf\x54\xd1\x43\x1d\xbb\xaa\x8a\x7a\x48\x19\xea\x38\xa3\x85\x38\xcb\xbf\xc0\x92\x86\x85\xdb\x08\xb0\xa9\x66\x2c\xd5\x07\x42\xdb\x8a\x6e\x8e\x44\x92\x59\xcb\xb4\x28\x60\xf9\xb1\x6a\x00\xad\xcb\xba\xac\xdd\xd0\x7f\x91\x6d\xa9\xfc\xa1\xb4\xac\x0f\xdb\x8c\x13\xba\x4c\x8e\x58\x45\xdc\x68\x0d\x02\x7a\xef\x3e\xb5\x2c\x55\x07\xac\x8d\xb0\xa1\x4d\x98\x6e\xb7\x08\xf6\x1b\x10\xb8\x15\x1e\xb9\x13\x79\xa8\x4d\x7a\x17\xe6\x88\xff\x57\x60\x0e\x08\x94\xe7\xce\xc5\xe1\x4d\x66\xe6\x42\x5d\x2d\x16\xd1\x35\xed\x80\xe3\x29\xed\x93\xb9\x0e\xaf\x16\x8c\xa4\xb1\xf7\x01\xf4\x23\xda\x21\xa7\xe6\x66\x4a\xe5\xed\xc2\xb4\x7f\xd7\xcc\xcc\xec\xb9\xe4\x06\xe9\xea\x83\xa8\xde\xe9\xcf\x90\x7d\x93\xdb\x60\x5d\x55\xc4\xb2\x7c\xcc\x54\x3f\x0f\xec\x87\x54\xc7\x7a\x53\xb7\x8c\xb4\x5a\x57\x50\x48\x2d\xb8\x30\x0c\xa3\xed\xb6\x76\x90\xc9\x77\x37\xa2\x31\xa4\x99\xa3\x3a\xdd\x1d\x80\x8a\x6a\x6c\xbb\x15\xa0\x66\x91\xe2\x1d\x04\x67\xb4\x3c\xcb\x3d\x68\xa9\x75\x06\x2e\xe4\x1a\xcb\x4c\xad\x1f\xa0\x90\xf5\x0a\x27\xf6\x94\x24\x1d\xb7\x67\x44\x2b\xb8\xe9\x0e\xf9\x08\x37\x42\xe4\x36\x02\xce\x8c\x27\xb8\xd2\xda\xb2\xfb\xbb\xcd\xb3\xb2\x68\xc4\x25\xa5\xf2\xae\xbf\x4f\x90\x82\x6e\x98\x89\xb4\x5a\xc1\xa3\x38\x90\x5c\x0b\xe8\x28\xc2\xf6\x3c\xb7\x78\x9b\xb6\x7c\x0c\x85\xb9\x0e\xb0\x45\xab\x6a\x81\x5f\xe5\x96\x21\xb9\x33\x72\xcd\x79\x5a\xfb\x4b\xec\xe5\x44\xa8\x68\x91\x0c\x93\x7c\x67\x97\xea\xd2\x8f\xea\xbe\xa5\xc7\x9b\x9d\x75\x03\x2b\xac\x87\xa0\x4d\x9d\x66\xb6\xea\x3c\xf4\xa6\xf3\x9e\x0a\xb5\x73\x5b\x86\x5a\x69\xcb\xe9\x25\xdf\x92\xa7\x75\xe9\x73\xb5\xf4\x85\x1f\x25\x89\xc7\x6d\x31\x67\xc6\xac\xef\x22\xb1\x13\xfe\x1c\x82\xa6\x45\x10\x34\x6d\x01\x41\xd3\xd2\x30\x82\xd0\x7c\x25\x04\x50\x2b\x20\xf8\x5e\x06\x81\xd5\x62\x08\xc1\x37\x83\x78\x46\x09\x04\x5c\x5b\x41\x38\xbe\x05\x2c\x9c\x65\xc8\xbc\x67\x03\x4c\x24\xb5\x7c\x76\xfe\x30\x1e\x57\x75\x1d\x19\x4f\x08\x0b\x07\x43\xb6\xef\x93\x58\x3b\xff\x7e\x34\x68\xba\xff\x36\x0a\x81\x7b\x6b\x55\xc8\x36\x5b\xa2\xdb\x39\xfa\xa3\xf5\x00\xa6\xa2\x25\xfa\x29\xc3\x1b\x1b\xcf\x6c\x07\x41\x96\x55\xa0\x91\x07\x8d\x6f\x4f\x64\x41\x2b\x49\xc4\xa1\x93\x58\x19\xc9\x3a\x1a\x40\xed\x21\x34\xcd\x82\x72\x34\x94\xb5\x82\xe5\x5e\x0c\xba\x4a\x95\x32\x87\x18\x6d\xd8\x41\xbb\x96\x4a\xbb\xcf\xe0\xee\x13\xb5\x0e\x64\x5e\xca\xc7\x9e\xf7\xec\x09\xd6\x0a\x37\xbf\x47\xb1\xfb\x19\x51\xec\x0e\x86\x68\x6b\x04\x03\x09\x69\xe5\xd7\x1f\xae\x86\x95\x57\x7f\x65\xf5\x73\xd8\xb9\xf4\xd8\xb2\xad\x27\x07\xa2\x88\xd5\x14\x09\xc6\xe8\x3f\xfe\x83\xdb\x88\xfd\xe8\x96\x32\x3b\x2f\xf7\xab\xd8\xfe\x77\x61\x87\xdb\x16\x58\xea\x2e\xb0\xf3\xba\x17\x47\xfe\xc0\x68\x8d\x0e\xde\xd1\x67\x3e\x41\x96\x12\x78\x13\x2d\x29\x22\xc8\x06\x0b\x87\x98\x9b\x26\xb2\x12\x22\x48\x4b\xd4\xd1\x44\x93\x25\x2e\x26\xa1\xf8\x36\xe4\x0c\xf7\x20\x63\x3e\xc0\xf1\x37\xfd\x7d\x82\x29\xcd\x32\x3a\x8f\x32\xcb\x9e\x0d\x3a\xa8\xc7\x1d\xd7\xe9\xf5\xab\xaf\xc5\x25\x39\xfd\x7b\x49\x0b\x73\x43\xfa\x26\x1c\x34\x6e\x45\x3a\x0e\xc4\x60\xe8\x30\x61\x35\x5f\xd8\x41\x79\x24\x97\x3b\xa8\x72\x89\xb3\x61\xf4\xb3\xa8\xf9\xec\x11\x23\xb9\xd6\x79\x46\xfd\x9b\x28\x67\x15\x6f\xf9\x27\x08\x08\x93\x77\x12\x4e\x6b\x91\xd7\x3b\xcb\x32\x13\xe9\x2a\x03\x36\x5f\x99\x89\x42\xf9\xd6\xad\x56\x04\xc2\x81\xa7\x02\x54\x28\xc9\x99\x8a\x65\x98\xef\x6a\x0c\xc6\xa8\x11\x7d\x2f\xf1\xa3\x1a\xb6\x57\xfc\x95\x3a\xb1\xa2\x44\xda\xb0\xca\x63\xbe\x5c\x65\x14\xec\x23\xb1\xaf\xd8\xf6\x42\x05\x2c\x34\x5c\xba\x5a\x6b\xe5\x1d\xad\xe9\xb2\x4a\x95\xab\x7e\x3f\xd2\x28\xd9\x2e\x9d\xa0\x3a\xbf\x8b\xed\x76\x53\x0b\xde\x45\x9d\x78\x5d\xf0\xad\xb6\x00\x03\x87\x75\x22\xdf\x09\x2c\xd3\x80\xfa\xf0\xbb\xab\x4e\xbf\x5a\x2e\x49\x67\xd6\x53\xc2\x7d\x83\x3e\xa1\xea\xd0\xb8\xc8\x9b\xf9\x73\x2a\x2e\xdd\x32\xd8\xd3\x59\x70\x80\x50\x8d\xc6\xcb\x5c\x06\x1c\xb8\x99\xa7\x98\xd4\x3d\x38\xb0\x03\x7c\x40\xc8\xcd\x88\x44\x7a\x38\x30\x2f\x78\x47\x78\x0b\xee\x50\x9f\x71\x83\x2a\x6b\x11\x41\x15\x4a\x54\x2c\x77\x63\x5d\x3a\x37\x20\x26\x82\xd7\x2d\x82\xbd\xf9\x5d\xa5\xf9\x6d\xa5\x05\xff\x4f\xba\x3e\x50\x70\x7f\x48\x31\xf8\x97\xaa\x01\x33\xde\x17\x7e\xaf\xfc\x08\x7b\x7a\x8e\x71\x0f\x6d\xf7\x22\xa8\x3b\xeb\x49\x7d\x6f\x2c\x93\x9d\xa4\xe3\x6e\x0f\x2f\xbb\x06\x11\x1d\x05\xca\x6f\x1e\xa6\x26\xef\xac\x2d\xef\xb5\x12\xe7\x01\x65\x18\x03\x65\xb8\x00\xca\x70\x1a\x2a\x65\x30\xb0\xbd\x38\x53\xb1\x28\x9e\xf4\x95\xf5\xc5\xf1\x29\x26\x8b\xdf\x0f\xfd\x9f\x7b\xe8\x2f\x7f\xbb\x31\xad\xd7\x87\xe8\x15\x27\xa2\x9a\x6b\xdf\x22\x1a\x21\x61\x73\x3f\x4b\xd9\xa7\x90\x91\x7c\x67\x15\x2b\xea\x61\x5b\xc9\xf5\x9d\x51\x7c\x1e\x2c\xb6\x76\x6a\xcb\xf5\xa9\xad\x14\xb6\x9e\x1d\xe3\x21\x0f\x5b\x6f\x14\x05\xcd\x66\x23\xf9\x4f\xd0\xfa\x59\x49\xe1\x47\xea\xa7\x3d\x0b\x1d\xd1\x40\x05\x2f\x74\xd4\x1e\x22\xec\x71\x5c\x93\x91\x57\xc1\xac\x8f\x21\xbc\xd7\xe0\xd9\x00\x7b\xf4\x4e\x8d\x82\x2f\x76\x93\x7a\xdc\x3f\xb6\xe1\xc9\x5e\xb1\xd7\x74\xc9\xf3\xf5\x8b\x28\x5e\xd0\x83\x21\xce\x0c\x1e\xd1\x7d\x7e\x19\x89\xe8\x55\xf2\x7d\xce\x97\xaa\x0f\xed\xe5\xa6\x56\x47\x82\x79\x83\x7e\xbf\x6a\xf2\xe5\xd5\x7f\x5e\xfc\xf7\xc1\xb0\x68\xa6\xad\x9c\x46\xc9\xff\x95\xb8\x52\xb6\xf3\x5e\xf0\xbc\xb5\x7b\xdc\x4f\x9c\xee\xa5\xb3\x19\x14\x79\x3e\x8f\x24\x5e\xb9\xa5\x54\x5c\x95\x8a\x8a\x82\xe6\xe2\x55\xa2\x02\xe9\xb7\xe6\x36\x43\x91\x4b\xe6\x59\x15\x13\xee\xa7\x3c\x15\x4a\xfa\xd9\x4a\xd3\xba\xa3\xa1\x6c\x11\x19\x43\xcc\x9f\x52\xb1\xb0\x9c\xc9\xd6\x82\xd3\xaa\xe0\x8d\x6c\x03\x06\xf5\x81\x1f\x1c\x4f\xea\x8e\x07\x4a\xbc\x03\x8a\xec\xd6\x22\x49\xa3\xc8\x7b\x9a\x29\xcf\xa5\xef\xe9\xed\x05\xa9\x86\x46\x24\xa1\x71\x6e\xa1\xf1\x17\x5a\xe6\x69\x21\xd2\xd8\xf0\xcb\xc0\x39\x3e\x6d\x85\x4d\xe4\xc2\xe6\x15\x13\x39\x2f\x56\xaa\xf1\x7b\x15\x36\xf3\x51\xca\xa3\xa9\x5a\xcc\x6a\x35\x1e\x5c\xca\x65\xcb\x52\x7e\xc3\xf3\x65\x94\xa5\xff\xa0\x09\x14\xfb\x3e\x92\x28\x7f\xdd\x5e\xda\xb4\x0a\xd1\x9b\x9c\x3d\xf4\x8e\xc6\x3c\x4f\x52\x36\x3f\xd8\x72\x51\x5f\xd8\x32\x7b\x7b\xb6\x69\x5b\x04\xd1\x87\xdc\xa2\xc8\x6d\x61\x07\x6b\xd7\xf8\x33\x6c\x94\x4a\x9d\x8c\x16\x9f\x53\x0f\x6f\xda\xc2\x51\x53\x56\x94\x39\x7d\x47\xa3\x64\xdd\x42\xdb\xe9\x1b\x83\xaf\xc5\xfe\x5e\x23\x94\x73\x1c\xb1\xef\xd6\xab\xa8\x28\x5e\xb1\xb4\xc5\xf8\xef\xa8\x11\x35\x7a\xb9\x17\x59\xc8\x1c\x31\x69\xc8\xfc\x42\x2e\x50\x49\xde\x7a\xd4\x4f\x13\x6b\xa0\x9c\x76\xbb\xe8\xdd\xe5\xe5\x87\xab\xff\xfb\xe3\xc5\xbb\xff\x56\x22\x89\x34\xd9\x6e\x8f\xe4\x17\x2f\xf5\xaf\xae\x64\xdd\x2c\x5a\xd2\x91\xfb\x12\x42\x64\x52\x13\xac\x38\x87\x1b\xd0\x25\x8b\xe9\x2b\xf6\x92\x5e\xd3\x8c\xaf\xe4\x9a\xc4\x1e\x84\x7f\x89\x72\xda\x29\x41\xd8\x03\x21\x5d\x52\x79\x01\xe9\x78\x0b\xb3\xfc\x71\xc5\x0e\x5f\xaa\x45\x4c\x20\x34\xc8\x9a\x97\xb9\x91\xab\x59\x91\x46\xc9\xe0\xbe\x97\x77\x52\x26\x68\x3e\x8b\x62\x0a\xa2\xb9\xc2\xff\xc8\x3a\xf2\xbf\xe7\x20\x22\xe8\xbc\x00\x11\x81\x8a\x10\xa3\x55\x2b\x40\x55\x55\xf0\xea\x37\x8e\xcb\x3c\x12\x34\x5b\x77\x96\xd1\xca\xf6\xa1\xf0\x3f\xf0\xce\x32\xfa\xa4\xec\xbe\x54\x38\xf9\xce\x9c\x77\xa2\x9b\x68\x4d\x20\x7c\x8d\x1c\xc4\x6d\x5b\xb0\x13\x15\x1d\xeb\x49\xc2\x04\xb2\x49\x78\x5c\x04\x20\xdc\x28\x82\xc7\x8f\x6f\x6e\x6e\xb4\x70\x03\x54\x1d\xff\x9e\x81\x78\x43\xe6\x79\x9c\xd3\x28\x16\x8f\x73\x1a\xa7\x2b\x5a\x3c\x36\xbd\x7a\x04\x90\x49\xd9\x1c\x04\x1e\xf2\x12\x0e\x58\x54\x2e\x5f\x35\x8f\x6f\xa3\x5c\xa4\x51\x26\x4f\x1a\x79\x81\x3c\xea\xe3\xc0\xe3\xdb\xad\x57\xbf\xa1\xfe\x37\x2f\xbf\xb6\x93\x61\x47\x2c\xfb\xe8\x02\x5b\x81\x5f\x5b\x8a\x27\x9c\x7d\xad\x45\x24\x72\x1c\x51\x92\x7c\xd0\x4b\x20\x90\x20\x17\x79\x49\x3b\x7c\xa5\x6e\x7d\x54\xc8\xaa\x6a\x53\x00\x1c\xf8\xb5\x5e\x04\x22\x5f\xc3\x2a\xe0\x1d\x40\xa0\xae\x20\x44\x70\xb5\x38\xe4\x22\x05\xd6\x3e\x2f\x05\xa4\x54\x4b\x4e\x4d\xf1\xdb\x8c\x46\x72\x12\xe0\xa0\x61\xcd\x3e\x99\xae\x44\x4c\x42\x3e\xce\xca\xc4\xad\xa1\x73\xb3\xa0\x0c\xda\xae\x8f\xbf\x90\x8d\x47\xa2\xde\x73\x68\x2d\x8e\x58\x7d\xa1\x88\x78\xe1\x2c\x15\x84\x49\x1d\xc0\x2f\x6c\xf4\x9c\x59\xca\x12\xb7\x69\xce\x3a\x56\xea\x84\x88\x20\x69\xb3\xe8\xcb\x8b\xb7\xef\x2e\x5e\x3c\xff\xf0\xea\xf2\x4d\xe7\xa7\xe7\xef\xde\xbc\x7a\xf3\xe7\x60\x6f\xa6\x0c\x64\x9c\x8a\xd3\xa2\x53\x32\xcd\x61\xa0\x49\x67\x4a\x17\xd1\x75\xca\x73\x00\x81\x89\x90\x94\xd3\x25\xbf\x56\x8b\x71\x56\x82\x02\xf7\x35\xcd\xe1\xb2\xdd\x91\xf7\x08\x35\x6c\x25\x56\x53\xf1\x7b\x74\x18\xa0\x59\xfa\x59\x6d\x03\x59\x99\x9c\x5e\x17\xd4\x72\xca\xe4\xec\x33\x7e\x23\x01\x61\x51\x41\x5a\x7c\xa0\x85\xc0\x1e\xde\x6e\x3d\x1e\x1e\xf5\xf1\x6d\xab\x54\x87\x9e\x77\xd9\x7a\x75\xd5\x7e\xbc\x01\x46\x5e\xea\x6e\x38\x38\xde\xd5\x89\x2d\xab\x32\xb6\x46\xbc\x28\xd2\x69\x46\xc1\x06\xe3\x75\xb4\xd2\xb6\x39\x51\x5e\xd0\xda\x76\x55\x05\xbd\xdb\xeb\xd4\x86\x5d\x69\xa1\x50\xb7\xdc\x4f\xf5\x04\x1d\xb3\x57\xe1\xdc\xea\x51\x33\x51\x40\xeb\xaf\xe5\x38\x68\x47\xd1\x20\xe2\x75\x6a\x3f\x2c\xb0\xd4\x28\x46\xd5\xe3\xe1\xce\x4d\x54\x68\x97\x13\x9d\x29\x9d\xc9\xbd\xd3\xcc\x99\xb2\x54\x78\x18\xd9\x83\x6c\xef\x1c\x90\x8d\x1b\x5b\xcf\xa3\x81\x7a\x75\x10\xfd\x7e\x5f\xb4\xa7\x8d\xfa\x5e\xe8\x4c\x69\x1c\x49\xec\xe8\xac\xcc\x95\xa6\xb1\x1d\x71\x7f\xd0\xd9\xbb\xc5\xe7\x4a\xbb\x2d\x6f\x1c\x2e\xa6\x47\xc6\x89\x72\xeb\x14\x8f\x85\x11\x7d\x1c\x1d\x79\xbc\xdb\xe5\x95\x3f\x12\x77\x08\xdf\x3e\x1a\x34\x4e\xd6\x43\xab\xa2\x45\xb5\xdb\x95\x04\x5e\x5d\x15\xa0\x0e\xe2\xab\x33\xa7\x4d\x30\x88\x7e\x7c\xf3\xea\xf2\x4d\x25\x40\xef\x76\xd1\xab\x37\x1f\x2e\xde\x7d\xff\xfc\xc5\x45\x95\xba\xdd\x7a\x46\x82\x38\x09\x69\x7d\x5c\xb7\x6b\x25\xec\x30\x06\xce\x09\x6c\x9b\x07\x06\x6d\xa9\x54\xa7\xae\x3d\x04\xb3\x69\x91\xa1\xe2\x48\xca\x3d\xad\x50\xf0\x8c\xab\xe3\x60\x2d\xb1\x3c\xea\xe9\xcd\x9d\x40\xec\x76\xec\x28\x4e\xeb\x18\xbe\x3a\x62\x08\x35\xef\xca\xdf\x5c\xfc\x09\x62\x15\x46\xf1\x27\xc2\x1a\xcc\x5a\x23\x89\x54\xed\x82\x1c\x52\x49\x72\x39\x14\xe1\xb9\x21\x2d\xad\x11\x4f\x18\x86\x7c\xb4\xf0\xa7\x01\x57\xd1\x0e\x65\x1e\x52\x54\x1f\xcb\x51\xea\xe1\xa0\x24\x99\x23\x27\x2c\x48\x1c\x52\x3f\x69\x5c\xbf\xc8\x2c\xa4\xfe\xcc\xee\x93\x15\x49\xaa\x5a\x66\xa3\xcd\x2e\x98\x91\x65\x2d\x07\xec\x24\x13\xad\x9c\xac\x43\xcb\xa0\x9a\x53\x01\x78\xa3\x92\x47\x62\x8f\xe1\x61\x56\xe5\x50\xbc\x09\x70\xae\xe4\x96\x7a\xe9\xc8\x5c\x41\x9d\x9f\x64\x78\xe8\x28\x62\x47\xde\x46\xf5\x3a\x70\x89\x33\xa2\xa0\x15\x08\x52\x38\x77\x8f\x60\xed\xbb\xaf\x44\xb3\xe4\x83\x0d\x80\x28\x28\x88\x0b\xce\x20\x25\xab\x9c\xc7\xb4\x28\x68\x22\xf1\x5c\xb0\xd9\x91\x8a\x43\x9b\x91\x26\xac\x82\x98\x38\x90\x0a\x12\x72\x00\x2a\xc1\x72\xb7\x73\xd4\xc0\x15\xd2\xc8\xc1\x75\xc9\xae\x95\xfd\x6e\xa6\x05\xa6\x5e\xaf\x02\x39\xf7\x46\x87\x44\xc7\xb9\x74\x16\x42\x2d\xa6\x8f\x5c\x08\x29\x29\xec\x42\xc8\xaa\x8f\xc5\xa8\xf4\x70\xa0\xa6\xbe\x5a\x08\xb3\xb6\x85\x90\xdc\x32\xcd\xcb\xda\x34\xb7\x68\x50\x60\x8f\x63\xb2\x0e\x97\x75\xe8\x5f\x57\xc5\x14\x8f\xab\x42\xc8\x2b\xec\xb9\x55\xee\xab\x49\x14\xb2\x4a\x3c\x8c\x1f\xba\x7c\x96\x98\xc4\xcd\xe5\xa3\x97\x0a\xd3\x33\xba\xb7\x66\x9a\xcb\x24\xab\x2f\x93\xf2\xb6\x65\x12\xef\x2f\x93\x59\x6d\x99\x5c\x1f\x5c\x26\xc9\x81\x65\xc2\xf1\xae\x55\xad\xac\x86\x21\xf4\x8a\xc9\x21\xd8\xa9\x03\x73\x0e\xa1\x53\x55\x3c\xbd\x34\xe4\xce\xac\x97\x21\xb7\x98\x82\xbb\x7b\xbe\x62\xaf\xd9\x9a\xda\xf1\xb9\x3a\x36\x2d\xf0\x15\x61\xf4\x4a\x91\x96\xd8\xa3\x24\x85\xd3\xcb\x7e\x4f\x8b\xef\x53\x9a\x25\xc0\x8f\xd2\xc1\x70\xec\x37\x35\x92\xff\xa4\x10\x95\x4b\xc2\xce\x66\x25\x59\x28\xc6\x25\xc8\xc4\x72\x9c\xce\xbc\x56\xee\x58\x86\x63\x8b\x15\x98\xe6\xad\x67\x64\x26\xeb\x00\xcb\x2d\x35\x9d\x7c\x87\x87\x34\x2b\xe8\x46\xb1\xa4\xa9\xaf\x03\xac\x5c\x53\x50\x3a\xa9\xde\x34\x23\xb4\x91\x58\xf0\x25\x3d\x7c\xf8\x74\xbb\x28\xa1\x33\xe3\x31\xda\x55\x92\x1b\x1e\xcd\xe4\xf1\x7b\x60\xda\xad\x6b\x27\x80\xd0\xdb\x9c\x27\x65\xac\xb6\x10\xde\x6e\xeb\x64\xf0\x6b\xad\x17\x08\xe3\xea\xa0\x5e\xd9\x43\x92\x6c\xdd\x23\x1b\xb4\x1b\xc2\x63\x0c\x22\x3a\x48\xf6\xfa\x64\xd0\xef\x63\x13\x4c\x4b\x47\xe4\xd2\x76\x37\xf5\x49\x7a\x05\x76\x60\x66\x07\xc2\x6c\x25\x21\x1d\xaa\xb0\xf3\x33\xef\xc8\x4b\x42\x0f\x04\x51\xb8\xae\xe7\x83\xf7\xc9\xa1\x37\xbc\x22\x82\x64\x4e\xd9\x69\xb7\x4c\x0f\x19\x25\xb2\x65\x78\xd4\x57\xe1\x92\x0e\x82\x29\x01\xca\xe2\x05\x67\x89\x42\x31\x3a\x62\x97\xed\xb9\xe0\x9a\xef\x86\xbd\x4d\x9a\x04\xa8\xa0\xd9\x0c\x11\x43\xe8\x28\x3b\x8b\xfe\x0e\x93\xeb\x50\x6f\x6b\x50\x88\xf6\x23\x6f\x03\x8c\x59\xb1\xc3\x64\x8f\x12\x0f\x8e\x06\x64\x11\x15\x1a\xf0\xb0\x26\x65\x52\x1c\xc5\x0b\xfa\x8e\xaa\xb5\x51\x04\x9b\xdd\x6e\xb8\x0c\x0f\x76\xdd\x5b\x93\x46\xdf\x1d\x10\x90\x6b\x4c\x8e\x0e\x2d\x80\x6e\xf7\x7a\xff\x76\xd0\xed\x9a\x55\xa1\xc4\x8b\xc8\xde\x88\x2c\xdb\xa0\xc1\x35\x90\x6b\x66\xce\xe5\xbf\x9c\x1d\x21\xbc\xcb\xbb\xdd\x65\xb7\x5b\x21\xc2\x06\xfe\x4b\xea\x18\xc4\x6e\x2b\x67\x1b\xed\x76\x98\x94\xad\x92\x50\xf4\x15\x6c\x80\x9a\x2a\x6c\xe1\xf2\x5b\x24\x9d\x0d\x14\xb6\x12\xcc\xcb\x47\x61\x8d\xc7\x40\x36\x9e\xb7\x68\xd9\x58\x7b\x9f\x7c\x9c\x4e\x48\x16\xf2\x71\x3a\x19\xba\x8b\xd6\x4c\x7d\x84\xbb\xdd\xd2\x8b\x24\xf9\x6e\x74\x77\xea\x19\x32\xdc\xed\x16\x90\x81\x64\xf2\x1f\x06\x7c\x2e\xb0\xc8\x57\x4e\xdc\x0b\xd9\x23\xb2\x06\x9f\x8f\x84\xb7\xd8\x0e\x99\x6b\x09\xab\xdd\x0c\x20\xdc\xe3\x46\x3f\x58\x5a\x5b\xe0\x6f\xc3\x7e\x45\xaf\xc3\x37\x6d\xe6\xa3\x3c\xe8\x40\xc0\x47\x87\x56\x1f\x34\xe4\x7e\x5a\x50\x03\x88\x1d\xf6\x3d\x60\x74\xb5\x74\xd2\x0a\xef\xc7\x0e\x9a\x5f\x84\xb1\x83\xe6\x97\x61\xbc\x7f\xb8\x5f\x87\xb1\xc6\xfd\x53\x07\x7f\xcb\x84\x7d\x14\x9c\x93\x05\x26\x73\x79\xab\xbb\xd1\x31\xcd\xf2\xda\x02\xb1\xca\x52\x7c\x3f\x64\x20\xd7\x98\xfe\x2a\x4c\xe5\x5e\xef\x4d\x87\x22\x9c\x79\x9c\x5c\x91\xbc\x41\x98\xe1\x0a\x2f\x5d\x9a\xcc\xe4\x42\x63\x85\xd2\xbb\x94\x37\xe6\xcb\x10\x7d\x85\x7a\x97\x98\x2c\x55\xad\x9f\xc3\xa5\xc7\xe1\x8c\xf9\x2c\x27\xfd\xf3\x3e\x06\xfa\xfa\xd5\xcb\xa2\xa3\x20\x2b\xaf\x81\xeb\x4e\x13\x12\x95\x7d\xd1\x3c\x65\x4a\x6f\x52\x2c\x68\x07\x7d\x85\x3a\xf1\x22\xca\xa3\x58\x40\x98\xdd\xe1\x67\x70\x9a\xfb\x59\xf6\x68\x80\x77\x99\x77\x49\x72\x12\xfb\x35\x3a\x00\x6f\xb7\x15\x69\x7a\x69\xe8\x51\x5e\xdf\x5b\xcd\x61\xeb\x2d\x15\x6b\x6e\xea\xa7\x90\x3b\x97\xb3\xa1\x38\x88\xdd\x2e\x2b\xc4\xf6\x69\x47\x2e\x30\x61\xe1\x35\xec\xa5\x54\x55\xf4\x36\x64\xdd\x2e\x1b\x4f\xe1\xdc\x7c\xeb\x6a\xb2\xd5\x77\xc3\x5b\x3d\x41\xef\x43\x6b\x2c\xfa\xd6\x37\x55\x93\x0f\x55\xea\x27\xf2\xb7\xf0\x7d\xb7\xfb\xa1\xdb\xad\xbe\xcb\x64\x59\xff\x45\xb7\x7b\xf4\xd6\x9f\x53\x26\xe9\x40\x9a\x74\xbb\x47\x7f\xdb\x3f\x0b\x40\x08\xa0\x78\x86\x81\x62\x4d\xad\x56\x59\xaa\x02\xca\x1a\x53\x7a\xa3\x0c\x0d\x0c\x30\xd6\x51\xca\x6c\x6a\x56\x18\xaf\x02\x27\xa7\x09\x70\xe1\x2a\xa6\x58\x94\xe5\x34\x4a\xd6\x95\x11\x40\xc4\x64\x26\x3e\xeb\xa0\xde\x5b\x3f\x4d\x7a\x08\x2e\x6d\xc0\xae\xd1\x71\x61\x3b\x1f\x64\x69\x67\x2e\x14\x9b\xeb\x26\x2a\x1c\x56\xdc\x94\x42\x67\x04\x65\x9d\xb4\x08\xe4\x2d\xce\xbd\xec\xe9\xdb\xf9\xfb\x6e\xf7\xe8\xc3\xaf\x3a\x5e\xcb\x35\xb8\x7b\xd4\x6e\x15\x15\x7f\x4d\xc1\xc1\xbc\x5b\x68\x50\x93\x9d\xcf\x24\xb8\x0c\xac\x7e\x29\xd8\xd4\x96\x84\x77\x13\xca\xda\xc9\xdf\x46\x17\xdb\xed\xb5\x41\xb8\x37\x38\x98\x87\x47\x7d\x13\xe2\x53\x68\xc7\xec\xbc\x4d\x93\x91\x8f\x36\xf2\x29\x40\x7f\x2b\x38\x43\x44\xfe\x1b\xf0\x5d\xa0\xe2\x5d\xbe\x08\x01\x61\x9b\x3d\x40\xbc\xd7\xe1\x66\x47\x5e\x8f\xa7\x93\x50\x90\xd7\x18\x0f\xe7\x12\xeb\xdf\x10\xf0\xc9\x7d\x8d\x89\x57\xed\x17\xdc\xed\x8a\x30\x0c\xe5\x66\x91\x3d\x93\xe8\x3f\x25\x2f\xd4\x36\x7a\xdd\x30\x5e\x04\x17\x8b\x9b\x03\x9a\x99\x84\x2b\xfc\xaf\xc4\xf9\x74\xcf\x23\x4e\x1a\x0a\xc0\x6b\x7c\x78\x8b\xba\xa7\x6c\x26\x85\x66\xb4\x54\x4a\x61\xc0\x7c\x0f\x87\xab\x7d\x5b\x84\xfb\x5f\x3c\x8a\x87\x45\xb7\xeb\xa5\xa1\x24\xf2\x25\xbe\xb2\x86\x60\x50\xf3\x2d\x68\x2b\x35\x68\x8b\xd6\xd1\x56\x75\xf8\x57\x8a\x32\xfb\x48\x29\xad\x90\x12\x75\xd0\xd8\x8e\x94\xf2\x10\xbd\x4d\xda\xa4\xf4\x47\xa6\xa0\x6b\x1c\x83\xc6\x49\x02\xba\xc6\x54\xc7\x92\x4b\xb4\xbe\xc8\x4a\x4b\x9b\x16\x4a\x58\xd7\x54\x7e\xf8\x5d\x7f\xe4\xe1\xfa\x23\xeb\xdf\xae\xfe\xc8\xf5\x61\x7d\xd7\xca\x27\xe6\x3d\xd4\x5d\x2b\x25\x39\x00\x54\x4d\x16\x6f\x35\x9f\x97\x0d\xd5\x92\x2f\xf1\x2c\xcd\xbd\x19\xe8\xc2\x91\x4d\xdb\x4d\x63\x87\xb1\xbe\x07\x1f\x60\x08\x2a\x8a\xad\xe2\x07\xe6\x35\x2e\x8e\xa4\x0b\x57\x39\xbd\x4e\x79\x59\x28\x8e\x2d\x10\x88\x7b\x2d\x91\xc8\x61\x16\x6d\xb7\x8a\x53\x94\x73\x2e\x5e\x25\x64\xe6\xb2\x8a\x5c\xf6\x5a\x50\xdc\xca\x10\x5a\x28\xf2\x73\x96\xce\x2b\xde\x50\x7c\x88\x05\x98\x57\x39\xf6\x79\x38\x71\x3b\x0f\x47\xa3\xc3\xb5\xb9\xbb\x89\x96\xbb\x5a\xb4\xcf\x7a\x59\x74\xbb\x8b\x3d\xfc\xa8\x2c\xd6\x9a\x97\x38\xc8\x5a\x4f\x03\x6d\xcb\xfd\xeb\x9f\x5c\x78\xfa\x28\x4a\x13\x44\xd2\x24\x98\x91\x3a\xe0\x03\x6e\x76\xb7\xb9\x62\xe9\xd1\x65\xf2\x6c\x5c\x11\x46\xae\xc9\x9a\xe4\x64\xd3\x80\x67\x90\x68\xfc\xfb\x1a\xb4\x64\x83\x72\x87\x89\x51\x4a\x0d\x8e\xd6\x7e\xa3\x2f\x4d\xee\xa1\xbc\x94\x58\x30\x3a\x44\x1e\x6d\xb9\x9a\x5f\xb0\x18\x1c\x1a\xe7\x60\x45\x54\x94\xd3\x47\x16\xe1\x1b\xd9\xa1\x36\x1f\xaa\x13\x1d\x09\xa7\x85\x95\x7a\x56\x04\x47\x6e\xdc\x83\x4b\xe2\x21\x2d\x8c\x90\x8c\xd1\x6b\x9a\x77\x16\x72\x34\xac\x93\x94\x60\xd5\xc6\x40\x4d\x02\xc4\xc5\x25\xcb\x68\xa1\x2c\xe1\xa0\xbe\xb8\x2c\x04\x5f\x76\x62\x9e\x50\x45\x72\xa4\x45\x47\xcd\x05\x08\x18\x59\xba\x2a\xb3\x48\x58\x69\xb9\xec\xd0\xb0\xb3\x52\x52\xcf\x59\x9a\x41\x87\xd2\xa2\x28\xa9\xdf\xee\xd1\xfc\x00\x70\xec\xd1\xab\xf6\x66\x63\x2e\x85\x32\xb2\xd8\x3b\xb0\x1d\x91\x81\xc3\x34\x6b\x7a\x9e\xea\x76\x5b\x0c\x4f\xb4\xe4\x6e\x9c\x4c\xba\x5d\x75\xe1\x94\xcf\x84\x82\xf9\x48\x93\xaa\x30\x4a\x66\x92\x84\x17\xe3\x7c\xd2\x30\x41\x6a\x0c\xa6\xdb\xf5\xcc\xb5\x1a\x64\x58\xdb\x2d\xc7\x24\x32\xee\x3a\xf7\xd5\xc3\x2b\x4f\xea\xa2\x81\x3d\xcc\x00\x1b\x6a\xeb\x16\x8c\xda\x24\xa6\x59\xca\x97\x53\xbe\x6e\xe3\x93\x31\x7b\x2b\x06\xb1\xd3\x0e\xcb\xc1\x37\x72\x57\xee\x3f\x0a\x38\x2b\x49\xb3\x7e\x38\x3a\x2b\x7f\x5e\x8d\xaf\xbb\x5b\x15\x81\x29\x49\x9a\x6a\xb8\x0d\x67\xeb\x8e\x23\x76\xa3\xa2\x2b\x29\x46\xb0\xea\xa9\xb3\x33\x2a\x2a\x50\xa9\x7b\x1c\x79\x47\xcd\x15\xb2\xdd\x1e\x35\x57\xc3\x76\x4b\x1d\xe7\x68\xc6\xa4\x4d\x1e\x4f\x4d\xa8\x91\x1a\x24\x88\x1e\xf7\xad\x44\x54\xa2\x95\x70\x2b\x22\x6a\x1a\xa6\x95\x7b\xf6\xfe\x39\x26\xb1\xa6\x9f\x66\xbf\xdd\x43\x3f\x69\xd7\xb0\x54\x4e\xdd\x46\xea\xc7\x93\x88\x19\x07\xe8\x3f\xfe\x43\x22\xe8\x55\x43\xa8\x0c\x6c\x1d\xcd\x80\xe6\x15\xe7\x19\xd8\xe0\x15\xbb\x77\x98\x7a\xda\xa3\x42\xa6\x22\xf9\xcc\xc2\xdc\x11\x10\x67\x58\x1e\x88\x43\x8f\x6d\xb7\x85\xec\x6b\x52\x3b\xf6\xde\x3b\xac\x14\xec\x25\x84\x91\x42\xfb\x4f\x59\x39\x4c\xd7\x59\xb7\xeb\x8c\xc5\xde\x74\xbc\x55\x38\x1b\x27\x13\xdc\xed\xe6\x8d\x03\xa9\xdb\xf5\x66\x0e\x61\xbd\xdd\x36\xd4\x93\x32\x8d\x95\x16\x61\x23\xdb\xff\x55\xb6\x2b\xcb\xb0\x59\xe3\x78\x01\x1c\x82\xa5\xe1\xa6\x2e\xc7\x74\x32\x5c\x77\xbb\xde\x2a\x5c\x7b\x33\xc2\xc8\x66\x4e\x95\x16\xdc\x7f\xd2\x75\x5b\x54\x66\x3b\xea\xc6\x5d\xa0\xf5\x5a\x72\xe0\x7e\x80\x77\x10\xf7\xa4\xce\xdc\xaf\x2e\x7e\x2b\x75\xb2\xe5\xfb\xa4\x4c\xab\x00\xfe\x6b\xad\x60\x62\xb8\xe4\xf2\xf6\xcf\xed\x41\xe5\xa1\x5e\xd6\x43\x78\x9f\x69\x3e\x33\x4c\x73\xc5\x94\xb6\x32\x90\xc6\x99\x1b\x1e\xf5\xc9\x6a\xb7\x8f\x82\xff\x4f\xc1\x99\x1e\xfe\x0a\x8f\x9a\x78\xc9\x32\x5f\x64\xd6\x8b\xbf\x97\x51\x86\xf7\x30\xe7\xb8\x9c\x90\x95\x2f\xaf\xb5\xfb\xe5\xc7\xe5\x24\x50\xdf\x82\xbd\x72\x30\x59\x91\xb7\xda\x47\x95\xe5\x04\x63\xb2\xc2\x0f\xf1\xf4\xa1\xf7\x47\x4a\x22\xc7\x00\x38\xea\x76\xbd\x28\xdc\x58\x45\x49\x3d\x16\x70\xd8\xfc\x3a\x4a\x6b\x72\x3f\x81\x49\x56\xcb\xd0\x2a\xca\x13\xd8\x3a\x3a\xf4\x8a\x36\x61\x20\xc4\x6b\x88\x7c\x97\x1a\x22\x49\x18\x35\x09\xd0\xda\x4d\xaf\xd2\xfc\x5b\x85\x1b\x57\xe4\x16\x9b\xdb\xeb\x7f\x29\x5b\x0f\x2b\xae\x53\x04\xa6\xbd\xf5\x6a\xaa\x6b\x46\xb4\xce\x61\x1e\xd0\xa6\xb0\x2e\x48\xec\xbd\x8d\x7b\x65\x9d\x99\xc7\x24\xac\x5d\xca\xbd\xce\xf4\x76\xa5\xea\x51\xc8\x7c\xb7\x4f\x24\x0b\x99\x5f\xef\x15\x89\x6b\xea\x15\x77\x88\xe2\x2a\xe2\xa6\xd8\x97\xc3\x65\x18\xbb\xdf\xf7\xe4\x70\xb3\x30\xd5\x9d\x25\x49\x35\x2b\x87\x45\x72\x43\xcb\x15\x9c\x75\xbb\x9e\x5d\x26\xf1\x38\x99\x8c\xe4\x3f\xe1\x2c\x28\x3d\xf9\x40\x66\xd8\xe1\xeb\xae\xf6\xe5\x4d\x45\xbb\xbc\x69\x55\x93\x37\xad\xc2\xfc\x67\x4b\x9a\xd4\xd2\x5d\x84\xab\x83\x82\x18\xe0\xe1\x37\xd7\x97\x27\xc8\x82\x44\x1a\x4c\xcb\x90\x7b\xab\xfa\x94\x83\x93\xd0\xd2\x8b\xc9\x12\xef\x76\x3b\xa5\xcc\x55\xad\xa4\x51\xfd\xd5\x8b\x89\xc0\x41\xdc\x70\x32\xe7\x2e\x91\xc6\x0a\x48\x9b\xab\xa4\x0c\x99\xd1\x87\xcd\x41\x99\xc3\x91\x23\x39\xfb\xc9\x9e\xbf\x2a\xc5\x9d\x3b\x92\xcb\x8d\xb5\x49\x8b\x1f\x68\x34\x0b\x8e\x1a\xc2\x62\x3b\xe5\xc1\x3d\x56\x01\xa9\xce\xca\xc0\xdd\xf0\x2f\x4d\xf2\x2b\x36\xe3\x8d\xb6\xe5\xf1\x5d\x7a\x19\x11\x24\x26\x29\x99\xe1\x96\xf5\xfd\x9e\x8a\x91\xe2\x68\x24\xa3\x24\xa8\x13\x50\x09\x1e\x45\x40\xc5\x31\x1c\x70\xaf\xd1\x79\x48\x4d\x5a\x7c\xf1\x59\x5a\xb1\x46\x58\x8b\x9a\x51\xac\x3c\x6d\x54\xfc\xba\x26\xc9\x36\x32\xf5\xec\xb7\x08\xee\xfd\xf0\x1e\x2d\x5d\xd9\x8e\xb7\xb8\x24\xbb\x97\x41\xb9\x5a\x0f\x92\xe6\x1b\x66\x55\x9c\x9b\x51\xa9\x48\xe2\x1c\x07\xc0\x46\xca\x77\x58\x59\x63\x57\x9a\xe4\x67\x15\xf6\x3d\x48\x62\x3d\x50\x31\xca\x31\x70\x94\x97\x4c\x5f\xa9\x9c\x7b\xe2\x76\x5a\x34\x35\x0c\x3d\x47\x45\xed\x37\x49\x6e\x1e\x52\x69\xdf\x77\x90\xb1\xd9\x69\xc5\x48\x49\xf8\x84\xda\x5b\xbb\x82\x96\xe2\xb4\x86\x9b\x5d\x9b\xde\xa3\xca\x52\x0f\x9d\xad\x83\x72\x38\x7e\xd4\xdd\x8a\x6a\xce\xf0\x1b\x2d\x80\xfa\x9b\xeb\x50\x8c\x2b\x10\xb4\x68\xd8\x73\x79\xdf\xb5\x3d\xde\xef\x6f\x43\x2f\x70\x4e\x45\x9b\x2f\xdb\xbd\x62\x4d\xbe\x27\xc5\xa3\xbd\x3c\x63\x3a\x09\x6c\xcb\x63\x3a\xa9\xb7\x54\xd4\x5a\x22\x26\xb2\x89\x92\x1a\xab\x9d\xe5\xb5\x55\x19\x8a\x46\x97\x95\x94\xa1\xd6\xeb\xd6\x72\x5a\x37\xa0\x6e\x60\x90\xd1\xe8\x80\x07\xfc\x9a\xb4\xda\x0e\xa3\x65\x2b\x8b\x9a\xfb\x11\x90\x78\x08\x6c\x96\x49\x73\x69\x90\xfa\xa2\x80\x88\x79\xfb\x5d\x87\x6e\x79\x6d\x55\x70\x65\x66\xfb\x45\xda\x8f\xcd\x68\x6f\xea\x54\x15\xf8\x5e\xde\x1e\x14\xb6\xf2\x98\xf7\xe4\x04\x13\xe6\x1d\x0f\x9e\x61\x7c\xab\x6d\x09\xd8\x81\x0d\x99\x77\x7c\xdc\x07\x1b\xb5\xfe\x19\x94\x3b\x1e\x7c\x89\xe3\xdb\xf1\x44\xf9\x48\x61\x3c\xa1\x05\xd6\xbf\xed\x2c\x17\x3f\xe3\x31\xc4\x66\x2b\x8b\x85\x27\xb1\x79\xc6\x63\xbf\xe0\x65\x1e\x53\x52\x1d\x9e\xb8\xfe\x41\xbf\x88\x28\x17\x18\x3c\x01\x1a\xc2\x84\xea\x1c\xf2\xf6\x9e\x71\x25\xd8\xb3\xf1\x96\xcc\xc7\xa1\xf3\xad\xdd\x59\x8e\xe9\x0d\x53\x8e\x06\x0d\x86\x90\x78\xc5\x30\x08\x46\x56\x77\x34\x18\xdb\x47\xc7\x95\x8c\xff\x37\x9e\x32\x0f\x7d\x64\x1f\x19\xc2\x3d\xf4\x91\xa1\x03\x51\x0a\x85\x2f\x49\x2d\xe0\x1b\x9b\x5e\x5d\xce\x66\x05\x55\xe9\x8f\x06\x84\x2b\x4a\x10\x93\x22\x64\x3d\x49\x62\x08\x3f\xe6\x59\xb9\x64\x3d\x4e\xe2\xd0\x2b\x1e\x0d\xb0\x2f\xf8\x7b\xa5\x52\x24\x29\x89\xc2\x7d\x4d\x42\xaf\xe8\xd5\x73\xac\xc2\x44\x0f\x02\x78\xc4\x53\x9e\xac\xb5\x27\xf1\xc7\x1f\xf3\x8f\x6c\x3b\xfe\xc8\x3e\xe6\x93\xc7\x73\x4b\x09\x2c\xc6\xfd\x49\x18\x79\x7b\x1d\x54\xdd\x78\x34\xc0\x3d\x99\x83\x68\x82\xb0\x87\xe4\x85\xae\xe8\xa1\x40\x5d\xeb\x10\x61\xdf\x86\xc7\xdd\x6e\xe9\xad\x48\x8c\x7b\x28\xe8\xa0\xde\x62\xcc\x1e\x1d\x4f\x88\x4c\x9a\x39\x49\x83\x09\x89\xbc\xe3\xde\xaa\x97\xc9\x4a\xd1\x5f\x11\x61\xdf\x2c\xac\xe2\x97\xcc\x9d\x54\xb9\x27\x13\xe3\x5a\xe8\x3b\xce\x33\x1a\xb1\x0a\xe6\x0d\xc7\x72\xce\x91\x39\x50\x53\x98\x32\x3a\x3a\x38\x9c\xa0\xdf\xee\xbd\x40\xf3\x90\x24\x34\x55\x43\x1d\xb4\x4f\x68\x58\x8d\x46\xfa\xc8\xf2\x92\x7a\xa2\x49\x13\xf4\x9f\x3c\x14\x1b\x54\xae\x85\xea\x93\x44\xf2\x50\x2e\x11\xd1\x73\xc2\x07\x78\x92\x48\xa5\x9f\x69\xec\xa9\xd9\xc5\xb8\xdb\x4d\x15\xa3\xef\x1b\x31\xc4\x79\xcf\x14\x79\xe4\xe9\xe4\x5e\x3a\xee\x4f\x4c\x77\x0d\x9b\x5c\x42\x29\xc8\x89\x02\x4b\xc0\x77\x0f\xf6\xa1\x53\x5d\x5c\x49\x49\x0a\xc0\x68\x5c\x5e\x33\x8f\x34\xa2\x80\xd8\x68\xf6\xc4\x16\x38\x0b\x5d\xef\x63\x29\x4b\x67\x29\x4d\x3a\xf4\x73\x4c\x95\x95\x0c\x8f\xe3\x32\xcf\x69\x32\xb4\x76\x4d\x8c\xb3\x47\x4b\x93\x31\xa1\xd7\x1d\xca\xae\xd3\x9c\x33\xb8\x73\x18\x81\xfa\xac\xcc\x32\x6d\x18\xa5\xf7\x29\xd8\x87\x44\x89\xba\x6f\x44\x59\x67\x41\xb3\xd5\xac\xcc\x3a\x37\x51\xce\x52\x36\x2f\x7c\xe4\x28\x25\xc6\xe1\xd8\x19\xc5\x84\xcc\xc2\xfe\xd0\xed\xa9\x30\x07\x83\xf7\xf8\x8f\xc5\xe3\x79\x0b\x6e\x8d\xc7\xb3\x5e\x6f\xb2\xc3\x98\x64\xb0\x43\x42\x08\x57\x90\xa7\x11\x13\x9d\xff\x4a\x79\xa6\x3c\x95\xed\x14\xaa\xcf\xe4\x7d\x67\x49\x8b\x0f\xfc\x2d\x5f\x85\x03\x92\xed\xb4\x43\x6f\x17\x43\xb9\xae\x4c\xef\x77\x14\x3c\xa8\x48\xab\xa0\x6c\x7f\x5c\x74\xaf\x6b\xb2\x67\xdc\x17\x8b\x48\xbc\x83\x2c\x45\x98\x93\xda\xfb\xf7\x51\x56\xd0\x30\xf7\x8e\x06\xb8\xfe\xe1\x43\x5e\x42\x7a\xbf\x91\xfe\x46\x5e\x04\x72\x4f\x39\xc3\xad\x97\x58\xa4\xc5\x41\xdf\x35\xb5\x9c\xcf\x35\x31\xda\x1a\x44\x41\x9e\xf1\x06\x2e\x7c\x1f\x2e\xc6\x9e\xf2\x09\xd8\x53\xd6\xa4\xb9\xf7\x30\xad\x74\xa9\x0e\xe0\x97\x55\xe1\x2c\x54\x9c\x4d\x8e\x2d\xe1\xd7\x88\x5f\x2a\x1c\xcf\xb1\x74\xb8\x4f\xa3\xda\xc0\x7a\xbb\x9d\x87\x9d\xb9\x6d\xb1\xad\x6f\x9d\x4e\x75\xc3\xa2\xa3\x8a\x62\x1e\x15\x41\x19\x64\xdd\x6e\xe6\x44\xdf\xa0\x78\x24\x6f\x18\x81\xc4\x83\xd6\xb1\xfc\x93\xa7\x2a\x1c\xca\xf1\xc9\x33\x4c\x22\x50\x03\xe8\x63\x52\x86\x68\xac\x19\x7a\x72\xd2\x26\x88\x14\x55\xca\x8f\x86\x87\x38\x41\x24\x0b\xf9\x88\xdb\x03\xe9\x43\x34\xd7\x7a\xa0\xb7\x2f\xd0\x76\xe3\x10\x85\xdd\x2b\xf6\x0f\xc3\x23\x66\xd4\x4a\x4d\x77\x8f\x4f\x4d\x7f\xcf\x8e\xf1\xed\x8d\x58\x13\xfa\xb3\x33\xe5\x05\xeb\xf8\x0c\xca\xe6\xa3\x96\xa5\x93\x6b\xea\x77\x17\xf0\x87\xc0\xbf\xf2\x5f\x64\xce\x4b\x44\x58\xc8\xc7\x62\x22\xef\x54\xea\xf6\xc3\x89\xc0\x23\x13\xb3\x25\xe8\x0f\xf3\x47\x8f\x86\xd6\x34\x76\x9c\x4f\x48\x19\xa6\xbe\xac\xb6\x72\x24\x5e\x6e\xb7\xa5\xa3\xe1\x92\x2a\xeb\x1b\xb3\x29\x2a\x60\x9c\x9d\xcb\x01\x35\xef\x60\x24\x0a\xd3\xc6\x25\xe1\x01\xf8\xe2\x36\xa3\xe4\xdc\xb1\xc4\x6f\xb5\xbe\x77\x8c\xe8\xef\x30\x7a\x8e\x0f\x18\x3d\x9b\xef\xf3\x56\xbb\xee\xea\xfb\xa2\xd5\x28\xbb\xfa\xde\xea\x46\x25\x73\x6c\xca\xdb\xbe\xc7\xd6\xe8\xfa\xa8\x9d\x55\xae\x3c\x48\x6c\xb7\x47\xea\xc1\x5a\x8c\xec\xa7\xd4\xe3\x6e\x60\xd7\xbd\x4e\x9d\x6d\x42\x21\x30\xd6\x35\x65\xc2\x84\xc6\x1a\xed\x27\x81\x9f\xfd\xa3\x01\x0e\xa8\x1f\x09\x11\xe9\xa8\xe8\x1e\xe2\x0c\xf5\x80\x4b\xe2\xe2\xaf\x66\xfd\xca\x02\xb3\xd9\x44\x4b\xaa\xd3\x4a\x42\x5b\x5b\x89\xda\x43\xb8\x0a\x4f\x8f\x1e\xc4\x7d\xf9\x52\x79\xc4\x28\xf7\x6f\x77\x3a\x1b\x8b\xae\xd3\x79\x24\x78\xee\x97\x05\xcd\x9f\xcf\x29\x13\x7a\xdb\x7b\x8f\x94\x1f\x75\x23\xc9\x44\xcf\x59\x92\x4b\x14\x70\xec\x23\xdc\xed\x1e\xfa\x7a\xea\xf7\x11\xde\x6e\x9b\x9f\x5f\xf3\x69\x9a\xd1\xce\xfb\x68\x16\xe5\xa9\xca\x70\x54\xcb\xf0\x62\x91\xf3\x25\x6d\xfb\xf2\x13\xf4\xb4\xe8\xbc\x5d\x70\x46\x91\xa4\xba\xcc\x18\x17\x69\x21\x78\xbe\xee\x76\x91\xbc\x59\x40\xec\x3d\x04\xba\xad\xee\x57\xbc\x23\x2d\x07\x1a\xf4\xef\x30\x0c\xaa\xd6\x3f\xe4\x69\x42\x99\x40\x78\x47\xb2\x9f\x51\xcd\xf7\x69\x4e\x67\xfc\xb3\xac\x26\x6e\x3b\x30\xab\xf3\x42\x05\x9d\xd3\x00\xbe\xb5\xce\x17\x79\x7a\xf9\x1e\x3d\x50\xe8\xf1\xaf\x08\xe3\xce\x7f\xd5\x30\xee\xe9\x6f\x21\x8c\x7b\xf4\x7b\x18\xf7\x87\x86\x71\x37\xae\x4a\x06\x70\x47\x57\x91\xdf\x6c\xf4\x75\xf9\x6e\x22\x9d\x9f\x82\xb7\x2d\x9f\x99\x60\xe7\xc7\xa0\x36\x79\x1f\x96\x6b\x38\x18\x8a\x7d\xf7\xaa\xc2\xf8\x28\x64\x0e\xc3\x55\x4c\xea\xfb\x85\xdd\x8f\xe1\xca\xd4\xf6\x90\x3b\x03\x48\x0c\x97\xe1\xda\x16\x30\xeb\xe8\xc8\xa3\xfe\x92\x8a\xe8\x3f\xe9\x7a\xbb\xa5\x7e\x04\x12\x09\xf9\x14\x8b\x3c\xd3\x8f\xc5\x22\x9d\xc9\xe4\xbd\xb0\x5a\x7b\x8a\x81\xf2\x8a\x15\x0d\xb9\x0d\xa8\x6e\x86\x50\xee\xb1\x99\x49\x11\xaa\x9b\x38\x40\xb9\x3f\xcc\xbe\x29\x87\x59\xaf\x87\x8b\x71\xe6\x7a\x99\xcd\xac\x52\x0e\x0b\xf3\x30\x75\x23\xb3\x6b\xbd\x43\x4a\xc6\x32\xd1\x32\x6d\x0a\x8c\x31\xc9\xfd\x45\xc4\x92\x8c\xbe\xc8\xd2\x46\xf4\x53\xd0\xf8\x35\x11\x61\xe1\x73\xb7\xdb\x48\xf0\xa8\xbc\xdc\x56\xa1\x14\xa9\x3c\x0b\x69\xd2\xed\x2a\x7c\x39\x2d\x85\xe0\xac\xdb\x3d\x32\xc5\x44\x94\xcf\xa9\xe8\x76\x8f\xe0\xf4\xdb\x28\x5d\x41\x25\x97\x95\x15\x78\x86\xdb\x9c\xdb\xf8\xc8\x39\x2f\x05\xcd\xcd\x89\x41\x58\xa8\xab\x02\xbb\x1d\x7d\x0f\x05\x19\x95\xe0\x43\x3e\xaa\xae\xa6\x29\x0e\x34\x57\x2b\x95\x68\x38\x0a\x19\x49\xbd\x9c\x44\x76\x96\xa3\xfd\x68\xee\xb7\x06\x1c\x55\xad\x8a\xd0\xb3\x7c\x51\x42\x7d\xc1\x31\xa8\x42\xa6\x8c\xd1\xfc\x1d\x9d\x11\x1e\x4a\x54\x3e\x46\x3a\x0b\x22\x48\x70\x44\x90\xf9\x8e\x26\x78\x98\x78\xd8\xab\x85\x80\x56\x43\x24\xc8\xf1\xeb\x20\x11\x84\x3c\x28\xbe\xf9\x21\x65\x9f\xbe\xed\xf0\x52\x14\x69\x42\x3b\x51\xe7\x9b\x77\x90\xf9\x5b\x84\x89\xac\xc7\xca\x40\x05\xf9\x5a\x16\x07\xdc\x53\xac\x68\x9c\xce\xd6\xca\x86\x44\x70\x64\xed\xfc\xbf\x36\x4e\x9f\x5a\x9a\xb7\x10\x8e\xac\x13\x46\x37\xd6\x49\x65\x33\x8b\x8d\x65\x1f\xfc\x93\x5a\x9e\x12\x0e\x04\x10\xe9\x0a\x71\xfd\x25\xa7\x33\x2f\xb2\x27\x4e\xb1\x1f\x63\x2d\x42\x64\xe1\x6d\x76\x84\x93\x8d\x5e\x4c\x8a\x19\xef\xac\x46\xb2\xc8\xe9\x2c\x28\x89\xfc\x97\xed\xb0\x8a\x1c\x2a\xab\x72\x62\x86\xae\xdd\xb0\x9e\xa6\xa2\xd8\x8f\xe0\xb2\x40\xd4\x7a\x83\x77\x35\x28\xa2\x27\x06\x92\xa6\x9c\x67\x44\x70\x78\xe6\x8c\x5e\xce\x64\x35\xde\xd8\xc9\x0d\x5f\x60\xe8\x13\x0c\xce\x1f\xfe\x5e\xa6\x39\x4d\x88\x99\xcf\x3b\x8a\xca\x3e\x4c\x24\x2a\x68\x04\x1b\x35\x9d\x38\x1a\xc8\x6f\xf5\xa0\xa7\x6a\x3a\x54\x97\x17\xd1\x8a\x7a\x1b\x3d\x33\x6e\x92\x5c\xd8\x76\x94\x6e\xc7\xdc\xe1\x35\xbf\x55\x33\xd3\xf6\x79\x87\x0f\xbe\x80\xef\xed\x87\x8a\xec\x7e\x25\x92\x82\xff\x16\x48\x8a\xf4\x77\x92\xe2\x4b\x48\x8a\x08\x38\xc5\x18\x34\x0c\x20\xbe\x6c\xa1\x68\x8c\x0c\xde\x0b\xa5\x39\x78\x0c\xa4\x85\xcf\xbc\x58\x79\xf2\x94\x24\x85\x24\x2d\x4e\x4f\x70\x23\x88\x66\xcb\x91\x9b\x92\x68\x98\xff\x3a\x47\x6e\x1a\xf2\xfb\x1e\xb9\xa9\x41\xb6\xa1\xb5\x56\x4a\xb0\x97\xaa\x23\x06\x18\x4c\x84\x7b\xa9\x73\x56\xed\xbb\xc0\x06\x37\xc1\x80\x02\x7f\x4a\xb3\xec\x35\x2f\x59\x4d\xb8\x5a\x7a\x58\x7b\xac\x51\xe7\xae\x41\xee\xe8\x1b\xe5\x1d\x51\x9f\x22\x9d\x74\xce\x78\x4e\x0b\x38\x2a\x74\x1e\x38\x2d\xfc\xce\x07\x0e\x07\x50\x64\xd4\xa1\x4d\x0d\x90\xfa\x3f\xe9\x12\xfc\x25\x6f\x3a\xaa\xa2\xce\xee\x7f\x60\xa3\xd3\x08\xec\xdd\xaa\xcf\x6e\x6b\x72\x4f\xdb\xec\x3e\xba\x33\xd8\xb7\x61\x47\xec\x1d\x1d\x2b\x3f\x22\x16\x29\xaa\x33\x43\x77\xce\x04\xf3\x0e\x9c\xa1\x9b\xb4\x9d\x3a\x3e\xb2\xfa\xf1\xb1\x70\x8f\x0f\x8d\x23\x2e\x54\xd0\xdb\x60\xe6\x47\x7e\x24\x57\x01\xd1\x1f\x5e\xc9\x4b\x18\x24\xb3\x72\x39\xa5\x39\x99\x53\xf1\x63\x41\xf3\x17\xea\x42\x0f\xc7\x20\x7c\x86\xb3\xe7\x13\x5d\xff\xa0\xd8\x59\x4e\x09\xdb\x43\x48\xe3\x09\x55\xc8\x75\x71\xcf\x50\xa1\x4f\xcf\x30\xc4\x1c\xcd\xdb\x5c\x88\x1f\x94\xa0\x90\x3c\x1c\x4f\x08\x0f\xfb\x24\x0d\xfb\xf2\x80\x47\xa4\x04\x45\x6e\x3f\xa1\x59\xba\x4c\x05\xcd\xb7\x5b\xf4\x18\x0d\x15\x5a\xf2\x58\x38\xd5\xd2\x14\x8c\x35\x17\x2e\x0e\xd9\xb8\x3f\x91\x3b\x6f\x3c\x98\x00\x4d\x0f\x37\xd2\x61\x3a\xf3\xa2\x9e\xbc\x19\x67\xa9\x24\xba\x48\x82\x49\x1a\x26\x3d\x13\x44\x97\xcc\x70\xd4\x0b\x67\xe3\xc1\x64\xe8\x68\x60\xd1\x71\x3a\x21\x8b\x90\x8d\x8f\x27\x64\x19\xb2\xf1\xc9\x84\xac\x43\x36\x3e\x9d\x90\xeb\x90\x8d\xcf\x26\x64\x1e\xb2\xf1\x93\x09\xb9\x09\xd9\xf8\xe9\x64\x18\x75\xbb\x92\x10\x85\x10\xcf\x18\xba\xaf\xe8\x98\x2b\x6d\x5a\xb3\x30\xf8\x74\xd5\xed\xae\x8e\xc2\x70\x41\x2e\x43\xd4\x93\xe4\xcb\x7c\xbb\x45\x7f\x82\x07\x72\x11\xa2\x51\x23\xe9\x33\xf4\x60\xbb\x2d\xc9\xa7\x70\xbd\xdd\x5e\x0f\x75\x23\x1b\x50\x0e\x5d\x6e\xb7\xbc\xd7\x23\xab\x9c\xce\xd2\xcf\xc1\x62\xbb\x45\x88\x58\x70\x05\x9f\x89\x72\x64\x16\x65\xc1\x85\x3c\x74\x69\x24\x82\x4b\xb2\x52\x5a\xa1\xc1\x15\x89\x0a\x41\xf3\xb4\xf8\x14\x1c\x1d\xdd\x90\x55\x24\x04\xcd\x59\xf0\x69\x94\x79\x9f\x70\x70\x33\x42\xfe\x9f\x50\x80\xc6\x7f\x45\xbd\xc2\xfb\x8c\x7b\x68\xd2\x1b\x41\xe8\x5a\xb3\xdd\xbf\xa1\x56\x06\xa8\xc1\x0b\x2e\x14\xbc\x14\x63\x12\x01\x11\xae\x81\x91\xef\x1d\x8c\x86\x09\xe8\xa9\x45\x70\x20\xe0\x14\x65\x31\x4f\xe8\x8f\xef\x5e\x29\x65\x1a\x2d\xcd\x19\x7f\x7c\x3c\xfa\xc3\xc4\x95\xe8\x54\x16\xf5\x7f\x44\x3d\x5a\x0f\xa7\x5c\x49\x58\x07\x4f\xe4\xcb\x8f\xab\x15\xcd\x5f\x44\x05\x78\x2e\x6f\x17\x28\x1e\x68\xf6\x97\x6f\xb4\xac\xdf\x25\xe5\xf9\xaa\x85\x99\x46\xe6\x47\x58\xd8\x1f\x32\x0b\x68\x50\xe3\x69\x09\x5c\x31\x66\x13\x13\x8e\x42\x91\x19\xf3\x8b\xcf\x2b\x0f\xfd\xd5\x1b\x05\xa8\x27\xbf\xfa\x7a\x72\x7b\x08\x7f\x85\x2a\xc7\x4b\x95\x22\x15\xc9\xab\x9e\x70\xb5\xf5\x18\xd8\xf4\x14\x61\x0e\xbf\x59\x28\x51\x15\x15\x62\x3d\x4a\x03\x0b\x21\x8b\xa3\x48\x1c\xf6\x87\x71\xd5\xd1\xd8\x5c\x81\x67\x21\x1d\xc7\x2a\x7c\xd0\x9e\xd7\xf4\x99\xca\x92\x90\x55\x58\x8e\x67\xca\x8d\x55\xc5\x39\x57\xba\xcc\x33\xdf\x2c\x61\xbc\x99\xf9\x7a\xe9\x76\xbb\x1e\xef\x85\x33\x5f\x2d\x7b\x3c\x94\xb4\x69\xca\x4a\xba\x6b\x23\x54\xbe\xb6\x21\x80\xd0\xd7\x3d\xd5\x4a\xef\x6b\xa4\xed\x72\x35\x5f\xf8\x6b\x88\x23\x74\xed\xad\xb0\x22\xda\x66\xbe\xda\x2d\xad\x94\xcf\xe1\x0a\x25\x79\xa3\x0a\x2a\x5b\xa0\x9c\xc6\x34\xbd\xa6\x49\xe7\x7f\xbe\x6e\xea\x50\xaf\x70\x0f\xfd\x8f\x8a\x3b\x2b\x6f\xa1\x2b\x1b\xb3\xa7\x3e\x66\x33\xb2\xd6\xf0\xea\xb7\x77\x64\x4a\x3b\x74\xb9\x92\xf7\xa9\x9d\x99\xd9\x45\xd8\x1f\x2e\xbe\x31\x6d\x0d\x17\x72\x92\xd2\x99\x97\x84\x99\xb7\x1a\x2f\x26\x98\x1c\x89\x71\x3c\xf1\x05\x2d\x84\x97\xb4\xd3\xc1\x55\x9b\x92\x10\x6e\xb6\xab\xbc\xb9\x41\xaa\x59\x71\x5f\xa3\x3b\x61\x91\x68\x58\xf0\x5e\x08\xc0\x58\x8c\xcc\xd4\x06\xb3\x0a\xf9\xe3\x5e\xa2\x3d\xb2\x40\x97\x67\xbe\xc1\x5e\xa3\xc8\x5b\xe1\x20\xf3\x56\x0f\xeb\xff\x97\xf4\x1d\x7d\xdd\xd3\xa1\xf8\x9c\xf5\x67\xfa\xd5\x91\x69\x3b\x2b\x3f\x39\x14\xe7\xcd\x62\x14\x6f\xec\xf7\xfe\x34\x0a\xff\x7a\x14\x7c\xb5\xd9\x79\x78\xfc\x71\xb2\xfd\xf8\xf8\xe3\xc7\x09\x7e\x3c\x27\xe8\xe3\xc7\xaf\x06\xa8\x19\xcf\xad\xad\x8e\xf0\x28\xf8\xea\xe3\x63\x0f\xb7\x17\x8b\xeb\x06\x38\xa0\x87\x15\x0a\xd7\x44\x67\x56\x0f\x5d\x4f\x59\x91\x8a\xf4\x9a\x8e\x10\x0a\x50\x8a\xf6\x62\xaa\xd6\x75\x76\xb4\x07\xc1\xc7\x1f\x3d\x6f\x74\xf4\x71\x84\x1f\xcf\x55\x94\x1d\x1b\x72\x29\x0f\xfb\xc3\xfc\x1b\x23\x32\x1b\xe6\xbd\x1e\x16\xee\xf9\x95\x9b\xa3\x0b\xee\xe9\xd5\xc9\x05\xaf\xf6\xf0\x3a\x1a\x98\xd3\xeb\x68\x60\x8f\xaf\xa3\x81\x73\x7e\x0d\xec\xf1\x05\x21\xf6\x2c\x86\x6b\xc6\x07\x5e\x59\x32\xc4\x76\x50\x11\x1d\x43\x5e\x21\x2f\xde\xeb\x61\x7d\x7a\xad\x41\xd5\x11\x8a\xe8\x21\x3b\x55\xbb\xb8\x16\x50\x6d\xae\x35\x50\xb6\x08\x83\x86\x8d\x84\x04\xae\xb5\xbf\x68\x88\x74\x96\x9e\xf2\x6e\xa6\x14\x64\x6d\xb6\xa5\x95\x7c\x82\x25\x94\xc7\x42\xb1\xdd\x32\x22\xc2\xf1\x44\x9e\x09\x80\x9a\x2b\x76\x22\xb8\x63\x94\x24\x18\xb8\x16\x3e\x0a\x43\xe6\x53\x96\x90\x54\xe2\xf1\x28\xec\x0f\xa3\x6a\x68\x91\xc1\xcb\x65\x48\xc7\x51\x0d\x2f\x57\xe7\x49\x89\xd3\x5e\x58\x78\xa5\xa3\x6d\x91\xc9\x77\x83\x6f\x49\x12\xaa\xf1\x96\xce\xb9\x82\x86\x7a\x62\x4b\x4c\x4a\x8d\x3e\xbb\x5d\x2f\xe9\xe9\xbc\x59\x2f\xe9\x21\xfc\x27\x24\x4b\x97\x16\xc1\x8d\x4a\x83\xd3\x47\x59\x0f\x79\x60\x82\x82\x47\x28\x30\x65\x4c\x92\x4c\xab\xde\x10\x49\x7b\x61\xa2\xd4\x1c\x56\x61\xe1\xb1\x06\x89\x28\xef\x58\xa9\xa6\xf6\x1e\x59\xd4\x2a\xd1\xac\x35\x56\xd9\x6e\xbd\x34\xf4\x16\x23\x93\xad\x4f\xaa\x8c\x41\x8a\x7b\xaa\x03\x2b\xf9\x1b\x7e\x25\x9b\xc7\xb2\x4d\x3e\x42\x5f\xa1\x20\xef\x76\x17\xb0\x3f\xbc\x51\x08\x79\xb6\x5f\x61\x44\xea\xeb\xe1\xaf\xa8\x97\xb6\xcc\xff\xba\x31\xff\xb7\xcc\x2f\xa9\xb1\x25\x54\xbd\x23\xb5\x0b\x83\x6b\x8f\xe2\x91\x59\xcb\x81\x59\x54\x00\x8f\x6b\x79\xdb\x7c\x7a\xee\x4a\xd4\xd7\x95\x2e\x85\x72\x59\x19\xe6\x4e\x8a\xbc\xa3\xa5\x19\x0d\xb9\x93\x26\xf8\x27\xca\x8a\x0f\xdc\x58\x2d\x87\x65\xcb\x47\xd5\xa5\x70\x09\x64\xee\xd4\xa5\x3c\xc6\xc8\xfb\xf8\xf1\xe3\x47\x1f\x23\x82\xbc\xf1\xc7\x8f\x8f\xfd\x09\x1e\x79\xa3\xc0\x1b\x05\x1f\x3f\x06\xde\xc7\x8f\x37\x3d\x0c\xcf\x9e\x07\x3f\x1f\x3f\xfa\xdb\xf1\x5f\xe5\xaf\xc4\x63\x3d\xfc\xf1\x23\xc6\xa3\xed\xad\x9f\xbd\x71\xef\x4f\xa3\x09\x1e\x6d\xbd\x8f\x1f\xff\x84\x31\x9a\x54\x5b\x8f\xa0\x39\xfa\x12\xad\xce\xdf\xf9\x40\xbf\xf3\x81\x1e\xca\x07\x6a\xb0\x81\x8e\x1b\x6c\xa0\xc1\x69\x8d\x0f\x74\x90\xef\x63\xb0\x92\x61\xfa\x10\xcb\xa5\x69\xf5\xc5\x70\x1b\xcb\x85\x32\x39\xd6\x7d\x6d\xe8\x92\x4d\x33\x1e\x7f\xd2\x96\x05\xfa\xcd\x68\x47\xeb\xd7\xdb\x58\xee\xbe\x2a\x40\x1b\x1c\x91\x24\x2d\xea\xed\x35\x9b\xf3\x6e\x6b\x0f\xf4\xc7\x76\x0f\x60\x19\xcd\x1e\x22\x96\x78\x9b\xf3\xe5\x4a\x1c\x10\x4c\x38\xcc\x97\x1b\x15\xb6\x5e\x26\x28\xe8\x79\xce\x47\xad\x9b\x78\x5b\x2f\xdf\x29\xf2\x50\xb1\xcd\xeb\x6a\xd4\xb2\xea\x51\x7b\x53\xb5\xea\x41\x10\xa5\x9f\x95\xa7\x0d\xd3\x15\x9b\xac\x5d\x47\x6b\x80\x7b\xb7\x75\xe8\x47\xb6\x6c\x02\xee\xb6\xb2\x07\xb9\x5a\x40\x4b\x11\xb1\xf3\xca\x3a\x3f\x2a\x71\xf9\x51\x72\x48\x41\x66\x04\x15\x46\xfb\x3a\xab\x8b\x1c\x32\xc3\x6f\xca\xac\xec\x61\x52\xe7\xde\x27\x0d\xe9\x03\x54\x7b\xd4\x97\x1f\x5a\x45\x0f\xd9\xbe\xe8\xc1\x49\x82\xe5\x15\x64\x0f\x17\x20\x24\xbf\x1f\x1c\xbf\x1f\x1c\xff\x06\x07\x47\xbf\x21\x40\x18\x28\x97\x4e\x3e\xf3\x12\xe5\xd3\xe9\xf8\x0c\x93\x65\xc8\xbc\xa7\x4f\xb0\xf5\x25\xfd\xef\xac\xac\x70\x8b\x07\xa2\x5f\xf0\xf4\x4b\x8b\xf7\x22\x12\x69\x7c\x40\x03\xb9\x71\x6c\x68\x4c\xdc\x38\xf0\x0a\xa8\x41\x87\xb1\x7b\xc8\xe1\xb4\x7a\xc8\xe1\x64\xfc\x0a\xdc\x76\x3c\x99\xd1\x78\xd8\x9c\x19\x34\x9f\xf1\x7c\x79\x10\xf9\xbf\x4c\x93\xbd\x5e\x35\x6a\xd2\xa7\xcb\x3d\x6a\xfa\x71\x95\x44\x0d\x93\x30\xb5\x8e\xb4\x3c\x68\xe1\xc7\xd8\x33\xda\x05\x6e\x9a\x73\xbc\x09\xee\x3a\x36\x5e\xf8\x33\x10\xcc\x5b\xa7\x24\xa0\x19\x20\xcf\xf4\xa3\x81\x82\x92\xc8\x53\xe5\xe9\x2f\xd7\xe0\xb1\x21\x3d\xa2\x25\xed\x00\x3c\x3b\x6b\x15\x7e\x04\x8c\x0e\x98\x0a\xb6\x1e\x74\x3e\x22\xd4\x63\xf2\x3a\xba\x00\x96\x0e\xf3\x0b\x1a\xe5\xf1\x42\x31\x6b\xee\x1a\x71\x29\xe8\x07\xde\x32\x50\xfb\x35\x01\x23\x67\x50\xa2\x10\xdc\xda\x14\x8e\xf6\xaf\xce\xc6\xb3\x98\xb7\xf4\x23\xec\x31\xd9\x52\x94\x47\xcb\x02\x07\x6b\x15\x9f\x71\x63\xba\x18\xd4\x32\xda\x9e\x57\x25\x76\x38\x60\xf5\xae\xea\x11\x1c\x50\xfd\x38\xa0\x29\x21\x1c\xc5\x10\xb8\xa0\x13\x66\xf2\xeb\x81\x3b\xf3\x85\x87\x62\x44\xd5\x35\x9e\x49\xdc\x65\xf8\x4c\xec\xe7\x52\x0c\xd7\x2e\xc5\x50\x03\xaa\xa2\x14\x94\xaf\x55\x50\x18\xb0\xa4\xc4\x2c\xe7\xcb\xa0\xa2\x17\x88\xe0\x6d\x54\x85\xfe\x98\xb5\xeb\x40\xec\xc8\x75\x83\xae\x80\x36\xc0\x33\xd5\x97\xd0\x15\xb6\x87\x87\x54\x1a\xee\x22\x39\x48\x0d\xbb\x38\x83\x6f\xa1\x45\xae\x7f\x57\xcc\xfc\xf7\x27\x82\x7e\x57\xcc\xfc\x72\xc5\xcc\x7e\x43\x33\x53\x12\x39\x75\xd5\xcc\xa6\x66\x26\xd0\x3e\x3e\xf3\x56\x8a\xf8\x91\x44\xd0\x5a\xab\x55\x5c\xff\x06\x88\xa0\x69\x8b\xc6\x26\x7a\xac\xfc\xe0\xc7\x8b\x28\x07\xe9\xe1\x88\x06\xe8\x31\xea\xd1\x1d\x99\xb7\xeb\xe8\xd3\xd1\x35\xd8\xa3\x3b\x87\xc9\xd4\xa3\xb8\x27\xec\x29\xb2\xc3\x81\xd8\x91\x9b\x46\x71\xb5\x91\xcc\xe9\xa5\x0d\x99\x64\x49\xb3\xb3\x41\x47\xcf\x56\x62\xb1\x06\xc3\x23\x11\xec\x35\xe9\x64\xd4\x82\x5f\xc3\xe6\xc7\x3b\xbc\x23\x57\x6d\x43\xdd\x3b\x2f\xe9\xc8\x39\x08\xc1\x2b\xdb\x8e\x5c\xb6\xe9\xb7\x3b\x47\x4d\xec\xd0\x0b\xda\x27\xf5\x1f\x55\x4c\xab\xce\x37\x8a\xca\x31\x64\x14\xa1\x78\xb7\x23\x17\x35\x43\x38\xf2\xf9\xb7\xa2\xf1\x5a\x69\xc2\xb5\x01\x64\x6a\xd5\x5e\xa7\x51\xa1\x9c\x15\x5f\x29\x63\x0d\xa3\x2b\xfb\xb6\x2c\x16\x2d\x44\x8d\x51\x4d\x65\xa1\xb0\x45\x09\x07\xf3\x65\x38\x93\x86\xdc\x8f\x14\xd3\x17\xbd\xfd\xf1\xfd\x5f\x10\xe1\x56\x7b\x32\x9c\x7b\x8c\xd8\xe9\x8a\xc1\x01\x0d\xe1\x7e\x99\x67\xe1\x95\x57\x65\x73\xfa\xf0\xae\xc5\x38\xff\xc1\xdd\x78\x77\xf1\xf6\x87\xe7\x2f\x2e\x7e\x5e\x4f\x94\x65\x4c\x0b\xc9\x72\x51\xe5\xf9\x0e\x98\x52\xad\x59\xee\xa5\x9a\x3b\xa7\xe2\xc5\x22\xcd\x12\x7d\xba\xef\xd7\x64\x88\x8c\x4d\x9d\x0a\x70\x15\x81\xf4\xb5\x63\xf7\x90\x8b\x47\x71\x50\x91\xaa\xb6\x1f\x7e\x75\x45\x2a\xb7\xb5\x87\x2a\x52\xb5\x28\x31\xd3\x6a\x61\xb0\xd0\xab\xbc\xf6\x57\x26\xe2\xd8\xaa\x32\x9b\x9c\x88\xa0\xd8\x04\x20\x47\x26\x1b\x9a\x60\x92\x86\x1b\x47\xb5\x54\x51\xc0\xf6\x9d\xa8\xa5\x16\xa0\xb7\x97\x6f\x11\x31\xc5\x82\x1b\x4f\xd4\x16\x19\xc3\x58\xd1\xa8\x8e\x0e\xb0\xdc\x65\x96\xfa\x73\xd2\xf5\xca\x27\x73\x1e\x5c\x7a\x68\xce\x11\x26\x73\xfe\x5d\x14\x7f\x52\xaf\xf2\x09\x92\xbe\xe7\xf9\x4d\x94\x27\x2a\x55\xbf\x20\x4c\x32\x58\xae\x6e\x85\x6a\x01\x13\xc5\xd9\x72\xd2\x61\xd1\x5a\xf7\x57\xc9\x9e\x22\xda\xda\x8f\xc8\xb5\xd6\x61\x36\x14\x6d\x6a\xf4\x94\x93\x3a\x99\xfe\xd9\x25\xd3\x0d\x48\x83\x85\xa3\x2f\xac\x57\xec\xc2\xd2\xad\x2e\x6d\x6b\x01\xb7\xa8\xd3\xe9\x4e\x05\x0b\x87\x4e\xdf\x91\xcf\x0d\xe2\xdc\x36\x89\x9c\x59\x40\x8f\x91\xcc\x19\x3b\x3b\xab\x4e\xb2\xb7\x76\x46\x91\xd0\x9f\x7f\x67\xe7\xfd\xce\xce\xfb\x2d\xb0\xf3\x4e\x4f\x71\xc3\x9e\xe7\xd7\x62\x91\xfd\x82\x3c\xac\xf7\x37\xa9\x88\x17\xed\x1c\xac\x2f\x91\x97\x00\x27\xc8\x71\x68\xd2\xed\xba\xa7\x5a\x85\xf4\xbf\xb6\x2d\x53\x85\xe4\x0a\xb7\x6b\xf1\x22\x62\x73\xda\x99\xe5\x7c\xd9\x29\x99\x1c\x47\xce\x21\xb6\xa5\xe0\x1d\xe7\xcd\xe3\x79\xe7\x3a\x8d\x55\x10\xd3\x08\xab\x88\xa5\x7a\xc3\x65\x6b\x39\x40\x59\x5d\xa7\x3a\x44\xe0\xa8\x04\x1f\x15\x62\x41\x59\x15\x73\x82\x33\x88\xcb\x0a\xae\xa1\x0b\xfa\xf7\x92\x32\xd1\x51\xe7\x9b\xff\x35\x26\x6a\x4c\x47\xee\xa0\x7e\xe6\x98\xea\x23\xaa\x8d\xb0\x75\x4c\xb6\xa3\xd1\xde\x60\xaa\xe1\x4e\x4b\xd1\xe1\xcb\x54\x08\x9a\x74\x52\x71\x78\x3c\x0f\x38\xc6\x1b\x0c\x29\xf8\xa9\xb3\xa3\x8c\x9e\xb1\x61\x49\xd5\x61\x02\x1e\x80\xf5\x33\xc9\x8d\x63\x05\x6e\xdc\xa9\x18\x1d\x52\x79\x82\xe9\x7a\xac\xdb\x20\x51\x61\x7d\xe1\x44\x9a\xc8\xbb\x5d\x99\x3d\x2d\xfe\x2b\xca\xd2\xc4\x1c\x90\x02\x1b\x1b\x7e\xa1\x49\x8f\x28\x4c\xe1\x72\x43\x8a\x30\xf5\xe9\xe7\x28\x16\x24\x0b\x53\xa3\x64\x13\xcb\x47\xa3\x27\x45\x66\x61\xea\xcb\x69\x21\x49\x18\x6d\xb7\xb3\x21\x0f\x05\xc9\x2b\x76\x68\x9d\xb9\x07\xb7\xa7\x20\x21\x50\x27\xc4\x54\x94\x35\x06\x19\xb1\xf5\x05\xf1\x8e\x68\xb5\x2a\x08\x1d\x95\x8f\x64\x8f\xe3\x8c\x33\x7b\xa0\x73\xb2\xb1\x67\x23\x23\x75\x66\x5a\xbe\xc3\xc1\x21\x1e\xdc\xf2\x4e\x86\x17\xa4\x38\x3c\xa9\xc3\xa2\xb2\x65\x8d\x9f\x67\xd4\xc5\x33\xad\x2e\x5e\x9d\xdd\x0e\x7f\x0b\xce\xe3\xe5\xbf\x2b\x4b\xcb\x38\x62\x18\x80\x4f\x0a\x9f\x79\x5c\xfb\xd0\x68\x62\xf6\x93\x06\x6a\x7f\x0a\x3e\xa2\xff\xfd\x59\x0f\x49\xcb\x1d\xcc\xdd\x24\xc6\xed\xd5\x4d\x1e\xad\x56\x34\xb1\xeb\xc6\xd8\x0b\x0a\x32\x46\x2d\xdf\x50\x05\xc4\x74\x8f\xf4\x8c\xfd\x88\x54\xab\xc3\x6d\xed\x60\x11\x4a\x66\x8a\x56\x15\x64\x63\x2d\xea\x76\x55\x08\x10\xe1\x27\x69\xb1\xca\x22\x70\xb2\x19\x22\x79\xeb\x57\x47\x8e\x87\x7a\x1e\x75\x3f\x4a\xf4\x01\x71\x7b\x41\x61\x4c\xf8\x3f\x35\x3a\x1f\x52\x85\xca\xac\x1c\x7b\x7f\x70\x41\xa9\xb9\xb9\x3b\x92\xc9\x73\x91\x50\xbc\x1b\xb6\x48\x89\x9d\xc3\xda\xd8\xa4\x82\xaf\xb3\xab\x2b\x5a\xbc\xe6\x49\x99\x59\xae\x0b\xd5\xa6\xa3\xca\xcd\x8c\x22\xa8\x28\xae\xc5\x43\xa1\x95\x07\xda\x3b\x97\x33\xc3\xf5\xd0\x92\x0d\x37\xee\xd6\x83\xe6\x9c\x0a\xa7\xf4\x4b\x08\x2b\xbf\x12\x3c\x1f\xdd\xf1\x1d\x9a\x08\x36\xbb\x21\x38\x55\xd9\x6e\x73\x49\x14\x8d\xda\x5d\xc6\xab\x88\x3f\x01\x68\xa1\xd3\x31\x9b\xec\xaa\x19\x53\x34\xbe\x04\xf8\xae\xd2\x4a\x63\x77\xa0\x82\x43\xad\xa0\x0a\xaa\x88\x68\xd2\xef\xa8\xbf\xc3\x43\xe1\xff\xad\x28\x42\xf4\xe4\x34\x3a\x3b\x4b\xce\x9e\x9e\xcf\xce\xcf\x9e\x24\xc7\x67\xe7\x49\x7c\x72\x7a\x36\xed\x3f\x3b\x8d\x8e\xa3\xe3\xe9\x89\x5c\x0b\xc5\x82\x52\x51\xbc\xa3\xf3\xb4\x10\xf9\x3a\x44\xc9\xe9\x34\xe9\x4f\xa3\x28\x9e\xc6\x67\xc7\xd3\x69\x72\x7a\x3e\x9d\x4e\x9f\xd1\xe9\xf1\xe9\xc9\xe9\x29\x8d\x13\x59\x66\x19\xb1\x68\x4e\xf3\x22\x44\xd3\xa7\x4f\xce\xa7\x4f\xcf\x9f\x0d\x9e\x9d\xf5\x4f\x67\xd3\xe8\x59\x42\x8f\xe3\xfe\xc9\xd9\xe9\x59\x7c\x16\x27\x27\x91\x6d\xe1\x12\xb4\x1c\x65\x9f\x66\xf1\xd9\xd3\x7e\xf2\x64\x9a\x3c\x19\x9c\x9c\x9f\x9c\x0f\x9e\x25\xfd\xd9\x33\xfa\xf4\xb4\xff\x34\x3e\x3d\x3b\x4e\xd0\x97\x78\x7e\x6a\x2c\xb1\x11\x0d\x36\x1a\xd2\x01\xdd\xed\x1e\x0a\x3e\x62\x48\xed\xd0\x3c\xfc\x59\x87\xa4\x7a\x21\xef\x36\xb0\xdd\x0c\xe0\x42\xe1\xbf\x2b\xd5\x8d\x34\x14\xfe\x7b\x48\x7b\xad\xc0\x63\xdf\x2d\x70\x85\x2f\xf8\x8b\xa2\x00\xb7\xbc\x21\x2c\xb5\x97\x6b\x16\x2d\xd3\xf8\xbd\x58\x67\xd4\x84\x5e\x1e\x5a\x4f\x38\xcf\x06\xf8\xf0\xdc\x37\x4b\xa3\x7a\x94\x82\x3e\x99\x53\x11\xec\x33\x70\x72\x8f\x63\xb3\x0c\x77\x3b\x63\x60\xcc\xbc\xd3\xa7\xb7\xb4\x55\x75\xfb\xde\xad\xa4\x7b\xad\xc0\xed\xe0\xf8\xfc\x96\x66\xea\xe0\xba\x77\x53\xd1\x5e\x53\x25\x40\xef\xf8\xce\xa6\xf4\x4c\xdd\xbb\xa5\x72\xaf\x25\x79\x10\x9e\x9c\xde\xd2\x90\x59\x1d\xf7\x6e\xa3\xd8\x6b\x23\x93\x67\xeb\xb3\x5b\xda\x50\x4b\xf1\xde\x2d\x64\x7b\x2d\xc0\xc5\xec\xe4\xb6\xd5\x76\x60\x1f\xdc\xbb\xcd\x78\xaf\xcd\x19\xcc\xd1\x13\x79\x09\xcc\x95\x50\xc3\x6e\xbb\x16\x1e\xaf\xbc\x61\x5b\xbd\x28\x4f\x1d\x3e\x06\x99\xae\xbe\xc8\x73\xe9\x2f\xc7\xdb\x78\x30\x7a\xde\xf3\x49\x67\xfb\x47\x9b\xbe\x14\xfb\x43\xf6\x8d\x70\x6d\x9e\x5c\x37\xcf\xb9\x5f\x01\x3f\x74\x5f\xb6\xdb\xa3\x01\xc9\x7d\xf7\xaa\x1f\x1e\xf5\x09\x82\x3e\xa0\x94\x75\x72\x30\xd1\x33\x6c\x81\xf0\xa8\x6f\xe2\xb3\xed\x47\x3f\xc9\xfd\x4f\x74\x4d\xf2\xca\xda\xad\x22\x5e\x6a\x81\xed\x58\xb7\x4b\x3d\x97\x31\xc1\x30\xc9\x21\x8d\xe4\x98\x08\x08\x1b\x76\xd8\x1f\x9d\xbe\xce\x53\xeb\xa3\x56\xa3\xcc\xb1\x3d\x3c\xb9\x47\xc9\x78\xf3\x89\xae\x03\x14\x25\x09\xd2\x81\x56\xf6\x29\xb9\x5a\x79\xd0\x53\x50\x1a\xf6\x45\x65\x01\xf9\x48\x39\xd9\xac\x02\xcb\xc0\x8a\x70\x9d\xa7\x6e\xb7\xec\x5b\x55\x13\x64\xaa\x29\x69\x68\xe5\x7e\x8a\x87\x75\xd3\x0e\xe1\x9a\x76\xa4\x33\x4f\x8c\xf3\x49\xbd\xed\x6f\x59\xa3\xa2\x62\x05\x1a\xf7\x39\xe9\x83\x7c\x66\x47\xd4\xf8\x72\x5a\x50\xb1\x37\x42\xeb\x86\xb8\x02\x4d\x55\x60\xc9\xaf\xe9\x3d\x61\xe2\x8c\x7b\x58\xff\xa0\xbb\x23\xc8\x00\xdb\xaa\x8d\xfd\x5e\x5b\xe5\x75\x67\xce\xba\x12\xed\xf2\xb4\x25\x9f\x71\xf3\x05\x57\xa8\x03\x6e\xd5\x45\x65\x30\x48\xf1\xae\xe6\x30\xd5\xf4\x08\xba\x8f\x0e\x60\x1a\x98\xc4\x5a\x7f\xb4\x37\xdc\x7e\x50\x4b\x1e\xb7\x65\x7a\x34\x68\x4c\xd8\x6e\x37\xc1\xe0\x19\xd9\xc1\x36\x2d\xee\xf3\x7e\x1e\xb1\x66\x6c\x85\x25\x2e\xe4\xad\x1e\x20\x6f\xa5\x6e\xbc\xdc\xed\xdd\x81\xe2\x63\x6e\x72\x4c\xba\x5d\x50\xb1\x75\x52\xbc\x07\xfb\xbd\x32\xec\x0e\x40\x1e\x82\x50\x3f\x2f\x33\x5a\x74\xbb\xc2\x8f\x8b\xe2\x9d\x7a\xd6\x89\x7e\x96\xb2\x4f\x5e\xf5\xe1\xe1\xe8\x92\x54\xa3\xfb\x22\xb7\xa0\xbf\x2c\x71\x58\x51\x67\x4f\xc0\xef\xa2\xb9\x1d\x0f\x4e\xe0\x7e\xec\x49\x72\x84\xc8\x93\xed\x0c\xcb\x6b\xb2\xa4\x19\xda\xa6\xc7\xb0\x87\xfa\xed\x01\x1d\x3d\xda\x0b\x07\xf8\xdb\x01\x1d\xf4\xbb\x5d\xaf\x4f\x52\x53\x83\x92\xf7\x8e\xff\xcf\xfb\xf7\x13\xe0\x68\x2d\xd3\xf9\xc2\xc4\x55\xeb\x2c\xc1\x7a\xbf\x93\xd1\xe8\x93\xdf\x91\xd0\xee\xe8\x70\x6d\x9d\xb4\xe8\x44\xa2\xf3\xc7\xc2\x47\x84\x9a\x15\x87\x62\x44\x78\x88\xd0\xb0\x42\xe0\x5e\x1e\x32\xbb\x03\x62\x73\xc8\xbf\x05\x5b\xa7\xed\x56\x16\x50\xf7\xb4\x2a\xd3\xdf\x8a\xc2\x4f\x13\x65\x85\xda\x4c\xc5\x98\x20\xd4\xcb\x7b\x85\xe9\x7c\x8f\xf7\xe8\xee\x21\x6b\xed\x9e\x73\xf8\xeb\x2a\xe1\x7c\xd1\x0a\x49\x7f\x03\x7c\x90\xe8\xff\x8b\x24\x08\x68\xdb\x9c\xf4\xcd\xde\x04\x65\x9b\x13\x50\xb6\xc9\x95\xaa\x4d\x3b\x4c\x1c\xe7\xab\xe0\xcc\x9f\xd7\xe9\x95\xb2\xa9\x20\x5a\xe9\xa8\xb4\x69\x7a\xe4\x1a\x37\xaa\x62\x4a\x9e\xd2\x4c\xc3\x24\xd7\x81\x16\xcc\xa9\x19\x1e\x0d\x74\xe4\x05\xba\xca\xf8\xda\x49\x90\x38\xd6\x79\x85\x75\x4c\x8b\xd0\x44\x6a\xd0\xdb\x32\x4c\xb5\xe2\x25\xdc\x17\xe0\x3c\x24\xab\x28\xa7\x4c\x3f\xeb\x62\x81\x5b\x47\x15\x77\x40\xe2\x7b\x9a\x83\x6d\x1b\xf3\xdf\xe9\x57\x15\x72\x42\x67\x91\xdd\x87\xef\xb1\x25\xd4\xdd\xe6\x2b\x7a\x29\xd2\xc1\x6e\x6d\x29\x3f\x4a\x12\x2f\x22\x62\x1c\x4d\x0c\x4d\x02\xc9\x3a\xe6\xb0\xe7\x68\x1a\x54\x44\x20\x40\xa5\x85\x4a\x72\xa9\x12\x03\x3a\x30\x3c\x09\xbc\x1a\xf4\xb4\xfa\xaf\x7a\xf5\x1a\xe3\xd4\x25\x3d\x4c\x8e\x1c\x08\x6b\x81\x85\x41\x73\x32\x51\x27\xc1\x29\x87\x9b\xf3\xd5\x87\x84\x8a\x74\x51\x0e\x48\xef\xdb\x67\xaf\xde\x23\x55\x78\xbf\x11\x35\xe9\xca\x26\xc6\xb6\x14\x25\xc9\x3b\x40\x4c\x4d\xaa\x8d\x34\x56\xb2\xff\xf7\x92\x82\x51\xbd\x53\x67\xb7\x7b\x94\x1b\x73\x25\xf8\x1c\x8e\x27\xd8\x89\xc9\xe2\x4c\x9a\xaa\xaf\x16\x5b\xc4\x3d\x04\x56\x59\x39\x4f\x59\xe1\x73\x89\x96\xe4\x54\xca\x4e\xc9\x23\x73\x7f\x76\xec\xbc\x8c\xbc\x7c\xa4\x6d\x8e\x39\xd6\x73\x96\xb2\x82\xe6\xa2\x56\x18\x3a\x56\xeb\x65\x25\xf3\xa8\x17\x21\xce\x22\x55\xc3\x51\x8c\x16\x8c\x09\xc7\x01\x6f\x2c\x0b\x09\x50\xee\x52\x9b\xa6\x9a\x3b\xc9\x6b\x3d\x4f\x4e\x5f\x25\x85\xdd\xba\x66\xbc\x3e\x29\xaa\x23\x1d\x0c\xb3\x1b\x33\x57\xb4\x4d\x9d\x39\x16\xc6\x93\xa6\x14\x80\x29\x80\x29\xb0\xaa\x1a\xbc\x9c\x48\xb4\x4f\x04\x76\x98\xfb\xa6\x95\x39\x3d\x38\xa6\x1a\x55\x0f\x13\xad\xbd\x48\x57\xab\x38\xa3\x82\xde\x07\x24\x4e\x69\x23\x95\x3f\xaa\xe2\xb0\xc0\x57\x75\x75\x01\xa7\xfb\xb5\x35\xb1\xdd\x1e\x09\x87\xca\xd4\x9b\xd5\xd9\x0c\xa6\x0f\x9e\x9b\x0d\x37\xae\x09\x97\xb3\xfb\x8d\xb0\xba\x12\x39\xa3\x94\xeb\xe1\x8e\xbd\xea\xf4\xc7\xc5\x22\xd5\x5a\x52\x18\xc0\x56\x2a\x67\xbf\xa5\x4a\x47\x54\x68\x6b\xd4\x33\x54\x78\x55\xbc\x2b\xbd\x94\x1c\xba\xda\x9c\x3f\xe6\x00\x68\x34\x77\xef\xcb\x1b\xd4\xe8\xde\xbc\x5a\x2e\x3e\xb3\xfb\x13\x6e\x56\xc9\x4b\xef\xff\x60\x5c\xa7\x61\x31\xf1\xfa\x24\x6a\xbc\x97\x8d\xf7\xa2\xf1\x9e\x35\xde\x63\xe7\x7d\xb2\xb3\x62\xab\xfe\x2d\x5c\xac\xbb\x6f\x18\x0e\x0b\x36\x0d\xb9\xc7\xbc\x93\xfe\x39\x96\x14\xbe\x7a\x7e\x86\x25\x05\x01\xcf\x83\x01\x10\xf8\xea\xf9\x04\x4b\x4a\x42\x3d\x4b\xc2\x3f\x56\xcf\xc7\x12\xc7\xcc\xc2\xfc\x4b\xa1\xa8\xd6\x45\x93\x40\xfc\xb6\xdf\xed\x5a\x47\x92\x15\x85\xd8\x9f\x8c\xdc\x97\x40\x9e\xfe\x5a\x71\xec\x85\x3a\xcc\x81\x1b\xc2\xe8\x8d\x7e\x1d\xd2\x4a\x26\x4a\xa8\xcf\xf8\x77\x51\x61\x1d\xf9\xb3\x51\x7d\xca\x40\xe5\xd5\x0d\x61\xc4\xb0\x9f\xd3\xa4\x8c\x69\x23\xec\xb0\x29\x3f\xce\x27\x86\xf0\x44\xc8\x86\x9d\x91\x08\x09\x75\x10\x36\x09\x40\x93\xca\xa5\x46\x36\x3b\x8c\x03\xf1\x6b\x4d\x23\xcc\x50\x14\x7a\xf0\x0c\x98\xdf\x63\xde\xd3\xa7\x18\x82\x84\x57\xe5\x5a\xbc\x74\xfd\xac\xcb\x7d\x7b\x97\xf2\x70\x73\xd6\x0f\xd0\x1f\xe8\x39\x8d\x66\x4f\x10\x19\xf4\xe5\x5b\x7c\x16\x47\xf4\x19\x22\xc7\xf0\xf6\x6c\x16\x9d\x27\x11\x22\x27\xf0\xf6\xf4\xd9\xf9\x93\x78\x8a\xc8\x29\xbc\x9d\xc5\x4f\xa6\x71\x1f\x91\x33\x78\x3b\x99\x9d\x0d\xa6\x67\x88\x3c\x51\x6f\xcf\x4e\x9f\x45\x53\x44\x9e\xaa\xb7\xfe\xc9\xec\xd9\x0c\x91\x73\x78\x3b\x3e\x3f\x39\x7b\x76\x82\xc8\x33\x78\x1b\x44\xc7\x27\x4f\x29\x22\xcf\x55\xf3\xe7\xf1\x33\x3a\x9b\x21\xf2\x5c\xb5\x7f\x76\xf2\x24\x99\xc9\xaf\xaa\xc9\x93\xe4\x2c\x82\x57\x53\xef\xe9\x6c\x46\xd1\x8e\xf0\xda\xe2\x6e\x09\x4f\xf1\x2b\x82\x6f\x16\xd3\x53\x1a\x1b\xf0\xcd\xce\xa7\xd3\xa4\x6f\xc0\x37\x3b\x3d\x9f\x4d\x07\x06\x7c\xb3\xfe\x93\xe3\x67\xc7\x06\x7c\x34\x3e\xed\x3f\x8d\x0c\xf8\xe8\xb3\x01\x7d\x72\x62\xc0\x97\x9c\x0f\xa6\x4f\xfa\x06\x7c\xf1\xf1\xe0\xfc\x6c\x6a\xc0\x17\x25\x83\xd3\xb3\xa7\x06\x7c\xe7\xe7\x7d\x7a\x3a\xb3\xe0\x9b\xcd\xce\xfb\x12\xee\x1a\x7c\xb3\xd9\x69\xff\x7c\x60\xc1\x37\x3b\xeb\xf7\x65\x51\x0d\xbe\xf8\x6c\x30\x78\x72\xfc\xaf\x06\x5f\x24\xff\x2c\xf8\xce\xe4\x9f\x01\x1f\x85\xff\x0c\xf8\x68\x5f\xfe\x19\xf0\x4d\x13\xf9\x67\xc0\xf7\x8c\xca\x3f\x03\xbe\xa7\x67\xf2\xcf\x80\xef\xc9\x40\xfe\x19\xf0\x9d\x1e\xcb\x3f\x03\xbe\xe3\x81\xfc\xb3\xe0\x4b\xce\xe4\x9f\x05\x5f\x04\xff\x55\xab\xaf\x2f\xff\x2c\xf8\x74\xbd\xff\x62\xf0\xcd\xe8\x54\x82\xc8\x4c\x7f\x9c\x24\xc7\x16\x7c\xb3\x67\xd1\x33\xbb\x79\xe9\xd9\xd3\x93\xa7\x27\x76\xf5\xcd\xce\x4e\xce\xec\xe6\x9d\x9d\x9e\x9e\x9c\x3c\x31\xe0\xa3\x67\x27\xcf\x4e\x2c\xf8\x92\x93\xe3\xd9\xb1\xdd\xbc\xf1\x93\xe3\xf3\xe3\x73\x03\xbe\xe9\xd3\x41\x3c\x88\xdd\xd5\x17\x9d\xf7\x9d\xd5\x77\x76\x7c\x76\x5c\xad\xbe\xd9\xe0\xe9\xe9\xa9\x05\x5f\x72\xd6\xef\xf7\xfb\xff\x3a\xf0\x4d\xb3\x28\xfe\x14\xa0\x3f\xc8\x4e\x90\x9b\x45\x2a\x28\xf4\x71\xf6\xe0\x1e\x19\xce\xe9\xcf\x3b\x2b\x84\x9f\x16\x6f\xc0\xdb\x23\x3c\x2a\x1a\x28\x84\x00\xfc\xcb\x48\xbc\x2e\x42\xe1\x27\x65\xae\x74\xed\x85\x4f\xa3\x42\x7e\xae\x89\x6a\x73\x79\xd6\x63\x4c\xd2\xd0\xcb\xcd\xf9\xb2\xa1\x51\x41\x5f\xb1\xcb\x52\x04\x28\x2e\xa7\x69\xfc\x68\x4a\xff\x91\xd2\xdc\xeb\xfb\xa7\xa4\xd3\x27\x9d\xbe\x7f\x4c\x3a\x03\x8c\x88\xcc\xd8\x96\xad\xbf\x9f\xed\x15\x3b\x50\xd9\x40\xe5\x29\x16\x51\xbe\x3a\xd8\xde\x13\xc8\x04\xea\x01\x7a\x14\xa9\x16\xcc\x6e\x8a\x05\xcf\x05\x2d\x44\x30\x38\xeb\x13\xf5\x92\x07\xc7\x7d\xfd\x1c\x1c\xcb\x54\x11\xb1\x24\xca\x93\xe0\xa4\xdf\x07\x55\xab\x8c\x7e\x0e\x4e\x9e\x9e\x11\xca\x04\x95\x20\x7b\x1f\xe7\x94\xb2\xe0\xf8\xf8\x8c\x64\x34\xba\xae\x52\x06\xcf\xce\x40\x5c\x67\x80\x18\x69\x19\x6d\x8b\x55\x8c\x25\x14\x5e\x47\x62\xe1\xe7\xbc\x64\x89\xa4\x71\xd1\xb2\x40\x20\xf2\xb3\x73\x52\x6a\xe9\xeb\xbd\x2c\x6b\x64\x49\x3b\xb1\x85\x96\xa9\xee\x97\x3c\x4a\x8b\x37\xd1\x1b\x0f\xfc\x02\x7d\x9f\xf1\x48\x80\x11\xc9\xd0\x59\x1f\x99\x96\x96\x6e\x14\xfc\x82\x94\x98\x41\x05\x91\x76\xd7\xbc\x4f\xd6\x7f\x21\xf9\x36\x46\x51\x96\xa1\x09\x11\xfb\x15\x0c\x5a\x2b\x18\xb8\x15\x0c\x26\x41\x15\x08\xba\xd1\x25\xe6\xac\x68\xab\x4d\x18\x86\x21\x1b\x45\xbe\x9d\x65\x46\x0a\xbb\xda\x49\x56\x65\x2a\x46\xa9\x5f\x2d\xed\x82\xc4\x21\x78\x25\x8d\xd6\x64\x56\x65\x8a\x47\xfd\x20\x1e\x7a\x7d\xc2\x2b\x02\x52\x90\x31\x32\xad\x22\x82\x54\xcd\x88\x20\x28\x5c\xe9\x4e\x79\xf5\x50\xba\x14\x8f\x68\x30\xa6\x93\x86\xc0\xa8\x65\xc5\xd0\x1a\x5d\xb9\xbf\x0a\xf2\x51\x1e\x94\x5e\x8e\x6b\xd9\xb2\x3b\x0a\xcd\x46\xb3\xa0\xf4\x66\xb8\x12\x45\x11\x84\x21\x52\xe6\x9c\x8a\xe7\xa5\xe0\x7f\xa1\xe9\x7c\x21\x5e\x9a\x55\xe0\x76\xb0\x66\x63\xd6\xd7\xda\x4e\xf4\xf1\xc9\x13\x33\x2d\xce\x1a\x1f\xf4\xff\xe4\x9d\xf6\x06\x67\x7f\x82\xb4\x15\xbf\xf1\x04\xf1\x8f\xcf\x70\x4f\x3c\x3e\x93\x77\x5a\x07\x29\xc6\x77\x20\x45\xaf\x55\x73\xda\x89\x7d\x69\x2f\x79\x95\x22\x99\x31\x6e\x8e\x08\x7a\x54\x57\xd6\x37\x85\xbe\xfc\x0e\x02\xab\x2d\x62\x73\x9a\xf3\xb2\xc8\xd6\x3f\x16\xf4\xcf\x19\x9f\x46\xd9\x8b\xf7\xef\xad\x06\xeb\x51\x18\xb2\x6e\x97\x11\xad\x77\x9a\x94\xd0\xbc\x92\x3b\x90\xa8\x5a\x57\xe9\x08\xfd\xad\x28\x50\x90\x92\xd2\x4a\x4e\x9c\x90\x46\x47\x8d\x90\x46\xf2\xfe\xe1\x5f\x5d\xbd\xfe\xf1\xd5\xd5\x9f\x2f\xde\x5c\xbc\x7b\xfe\xe1\xf2\xdd\xd5\x8b\xcb\x1f\xdf\x7c\xb8\x78\x77\x75\xd5\x0b\x07\xe4\x96\xcf\xdf\x1e\x77\xbb\x31\x67\x05\xcf\xa8\x0f\xb1\xf9\xbc\x31\x7a\x1d\x49\x54\x17\x65\x8f\x7e\x7c\x15\x74\x6e\xa8\x92\xbb\x24\x54\x28\x37\x8a\x4b\x9e\xd3\x8e\x58\x44\xac\xc3\x28\x4d\x68\xd2\x01\x8c\x00\x70\x9c\x81\xa1\x91\x92\x2f\xb0\x68\x49\x3b\x73\xa5\x49\xc1\x73\x1f\xd5\x14\xca\x39\x53\x0a\xd7\xa0\x4a\xdd\x96\xbf\xc3\x99\xae\x2b\xa5\x4c\x74\x8a\x34\xa1\xb2\x8a\x57\xb3\xce\x9a\x97\x9d\x84\x77\xb8\x58\xd0\xfc\x26\x2d\x28\x81\x14\x11\x7d\x52\x91\x08\xf3\xb4\xf8\xd4\x11\x5c\xf5\x39\xe6\x6c\x96\xa5\xb1\x48\xd9\xdc\x69\xa5\xe8\xa4\xa0\xcc\xad\xe1\xef\x5b\x57\x62\x1f\x19\xc2\xf2\x26\xdb\xb4\xa1\x2c\x21\x50\x23\x3c\xaa\x04\x61\xf9\x5c\xa0\x6f\xd8\xdc\xa3\xf5\xcf\xb0\xd8\xec\xf6\x95\xb7\x4a\xf0\x90\x20\x0e\x49\xa0\xc8\xd1\x60\x7f\xdb\xe7\x87\xf3\xe3\xfd\x06\x6a\x29\xa5\x15\x28\x54\xd5\x45\xee\xd7\x5b\x3f\xee\x8c\xe6\xd4\xcf\xa3\x3e\xf8\x30\xd5\x24\xc3\xf0\x96\xc5\x18\xf6\xf5\x49\xfd\xd8\x1b\x8f\x3f\x4e\xfc\x3f\xfc\xe9\xab\x6f\xbf\xe9\xfd\xff\xc2\xed\x5f\x03\x0f\x13\xf4\xf5\xff\x7c\x2c\x26\xf8\xf1\x7c\x87\x4d\x6c\x6a\xe6\x1d\x1f\xe3\xbb\xd4\x62\x7e\x0e\xfd\x74\xb0\x80\x1e\xd8\x3d\x35\x83\x78\x53\x2d\x48\x53\x53\x27\x27\xbf\xe9\xde\x3f\xbb\xb3\xf7\x2d\x98\x19\xd8\x33\x51\x96\xce\x19\x04\xdb\xd5\x12\x18\xc2\xcd\xb3\x5c\xd9\x24\x06\x57\x1c\x19\xcf\x49\x12\x3a\xc6\x24\x64\x15\x52\x7f\x5e\x0a\x41\xf3\xef\xb8\x10\x7c\x09\x91\x73\x17\x34\x4a\xb2\x94\xd1\xd7\xd1\x6a\x25\xcf\xf1\x65\x48\x7d\xc6\x7f\xca\xa3\x15\x59\x87\x14\xdc\x6b\xcc\xf3\x68\xb5\x20\xd7\x21\xf5\x75\xc0\x4f\x32\x0d\xeb\xcc\x38\x4a\x24\x29\x92\xce\xe5\xa9\xad\xfb\x64\x9e\xde\x18\x33\xc3\x8c\xe7\xf0\xab\x7b\x83\x08\x72\xfb\x82\x08\x6a\xf4\x04\x11\xa4\xfa\x81\x08\xb2\xbd\x40\x04\xe9\x3e\xa0\x09\x26\xf3\xb0\xce\xf3\xcb\xfd\x9c\x73\x41\xf2\xf1\xf5\x84\x78\x22\xdc\xec\x1a\x3c\x44\xf9\x49\xf7\xc4\xec\x52\xaf\x4f\x66\x7e\x1c\xad\x52\x11\x65\xe9\x3f\x28\xf6\x62\x8c\x27\xd5\x1c\x1f\x85\x61\xdc\xe4\x44\x0a\x92\x1b\x08\x2d\xdb\xbe\xd5\x40\xbc\x6a\xcb\x51\x01\x75\xdd\xf2\xd9\x80\xf2\x60\x17\x19\x74\x31\x65\x0b\x9a\xa7\xd0\x45\x86\xc1\xc8\x09\x93\x9b\x30\xd9\x6e\xbd\xf5\x08\xad\x50\xb0\x18\x5f\x4f\xf0\x76\x8b\x8a\x55\xc4\x50\x15\xb4\x45\xb7\xd4\x50\x24\xbf\x21\x0d\x56\x9e\x9d\xbb\x60\xbe\x23\x53\x8c\x7f\x21\xa6\x9b\xf0\x8b\x3d\x3d\x56\xc5\x7d\x3b\xb5\x2c\x54\xe0\x9a\x6a\x0e\xaa\xe5\x9f\x0e\x80\x7b\x0a\xbc\xb9\x63\xcd\x9a\x1b\x1c\x63\xcb\x46\x7d\x8a\x95\x0b\x84\xe3\x7e\xd3\x73\xa0\x35\x25\xe6\x22\xd8\x68\x85\xf7\x00\x81\x5d\x28\x22\xcb\x28\x9f\xa7\x2c\xe8\xef\x88\xfe\x72\x1a\x50\x5f\xac\x57\x1c\x66\x67\x6d\x14\xe4\x4f\xcd\xe7\x93\xd6\xcf\x27\xe6\xf3\x71\xeb\xe7\x63\xf3\x79\xd0\xfa\x79\x40\xcc\xc2\xaf\x7f\x36\xa9\x44\xa4\x22\x6b\x7c\x83\x24\x52\x94\x53\x99\x49\xde\x32\x6a\x5f\xab\x74\x32\xe5\x49\xb3\x57\x90\x04\x1f\x06\xfb\x1f\x06\x24\x8e\xe0\xa4\xac\x7f\xd2\x89\x44\x05\x7f\x6a\x14\x83\x34\x02\x6b\xf6\x07\x3a\x13\xc1\x46\xd0\xcf\xe2\xb9\x7c\x0d\x50\x46\x67\x02\xed\xd4\xc7\x17\x70\x0b\xac\x7d\x8e\x21\xc9\x64\x78\x27\xe9\xe4\xda\xf7\x5c\xa6\x98\xcf\xff\xa7\x2c\x44\x3a\x5b\xd7\x32\xfc\x4d\xa5\xa1\x1d\x51\x3b\x32\xd8\xf0\x6b\x9a\xcf\x32\x7e\x13\xa0\x45\x9a\x24\x94\x21\x22\xb3\x5f\xda\x54\x9a\x65\xe9\xaa\x48\x0b\xcd\x56\x78\xbf\x8a\x62\x1a\x20\xc6\x6f\x24\xa6\xd9\x11\x77\xf3\x06\x1b\xb5\x3e\xf4\x1b\xea\xfb\x27\x67\x74\x89\x76\xc4\xee\xdf\x46\x8e\xc1\x93\x1d\x01\xf4\xf2\x4a\xed\xcd\x60\x03\x6f\x81\xdd\xab\xfa\xf3\xdb\x3c\x5d\x46\xf9\xda\x7c\x96\x58\x36\xa3\x42\x50\x7f\xa5\x3e\xf8\xcb\x28\x65\x3a\xef\x7b\x1a\x73\x79\xdd\x6a\xc9\x5d\x98\x4f\x6e\xfe\x0f\xf4\xb3\x38\x58\x3f\x58\x98\xe9\x46\x9c\xfc\xb7\xb4\x01\x25\x6c\x43\xba\x0c\x68\xc6\xec\xe7\x05\x12\x58\xf5\x05\xae\x23\x7a\xab\x27\x24\x77\x2d\x47\x76\x24\x6f\xd8\x31\x47\x6a\x2e\x0d\x90\x88\x06\x9a\x3d\x67\x6b\x73\x72\x54\xed\x17\x7d\x50\xd8\x6d\x7d\x1a\xa0\xc5\x00\x55\x7b\xd5\x7d\x3b\xae\xbd\x0d\xd4\x9b\xdd\x78\xf0\xa6\xf6\x19\x5a\x1c\x23\x77\x67\xa1\xc5\x09\xd2\xdb\x08\x45\x92\x94\x46\x7a\xef\xa0\x55\xb5\xea\x94\xa3\x6d\xbd\x26\x8e\x06\x44\x9f\x51\x01\x82\xac\x68\x37\x54\xbe\x97\xeb\x12\xa9\x84\x28\xaf\xde\xe8\x75\x99\x7e\xb0\xfb\x09\xed\x70\x5d\x5d\x6f\xf5\xdb\xa5\x71\x4e\x4f\x7f\xcb\x14\xda\xe9\xd9\x43\x28\xb4\xa6\x31\xa7\xb1\xb7\x06\x13\x0e\x9a\xa7\xd7\x34\x81\x90\xa9\xdf\xe7\x7c\x09\xeb\xde\x73\xbd\x37\xc8\x47\x88\x44\x8a\x75\xc0\x96\x90\x3a\x97\x67\x23\xd5\x2d\xa8\x80\x3a\x3c\x5a\xb7\x96\xaf\x99\x3f\x57\xd6\x69\xf7\xee\x89\x1b\x7e\x5a\x37\xcf\x9c\xe6\xd9\x48\x3b\x8a\xaf\x77\x42\xf8\xd3\x94\x25\x4a\xbd\x67\xdf\x0f\x95\xc8\xd7\x6e\x3f\xd4\x38\xb5\x3e\x09\x8c\x74\x58\xa5\x87\xd4\x81\x40\x28\xd4\xcb\xd5\x55\x4e\xa3\x58\xbc\x92\x27\x04\x8b\xb2\xf7\x2c\x5a\x15\x0b\x2e\xbe\xcf\xa2\xb9\x11\x62\x1f\xca\xa3\x5a\x99\x53\x61\x12\xbe\xa3\x33\x9e\x53\xe5\xa2\x0f\xf4\xdd\x76\xb3\x94\x45\x59\xb6\xde\x38\x9d\x60\x6e\x27\xf2\x5d\x23\xdc\x89\xf1\x71\x67\x35\xc7\xe4\x3d\xf4\x48\x80\x0e\x42\x5a\xbc\x93\xdd\xa8\xac\x47\x2b\x45\xc2\x4a\x89\x50\xdd\xdb\x57\x3c\x5b\xcf\xd2\x2c\xd3\x57\x6a\x4b\x0e\x17\x2a\xba\x45\x9b\x2f\x01\x7a\x70\xe2\x0e\x38\x2a\x38\x34\xf2\xba\x59\x1d\x03\x7f\xc2\x24\x52\x3f\x25\xfc\xd4\xbb\xe0\x04\x0b\x6c\xb1\x83\x1f\xb1\x10\xed\xa7\xa2\xa0\xbd\xfc\x8f\x6f\xde\x3f\xff\xfe\xe2\x6a\xbf\x40\xb7\xeb\xb1\x10\x1d\xfc\x8c\x30\xb9\x47\x87\x5c\x1b\xf9\x51\xd4\xe8\x97\xfb\xf1\x21\xdd\x73\xcb\x75\xbb\x5e\xd4\xde\xcb\x5a\xed\xf7\xea\xac\x9a\x8c\x51\xd9\xe8\xa6\x4a\x7e\x48\x07\x55\x89\x6e\xd7\x2b\xdb\xbb\xa6\x6b\xc4\xc4\xec\xe9\xed\x56\x3f\x45\xf6\xa9\x54\x2b\xbb\x08\x5b\xad\x41\x49\x16\xb6\x75\xe7\xf0\x8a\x1c\xa1\x83\x48\x06\x23\x50\x29\x6a\xdd\x92\x18\xe9\x90\x2d\x7a\xbb\xfc\xc8\x8a\x68\x46\x3b\x19\x9d\x47\xf1\xba\x93\xa5\x33\x1a\xaf\xe3\x8c\x16\x9d\x1b\xb9\x75\x74\xbc\x16\xe5\xcc\xa3\x33\xe3\xb9\xb3\x8d\x3a\x65\x91\xb2\x39\x6c\x3d\x9b\xd8\x79\xfe\xf6\x55\xe1\x7f\x64\x1f\x19\xea\x15\x3d\xd4\x29\x0b\x5a\x74\x20\x5e\x02\x18\xf2\x47\x59\xa1\x5c\x1d\x44\x29\x53\xde\x7e\x66\x3c\xcb\xf8\x8d\xac\x67\xaf\x07\x01\xea\x79\x06\x9c\x23\xf4\x91\x75\x3a\xa8\xc7\x02\x84\xb0\x4d\x8e\x4c\x72\x54\x4b\x2e\x4d\x72\x09\xc9\x48\x76\xe7\xc3\x82\x76\xa2\x29\xbf\xa6\xee\x10\x35\x97\x6f\x4a\x3b\x4a\xef\x29\xf1\x3b\x3f\xd0\x28\x67\x8a\x77\x18\x4d\x79\x29\x40\x23\xa7\x73\x13\xe5\x4c\xf6\x71\x41\x73\x1a\x7c\x64\x0b\x21\x56\x45\xf0\xf8\xf1\x6c\xea\x2f\xe9\x63\xc0\x8b\x8f\xa2\x62\xcd\xe2\x47\x16\x10\x8f\x6c\x33\x8f\x16\x9c\x7f\x2a\x10\x04\xf2\x79\xd8\x0c\x77\xbb\x5e\x1b\x36\x08\x73\x72\xcb\x9e\x0c\xf9\xa1\x9d\x71\x08\x55\x1d\x74\xac\xd2\xe2\x74\xb5\x15\xdd\xca\x45\x62\x91\xed\xc1\x75\xd7\x5c\x3d\x62\x11\x89\x4e\xa2\x42\x02\x29\xba\xa2\xb3\xdf\x9e\x87\x0d\x87\xd5\x1e\x06\x48\x52\x6c\x2d\x9b\x4f\x8b\xcf\xe2\xb0\xad\xdf\xc3\xb6\xc4\xbd\x70\xf6\x8e\x1e\xe6\x2d\x47\xe2\xe8\xb6\x0c\x01\x1b\xc6\x9a\xeb\x07\x1a\xc9\x44\xb8\x9a\xd2\xf4\xe1\xe6\x16\xcc\x4f\xe4\x67\x03\x5f\x44\xf6\xa9\xaa\x68\x87\x49\xee\x5f\x5d\x15\xe5\x0a\x7c\xdc\xbc\xa4\xab\x9c\x2a\x3f\x07\x3f\xa9\x85\x2b\x4f\x71\x7e\x67\x8e\xf4\xae\x1c\x5f\xe4\x23\x81\xfa\x22\x5d\x52\x5e\x0a\x60\xa3\xc1\x45\xc5\x4a\x1a\xc2\x30\xcc\x47\x9b\x5d\x90\x6b\x92\x68\x63\x05\x78\xdc\x17\x79\x04\xae\x27\x38\x33\xf2\x9c\xed\x16\xa9\x38\x80\x35\xbf\xb6\x2c\x60\x63\xe1\x2f\x79\x42\x27\x04\xa4\x57\xf5\xb2\x32\xe5\x8b\x8c\x8e\xe7\x54\x7c\xb0\xd5\xa8\xad\x25\x37\x5e\x4e\xe5\xe5\xb6\x2e\x71\x6e\xb5\xae\x2a\xe2\x9c\x67\xd9\x07\xbe\x92\xf7\x33\x5d\xea\xd7\x14\xa1\xff\xca\x24\xfa\x59\xff\xde\x17\x8c\x01\x98\x4e\x79\xcc\x67\x5e\x8e\x09\xf3\x06\xe7\xb8\xe1\xbc\xa2\xe9\x96\xe8\xe4\xa9\x8e\x80\x7e\xae\x7c\x57\x9c\x3f\xa9\xe9\xfe\xbb\x3e\x26\xf5\x30\x67\x39\xa5\xff\xa0\x5e\xdb\xa0\x53\x2a\xc9\xec\x4d\x1e\xdd\x18\x07\x4c\xf5\x32\x02\xef\x76\x18\xef\xbc\x31\x9c\x12\xb3\x3c\x9a\x2f\xe5\xc9\xf5\x43\x34\xa5\xd9\x0b\xe5\xce\x86\xb3\xce\xe5\x8a\xaa\x55\xd7\xd9\xc8\x6c\x9d\x8e\xef\xfb\x32\xdd\xc9\xb6\x97\xa5\xd3\x91\x68\xc5\x3c\x47\xa5\x58\xf0\xbc\xfa\xd6\x01\xa9\x4e\xf5\x46\x97\x51\x9a\x55\xaf\x0e\x4d\x60\x12\x77\xb6\xaa\x24\xa1\x89\x79\xd1\x67\x95\x7a\x85\x2c\xbb\x8f\x0c\x4d\xc8\xff\xb2\xf1\x1c\xe0\x2e\x2e\xa3\x94\x05\x35\x6b\x1e\x6f\xb3\x23\xfb\x6c\x37\xbc\xdb\x91\x55\xab\xeb\x6c\xbe\x02\xd6\xbe\x61\xe8\xe7\xa1\xf0\xa1\x3f\xe0\xe4\x51\x77\xc6\x75\xe2\xd3\x88\xbc\x9d\xa4\xd7\x88\x38\x4c\x5b\xa6\x59\x42\xfb\x59\x0b\x3f\x22\x1b\x05\xb5\x40\xf8\xea\x81\x4c\x79\x96\xa8\x0d\x9b\x3b\xc2\xdb\x96\x76\x80\x99\xac\xc2\x84\x23\x05\x30\x15\x92\x5c\x16\xac\x4b\xdf\xdd\xc0\x95\xed\xae\x4e\x3e\xd1\x75\x20\x48\x26\xa7\x3a\xa0\x3b\xdc\x68\x9c\x3f\xa4\x23\x2c\x41\x98\x3c\xa4\x84\x86\xa8\xe9\x3c\xff\x05\x3a\x7f\x57\x93\x88\x20\xc8\x8e\xec\x30\x7b\xdc\xd1\xd6\x40\x05\x02\x45\x83\x96\x7a\x32\xd9\xa0\x5c\xf4\x81\xf0\xe5\x8f\x44\x14\xc3\x95\x6f\x36\x55\x98\x7a\xd8\x9b\x61\xf0\x18\xa4\x3d\x29\xe5\xfe\x4d\x2a\x16\xca\xe9\x03\xf6\x12\xec\xad\xfe\x25\x7c\x98\x98\x2f\x97\x9c\x7d\x01\x8e\x3f\x5c\x65\x4e\x93\x7b\xd6\x97\xde\xab\xbe\x15\x68\xdb\xdf\xab\xc2\xe8\x7e\x15\x96\xf9\x2a\xbb\xaf\xd3\x83\xf2\x5e\x55\x26\x94\xae\xde\x3e\xa4\xda\xe2\x5e\xd5\xa6\x2c\x49\xe7\xfc\x9e\x55\x66\xf7\xaa\x72\x7a\x7f\xf7\x1f\xf1\xbd\x2a\xcc\xd2\xf9\x42\x7c\x77\xff\x5a\x67\xf7\xaa\x35\x5e\x47\xf7\x5d\x95\xc9\xbd\x2a\x14\x34\xca\xee\x59\xe1\xea\x5e\x15\xce\x73\x4a\xef\xdb\xc5\xc5\xfd\x21\xf9\xe7\x07\x54\xbb\xbc\x67\xb5\xf7\xf6\xf0\xb1\xbe\x57\x85\x6b\x2a\xef\xde\xf7\xac\xf2\xfa\x5e\x55\x46\x40\x9e\xdf\xaf\xc6\xe9\xbd\x6a\xe4\xb9\x24\x4d\xee\x59\xe5\xfc\xde\x9b\xfc\xf2\x21\xd5\xde\xdc\x6f\x47\xe6\xfc\xe6\xbe\x33\x7e\x75\xdf\xa5\x79\x5f\xbf\x3b\x97\xf7\x46\x1a\x7f\xbe\x7f\xa5\x17\xed\x77\x81\xc1\xc9\x33\xac\xac\xed\xe5\xb3\x32\xc8\x51\xcf\x4f\x40\x9c\xac\xee\x0b\xa7\xda\xe2\x5e\x3e\x9f\x81\x48\x59\xe5\x51\x06\x39\x2a\xfd\x89\x32\xc8\x81\xe7\xa7\x58\x39\x9f\x91\xcf\xb2\xce\x95\x7e\x96\x6d\x2d\xd4\xf3\x93\x3e\xc6\x64\xa9\x9f\x07\x18\x93\xb5\x7e\x3e\xc6\x98\x5c\xeb\xe7\x13\x8c\xc9\x54\x3f\xcb\x3e\xcc\xf5\xb3\x6c\xf7\x46\x3f\xcb\x76\xaf\xf4\xb3\x6c\xf7\x52\xf7\x4d\x3e\x5f\xe8\xf4\xf3\x7f\xda\x7d\xe7\x9f\x7b\xcf\x79\xaf\x84\x0a\x65\x71\xdb\xad\xc0\x66\xfa\xe7\xdd\x09\x0a\x68\xef\xae\x5b\xcd\x6f\xab\xf7\xf5\x5b\xec\x17\xdd\x61\xda\xdc\x23\x36\xef\x30\xff\x8c\xdb\xca\xdd\x34\xb7\xf0\x15\x10\x7c\xc1\x7f\xe0\x37\x26\xae\x3c\x41\xc0\x42\xbd\x3f\xb5\x9d\xd4\xa9\xed\xf8\x16\x6a\x7b\x26\x09\xee\xff\xad\x9b\xf4\x43\x2a\xb2\x5b\x6f\xee\x26\xcf\x3f\x6f\x91\x83\xd8\xde\xbc\xdc\x44\xf7\xd9\xac\xbf\xc1\x51\xfc\xdc\x4d\xab\x36\xcd\x66\xc6\x99\xf8\x09\xf4\xd1\x03\x24\x53\xd0\xee\x37\xb4\x9b\x95\x5b\x67\x75\x69\x07\x78\x29\x0f\xcf\xad\xbb\x58\x97\xac\x75\x4b\xb6\xb4\x23\xc2\xbf\x89\x8a\xbb\x1b\x13\xfc\xe1\x15\x43\xa7\xfe\x55\x38\xa5\xc9\xe8\xfe\xa5\xb1\x81\xf5\xf9\x0b\x4e\x8d\x3c\x8d\xa3\x98\x77\x76\x0c\xb4\x96\x7c\x4f\xb5\xef\x94\xf3\x66\xa4\xa2\x46\xa0\x22\x89\xc4\x12\x8d\xc4\x24\x45\xd5\xd8\xa1\x2f\x00\x76\xb7\xed\x4f\x95\xe3\x9f\xb7\x3b\x75\x9c\xd6\xbb\x50\xcb\x6f\xa6\xe3\x8a\x78\x6d\xf6\x9e\x2f\xe1\xf7\x96\xee\x3f\x4f\x12\x9d\xeb\x5f\x3e\x84\x3d\xd8\xff\xa6\x7a\xdf\x0c\x5f\xa0\xd1\xf9\x82\x46\x09\xcd\xef\x83\xd0\xc9\x66\x15\x25\x4a\x41\xed\x64\xf5\xb9\x63\xfe\x7f\xb2\xfa\x8c\xc8\x34\x8a\x3f\xcd\xc1\x68\xe8\x85\xd2\xa4\xfb\xc3\x6c\x30\x3b\x9f\xcd\x10\x99\xf2\x5c\xd6\x8f\x06\xab\xcf\x9d\x82\x67\x69\xd2\xf9\x43\x32\x48\xce\x92\xc8\x7c\xfa\xc0\x57\x3f\xd0\x99\x78\x17\x25\x69\x59\x04\x27\x55\x2a\xe8\x66\x9a\xe4\x1d\xb6\x91\x8b\x37\x2a\x07\x28\x7e\x1e\xae\x56\x69\x76\x1e\xfe\x6e\x34\x2c\xef\xc8\xd0\xd2\x35\xf5\xa1\xd6\xbb\xb6\xf1\xcb\xc1\x2f\x53\xa6\x4c\xb1\x82\xb3\x3e\x31\xd0\x3b\xab\xa9\x81\xae\x72\xfa\x48\x29\x82\xee\x76\x64\xfd\x80\x63\x31\x3e\x70\x2c\xc2\x61\x72\xe8\x63\xed\x0c\x51\x53\xbf\x6b\xc9\x3c\x03\xbf\xe0\x4e\x56\x7d\x70\x1e\x3e\x48\x5b\x1a\xac\x1f\xa4\x6a\x17\xd0\x44\x1e\x71\xfb\x99\x93\xfd\xd3\xea\x7e\x63\xd0\x8b\xa2\x6d\x10\x91\x1f\xa9\xd6\x85\x8d\xd0\x2d\xcf\xc0\xb5\xce\xf6\xbd\x39\x09\x0b\x0f\x7b\x2b\x4c\xd6\xbe\xee\x63\xed\xc3\xa2\x76\x44\xf2\xda\x11\xb9\xc4\xde\xfa\x8b\xc9\x6e\xb8\xf3\xd7\xe8\xee\x93\xa7\x4d\xca\xfb\xfc\xb4\xe1\xcb\xfe\xec\xb8\x11\xa6\xe4\xe4\xe9\x71\x23\x4e\x89\x3c\x09\x97\x90\xb0\x50\xa1\xf7\x06\x98\x5c\xc3\xfb\x1a\x93\x69\xc8\x3c\x59\x62\xae\x4f\xc2\x1b\x2d\x63\xbc\xfa\x27\x93\xf5\xdf\x95\xf3\x77\xfc\x46\x22\xc8\xef\xca\xb9\x41\x7a\xa9\x16\x7d\x2d\xca\x65\xc4\x5e\xe9\x17\x87\x48\x75\xaf\x96\x6a\x0a\x93\xe7\x42\xbd\x82\x94\x43\x7f\x6a\x62\x52\x17\x8f\xee\xa1\xcd\xc3\xc8\xfd\xdf\xb0\x8b\xb8\x11\x79\xcf\xc6\xc0\x35\xfb\x61\x68\x79\x94\xad\xd4\xa0\xd6\x36\xbe\x5c\x51\x86\x76\x64\x3f\xd3\x4a\x66\x62\x91\x48\xaf\xa9\xc1\x62\xc7\xe7\xd1\xd3\xd3\x33\x44\xaa\x2d\x27\x20\x32\xd5\xc5\x2f\xd1\x91\x17\x19\x2f\x68\x72\xdf\xae\xc4\xd3\xe3\xd3\x93\xc1\x7e\x57\x3e\xb7\x76\x45\xcd\x44\x85\x37\xa1\x57\x05\x04\x70\xf1\x04\xde\xc4\x51\x41\xd1\xe5\xdb\x8b\x37\x28\x38\xd8\xd5\xcb\x1a\xa6\xd9\xe1\x21\x14\x7a\xf1\xc3\xe5\xfb\x8b\x97\xb7\x14\xbb\x68\x16\x33\x2e\x21\xad\x61\xe8\x27\xc6\x6f\x98\x5e\x2b\x1d\xd4\x13\xbb\x1d\xf9\xd4\x76\x34\xc7\x34\xcb\x1c\x03\x92\x59\x46\x3f\x23\x65\x97\xf0\x4a\xd0\x65\x61\x6d\x19\x08\xea\x76\x22\xa4\x8c\x14\x5e\xd2\x98\x6b\xd5\x11\xc4\x38\xa3\x68\xb7\x23\xaa\x25\x63\x38\x10\x0c\xfa\x3b\x42\x3f\xaf\x22\x96\x04\x9b\x9b\x34\x11\x8b\x00\x0d\xfa\xfd\x3f\xa2\x9d\x56\x47\xaf\x5a\x4c\x59\x96\xca\x2a\x94\xd0\xb1\x08\x0c\x01\x00\x47\x2f\xf5\x8b\x55\x14\xa7\x6c\xee\x97\x2c\x85\x78\x78\x6f\x5b\x67\x62\x5a\xce\xdb\x8e\xaf\x7d\xc0\x95\x72\xce\x17\xfc\x9a\xe6\xf2\x48\x69\x59\x14\x69\xf3\x54\x92\x00\x6a\xcb\xf8\x99\x6c\xf4\x98\x0d\x2f\x86\xb8\xc5\x54\xd2\x0e\xb7\x94\x6c\x39\x61\x14\xa8\xda\x9a\x99\xfa\x53\xb2\x11\x3c\x40\xd3\xf2\xff\xcf\xde\xbf\xb7\xb7\x6d\x63\x8d\xa2\xf8\x57\xa1\xf8\xdb\x3f\x96\x38\x86\x55\x29\x69\xda\x86\x1a\xd4\x6f\x9b\x26\x33\xd9\xd3\xd4\x99\x24\x9d\xee\xf7\xd1\x68\x7b\x68\x11\xb2\x38\xa1\x40\x95\x84\xec\x68\x24\x9e\xcf\x7e\x1e\x2c\x5c\x08\x90\xa0\x6c\xa7\xf3\xee\xbd\xe7\x3c\x27\x7f\xc4\x14\xee\x58\xb8\xad\xfb\xba\xf9\x32\x3c\xe3\x63\x75\x2d\xf8\xca\x3e\xaa\x61\x78\x7e\x8d\x42\x3f\xac\x4a\xe8\xcc\x00\x92\x2c\xf2\x8f\x8f\xe5\x0a\xd9\x66\xd0\x0f\x22\x23\x65\xb5\xa6\x6d\xc0\x6f\xcf\xee\x59\xad\x3b\x2d\x92\xa6\xb6\x48\x1a\x21\x1f\x54\x25\x3a\x21\xcf\x31\xb7\x8d\x3f\xc4\x9e\xd3\x50\xc3\x61\x50\x6e\x29\xa3\x59\xe8\x69\xe1\xc6\xc2\x0f\xcc\xc5\xda\x20\x1c\x5e\xef\x81\xe3\x26\x6f\x54\x5b\x9f\x14\xc1\x63\xff\xb6\x25\x78\x37\x31\x8a\xaf\x4e\x10\xbc\x1f\x51\xfc\xf6\xb1\x04\xaf\x8e\x47\x0a\xc6\x90\x3a\x56\x52\x61\x29\x55\xac\x1c\x2b\xc9\xad\x63\x1b\xb9\x16\xd7\x54\x59\xf1\x1f\x21\x8e\x7a\x5e\x32\x69\x08\xb9\xdb\xd0\x2a\x5f\x2a\x4b\x48\x38\x6e\x60\x07\x59\x2f\xcb\x2d\xc5\xd7\x96\x45\xe4\x8d\xc7\x22\x52\x0f\xe2\x84\x51\x64\x6b\x0c\xe9\x74\x1e\xe2\x50\x75\x0d\xc6\x8f\xd0\xb1\x28\x23\xba\x75\x4d\x20\xef\x08\x1f\x83\x77\x54\x7c\xa5\xbf\x8a\xdb\xe2\xc9\xac\x22\xdb\xe3\x31\xbe\x8a\x22\x30\xab\x0c\x09\x21\x57\x7a\xac\x17\x21\x5f\x87\x49\xc8\xb3\x50\xca\x4f\x2e\xc9\xed\x6c\x74\x19\x45\xde\xc2\x51\x14\x5f\x92\x70\x59\x16\xaa\xf0\x4b\xb2\x3f\x1e\xe3\xbb\x28\xba\xd3\x00\xb9\x30\x5f\xad\xc9\x0e\xc2\x9f\x3a\xc6\x2e\x85\x34\xcd\x8c\x59\xdf\x2a\x93\xe1\x02\xb0\x5f\x7c\x7d\x61\xfa\xbf\x4e\xbc\xa3\xe9\x5a\x4b\x8a\xaa\x82\x1c\x12\x55\xc5\xdf\xb6\xaa\xfe\x75\xb2\xea\xaa\x2c\x39\xad\x44\x65\xf9\xd5\x56\x6f\x7f\x9f\x6c\x40\xef\x8f\x9e\x1d\x28\xc3\xc5\xdc\x2c\x9c\x65\xc8\x99\x39\x86\x9c\x2f\xbb\xb6\xa6\x2f\x11\x66\x08\xaf\x10\xfe\x28\xd5\xf1\xb5\x84\x37\x8a\xe2\x8f\x24\x4c\xeb\xa5\x18\xd1\xfa\x42\x7c\x51\x06\x6d\x0b\x98\x9b\x1f\x08\x0f\xd9\x77\x56\xc3\xf6\x9d\x9f\x70\x28\x26\x78\x2e\x36\x60\x98\x7c\xc4\xb0\xc9\x92\xcb\x06\xdf\x20\x5c\xfe\x1f\x62\xf7\xa9\xcd\x3e\xa5\xb1\xe7\xf4\x09\x48\xe8\xb4\xdd\x67\xa6\xec\x3e\xb7\x02\x27\x9f\x0a\xc4\xfb\x7e\xfb\x4f\x38\x28\xe7\xe2\xc9\x0a\xf1\xad\x40\x9d\x97\x69\xf1\x7d\xc7\x0c\x6d\x80\x34\x95\x88\xa0\x59\x54\x29\x58\x97\x41\xa9\x8d\xd1\xdc\x7e\x4b\x2f\xe2\x09\xde\x8e\x21\x93\x32\x14\xc3\xaf\x55\x9a\x51\x14\xb7\xe5\xb2\xfc\x36\xcf\x68\x85\xa7\x08\x8f\xbf\xfd\x16\x25\x50\x28\x4b\xab\x8f\x0f\xab\x81\x10\xee\x9a\x5a\x1a\xba\x36\xfc\x6a\xfb\x29\x78\xf6\xf5\xf6\x53\x20\x3e\x9e\x7c\xb5\xfd\x24\x30\x93\xa4\x48\x6b\x7e\x0e\xf7\x52\x68\x10\x08\x49\x9c\x3f\xf9\xaa\x69\xc0\x20\xee\x3e\x1b\x40\xbc\x2a\x19\x7f\x9f\xff\xb3\x63\x92\xba\xfd\xf4\xa1\x7c\x47\x37\x62\x71\xb0\xc5\x65\x76\xca\xb4\xe9\x6f\x68\x96\xef\x36\x0d\x98\xd2\x9d\x36\x53\xbc\xaf\xbb\xa7\x0f\xe9\xee\x1d\xbd\xd9\x15\x69\xd5\x60\x79\xae\x35\xd7\x42\xad\xed\x04\xff\xde\x19\x37\x58\xdd\x04\x1e\xeb\x55\x2c\x50\x45\x73\xb3\x27\x61\x55\xde\x9d\x57\xf4\x96\x56\x35\x05\x53\x52\x58\x83\x1f\x29\xab\x69\x7f\x45\x74\xf6\x8b\x35\x5d\x7e\xbc\x2e\x3f\x25\x2d\xd7\x67\x12\x4c\x9f\xdc\xbb\xa8\xd3\x27\x8d\x69\xe3\xe7\x92\xb5\x3d\x24\x93\xa1\x8a\xc9\xa4\x71\xac\x37\xd7\xf7\x59\x6f\xea\x99\x8f\xa6\x8d\x74\xe6\x6d\x05\xcd\x93\x11\x45\x8d\xee\x90\x0a\x6e\x87\xcd\x33\xd5\xcb\x92\x96\x92\x1b\x02\x36\xef\xe6\xb6\x5a\xdb\x96\x92\xa2\xee\x0b\x71\x70\xbb\x86\x92\xf7\x45\xcb\xd3\xd4\xff\xd3\xa7\xff\x2a\xbf\x91\x4a\x0b\xf9\x1b\xc9\x3d\xe8\xdf\x3a\xae\x77\xa3\xd0\x42\x88\x20\xd8\x3a\x4e\x49\xfe\x08\xc7\x92\xae\x3b\x08\xc7\x5c\x8f\x46\xd1\xa8\xe7\x15\x29\x8a\x26\x70\x2b\xe9\x30\xf3\xae\xc5\xe0\x80\xcf\x9e\x21\xbf\x51\x51\x64\xff\xb2\xdc\xcd\xc6\x55\x2c\xb0\xa0\x62\x27\x3a\x0c\xc5\x23\xa6\x7e\x1e\x8f\x3c\x8a\x44\xa6\x9a\xdf\x5f\xdd\x32\x4e\xaa\x63\x3d\x68\xab\xab\xf3\xb4\xe2\xdf\x67\x65\xc5\x44\xcf\x8e\x45\x9e\xad\xcb\x9f\xe5\xb5\xd8\x15\x19\x28\xf3\x83\x15\x32\x20\x81\x92\xc4\xc2\x39\xa1\xe3\x4a\xc5\x62\x34\xfe\x8c\xa2\x88\x8f\x37\xbb\xfc\x55\x59\x6d\x5e\xc8\x88\xa0\x51\x14\x5b\x7e\x82\x2c\x65\x7e\xb0\x50\xeb\x96\x36\x7d\x22\xec\xad\x05\xae\xeb\xfb\xb5\x60\x70\x03\x55\xca\x28\x8a\xcb\x7e\x15\x39\x8b\x81\x3a\x79\x14\xc5\x79\xbf\x8e\x9e\x2e\x42\xf8\xa0\x07\x9a\x30\x0c\xbd\x27\x95\x76\x7b\x50\x62\x5d\x2e\xc9\xa5\xaf\x9a\xdd\x67\x3f\xf4\xeb\x54\xc5\x2c\xab\x30\x1f\xe7\xf5\xab\xbc\x28\x68\x46\x4a\xf8\x01\x0b\x08\x76\x44\x15\x27\xf9\x3d\x58\x41\x4d\x76\x0a\x2b\x28\xe0\x0b\xbc\xb2\x2e\xe5\xe7\x14\xde\xfd\x9d\x42\x10\x32\xf8\x7a\x06\x5a\x39\xe2\xeb\x6b\xd0\xc9\x11\x5f\xdf\x82\x46\x8e\xf8\x7a\x0e\xfa\x38\x3b\x85\x48\xdc\xc2\xd7\x13\xd0\xc5\xd9\x69\x44\xe2\x06\x3e\xbf\x01\x45\x1c\x68\xfa\xdb\xa7\xc8\x65\xc2\xe9\xc3\x32\xf4\xd4\x63\x46\x34\x41\xb5\xdc\x55\x15\x65\xfc\x85\xf4\x76\x52\x0a\x9a\x9c\xef\x13\x7e\x31\xfe\xea\x49\x32\x7e\x86\x5b\x13\x10\xf1\x94\x98\x1f\x3a\xb8\x7a\x1c\xaa\x1a\x21\x6e\x8d\x4e\xdc\x82\x3a\x79\xac\x3c\xf0\x35\xa8\xc1\x15\x39\xe8\x9e\x26\x0d\x2e\xdb\x5f\xba\xdf\x06\xe7\x84\x5f\x84\xd5\xcd\x75\x1a\x2b\x97\x81\x38\x98\x8c\xbf\x7a\x82\xc2\x44\xa6\x3e\x79\xf6\x0c\x07\xed\x7f\x93\xf1\x37\x48\xfb\x0c\xe9\xa2\x4e\x92\x0f\x71\x2e\x19\x20\xdb\x52\x4d\x27\xac\x68\x01\x1c\xa2\x10\x5e\xcb\x57\xe9\x26\x2f\xf6\xfd\xe7\x58\xa6\xfb\xdf\xdb\x07\x3e\xf8\x5f\x23\x2c\x06\xa0\x58\xf9\xe1\x74\x3c\xfd\xf6\x9b\x67\x74\x23\x5e\xc2\xff\xa6\xf7\x7a\x38\x80\x53\xe8\xfc\x46\x60\x02\xe6\xb8\x24\x07\xa9\x99\x1d\x9c\x05\x51\xa8\x39\x33\x1f\xca\x6d\x32\xfd\x1a\x0a\x2e\x77\x35\xcd\x92\x03\x38\x09\x91\x47\xe9\xd0\x60\x71\x1a\x2b\x70\x1e\x70\x08\xa3\x24\x5d\x09\x72\xa1\x83\x57\x84\x4f\x8c\x38\xa3\x75\x41\xd7\xf5\xf5\x30\xe7\x17\xa1\x40\xf9\xc2\x44\x6d\xaf\x05\xc2\x02\x95\x4b\x26\xf8\xba\x45\x4f\x18\xa7\x8c\x27\x5f\x84\xe1\x17\x16\xc8\xd3\xeb\xba\x2c\x76\x9c\x86\x18\x30\x8d\x64\x22\xf7\x97\x98\x59\x12\xd6\xcb\xb4\xa0\xff\x23\x9e\xa0\xf0\xfe\x5d\x67\xaa\x3d\x7c\xdf\x61\xe5\xde\xd0\x2d\x25\x13\xc7\xca\x5d\x65\x83\xf0\xb6\xcc\x19\xa7\xd5\xcb\x5b\xf1\x70\x68\x26\x98\x58\x29\x0d\x55\x0d\xb8\xfe\xc8\xa7\x48\x96\x94\x97\x96\x0f\xc0\x2f\x06\xfd\x4f\x78\x00\xa1\x9a\x4b\xae\xc1\xfe\xaf\xb7\x54\xd3\xfe\x52\xe5\xa7\x16\xe2\x6f\x7f\x9b\x4c\xd2\xc9\x43\x96\xe3\x14\xe0\xe5\x18\xce\x65\xfb\xe7\xca\x47\xd2\xc3\x8f\xfe\x20\x78\x13\xc9\xb9\x63\x25\x8f\xcd\x99\x40\xf2\xa7\x02\xbc\xfa\x25\xdf\xa3\x21\xa0\x9c\xdc\xbf\xf6\x99\x45\x8d\x7d\xfa\x4e\xc1\x38\x2b\x21\x68\xb6\x05\xe4\xa6\x51\xef\xd2\xa1\xc1\x9b\x5d\xc1\x73\x79\xa8\x0c\xa2\x6b\x8a\x7e\x8d\xc3\xed\xa7\x60\x62\x39\x63\xfc\x46\xa4\x84\xc0\x27\x2a\x8a\x5f\x81\x7b\xda\x61\xa2\xe6\x6c\xbb\xe3\x52\xed\xa5\xef\x60\xc4\xbd\xac\x1f\xd1\xa1\x96\xa3\x8a\x9d\xf1\xe9\x7d\xfe\x4f\xa8\xa6\xf6\xc6\xf9\x75\xf9\xa9\x47\x53\x6e\xf2\x2c\x13\x6f\x66\x2b\x99\x54\x8b\x65\x3c\x10\xe1\x5f\xe9\xf5\xc7\x9c\x7f\x48\xb7\x7f\xca\x6f\xd6\x70\x13\x28\x5e\x3b\x6c\x01\x19\x83\xc5\xf8\x2f\x69\x1d\x18\xe5\x4c\xce\x7b\x02\x64\xc6\x1f\xab\xf2\x2e\x99\x8a\x0d\x90\x9c\xdf\x41\x83\xe7\x00\x81\x73\xf0\xdd\xb8\x2e\x8b\x4c\x1c\x22\x26\x0b\x6c\xca\x7f\x7a\xd2\xcf\x37\xf5\xa9\x3a\xc3\x99\xb0\xb1\xc2\xe4\x50\xee\x38\xac\xe0\x04\x36\x62\xce\x6e\xd3\x22\xcf\x60\x2f\x7c\x7a\xbf\x4e\xb3\xf2\xce\xde\xa7\x66\x98\x35\x4d\xab\xe5\xfa\x3c\x33\x1c\xf3\x30\x39\x84\x3a\x33\xdd\x6e\x69\x5a\xa5\x6c\x49\xc3\xb6\x32\x5c\xd9\xf3\x2c\xe5\xe9\x79\xbd\xae\x72\xf6\x91\xac\xd2\xa2\xa6\x8b\xe0\x2c\xf8\x6f\xd6\xe5\x0e\x57\xfa\x3d\x00\xa9\x06\x00\x52\x9d\x00\x48\x75\x0a\x20\x95\x01\xc8\xc9\x7e\x4b\xbb\x58\xaf\x77\x2b\x77\xa0\x1b\xb7\xbe\xbf\x48\xd3\x79\x17\x35\x6e\x30\x6d\xd4\xe9\x78\x03\x3b\xd0\x25\x40\xc5\xe3\xf7\x54\xe7\xb7\x67\xb2\xa2\xb5\x78\x97\xd5\xd6\x6d\x09\x46\x59\x50\xd0\x7c\xc9\x61\xdd\x7d\x97\xad\xdc\xf7\xb0\xc8\x62\x61\xc5\x64\x9d\x55\x15\xb7\xc9\x2a\xa7\x45\x16\x62\xff\xb2\xb7\x05\x1c\xf2\xf4\x4a\xb1\x30\xbd\x1e\x4d\x39\x44\x64\x96\x16\xd4\x33\xe0\xbe\xb5\x7e\xd6\xd6\x79\x8d\x39\xc2\x95\x20\x35\xd7\x9d\xf4\x98\x8f\xaf\xae\xc0\xb6\xfb\xea\xca\x04\x4b\xbf\xa1\x82\xe2\x95\xe6\xde\x97\xab\x98\x23\xe4\x98\x54\x33\x84\x70\x35\xce\x6b\xb5\xed\x04\xf6\x0b\xf2\xee\x6a\x0c\xd3\xd7\x3f\xa4\x77\x91\x83\x7e\xfe\x24\xd1\xbc\x4e\x59\x56\xd0\x57\x22\x8d\x74\xdc\xc3\xa6\x71\xa5\x7d\xa7\x68\xda\x1a\xb5\xb4\x87\x1d\x2a\x52\x50\x4b\xe5\x56\x60\xeb\xe9\x4d\x2a\x55\xe6\x67\x55\xeb\xad\xa5\xed\x52\x9a\xf9\x41\xa3\xe3\x92\x41\xaf\x51\xd4\x49\x88\x55\x08\x38\x4e\x4c\xb7\x1d\x1a\x03\xa2\xd6\xb4\xf5\xb9\x55\xb3\x9d\xd2\x0f\xc5\xae\x72\xe9\x62\xdf\x80\xa6\xce\x80\x44\x1d\x7b\x3c\xe2\xf7\xc3\x87\x23\x6b\xf3\xb6\x5e\x3b\x18\x69\x4f\xda\x19\x8e\xbd\x60\xc7\x63\x35\x5e\xae\xe9\xf2\xe3\x8f\xb9\xa0\x77\xd4\xca\xbd\xa3\x2b\x7b\x78\xb2\x15\x7b\x80\x32\xc5\xe9\xea\x1d\x5d\xbd\x86\x55\xef\x74\xa6\xda\x23\x2a\xb0\xf9\x4c\x37\xa2\x33\x2e\xc4\x04\xdd\xa4\xc4\x49\x50\x2e\x18\xfa\x69\xe3\x8a\xae\xa2\x28\xee\xd4\x37\x59\x08\x73\x41\xdf\xfa\x5c\x30\x5c\xf0\x98\xa2\x84\x8f\xd5\x6b\x48\xe4\x3c\x7a\x1b\x79\xa4\xe9\xfa\x4e\xa6\x18\x8c\x05\x34\xda\x0b\x5d\x0b\x94\xfa\xe8\xe4\x3e\x8e\x22\x49\xd0\x5b\x09\x43\x1b\xa5\x71\x18\x2d\x92\x4b\x92\xaf\xe2\x87\xb4\xcf\xac\x83\x73\x50\xec\x9b\xa1\xdd\x54\x46\x51\x69\x76\x93\xfe\x8a\x51\x63\xfc\x65\xef\x3b\x8c\xf6\x17\xb2\x9d\x8b\xb8\xba\xd7\x97\x0c\x29\xb1\xbf\x90\x76\x19\x81\x92\xb8\x3a\xe5\x4b\x03\x57\x7e\x57\x13\x08\x57\x8d\x61\x3c\x6d\x6c\x9f\x92\x14\xe4\x13\x5b\xc7\xd3\xb6\x09\xf2\xf4\x62\x9d\x17\x99\x1a\xff\x60\x2c\xa3\x83\x0b\x20\xe9\x0f\xca\x04\x11\xb2\xdd\x58\x48\xb7\x3d\x03\x91\x69\xdd\xe3\x26\x3d\x54\xb5\x9b\x47\x05\xe5\x52\x87\xce\xdb\xba\xf2\x69\xf3\x80\xe6\x95\xcf\xac\x6e\xf3\xb0\x49\xac\xb6\x4d\xf6\x3d\x81\xaa\x06\x36\x4a\xbe\x8a\xcb\x98\x22\x64\xf3\x95\x4a\x26\xd9\x1f\xf6\x77\x8c\xb0\xb8\xa5\xad\x31\xd8\xc5\xfa\x89\x31\x42\xfa\x4a\x7b\xb9\xd9\xf2\xbd\xf5\xa9\x23\x48\xe9\x0a\x3a\xbf\x97\x16\x23\x2b\xfa\xaf\x20\x57\x87\xc2\x4a\x89\x63\xe4\xba\xe9\x02\x25\xb3\xf2\x05\xb8\xf0\xe7\x14\x97\x2a\x01\x6e\x78\x50\x94\xd2\x32\xd5\x9d\xfe\x06\x99\x6a\x46\x98\xc3\xd8\xc3\x5b\x12\xb3\x96\x3d\x67\x3e\x7f\xd1\xc4\x33\xa8\x49\x8d\x29\xcb\x0c\x93\x0f\x6f\x44\x15\xc9\xc4\x63\x63\x83\xd8\x4b\xbd\xa9\x3c\xc3\x37\xe2\x8f\xd8\x22\x6d\x5c\xa2\x2b\x9d\x04\xe7\x63\x76\xd5\xfa\xf1\xb8\xba\x38\x34\x89\x46\x11\xae\xac\x81\xbe\xec\x70\x98\xaf\xf0\xdc\x92\xcc\x2e\x40\x7e\xc9\xcc\x56\xc4\x4c\xf3\x12\xd9\xd8\x90\x28\x20\xa4\x93\x5e\x92\xde\x8a\xc2\xf2\x8e\xc0\xcc\xbc\x08\xf0\x09\x0b\x01\x5f\x72\x5d\xe5\x27\x80\x51\x7c\xfd\x99\xee\x7f\x2c\xef\x18\xc2\xef\x89\xfa\xf9\xcb\x16\x7f\x20\x6c\x6c\x21\x71\xf8\x1f\x84\x8d\x2b\x9a\x66\x97\xac\xd8\xe3\x17\xe2\x47\x79\x57\xe3\x37\xea\xe3\x4d\xfa\x09\xbf\x23\xac\xc3\x2b\xc5\x3f\x13\x26\x99\x53\x3f\x12\xa6\x2e\xee\xd7\x9d\x49\x33\x3c\x0f\xed\x65\x0e\x71\x68\x16\x79\x50\x66\x6d\x2f\xaf\xf8\xa9\x31\x4b\xf3\x69\xd6\x36\xc4\xa1\xbd\xb0\xe2\xa7\x58\xd5\x10\x87\x66\x55\x43\x1c\xe6\xa2\xaa\xbb\xa0\x3a\x41\xfa\xd4\x52\x3f\xde\xd1\x55\x88\x43\xb9\x0c\xe2\x43\x2f\x43\x88\x43\x26\x47\x26\x17\x00\x3e\xe4\x02\xc0\x27\x2c\x00\x7c\xc9\x05\x90\x9f\x6a\x8a\x66\x01\xf4\xf7\x2f\xe0\x6d\xd8\x42\xa0\x71\xa8\x21\x2f\x3e\xcb\xbb\x5a\xfd\x79\x93\x7e\x0a\x71\xe8\xc2\x3c\xc4\x21\xf8\x02\xd2\x11\x4c\x17\x08\x7f\x7f\xea\xf2\xc0\xaf\x48\xda\xf3\x02\xa8\x1f\x2f\xfc\x13\x79\xd5\x9e\x9c\x5f\xc8\x2b\x75\x26\x7e\x23\xaf\xf4\x66\xfc\x0b\x79\x65\x38\xbd\xf8\x07\xb1\xb8\xd7\xed\xe2\xe6\x4a\xe0\x4e\x95\xc0\x7d\x69\xeb\x26\xe4\x6d\xcb\x3f\x75\x03\xa5\x89\x5c\xd9\xd5\x2f\xbe\x2c\xb3\x76\x4a\xe8\xdd\xcd\x96\x6f\xb5\xe5\x4a\x4f\x27\xf9\x4b\xb7\xc0\xf8\xde\x57\xc0\x2c\x33\xfe\xe4\xcb\x36\x4c\x38\x3c\xda\x22\xf1\xca\xed\x10\xfe\x6b\x0f\x10\xb0\x7f\x5a\x87\xd0\x4b\xfb\x19\x3c\x05\x09\x91\x6b\x68\x17\x0c\x14\x48\x38\x22\xe4\xe7\x93\xe5\x24\x8d\x83\x43\x49\xd0\x0a\x44\x6b\xb8\xfc\x9b\xe1\xd9\xb5\x65\x5a\xf2\x4c\x1c\x3e\x56\x53\xd1\xe6\x6f\xe0\xf1\xf9\x12\xe1\x5f\x89\x3c\x1e\x21\xfe\xcf\x8e\x33\xec\x43\x83\x5f\xe2\x43\x45\x57\x32\x58\xab\x8b\x98\x36\xc6\xdf\xe3\xcd\x45\xfc\x2b\xb9\xe9\xd7\x36\xf8\xa7\xaf\x36\xfe\x4f\xd9\x32\x60\x01\x08\x25\x9f\xa2\x28\x7e\x11\x45\xa3\x37\x17\xbf\x12\x80\x53\x5a\xd1\x34\x4c\xe2\x5e\xab\xea\xe8\x24\x6f\xb0\x2e\xf5\xb0\x2e\xf0\xaf\xc4\xd8\x3b\x23\x84\xbb\xd8\x97\xab\xd8\xe5\x06\x06\xb4\x54\x1d\x7e\x68\xf0\x6b\x84\xdf\x0d\x56\xff\xb5\x5b\x55\x6a\x46\x18\x1e\xc6\x2f\xd8\xbe\x2e\x13\x50\xc1\x96\xd7\x65\x52\x5a\x2a\x61\x7f\xc5\xf6\x25\x99\x64\x2d\xdf\xf8\x27\x9c\x67\xc9\x2d\x06\x61\xe6\x47\x2c\x2f\x2c\x7b\xf6\xf0\x82\xe8\xeb\xcb\xce\x50\x2f\x8a\xba\xb9\xec\x1c\xf9\x96\x98\x8b\x2c\x79\x8b\xd5\x45\x96\xbc\xc7\xd6\x45\x96\x7c\xc0\xfa\x22\x4b\xfe\xd1\xca\x7d\xfe\x82\xc5\x8a\x24\x2f\xb0\xb8\xb8\x92\x9f\x15\x7e\xf0\x63\x83\xff\x13\x21\xbc\x96\x31\x1e\x79\x13\xb7\x00\x6b\x7d\x5c\xce\x2e\x5d\xb9\xf0\xa5\xb8\xdd\xc4\xfc\x49\xf8\x5a\xee\xc8\xcb\x8e\xa4\xb8\xfb\x40\x24\xa3\xa9\xc5\xb9\x1b\x4d\x2d\xf6\xdf\x68\x2a\x47\x24\x0f\x9d\x68\xdc\x15\x2c\x77\xb0\xd1\xdb\xae\x18\x59\x54\xb0\xd0\xda\x07\xd6\x52\x1a\x4e\xf1\x04\xdf\xd8\xa8\x41\x2b\x7c\x96\x13\x6b\x50\x7c\x69\x0b\x9e\x5f\x36\x9d\xb0\x17\x74\x4c\x3f\x6d\xcb\x8a\xd7\x3d\x52\xa5\xe7\x30\xb6\x20\x3f\x8a\x3b\x92\x95\x77\x31\x3a\xdf\xcd\x8a\x3f\xf0\x28\x2a\xbe\x23\x93\x8b\x92\xd4\x94\x7f\x90\x4e\xca\xe2\x0a\xf3\xf3\x02\x25\x71\x29\xd9\x08\xec\x78\x8c\x6b\x42\xc7\xe9\x76\x5b\xec\xe3\x14\xe7\x08\xa7\x24\x87\x3c\x6d\xa8\x85\x73\x9c\xe2\x1d\xae\xc1\x9d\x2c\x21\x10\x51\x95\x4c\x27\x13\xd4\x0d\x6d\x84\x0e\x29\xbc\x51\x38\x6f\xe5\xbd\x78\x67\x8d\x4a\x55\x60\x51\x34\x2a\xf5\xa5\x51\x1e\x8f\x71\x77\x80\x08\xe1\x22\x8a\x06\xc7\x85\x6b\x43\x3b\x15\xe3\x65\x41\xd3\xca\x1e\x43\x19\x45\x31\x24\xea\x06\x4b\x84\xe5\x64\x51\x83\x8b\xf1\xaa\xd8\xd5\xeb\x6e\xf9\x81\x9e\xf0\x70\x3b\x9f\x1b\x57\x3e\x94\xfb\xc3\xf6\x8f\x18\x45\x46\x6f\x2b\x67\x01\xbd\x30\x02\xed\x84\x76\x62\xcd\x8b\x5e\x5c\x15\xfe\x5e\xf0\x72\x51\xc6\x2f\x02\xbf\x15\xd7\xf8\x1d\xb6\x25\xe4\xa9\xeb\x18\x70\x4e\x31\x37\xf2\x78\x15\x13\xf9\xe6\x82\x25\x0c\x9c\xb6\xef\x2a\x08\x12\x6e\x2a\xef\x64\x65\x5c\x89\x4d\x9a\x66\x19\x48\x0e\x7e\xca\x6b\x4e\x19\xad\x14\x34\x29\x4e\x55\xd0\x74\xab\xd7\xda\xae\x28\xbd\x27\x3d\xb8\x6e\x61\x4b\xeb\x63\x4b\x39\x93\x8e\x79\x5a\xdd\x50\x8e\xf7\x5d\x7d\x49\x99\x1e\x2e\x90\x11\x46\xeb\x80\xa2\x3a\x80\x73\x87\x4f\x16\x4a\xa6\x06\x1d\xd7\xbb\x6b\x19\xa2\x29\x9e\xe0\x27\x48\x43\x89\xcd\xe9\x02\x97\x64\x13\x57\x62\xa3\x58\xeb\x59\xe2\x9d\xeb\xe2\xb4\x14\x24\x5d\x7a\x3c\x1a\xc7\xa8\xa1\x82\xa3\xdd\x7c\x7c\xfe\x0d\xea\x58\x94\x17\x4e\xdf\x4f\x3a\xd9\xb3\x82\xd4\x17\x85\x33\xb8\x42\xa9\x5c\x9c\x7f\x83\x92\x02\xa7\x17\x3c\x2e\x0c\xff\xa8\xc2\x95\x09\x89\x9e\x40\x06\xce\xe3\x83\x1a\x48\x52\x37\x08\x35\x4d\x63\x41\x78\x69\x5b\x8a\x1c\x54\x1b\x09\xc5\xaa\x8d\x24\x07\xdb\x8f\xc7\x8a\xf5\xe1\xe4\x4b\x4f\x18\xcf\x8c\x1f\x8c\xaf\x8d\x17\x8c\x6f\x8d\x0f\x8c\xe7\xc6\x03\xc6\x57\xcf\x5a\x07\x18\xc6\xfd\xc5\xb4\xf5\x7e\x31\x05\x81\x3b\x84\xc0\x7b\x82\x10\x36\xa1\xf0\xba\x14\xa9\xa3\xfe\x68\x65\xe6\x2b\xed\x4f\xb5\xe3\xcd\x98\x93\xd1\x74\xc6\xab\xfd\x41\x86\x75\xea\xed\xed\x38\xe4\xb4\xe6\xca\x02\xaa\x14\xa7\x2a\xdc\xa6\x75\x0d\x02\xeb\x43\xc7\xd1\x08\x27\xa3\x09\x58\xca\x2c\x53\xbe\x5c\x8b\x0d\x66\x5c\x65\x12\x2e\x9e\x43\xd4\xc4\xa0\x2e\x60\x56\x04\xfc\xbf\x43\x6b\xc0\xd1\xbd\x1a\x62\x47\xb7\x7e\x8a\x0c\x03\x7a\xfb\x38\x96\xb3\x3c\x66\x50\xc5\x5c\xd7\xc8\xc4\xbe\x5f\x4b\x5e\x4f\xd6\xf2\x77\x1e\xcc\x99\x81\x86\x35\xb4\x6a\x88\x5e\xf4\x70\xf6\x0b\xf5\x37\x52\x63\x1d\x7c\xfa\x01\xad\x03\x27\x8b\x6d\x1e\x31\x46\x8b\x8d\xe3\xe6\x0c\xb3\x72\x3e\x33\x4e\x9e\x45\xa4\x31\x50\xb3\x16\xb7\x93\xb8\x28\xcc\x35\xcc\x66\xfd\xc8\x70\x0c\x74\x80\xe4\x86\x9c\xb3\x05\xc2\x85\x58\x1e\xe9\x35\x5d\x8a\x03\xe0\x1c\xdf\xc7\xa2\xb1\xa3\x70\x4b\xfe\x8e\xbe\x28\xa5\x17\x67\x8d\xa4\x5d\x8f\xdf\xee\x2a\x6a\x21\x68\x57\x2e\x82\xc6\x41\xc3\xfe\x52\x5e\x09\x64\x69\xe9\xe1\x5c\xfd\xfb\x7a\x00\xfd\xd6\xeb\x11\xc7\xfb\x90\x97\x31\x45\xc7\x63\x0e\xff\xa7\x71\xab\xd9\xfc\xf4\xf9\x14\x8c\xff\xe2\xa7\xcf\x9f\x28\xe3\xbf\xe7\x4f\xd1\xac\x45\xe2\xaa\xff\xba\xa8\xa7\x9d\x57\x2c\x1e\xe5\x51\x24\xb6\x62\x7e\x3c\x52\x14\x45\xad\xf6\xa0\xda\xbf\x59\xb9\x84\x5d\xe9\xa3\x7b\x90\x96\x8a\x8d\xb5\x4e\x02\xb1\x74\x12\x74\x1e\x2f\xb7\x24\x3c\x7f\xfe\xfc\xf9\xf3\xed\xa7\x36\x15\xa4\xe6\x24\x7c\x36\xb1\x13\xa5\x28\xaf\x9b\xaa\x03\xac\x90\x50\x3a\x93\x0d\xb1\x19\xd4\x75\x99\xed\xc5\x21\xa5\x2c\x03\xa6\x72\xcc\x11\xc4\xeb\x2b\x57\xab\x9a\x72\x40\xf3\xcf\xf9\x58\x86\xa5\x93\x3c\x04\xb7\xaa\xc4\x2b\x74\x55\x7d\xa9\xe5\x8d\x65\xb8\xf9\x95\xc0\xe7\x7c\xae\x6d\xa3\x88\x8e\x5b\x78\x5f\xd0\xe4\xd0\x22\x64\x8d\x78\xf6\x73\xad\x65\xd6\x2e\xac\x59\x87\xff\xba\x05\x1e\xf9\x95\x0a\xe5\xa5\x70\x3c\x8e\xd4\x73\xa5\xe1\xd0\x4f\x71\x57\x1a\xe1\xc7\x8f\xde\xef\x01\xf9\x7c\x3a\x6b\xd5\x2c\xcb\x8d\x3f\x44\xfb\x68\xc4\x41\x91\x34\x66\xa4\xc2\xa3\x09\x6a\x10\x66\x1d\x3d\x52\xed\xd6\x2e\xad\x6a\xfa\x9a\x81\x91\x83\xc3\xa4\x09\x6d\x85\xe4\x10\x1d\x8f\x13\x3c\x9d\xf4\xc3\x45\xc8\x41\xf5\xa3\xf7\x34\xe2\x96\x55\x1e\x9a\xad\xec\xee\x66\xc4\x8e\xda\xb3\x39\x07\x56\x62\x83\xdb\xd2\x39\xbb\xd1\xf7\xb6\xcb\x11\x45\x33\xe6\x54\xb2\xc2\xd2\x97\x31\x47\x67\x95\xd4\xff\x98\xad\xca\x2a\x96\x26\x0c\x1d\xa9\x32\x1a\xff\xb6\xa3\xd5\xfe\x3d\x2d\xe8\x92\x97\xd5\xf7\x45\x11\x87\x82\x2e\x3e\x5f\xe5\x9f\x68\x16\x8a\xeb\x65\x32\x4b\xff\x90\xab\xe7\x67\x96\x9e\x91\xa9\x1c\xca\x8e\x94\x71\x3e\x4f\x17\xe2\xe2\xd9\x56\xf4\xf6\xad\x1c\x46\x2d\x31\xfa\x1d\xc2\x22\xd3\x33\x2f\x6b\x88\x3b\x3d\x3e\x83\xea\x9d\x42\x9a\x15\x90\xe6\x74\x01\xd8\x71\xd3\x25\x31\xd0\xc1\x6e\x44\x2d\x81\xa7\x29\xd6\x36\xc5\x16\xda\x99\xf6\x9c\x2d\x9a\x16\x4c\xec\xd1\x60\xaa\xc8\x64\x56\xfd\x81\x69\x30\x55\x02\x4c\x6c\x5e\xdd\x03\x00\x17\x72\xf3\x6a\xa1\xc0\xf1\xfb\x54\x5b\x3d\x8a\xdf\xb5\x51\x3d\x2d\x8c\xea\xa9\xd4\x51\xfd\x6a\xf2\x8d\x51\x52\x9d\x7e\xdd\xaa\xa9\x3e\x99\x1a\x3d\xd5\xaf\xa6\xcf\x90\x34\x0f\xff\x6a\xfa\x8d\xe3\x08\xc2\x7a\xb8\xe8\xef\x0f\xab\x3a\x73\x99\x59\x52\x4f\x01\xcd\x74\x78\xdf\x75\x9e\xd1\xf7\xf9\x75\x01\xa6\x01\x19\xf8\x1c\x6e\xc3\xfc\x1e\x8f\x0c\x3c\x0f\x2b\xee\x93\x0c\x8e\x40\x2b\x1d\x46\xcb\x5c\xa6\x82\x60\x3a\x1e\x4b\x19\xcb\xa5\xdb\x22\xa9\xb0\xcd\xc2\xea\x36\x42\x72\x99\xbd\x29\xb3\xb4\xa8\xc9\x7c\xd1\x32\xc0\xa1\x5c\x9b\x94\xa5\x3c\x25\xf3\x45\x2b\xdc\x2c\x1c\x43\x3b\x85\x02\x66\x59\x1f\xef\xc3\x6e\x34\x1c\xd9\xd5\x38\x67\x19\xfd\x74\xb9\x8a\x29\xc4\x5c\x39\x9f\x42\x08\x3d\xad\x50\x3f\x73\xcb\x4a\xa0\xdb\x23\x95\x27\x52\x63\xb6\xdd\x49\x47\x11\x28\x94\x58\xc9\x35\x48\x60\xc7\x80\xd9\x8a\x22\x68\x66\xb9\xf4\x6f\x67\x6b\x46\xc5\xdb\x51\x55\xc8\x46\xfe\x04\x18\xc4\x19\xe8\x0c\x83\x29\x7c\xe8\x20\xd3\x13\x20\x75\xdb\x9b\x2e\xe9\x48\x7e\x11\xb6\x0f\x49\x32\x5f\x18\xbe\xcc\xa9\xc5\x8a\xa2\x3c\x2e\x05\xbd\xd2\x1d\x35\x8c\x42\xa7\x8b\x11\xca\x94\x52\xbc\x14\x2d\x6a\x2b\xde\xf5\x7b\x04\xac\x03\x6b\x23\xde\x4c\x03\x05\xb5\x79\xab\xd8\xf4\xd6\x3e\x7d\x86\xfe\x05\xc8\xf1\x7e\x7b\x8d\x40\x1d\x5a\x40\xb2\x85\xc0\x4d\xdc\xd9\xcc\x99\x61\xa5\x94\xba\x81\x7a\x5b\xe4\x4b\x1a\x97\xfd\x06\xf1\x14\x39\xfb\x42\x95\xe4\x22\x1d\x4e\x86\xbb\x87\x2e\xe2\xd3\x00\x4e\xe3\x12\xe7\xa7\x77\x55\xbd\x2e\xef\xda\x5d\x95\x3b\xbb\xaa\xb7\x32\x6a\x38\xcc\x0c\x13\x56\xc7\x4a\x45\xc9\xa9\xbe\xd2\x2a\x4f\xff\x04\x8f\x30\x8a\x47\x53\xac\x27\x33\xef\xcc\xea\x7c\xba\x70\x06\x61\x16\x3d\xaf\x3f\x94\xdb\x37\xa2\xa8\x6f\xe1\x0d\x7e\xd1\x3b\x6a\x4a\x92\xad\x7a\xeb\xe7\x9f\x4f\x17\x84\x10\x0a\x54\x0f\x6d\x62\x84\xf7\x64\x63\x31\x63\xf7\x9f\xc1\xe3\x73\x6d\x23\xa9\x1d\xeb\x7a\x53\x9f\x87\x08\x7d\x4e\xa8\x06\x3d\xa0\x6a\xa6\x09\x8d\xaf\x26\xdf\xfa\xed\x84\xee\xc3\x5e\xc1\x27\xc9\x97\xff\xf3\x7c\x53\x9f\x7f\xf9\x19\xe8\xeb\xef\x21\xdf\x4e\xd8\x3d\x4d\x8d\xbf\xd5\x67\x4f\x8d\xbb\x55\xf0\xb0\xba\x23\xe5\x90\x80\x66\x9b\xf2\x75\x88\x0f\x59\x12\xbe\xf9\x26\x98\x4e\x8a\x67\xc1\xb3\xe0\xd9\xf9\xb3\x7f\x86\x0d\xc2\xbe\x50\xfd\xc1\x50\x4b\xc6\xd8\x16\x53\xbc\x43\xcd\xac\x26\xee\x2a\xd6\x08\xd7\xad\x44\xe2\xfd\xed\xcd\xeb\x65\xc9\x42\xc5\xcc\xae\xad\x0d\x53\x3c\x3e\x0a\xaf\x6d\x60\xee\x7a\xed\xb7\x0d\xcc\x4b\xdb\x32\x69\x49\xe8\x58\x8c\xa0\xd5\x5a\x58\x11\xda\x2a\x18\x64\x44\x05\x5c\xda\x12\xda\x2a\x10\xac\x8d\xce\xd5\xe6\x73\xcc\xcb\x2d\xd9\xbc\xd3\xb5\x2b\x52\x37\xd2\x73\x23\x34\xd7\xd2\xeb\xfb\x82\xc6\x7a\xdc\x28\x54\x65\xc9\x9b\x41\x2b\xe4\xb0\x06\x84\x2f\x1c\x36\x46\x76\xdf\x76\x36\x96\x15\x3a\xc6\xd5\x87\x06\x5b\x4a\x25\x25\xc2\x15\x92\x22\x35\x4b\xd2\x56\xb6\x62\xb4\xad\xba\x7e\xd6\xb8\xa2\xab\x64\xd5\xe0\x0d\x08\x4f\x87\x06\xb9\x74\x67\x94\x2f\x4b\xd6\xfc\xcb\xe2\xdf\xfe\xab\xc2\xde\xce\x5c\xa3\x4c\x15\x64\xa8\xb2\xb6\xf5\xb2\xbf\xad\x59\x3c\xfd\x66\x62\x53\x90\x22\xe1\xd9\x7d\x6e\x16\xbc\xf4\xeb\xdb\xaa\xdc\xe4\x35\x15\x94\x61\x3c\xfd\x66\x8a\xc6\x94\x09\xb8\xc7\x08\x2b\xf2\x55\x15\x80\x2e\xc4\x74\xc4\xdf\xaf\x0c\x37\x48\x7a\x36\x23\x2c\x7e\x76\x6f\xf7\x8e\xc4\xac\x20\xa3\x29\xde\x8d\xaf\xbe\xfa\x46\x45\xad\x1b\x5f\x7d\x33\x85\xcf\x93\xf1\x10\x63\x3a\x4e\x8b\xe2\x1d\xfd\x87\xb4\xc1\xad\x8f\xc7\x34\x5e\xcd\xf9\x42\xe9\x39\xd0\x31\xf8\x00\x2b\xf2\x9a\x1f\x8f\x35\x12\xf4\x2e\xe4\x2a\x65\xfb\xd7\x19\x59\x9e\x9d\x09\xf2\x91\xfd\xc2\xe4\xeb\x9d\x5d\xc8\x12\x45\x79\x73\x43\x33\x32\x9a\xb8\xb9\x9d\xea\xb8\xed\x0b\xa1\xa4\x5b\x33\x3f\x55\xda\x22\xca\x00\xc3\xb1\xea\x46\x51\x2c\x3a\xfd\x93\x1a\x90\xf5\x7d\xa2\xc1\x04\xbe\xad\xa1\x1e\x8f\xf1\xb2\x64\x75\x59\xd0\xf1\x5d\x5a\xb1\x38\x54\x0b\x17\x18\x68\x05\xaa\xd5\x20\xce\xb3\x24\x08\xcf\xdc\xc6\xcf\x42\x94\x84\x08\x3b\x6d\x7c\x11\x04\x1f\xd6\x79\x1d\x6c\x68\xca\xea\x60\x5f\xee\x82\x65\xca\x82\xfc\x86\x41\x00\x33\xb6\x0f\x04\x02\x9a\x97\xbb\x5a\x7b\xc7\xab\x83\x72\xa5\x02\xaf\x55\x9b\x20\x7c\x5b\xd6\x75\x7e\x5d\xd0\xc0\x8c\x32\xe8\x8d\x2a\x0c\xee\x72\xbe\x0e\xf2\x2c\xf8\xa2\x37\xa2\x71\x28\x00\x47\x09\x3d\x1e\x0f\x0d\x2e\xa2\xa8\x02\xf9\xcc\x48\x3f\x5e\x13\xbc\x24\x13\xbc\x12\xe7\x46\xee\x25\xfb\xd9\x79\x02\x62\x9e\xab\x6f\x9f\x46\xd1\x6a\x4e\xc7\x57\xcf\xbe\x5e\xc0\x7e\x90\x9f\x0a\xf6\x17\x2c\x86\xdf\x28\x71\x84\x8d\xa6\x94\x0a\x2e\x85\x70\x46\x0b\xca\x69\xa0\x33\x50\xa3\xb6\xac\xb5\xe5\x19\x3a\x48\x3b\xdd\xab\x6f\x9e\xc1\x9a\x5e\x3d\xfb\x9a\x94\x67\x67\x58\x57\x22\x07\x33\x37\xd0\x86\x50\xe6\x32\x0c\xab\x5e\x12\x4b\x0e\xcb\x2d\xee\xb2\x1c\x21\x4e\x63\x86\x6b\x74\x31\x9d\x4c\x92\x27\xf4\x29\xc2\x72\x06\x52\x99\xb6\xc7\x86\xe9\xec\x85\x07\x2c\x84\xde\x16\x54\xed\x84\x38\x06\x59\xf3\xb8\xe6\xe9\xf2\xe3\xf1\xc8\x11\x3a\x0b\x43\x04\x68\x27\x8f\xc3\xbf\xb1\xd0\xcf\x8d\x70\x3b\x0e\x44\x83\xc8\xc3\x92\xd0\x84\x40\x87\x65\xd5\xe6\xd0\x20\x67\x35\x4f\xd9\x12\x74\x9b\x9b\x96\xf6\xff\xf6\xb9\xb8\x53\xe7\xef\xe8\x8a\x56\x94\x2d\x29\x44\x8a\xc3\xe2\x02\x95\x5f\xef\xc4\x5b\x01\x9f\x0b\xb1\x57\xa6\x33\x63\x2d\x08\x26\xad\xf2\x7e\xbb\x37\x56\x96\x33\x24\xeb\xe8\x52\x74\x48\x15\xfe\x7a\x3c\xc6\x79\x2c\x6e\xfa\xd1\x04\xe1\x74\xae\x93\x17\xc4\x12\x1c\x8b\xbb\x6e\x55\x56\xf1\xac\xfe\x83\xce\x9f\x69\xc9\x58\x2d\xe8\xa2\xfa\x8c\x4c\x71\x3a\xa7\x0b\x69\x83\x80\x70\xfd\x5d\x21\xab\x48\x04\x65\x82\x19\xd1\x35\xcf\xeb\x19\xff\x03\x9b\xf1\xb3\x33\x94\xce\xf9\x82\xa4\x73\x7e\x56\x2f\x66\x26\x9b\xd4\xb8\x26\x93\xa6\xd1\x09\x64\x22\x7e\x8b\x01\x4e\xfd\xbc\x3e\x1f\xbf\x82\xc7\xe8\xe0\x9c\x05\x86\xa4\x20\x1e\x62\xd1\xdd\xa6\x45\x5c\x21\x4c\x15\xd7\x9d\xd9\xaa\x03\x1c\x4f\x10\xae\x44\x8a\x29\xca\xf1\xb3\x09\x6a\x1a\xeb\xa1\x92\x2f\x26\x4e\xc9\x7c\x01\x03\x83\x11\x16\x64\x3a\x79\xf2\x15\x5e\x12\xeb\x89\x1a\xd9\x8a\xed\x49\x4d\x8b\x15\x5e\x91\xe5\xf8\xcd\x8e\x83\x4d\xc4\xe5\x75\x4d\xab\x5b\x5a\x1d\x8f\xcb\xf1\xaf\xf4\xfa\xcf\x39\xef\xe6\xcc\x72\x6f\xc8\xcb\xd5\x45\x9f\x6c\x9d\x62\x46\x18\xbd\x0b\x80\x16\xac\xba\xbc\xf9\x0f\xf4\x13\xd0\x44\x71\x18\xb6\xc1\x75\xc7\xa5\xec\x26\xae\xf0\x61\xb9\x4e\xab\x74\xc9\x69\xf5\x63\xca\x53\x89\x28\x38\x42\xc8\x73\x8e\x2b\xc9\xfa\xe0\xc0\xc1\x4e\x4a\xf0\x56\x08\x2a\x7f\xb4\xe6\xaf\x40\x27\x22\x07\xdd\xd4\x8f\xf4\x9d\x4c\x7c\x91\x16\xc5\xab\xaa\xdc\x08\xe0\x56\xa4\x6c\xb4\x8d\x0a\x66\xf1\x93\x27\x8f\x09\x67\x6c\x26\x29\x26\x58\xc6\xe5\xf8\xea\xab\xaf\xcc\x34\xb8\xb8\x1f\xc9\x14\xf3\xf1\xd5\xf4\x5b\x42\x31\x37\xd8\xd1\xb7\xcf\x6d\xc1\x49\xa9\x10\x9d\x2a\x86\xbd\x2e\xfe\x4e\x55\x2c\x06\xa9\x12\x42\xaa\x58\x62\x44\x32\x12\xc3\x44\x06\x61\x10\x00\x2b\xc7\x15\xad\xcb\xe2\x96\x76\x45\x24\xce\x01\x2f\x5b\x21\xb0\x92\x0c\x13\x4b\x32\xbc\x13\x89\x86\x4f\x65\x92\xe1\x00\x8d\x9c\xa4\x1c\x92\xa6\x76\x52\x2a\x92\x9c\x42\x32\x3a\x6e\x68\x27\x2d\x21\xa9\xaf\x1d\x72\x3c\x7a\x83\x6a\x22\x1d\x14\x59\x50\x10\x7c\x4d\xd9\x60\xbc\x5d\xc3\x8d\x02\xe8\xab\x5b\x9d\xda\x22\x69\xa7\x40\x7b\xeb\x48\x3c\x0f\xee\x4e\xad\x13\x02\x96\x29\xa5\xc0\x80\x3c\x36\xed\xd2\x69\x84\x89\x63\x39\xae\x8b\x7c\x49\xe5\xa6\xa1\xed\xb6\x75\x3b\xa1\x1d\x11\x5b\x8a\x77\xb0\x34\xbb\x28\xf2\x00\x63\xe7\x07\xc6\x0e\xc9\x3a\xce\x72\x46\xd1\x0e\xe0\x02\xcc\x93\x76\x50\x22\x49\x5d\x88\x4f\x09\x21\x3b\xb1\xfd\x66\x68\x27\x3e\xa6\xdf\xea\x41\x4e\x75\xce\x05\x8c\x48\x64\xa1\x24\x7e\xa2\x53\xa3\x88\xc5\x32\x11\x14\xf1\x03\xd9\x91\xeb\x5e\x2d\x4e\xc1\x2d\x07\x53\xe8\x7e\x4d\x76\x27\x57\xa9\x6e\xd5\x74\x44\x8b\x12\x4a\xb5\x5c\xab\x1d\x42\xa7\x3a\x68\x1a\x3e\x4f\x17\x64\x07\x7c\xa2\xf3\xf3\x3c\x8a\xc0\x3d\xa7\xda\x72\x5c\xfb\xec\xd0\xbb\x3b\x9e\x2f\x6c\xa1\x83\xce\x57\xd2\x04\xde\x4a\x13\xce\x90\xe8\x43\xb4\x2d\x76\x00\x16\xa7\x48\x2c\x87\x8f\xb0\x3e\xb1\x73\x44\xbd\x74\x49\x1f\x5a\x8b\x7a\x5f\x74\x73\x82\x63\xaa\x40\x01\x6a\x4e\xaa\xfd\x76\x71\x61\x47\xfb\xba\x02\xd6\x0f\x54\x94\xe8\x0c\x6a\xba\x7a\x76\x23\xbb\x96\xff\x26\xe3\x5a\x3f\x48\x49\xe7\x47\xb6\x0a\x57\x4c\xc9\x7b\xa9\x8e\x43\x11\xc2\x5f\xce\xff\x67\x7a\xfe\xcf\xc9\xf9\xf3\xbf\x9d\xff\xff\xfe\xdb\xff\x3f\xfa\xe2\xff\x3a\x1b\xff\xed\x7f\x5e\xfd\xfd\xf8\x7f\x2f\xbe\xcc\xc7\x9c\xd6\xa2\x29\x2b\xd4\xac\x41\x1d\xe2\xf0\xb5\x54\x10\x0d\xcc\x8d\x1e\xe4\x2c\x90\x0e\x7d\x03\xb0\x59\x04\xa7\xa2\xed\x33\x40\x5d\xe5\xa0\xc6\x45\x14\x94\x6b\xca\xfb\x07\xec\x20\x0c\xe6\x44\x1f\x18\xfd\xc4\xbb\x26\x1e\xe0\x85\x73\x9d\xaf\x78\x8c\x4c\x54\xd3\x92\xd1\xc4\xdc\x8e\x5c\x11\xc9\xbc\x69\x6d\x9c\x6e\xc7\x39\x97\x72\x79\x81\xd1\xcd\xdf\xef\x37\xd7\x65\x21\xd3\x78\x59\x2d\x88\x47\x47\x41\x10\xbb\x1d\xa4\x41\x72\xf0\xd2\x2d\x39\x34\xd8\xbd\xbc\x2f\x7c\x1b\x07\x62\xc7\x2b\x65\x0f\xca\x32\x50\x68\x69\x80\x7f\x89\x92\xae\x87\x1b\x6f\x03\x6e\x75\x3a\x9f\x2c\x30\x9d\x4f\x17\xa6\x11\x1a\x45\xad\x7a\xcd\xe5\x1d\xd3\x04\xbc\xa0\xf7\xeb\xd8\x27\xe1\xea\x8f\x68\xce\x4d\x7b\x1d\xbd\x3d\x90\x56\x5e\x97\xd9\xfe\x97\xba\xb5\xcf\x54\x48\xb3\x3a\x8c\x71\x67\xf7\x7c\x5f\x54\x34\xcd\xf6\x81\xf8\x3f\x44\xe2\xfd\xd4\xf5\xc9\x68\xd2\x89\x42\x6f\x9d\x42\xd5\x68\xef\x2c\x96\xac\x28\xd3\xcc\x5e\x1c\x0e\x2c\xcd\x7a\x57\x70\x04\x52\x50\x06\x04\x84\x5d\x42\x90\x33\x92\x40\x74\xd4\xca\x76\x2e\x1a\xf0\x2a\x2f\xe8\x3b\xd8\xd5\x02\xbb\x8c\xb9\x85\x0f\x88\xb1\x7f\x2f\xd7\xe5\x87\xdd\x6a\x45\x2b\x10\x4c\x38\xea\x83\x8f\x6a\x49\x20\x4f\x9d\x26\x0a\xa0\xeb\x0d\x86\x2b\x9a\xf9\x25\x67\xfc\x5b\xbd\x19\x14\x32\x26\x7f\x9a\x1b\x54\x49\x12\x79\x2b\x49\x3c\x03\x41\xa2\x3a\x47\xe3\x55\x55\x6e\x5e\xac\xd3\xea\x85\xc0\xd4\xf8\xbc\x5a\x58\xb8\xda\x3f\xca\x9c\x09\x64\xc4\xd1\xb3\x53\x4b\x0c\xef\x24\x6a\x25\xe8\xc0\x54\x9f\x68\x2b\xd5\xee\xe0\xc6\xd7\x7b\x4e\x7f\x92\x23\x6a\xa7\x5a\x53\xb9\x17\x9c\x69\x20\xcc\xc7\xd7\x00\xc2\xb6\xdb\x55\x47\x0b\xa8\xdd\x1f\x53\xc9\xd9\xbf\xca\x59\xce\x7f\x28\xb3\x7d\x17\x5b\x92\xb9\xa2\xfc\x6b\x96\x73\x42\x31\x45\xd6\x65\xe8\xa0\x26\xa6\xa4\x80\x3d\xa1\x33\x5a\xd4\x34\x10\x08\xd4\xf8\xba\x28\xaf\xa3\xe8\x87\xa2\xbc\xb6\xae\xed\xbc\xb6\x55\xd3\xe0\x66\xd4\x0d\x88\x92\x4e\x03\x82\xac\x17\x48\x6e\x14\xbd\x52\x5f\x0f\x6b\x48\x97\x76\x1a\x93\x86\x15\x6f\xd3\x2a\xdd\xd4\x51\xf4\xcb\xbb\x9f\xde\x5b\x09\x0f\x6b\x57\xce\x70\xcc\x4b\x75\x99\x22\xab\xf9\xb4\xdd\xc3\x51\xa4\xe7\x7e\xe3\xd6\xb7\xf6\x39\x59\x8a\xd5\x85\x4f\x25\x65\x69\xa1\x2d\xd6\x56\xc0\x22\x9e\x7b\xab\x2e\x64\xb7\x60\xbe\xea\xf4\x7b\x3c\x8e\xac\x62\x27\xa6\x14\x45\xa3\x3b\xf7\x51\x52\x57\xca\x8e\xd5\xbb\xad\xc0\xc1\x69\x16\xfc\xa0\x86\x13\xe8\x38\xe5\x43\xd3\x40\x0d\x40\xa1\x03\xa6\x30\x54\xc2\x5d\x38\xae\xb5\xb8\x34\x63\xe3\xeb\x42\x36\x79\x3c\xfa\x76\xd4\x85\x53\xad\xee\x55\x93\x06\x35\x5f\x6e\x8b\x34\x67\x33\xf1\x72\xd6\x94\x93\x5f\x3e\xbc\x3a\xff\x36\x54\x82\x29\xb3\x99\x94\x48\xc8\xfc\x96\x0e\x16\xef\x6b\xdf\x53\x07\x25\x9f\xbf\x7f\xd4\x20\x4e\x4d\x28\xdd\x6e\x8b\x5c\xc6\x27\xff\xf2\xd3\xf9\xdd\xdd\xdd\xb9\xd8\xf9\xe7\xbb\xaa\xa0\x6c\x59\x66\x34\xeb\xce\x13\x35\x58\x6f\x31\x79\x54\xc5\x37\xe9\x29\xc3\xe6\x90\x09\x02\x51\xea\x50\x3c\xee\x14\xfb\xcf\x8d\xc4\xbf\x3a\xa5\xdc\x8a\xd6\x26\x18\xaa\x7f\xef\x3e\xee\x34\xa9\x8f\x6d\x7f\x5f\x2e\xcb\x9d\x40\x86\x4a\x0e\x8f\x5d\xa0\x0b\x06\xa2\x56\x90\xd6\x81\x98\x7e\x8b\x26\x3d\x64\x1c\x62\x8f\x2e\x90\x7a\x8c\xed\x43\xe4\xc3\x4e\x7c\xa3\xbf\x50\xc0\x3d\x1e\x87\xc1\x66\xc3\x28\x31\xeb\x14\x2b\xb4\x76\x87\x1a\x75\xf4\xc5\x86\xfe\xdd\xab\x57\xff\xee\xf5\x2a\x06\x8a\xff\xcb\x96\x09\x8c\x72\x06\x97\xc9\x5d\x1c\xd8\xe2\xed\x03\x20\x73\xf5\xef\xa1\x45\x12\x1d\x68\xf0\xae\x0d\x78\xff\x51\x97\xec\x21\x35\xfe\xfb\xfb\xcb\x9f\xc7\xa0\x90\xa6\xf6\x45\xfb\x92\x66\xb6\x0c\x8f\x97\xbf\x6c\xb7\x46\x43\xdf\x04\xc1\x6c\xf5\x30\xbe\x3b\x9f\x5e\x38\x06\x1d\x5b\x85\x9f\x12\x7e\x3c\x2a\xa9\x0b\x23\x52\x79\x71\xd6\xe5\x4d\x6c\xbb\xc8\xa0\x97\x74\x70\x91\x3f\x79\xd5\xee\xaa\x82\x50\xf1\xbf\x12\xe9\x57\x34\xa3\x8c\xe7\x69\x51\x13\x6a\xff\xc2\x5c\xdf\x46\xc7\x63\x6c\x5f\x4e\x8a\x69\x43\xf5\x6f\xa4\xf5\x14\x28\x5f\x97\x19\xa1\xea\xc3\x28\x2f\x50\x91\x54\x66\x14\x2b\x8d\x62\xe0\x46\xeb\x67\xec\x78\x8c\x99\xfd\x1b\x3b\xf8\xa9\xfd\x68\x88\x71\x1b\xf2\xc4\xec\x35\x7b\xf8\xdc\xfe\xa5\xed\xff\xed\x94\xb0\xdc\xe4\x3c\xc4\x23\x33\x33\xf7\xd6\xf5\xcf\x93\x0f\xcc\x33\x8b\xb9\xfa\x54\x5d\xe9\x1f\xe1\x1f\x5f\x7e\x08\x91\x35\x7d\xd0\x16\xa1\xba\x14\x7c\xca\x60\x25\xe2\x77\x45\x57\xb4\xaa\x68\x25\x45\x4e\x31\x54\x16\xef\x9c\xd3\xe2\x9f\x5e\x7e\xff\x63\x27\x15\x45\x11\xf3\x2f\xba\x78\x92\xe1\x78\xa5\x45\x51\xde\xd1\x2c\x58\x95\x55\xf0\xc7\x97\x1f\x82\xb2\x0a\x44\x43\x81\x62\xf1\xd5\xe6\xb9\xd6\xf8\x5d\x6c\x1b\x0a\xad\x3b\x48\xb5\x3a\x54\x16\x95\x59\xe5\x9b\xd8\xf0\xde\xa3\x01\xd6\x3b\xdc\x4b\xc6\x97\xa6\x2a\x4c\x40\x09\x8f\x69\xa2\xd1\xa8\x44\x7c\xf9\xb7\xb3\x2f\x6f\x64\xa0\xf2\x92\x68\x14\x99\x84\xbe\x02\x33\xae\x29\xa6\x8c\x8a\xd7\xef\x97\x77\xaf\x8d\x08\x3a\xae\x10\xf6\xa4\x96\x48\x10\x20\x36\x09\xb9\xe9\x70\x22\x2d\xa5\x55\x18\xe8\x97\x7f\xab\x2e\xfe\xc6\xbe\xf4\xcf\xac\x33\xa7\xa4\x33\x27\x09\x1e\xb1\x51\x2b\xed\x10\x44\xcf\x28\x09\x4d\xb6\x99\x45\x85\xcb\xee\xe8\xf6\xea\x3e\x10\xfb\x92\x1c\xcc\x33\xb0\xdf\x52\xd2\xea\xb7\x1b\x53\xe8\x5d\x4d\x42\xf9\x37\xcc\x59\xc0\x2f\x74\x3c\x84\xe4\xc9\x64\x22\x4b\x95\x1f\x89\x55\xfa\x3b\xf2\x64\x32\x51\x07\x40\xa6\xfc\xe1\xa9\x2e\x29\x7f\x4b\x0c\xad\xfd\x76\xdb\x15\x29\x49\x78\xf9\x67\x35\x84\xa1\x43\x83\xcd\xe1\xe5\xe2\xff\xe3\x31\x0c\x3b\x54\x85\xc0\x0d\x05\x96\x4a\xc7\x2b\xca\x97\x6b\x09\xac\x5b\x72\xb0\x51\xa9\x24\xec\xa0\x52\x60\x17\x87\x35\x07\x21\x09\x25\xfb\x00\x52\xa3\x28\xd4\x5c\x04\xf1\x5b\xe6\x60\xf1\xa6\x26\x61\x4b\x1a\xea\xa2\xe2\x11\x54\xdf\x36\x51\x5b\xed\x6d\x6a\x58\x14\xc2\xa3\x49\x97\x3f\x3a\x9a\x36\x4d\x8c\xb0\x7e\x6f\x92\x50\x1f\x12\x39\x3a\x0b\x5f\x48\x42\xeb\xa9\x84\x5c\x50\x3d\x76\x10\x73\x24\xe6\x7d\x4d\xe6\xe1\x5c\x72\x39\x83\xd7\x9a\x70\x5b\x84\xd8\x24\xb6\xe4\x5c\x2f\xf5\x45\x91\x6e\xb6\x34\xeb\x65\xbe\x66\x7c\xfa\xb5\xb7\x8a\x27\xf9\x35\xe3\x4f\x9f\x78\x0b\x7b\x92\x5f\x15\x65\x3a\x98\xfe\xf5\x57\x2a\x7d\x81\x6f\x06\xd4\x92\x04\xac\xfe\x9a\xd3\xbb\x13\x88\x71\x83\xef\x88\x4d\xaf\xe4\xb5\xa8\x70\x3c\xfa\x1b\xbc\x36\xef\xab\xe2\xc2\x58\x6c\x5e\x45\x8f\x69\xf6\xb3\x78\x7f\x9b\x99\xcd\x2b\x94\x27\x91\xb8\xaa\xea\x94\x70\x29\x80\x61\x71\xa5\x6d\x43\x34\xd3\x69\x4e\x17\x33\xeb\x9b\x94\x17\xe5\x59\x88\xc3\xb3\x2a\xa9\x5c\x2e\xa4\x14\xd4\x3a\x40\x50\xb2\x5b\x53\x5d\xf4\xb2\x70\x6b\xdd\x50\x2f\x6b\x55\x8d\x48\xa9\xfb\xd5\x31\x45\x17\xd6\x20\xa4\x49\xbb\xd3\xce\x3a\xf5\xea\x3e\xe9\x4a\x22\xdf\xe2\x54\xc5\xc0\x89\x74\x5b\xa8\x9d\x91\x08\xb0\xb8\xe3\x06\xe0\xb8\x55\xd4\x8d\xd9\xf1\xd4\x64\x74\xb6\x83\xbc\x1d\x00\x1a\x1a\x09\x43\x51\x44\xb5\x8c\xc9\xf4\xc8\x16\x98\x29\xee\x98\xd3\xe3\x47\xba\xaf\xfb\xf8\xf1\x7c\xe1\x28\xa0\xf6\xd9\x6f\x92\xaf\x05\x6a\xa5\x4c\x20\x83\x5a\xa2\xd1\x36\x0c\xbc\xcb\xcf\x69\xda\x34\xcc\xfd\x0d\x53\xc6\xab\xfc\xb3\x5a\xb6\x06\x3d\x67\x98\x2f\xda\xf6\x1d\xb6\xaa\xd5\x59\x9f\xc1\xea\x19\x89\xdc\xe0\x57\x64\x1e\xfe\xf8\xf2\xa7\x97\x1f\x5e\x86\x18\xf0\x11\x2c\x11\x10\x1c\x5e\xbe\xfd\xf0\xfa\xf2\xe7\xf7\x21\x0e\xdf\x5e\xbe\x17\xe9\x6f\x7f\xf9\x10\x2e\x66\x5b\x9b\xe1\x5e\x94\x8c\x7a\xf0\x68\x71\x8d\x2a\x6b\xc4\x03\xf8\xe5\x77\xd9\x19\x0d\x6a\xf0\x4a\x2e\xb5\xd5\x1a\xd2\x69\x7b\x3b\x6d\xff\xc0\xee\xf6\x1d\x06\x55\x1b\x2a\xa8\x7d\xe3\xb0\xf5\x98\x75\x9e\x3e\xac\x9e\xb0\x44\x3d\x69\xd6\x2b\x87\xf0\xae\x2a\x12\xfd\xb2\x89\xb1\xef\xc7\x3d\xb6\xa7\x32\x35\x85\x81\x00\x72\xa7\xbb\x9f\xd8\x9d\x86\x61\x63\x73\xee\xe1\x71\x57\x9e\x6c\x68\xa3\x7c\x0b\xcd\x9f\x4e\xa6\xf8\xe9\xe4\x09\x7e\x3a\x79\x8a\x9f\x4e\xbe\xc1\x4f\x27\xdf\x2e\x66\xfb\x71\x45\x33\xf0\xfc\xdf\x39\x64\x5a\xb3\xf9\xd2\x22\x36\x2c\x54\xb1\xd5\x45\x68\x65\x0b\x2a\x42\x95\x40\x99\x42\x47\x30\xd7\x19\x7a\x0b\x94\x43\x51\x2e\x95\x1f\xd9\xa6\x01\xce\xef\x9f\x14\x06\x50\x62\x3a\x56\x02\x63\xb2\x85\xef\x7a\x5b\xb2\x9a\x92\x3d\x56\x4f\xbc\x3f\x04\x9d\x97\xed\x0c\x36\xe1\x0a\x7b\x82\x1d\x24\x6a\xe0\x1c\x7e\xfc\x8f\x37\x3f\xfd\x89\xf3\xad\xea\x6b\x96\x7b\x98\xd3\x72\x0d\xf4\xe8\x73\xcf\xa2\xe7\xbe\x15\xdf\xc4\xb9\xb8\x7d\xbf\x2f\x0a\x3d\x78\x35\xb9\x18\x09\x04\x06\x35\x33\xa0\xa0\x48\x58\xa9\xec\x5f\xde\xfd\x24\x5e\xf5\xfc\x22\x1f\x5b\x49\x09\x75\x19\x5b\xff\xe3\x5c\x8d\xf5\x5c\x94\xd7\xec\x5c\xd3\x48\xb7\x85\xa4\xfd\x14\xa3\x9b\xb1\x58\xed\x6a\x0c\x17\x74\xee\xe3\xb5\x57\x5d\xfe\xff\xcf\x94\xdf\x95\xd5\x47\x8d\xf4\x07\xab\x34\x2f\x68\x16\xea\x06\x94\x96\xcf\xef\x68\x62\x4b\x59\x5c\x6a\x9a\xaf\x04\xc2\x72\x34\x41\x38\xcc\xd9\xb2\xd8\x65\x60\xd8\x5e\xda\x64\x58\x14\xc5\x39\xd8\x8a\xbe\xb0\x48\x37\xa8\x61\x26\xbb\xdf\x4a\x58\xb4\x2c\xd2\xd8\x02\x05\x1c\x11\xc9\xcb\xc1\xa5\x01\xb0\x5f\xd6\x93\x8b\xa7\x4b\x01\x5d\x2e\xa1\x14\xf9\x20\x2c\x72\x58\xe6\xb7\x9f\x2b\xdb\x3b\xe3\x42\x6c\xff\xc4\x4a\x40\x72\xb3\xc3\x3e\x1e\x6f\xcb\x62\xbf\xca\x8b\x02\x4c\xba\x63\xaf\xa2\x48\x4d\x8b\xd5\x85\xf8\x2f\x51\x4f\xd6\xbf\xd4\x16\xb0\xb5\x5d\xfc\xe6\x6b\x49\x33\x31\x69\x8d\x08\xc1\x20\x9d\xb8\xc9\x5f\x4d\x10\xae\x65\x58\xca\x9d\xd4\x98\x44\x9d\x90\x93\xdf\xc8\x90\x93\xf1\x93\x6f\xbf\x86\xb8\x37\xe2\xda\x1b\xa7\xf1\x61\x57\xe5\x49\xf8\x25\x78\x4a\xff\xad\x08\xf1\xb2\x64\x8c\x2e\xf9\x87\xf2\x47\x7a\xfb\xa1\x2c\x8b\x5a\x8e\xa4\x18\xa7\x63\x69\x65\x1c\xa7\x9e\x80\x6f\xdf\x6f\xcb\xa2\x28\xdf\x56\xa5\x0c\x31\x73\x90\x76\x9a\x49\xd6\xe0\x7e\xe9\xa5\x0e\xe7\xd9\xcf\x12\x29\x3a\x6a\xe7\x50\x99\x95\xaa\x0e\x21\xca\x8c\xde\xcc\x0d\xe5\xaa\xc0\x0f\xfb\xd7\x59\x1c\x56\x65\xc9\xc3\x47\x2a\xad\x38\xe8\x0b\x45\xbc\x8f\xb0\x08\x5a\x0d\x2c\xd5\xe6\x6c\xa1\xd5\x7a\xc5\xc2\x6b\x26\xf3\x15\xfd\xc4\x29\xcb\x6a\x0b\x81\xd5\xb7\x94\x5a\xfb\xda\x31\xcb\x3f\x1e\x0f\xc6\x72\x3f\x99\x2f\x1a\x8b\x05\x04\x58\xb1\x45\xb5\x28\xe7\x30\xa6\x38\xe1\x8d\x8d\x26\xf7\xd1\x2f\xdf\xf8\xa3\x28\x06\x4b\x3b\x0e\xe3\xef\xf9\x48\xe8\xbb\x99\xd1\x76\x21\x35\xaf\x76\x4b\x5e\x56\x84\x37\x14\x8a\x61\x0b\xf9\x26\x4a\x79\x86\x5d\xa8\x49\x2a\x17\xe5\x0c\x9c\x51\x5a\xc5\xda\x6f\x2c\xb6\x5f\x85\x80\xc0\xca\x5d\x10\x4a\xfd\x5e\xe3\xc7\x40\xff\xb4\x51\x5c\x23\xc9\xc3\x8c\x4c\x71\xd5\x33\x73\x9b\xb1\x3f\x54\x33\x76\x76\x86\x0e\x96\x09\xdc\x9c\x2d\x8c\x1a\x44\x29\x21\xd4\xa3\x22\x5c\x80\x69\xdc\xb4\x94\x70\x2b\x05\xdc\xca\x85\x51\x8e\xa1\xcd\xe3\xb5\xb9\xc1\xcc\xe1\x6b\xed\xbd\xe2\xb9\xfa\x78\xfe\x0d\x92\x67\x3d\x25\x90\x0a\x27\xfa\xc9\x74\x82\x66\x7c\x2c\xde\xc0\x9f\x72\xf6\x91\xec\xcc\xa7\x32\x23\x14\x45\x9e\xca\x20\xe9\x4f\xa6\x5f\xcb\x43\xfe\xfc\x1b\x51\xe7\x35\x7b\x43\x37\x65\xb5\x7f\x91\x2e\xd7\x94\x2c\xdd\xdf\xca\x33\x07\x04\x98\x9d\xf1\xf1\xcd\x6f\x05\x31\x56\xac\x90\x97\x11\x18\x23\xde\x0e\x79\xa2\xe0\xe8\xd0\xca\xfe\xc1\x39\xd0\xa1\x69\x6d\x03\xd5\x3b\x82\x2b\x60\x09\xe4\x60\x0a\x68\x33\x1e\x57\xc4\xb0\x0f\x70\x46\xb8\xbc\x6b\x95\x67\x01\xbc\x25\xda\xc6\x1b\xfc\xb7\xe2\xb5\xf8\x2d\x46\xfd\x4e\x21\x43\x35\xde\x10\xf0\x66\x09\x8a\x97\x7b\x9d\x2d\xc8\xed\x7d\x14\xad\xfb\xfc\xe8\xd7\x6c\x59\x6e\xb6\x29\x07\x5d\x54\x28\x1b\x2c\x4b\xb6\xca\x6f\xb4\x47\xfc\xe0\xf5\x2a\xd8\xc2\xc5\x95\xb3\x9b\xe0\xef\x50\xe4\xef\x01\x5f\x53\x66\x0a\x52\x50\x30\x96\x85\x68\x66\x18\xb5\x52\x8d\xf8\xef\xee\xf8\xfe\x0e\xd9\x34\xcd\xc6\x21\x9a\xed\x8f\xc7\x78\x4f\xd6\x17\x62\x3c\x9d\x65\x88\x0f\x6e\xbd\x64\xdd\xa0\xc4\x53\x4e\x02\xf6\x96\x8c\x46\xdb\x28\xaa\xe5\xd3\xda\x02\x28\xce\xe3\x43\x83\xb7\x58\x36\x96\xec\x1b\xf0\x96\xb2\xb9\x28\x34\x88\xe2\x0d\x4a\xda\x1f\x7d\x1d\x2e\x3a\x86\x9b\xff\x2f\x3f\x41\x01\x19\x67\x95\x49\x8c\x00\x52\xa4\x23\xd1\x6e\x30\x49\x5d\x57\xe9\x60\x43\x2d\x8d\x31\x4a\x53\x96\x6d\xca\xd7\x26\xc0\xb5\xd2\xcf\x2d\xca\x9b\x38\x9c\xff\x51\xf6\x17\x00\x72\xb3\x48\x82\x37\x2a\x1a\x78\x10\x9e\xf1\xb3\x10\x07\x3f\x69\xcc\x33\x08\xcf\x98\x48\x78\x9b\xf2\xb5\xf8\x51\x81\x09\x79\x14\xb9\xcd\x69\xf4\x45\x37\x17\x9e\x01\x9d\x77\x43\x46\x23\x16\x45\x02\xa0\xa9\x7a\x9d\xc4\xd1\x89\x07\x71\xd3\x74\x2c\xb5\x38\xc1\x14\xc1\x94\xd2\xe8\xe9\x90\xbc\x82\xfa\x34\xb5\x54\xa3\xa0\x0f\xd5\xc9\x46\x87\x12\xe8\x7b\xf0\xe6\xb3\xac\xf2\x6b\x1a\x4b\x9d\x9b\x6a\x2c\xfe\x48\xfd\xaf\x0a\xe9\x68\x3b\x2a\x2c\x85\x4e\x5d\x1a\xef\x71\x63\xfd\xa9\xf3\x1a\x04\xfa\x9a\x7c\xb9\x8e\x3b\xb5\x1c\xcd\x50\xf0\x4d\xbc\x63\x6d\xef\xa0\xb4\x01\xf1\xa3\xe9\x5d\xd0\x5e\x31\x12\x2d\xa8\x8e\x47\x0b\x33\xb0\x0f\x6a\x92\x81\x7e\xbc\x75\xae\x93\xf2\x78\x0c\xeb\x74\x43\xcf\xcb\x2a\x07\x3f\x9b\x1a\xdd\x16\xaf\x5c\xd3\x20\x7c\x45\xec\x95\x00\xed\x89\x78\x7e\x8d\x6f\xf0\x2d\xbe\x5b\x8c\x57\x79\xc1\x69\xe5\x01\xe4\x68\x44\x1b\x64\x11\x51\xad\xe3\x74\xbd\xe9\x71\x91\xb3\x8f\xc9\x55\x83\x24\x13\xbe\x31\x3e\x3b\xc0\xa1\x0d\x6f\xe2\xd6\x7c\xdc\x32\x72\xd9\x7e\x96\xeb\x83\x9e\x45\xf5\x13\xaf\x45\xf5\x13\xdb\xa2\xfa\xc9\x22\x49\x8d\x85\x34\xae\x49\x57\x15\x09\x17\x64\x4e\x17\x78\x49\xce\xa7\x78\x45\xe6\x0b\x9c\xe9\xb2\x5b\xfd\xb1\xd6\x1f\x1b\x91\xbf\x17\xff\xdd\x12\x3a\xcb\xca\xc3\xf2\xec\x6c\x26\x59\x8b\x4b\x42\x88\x76\x0c\x85\x6f\xc8\xb5\xf4\x06\xb2\xd2\x6f\x62\xbe\x8a\xaf\x81\x7a\xdc\x12\x71\x71\xef\xb5\x65\xa9\x6c\x38\xd9\xcc\x37\xad\x91\x24\xce\xc8\x1a\xaf\xc9\x7e\xbc\x2d\xb7\x31\xc2\x37\x50\xaf\x46\x19\xc9\x94\xb6\x8a\x52\x3f\x10\x1d\xdf\x91\x43\x63\x1e\xd6\x2b\xf1\xb0\x66\x28\xeb\xa2\x1e\x57\xe2\x09\xbd\x9b\x5f\x2d\x48\x36\xbf\x5a\xa0\x59\x46\xee\x1a\x5d\xe7\x92\x4c\xf0\x4b\x32\x99\xbd\xfc\x83\x19\xeb\x4b\xf1\x76\x8b\xbc\x4f\x64\x35\x7f\xb9\x98\x4f\x16\xf8\xa3\xfc\x9a\x2e\x66\x82\xc6\xf8\x74\x4e\x2e\x11\xae\xa3\x48\xa1\x1e\x1f\x2f\xe2\x4c\x9b\xa7\x7e\xc2\x53\x84\x2f\xcf\xce\x50\x92\xcd\x3f\x2d\xc8\xc7\xa6\x59\x92\x4a\x12\xcb\xb8\x20\x15\x70\x92\xf0\x8a\x54\x63\x9a\xe5\xbc\xc6\x35\x64\xc2\x5a\xe0\x0a\x5c\xa0\xd3\xdb\x46\x2b\x57\x6c\xc9\xfa\xa2\xbe\x58\x26\xc5\x7c\xb9\x50\x0a\x6f\x58\x75\x19\x67\x64\x7d\xb1\x9e\x6f\x17\xc9\x2d\x3a\x1e\xcd\x83\x98\xa1\xa5\xa0\xbb\xd8\x8e\xce\xd6\x51\xb4\x91\x5c\x9c\xad\x44\x16\xdf\x6a\x1b\xae\x7c\x15\x8f\xdc\x5d\x90\x49\x95\xd6\x51\x29\xbe\x3c\x8f\x98\x24\xe4\xbf\x7f\xff\x21\xf8\xb9\xcc\xe0\xb2\x04\x49\xa5\x54\x9d\xc8\x57\xd0\x00\xec\x83\xf7\x24\x8f\x39\xce\xc6\x1f\x73\x96\x61\x29\x00\x7e\x2f\xfd\xc3\xbc\x25\xef\x35\x46\x93\xe1\x2d\x5e\xe3\x0d\xde\x23\x44\x08\xd9\xa1\xeb\x8a\xa6\x1f\x8d\x1e\xf3\x5b\x39\x94\x6b\x74\xd8\xc8\x0d\x30\xd3\x53\x6a\x1a\xa3\xec\xa2\xf7\xfc\xdb\x28\x8a\x57\x8a\x57\xb5\xc5\x6f\x17\x08\x8f\xae\xcd\x5c\xde\x22\x4f\x1b\x19\x79\xdb\x34\x8d\x01\xd8\xdb\x28\xba\x89\xa2\xb6\x89\x6c\x81\xf0\xf5\x85\xaa\x95\xc4\x15\x39\xa8\xd5\x49\x6a\x0c\x8b\x98\x2c\xb1\x58\xc2\xa4\xc0\xb0\x80\xc9\x0a\x8c\xd2\x93\xaa\xe9\x1d\xad\x4c\x1c\xad\xfa\x22\x4b\xd8\x5c\x02\x64\x71\x3c\xce\xed\x83\xb6\x8e\xa2\xbd\xec\x78\x8d\xf0\x9a\x64\xa8\xb9\x5b\xe7\x05\x6d\x67\x57\x99\x8b\xc7\x3e\x4b\x51\x14\xdf\x92\xd5\x7c\xd5\x1e\x98\xf9\x74\x81\xf0\xad\xdf\xe4\xe1\x87\xb2\x2c\x68\xca\x62\x1a\x45\x1e\x55\x17\x18\x57\xd7\xa7\x49\xeb\xa2\x8f\xce\xf9\x42\x49\x99\x04\x48\x59\x14\xf9\xb4\x89\x8d\x38\xdf\x18\x0c\x5f\x54\xe3\x82\xa6\xb7\xe2\xa9\x80\xd8\xe2\x43\x7a\xc8\x46\x0b\xbe\x6c\xcc\x89\xce\x09\xbb\xa0\xaa\x3a\x6d\xab\xe7\x52\x19\xd6\xd3\x48\xde\xea\xc2\x4b\x2c\x36\x57\xa3\xf6\x15\x4e\x8d\x96\x7c\xd3\x34\x7c\x9c\x2a\x23\xe7\x94\x1c\xc0\x6a\x72\xbe\xc0\x3f\x2a\xa2\x2e\x99\x87\x80\x59\xcb\x18\x46\xe1\x02\x5f\x6e\xa9\x44\xda\x7e\x34\xc9\xc9\x5c\x1b\xa1\x42\xa8\xdd\xeb\x82\xfe\x68\x55\xc1\xa1\xc4\xae\xf2\x5b\x30\x70\x95\x16\xa1\x79\xc9\xde\x53\x1e\x2e\xf0\x5f\x7b\x35\x92\xb9\x69\xa6\x75\xc8\xec\x78\xad\x6e\x6b\xe9\x9e\x17\xf8\xbd\xd5\x6c\x32\x6f\x7b\x11\x43\x7e\x95\xd3\x22\x4b\xe6\x61\x5a\xe4\x69\xdd\x5a\xcc\x9a\xc7\xe1\x9e\x21\x7e\xaf\xca\xd9\xd3\x94\xc3\xd0\x64\xf2\xfb\x6d\x45\xd3\xac\xcd\xb7\x5a\x5b\xe0\xd7\x10\x6f\x4d\x17\x4d\xe6\x30\xa5\x17\x25\xcb\x60\xb6\xf7\xf4\xad\xab\x3d\x1c\xd8\x8f\x69\xfd\x35\x53\x2e\x6e\xe7\x0b\x0c\x02\x25\xf3\x4b\x0a\x72\xcc\x4f\x75\x7c\xcc\xef\x9f\x77\x45\x61\x7e\xbc\x64\xbb\x8d\xf9\xf1\x53\x5e\xeb\x56\x24\x98\x60\xcf\x00\x89\xa6\x93\x41\xa3\xba\x4d\xd6\xab\xd3\x81\xed\x8f\x7a\xdc\x6d\x56\xbb\x60\x0b\x2c\xf6\x69\x06\x11\x6b\xcc\x16\x10\x5d\xab\x14\xd8\x35\x0b\xfc\x73\xc9\xc4\x48\xdd\xc4\xf7\xcb\x35\xdd\xa4\x0e\x40\x1d\x18\x95\x7a\x83\x83\x71\xae\xbd\xe3\x45\x82\x53\xcf\xb4\x98\x16\x69\xd5\xcb\xcd\xa8\xc0\xef\xb6\x6a\x1d\x7c\x5b\x43\x02\xe0\x61\x15\x21\x50\xd8\x2a\x5d\xd2\xde\x76\x35\xf0\x04\x48\xde\xdf\x92\xbd\xef\xf5\xf1\x72\x37\xec\x76\x27\x17\xeb\xfe\xb6\x7c\xc7\xb3\xd7\x9c\x1a\xf8\xa3\x01\x64\x4d\xed\x17\xe6\x83\xff\xfd\x0d\x70\xb5\x86\x62\x8f\x7e\x46\x75\xb3\x83\xcd\x1e\x7f\xe4\x0a\x03\x2c\x1f\xb3\xcc\xfe\xe9\xb7\x3b\xec\xe5\x27\x4e\x59\xed\xdc\x03\x03\x5b\xca\x53\xf2\x01\x7b\xc8\x59\xad\xd3\x9d\xf9\x96\xe7\xbe\x1a\xdd\xf5\xb8\xaf\xbc\x59\x80\x0e\x20\x1f\x3c\x32\x73\x8d\x3c\xee\x5c\x18\x42\x3a\x5c\x34\x78\x47\x0e\x8f\xf1\x3c\xac\x04\x44\x74\xdc\x8e\x28\x8a\xec\x5f\x5a\xb7\x5d\x3b\x4d\x6b\x5a\xc2\xca\x2a\xe4\x53\x88\x61\x73\xe9\x66\x42\x0a\x4c\x17\x8a\xa1\x19\xd7\xe3\x14\x41\xbf\xe0\xdf\xcd\x8a\x2c\xdc\x71\x65\x0c\xe3\xea\xb3\x8d\xf0\xc8\xee\x58\xa1\x06\xca\xda\x9a\x91\xd1\xe4\xc1\xc3\x03\xd5\xf4\x8f\xf9\x56\xba\xda\x6d\x07\x7a\x3c\xda\xb2\x0a\x3b\xc7\xa0\x58\x63\x03\x7d\x40\x0f\x4b\xa7\x94\x40\x63\xc0\x9d\x92\x86\x9c\x97\xc3\x54\x89\xb1\x05\x6c\xb7\xb9\xa6\x55\x20\x90\x1c\xdd\x22\xa8\x67\xf1\x35\x0d\xfe\x23\x3c\x2b\xcf\xc2\xc0\xcc\x62\xac\x24\x44\x39\xa9\xe6\x13\x40\x96\x46\x39\x74\x2b\x06\xbc\x0a\x47\x84\xe4\xf6\x58\x07\x49\x02\xdd\xd3\xbd\x1d\xa5\xd0\x91\xf2\x09\xb2\x23\xa3\x29\x38\x2b\x8e\xa2\xd0\x7e\x60\x05\x8c\x52\x89\x92\xee\x48\xaa\x20\xa0\x89\xa1\x50\xa3\x3e\x62\x74\xaa\x54\x6f\x5c\xdf\xdf\x37\x9e\x60\xb3\xab\x79\x70\x4d\x83\x34\xd0\x58\x44\x50\x56\x41\x1a\x5c\xcb\x71\x04\xd0\xa9\x18\xb5\xbd\x61\xe2\x1d\xe1\xf3\xd4\xde\x80\x27\xc8\x24\xd3\x6e\xa5\x2d\xb6\x33\x41\x97\x7a\x20\xd3\x98\x3d\x53\x46\x51\xbc\x23\xa3\x1d\xc2\x3b\xd0\x5a\x1c\x4d\x41\x61\x8b\x0d\x86\x97\xb6\xd0\x19\x71\xc4\xec\xdf\xed\x8f\xd6\xf1\xda\x05\x18\x5c\x6b\x5f\x73\x43\xa5\xbb\x8c\x36\xd9\x9d\x55\x35\x07\xf5\x0d\x34\xae\x68\xb6\x5b\x52\x3f\x3b\x8b\xea\xc2\x1c\x35\x78\xbe\x40\x28\x99\xd3\x85\xdf\x18\x88\x8e\x2d\x0c\x7b\x98\x07\xf3\xf0\xf9\x36\x68\x60\x0e\x00\xbe\x47\x0e\xfc\xe4\x80\xee\xb9\xe1\xbe\x9b\x0c\x0f\xc5\x2e\xfe\xd8\x21\x0d\x36\xd9\x6e\xcd\x8e\x19\x94\xd5\x5a\x1a\x73\x34\xec\x7e\xc0\xd5\x1e\x6e\x50\xc3\xc7\xd7\xd2\x81\x00\x04\xc3\x4e\x21\xfe\xf5\x92\xa4\x98\x8f\x33\xb2\x33\x52\x80\x67\xdf\xde\x27\xe6\xf2\xc7\x14\xb0\x75\x0f\xbd\x86\xc4\xf2\x8e\x5e\x6e\xb6\x09\x37\xfc\xfd\x50\x9d\x52\xbb\xdc\x78\xb9\x5f\x16\x14\x02\xf9\xc9\x2f\xe0\xfd\x2f\x37\x5b\x5b\x7c\xd5\xf7\x00\xc0\xfb\x49\x96\x3e\x00\x38\x02\x63\xda\xb2\x70\xce\x16\x0d\xce\x65\x62\x65\x12\xab\xd6\xff\x1c\x05\x07\x68\x4d\xd3\xc4\xd0\x33\xc2\xa5\xa5\x66\x63\x56\x83\xc6\xf2\x1d\x02\xa6\x36\x2f\xff\xfb\xfb\xcb\x9f\xfd\x04\x75\x9b\x1b\x73\xa2\x7f\xc4\x48\xd9\xff\x4e\x46\x84\xc8\x86\x42\x79\xe5\x87\x7d\xeb\xeb\xbc\x7e\x25\xce\x95\xe8\xf1\x22\x0c\xcf\x78\x12\x8a\x47\x31\xb4\x8d\xbe\x47\xfd\x5a\x1d\xa6\x0e\x47\xda\x79\x81\xa8\xe7\x32\x37\x38\x92\x82\xb0\x94\x84\xf3\x10\xe7\x64\x32\xcb\x5b\x53\xb5\xfc\xec\x0c\xe5\x51\x14\xa7\x67\x24\xc4\x21\xc2\xe9\x19\xa1\x31\x9f\xe7\x0b\x74\x3c\xaa\x81\xe8\x2d\x79\x16\x2e\xc2\xa6\xb5\x80\xd7\x43\x69\x87\x0b\x3e\xf1\x4a\x5b\xdb\x04\x5c\xa9\x0f\x0c\x39\xbc\xba\x82\x4d\x70\x75\x05\x0a\xc8\x1e\x0d\xe6\x17\x25\x83\x10\xb7\xec\x26\x58\xe6\xd5\x72\x57\x88\x7d\x0c\xf2\x45\x90\xb4\x94\xd0\xa2\xf1\xbc\x59\x6a\x1d\xab\xf3\x29\xae\x89\xed\x56\x14\x8e\x52\xc5\xe3\x2a\x8a\x2a\x31\xaa\x99\x82\x86\x06\x46\x6d\x03\x43\x05\xcc\xa8\xe7\xf9\x02\x2f\x01\x16\xc5\x02\xcd\x96\x02\x44\x2e\x98\x3a\xd3\x29\xd0\x59\x98\x84\x67\x4b\x23\xf5\x2b\x35\x9b\x71\x87\xa7\x08\x87\x87\xf0\x2c\x3d\x0b\x9b\xb0\x69\xe2\x9e\x91\xf1\x03\x59\xca\x1c\x57\x62\xaf\x4a\xb4\xcd\xbe\x8d\x07\xb0\x1c\x0f\x17\x44\xa2\x36\xfe\x07\xf9\x55\xb9\x63\x59\x90\x06\xe1\x19\x1d\x1b\xfa\xf2\x2c\x0c\xcc\x77\x78\x16\xcb\xdb\xeb\x22\x04\x5b\xe3\x2c\xf8\x42\x94\x6d\xef\xb3\xb3\xf0\x8b\x30\x09\x43\x74\x16\x8e\x83\x9f\xcb\xb6\x62\x1d\xa4\x15\x35\x7a\xe8\x77\x6b\xca\x82\x5d\x2d\x96\x35\x0d\x56\x8a\x77\x10\xa4\x75\x90\x06\xe0\xb0\x75\x1c\x5c\xb2\x62\x6f\x72\x9c\xca\xe2\xb5\x0f\xfb\xfc\x86\x76\x5a\x10\xb6\x52\xfa\xac\x14\xb7\x95\x4f\xad\x43\x06\x73\x3c\x8d\xaa\x49\x58\x84\x67\xba\xc4\x59\xd8\x8e\x67\x1c\xfc\x5d\x7f\x0b\x02\xff\xef\x06\x4f\x31\x72\x3f\x98\x21\x5f\xd3\x8a\x06\x79\x0d\x3a\xf8\xf4\x53\xba\xe4\xc5\x3e\x98\x9a\x66\xc4\x4c\x98\xc4\xb4\xac\x07\xc1\x48\x24\x0e\x0d\xa6\xf8\x60\xad\x72\x32\x3f\x88\xf9\x25\xde\x55\xc5\x06\xd4\x49\x08\x30\x0c\xb1\xfd\xec\x26\xaa\xaa\xcd\x7f\xb2\x4a\xb4\x6d\xbb\xbc\xa2\x50\x3a\x3c\x53\x79\xd2\xdf\x9b\xbc\x51\x59\xd3\x2c\x9a\xc6\x42\x53\xac\x81\x22\x78\x8f\x52\xe3\x92\xf0\xdf\x55\x66\xff\xc8\x23\xea\xc5\x7f\x6c\x8c\x6d\x58\x6e\x05\x0c\xdf\x0e\xe8\xad\x0d\x3d\xaa\x62\xee\x92\x54\x98\x03\x6a\x67\xf0\x17\x2f\x37\xd9\x8b\x38\x74\x9c\x70\xb7\x43\x18\x51\x45\x53\xc8\xbf\xe0\xdc\xd4\xa2\x2a\x8e\x47\x28\xc2\x69\xcd\x8f\x47\xf5\x11\xc3\x28\xfa\xee\x9d\xfa\xe4\xdb\x68\x8a\xb0\x05\x98\x5a\xb2\xa8\x41\x4d\xc5\x02\xd0\xc0\xd8\x42\xe0\x18\xd9\x00\x09\xaf\xae\xc4\x82\x02\x45\xdc\x21\xd5\x1a\x24\x66\x60\x35\x0a\x77\xc1\x1e\x35\x4e\xa2\xef\xc2\xec\x76\x73\x21\xde\x6e\xbb\xe9\x71\x91\xd6\xfc\xb5\x7a\xdb\xc2\xab\xab\x10\x4f\x50\x17\xbf\x8d\xa2\xbc\x83\xb3\xa3\x24\x74\x79\xab\xf6\x44\xee\xad\xec\x80\x37\x35\xe0\x1d\xd9\x1b\xab\xeb\xb7\x76\x70\x91\x03\x1d\x53\xa7\x71\xcc\xc3\x75\x3b\x64\x98\xbe\x50\x28\x8c\x84\x10\x6c\x0d\x31\xfe\xe3\x71\x24\x36\x03\xef\x93\xe5\x6a\x2c\x15\xce\x49\x69\x79\x78\xb1\x4b\x12\xee\xd0\xe9\xfd\xb3\xa1\xe2\xad\xe4\x56\xfd\xea\x78\x14\x1d\xb2\xe3\x31\xae\x40\x55\x90\x37\x08\x57\x52\x35\x8f\x37\x27\x88\x00\x90\x0c\x63\x7e\x72\x0b\x70\xb3\x05\xcc\x04\xa3\xa8\xbb\x76\xce\xdc\x9d\xa5\x3a\x1e\x61\x79\xba\xcb\x67\xdb\xf1\xec\xec\xb7\x5c\x31\x45\xd6\xe3\x14\x59\x9e\x09\xd8\xe9\x77\x9d\xa3\x83\xbf\x97\x4a\xd9\x39\xc4\x9b\x71\x8e\x62\xa6\x5d\x20\xc6\x9b\xf1\x35\x6a\xb3\xa8\xc8\x42\xe8\x82\x25\x2e\xdb\x05\xfc\x26\x98\x52\x29\x6a\x03\x61\xdb\xa3\x74\xd6\xf1\x1e\xec\x43\x69\xb4\x9e\x44\x40\x66\xdd\xdd\x8e\xbb\x00\x2b\xac\xbd\xeb\x0e\x0f\xef\xe2\xf9\xed\xc2\x89\x58\xb5\xec\x84\xc1\x6a\xdd\x8c\x43\x64\x01\xb1\x5d\x46\xb1\xda\xb0\xd6\xe1\x11\xf8\xfd\x89\x4b\xda\x22\x3d\x74\x08\x2d\xdf\xbd\xbb\xb2\xa2\x44\x7b\x3a\xf6\x9d\x9c\x96\x83\x25\x0f\x74\x9f\xb7\x35\x55\x5a\x9d\x43\x47\x48\x0f\xb6\x6a\x47\x74\x3c\xb2\x28\x5a\xf6\xb6\x88\x13\xf9\x2b\xeb\x3a\xb9\x1b\xb8\x01\xee\x03\x05\x44\x6a\xe8\xdd\x13\x6e\x91\x29\xba\xe0\x49\xef\xe2\x78\xdc\xb9\x8a\xdd\x04\x92\xf5\x4f\x00\xea\x6d\x9d\xad\x11\x8e\x76\x56\x63\x6a\x9d\x0d\x79\xf4\x24\x96\xe2\x3f\x8f\xa5\xbd\xd3\x89\xf3\x6b\x60\xe6\x83\x58\xb7\x9e\xdf\x00\xf6\xaa\x21\x33\x62\xee\x96\x84\x77\xe1\x61\x20\xe8\xdd\x03\xe5\xf0\x3d\x50\x8a\x7b\xa0\x94\xf7\x00\x30\x09\x80\x6d\x50\x03\xdb\xa0\xc0\x7c\x7c\x4d\xb6\x00\x98\x35\x61\xf1\xf3\x27\x08\x6f\xc4\xdf\x09\xc2\x7b\xa2\x31\x45\x58\xd2\x41\x04\xd1\x7e\xa2\x9b\x06\xdf\x92\x83\xc0\x18\x3c\x5e\xd9\x43\xa5\x46\x6c\xae\x06\x8b\xa1\xaa\xb7\x28\x38\xac\x34\xa8\x9e\x78\x36\x5b\x9c\x70\x08\x69\xf8\x48\xf7\x3e\xdc\xc0\xf5\x00\xf9\x4e\x3c\x87\x40\x87\xb0\xe0\x3f\xda\x81\x58\x2c\x48\x7a\x0b\x98\x7c\xb9\xbb\x59\x07\x39\x0f\xb2\x92\x4a\x7c\x7e\x9d\xde\xd2\x20\x0d\x3e\xd2\xfd\x38\xf8\xcf\x72\x17\x6c\xd2\x7d\x70\x97\x32\x2e\xa8\xd2\x5d\x2d\xd5\x00\x3f\xd2\x7d\xb0\x4d\xab\x74\x43\x39\xad\x44\x46\xbd\xa5\xcb\x7c\xb5\x0f\xd2\xa0\xe6\x65\x05\x05\xc6\x21\xac\x5c\xcf\xe9\x94\xd9\xc8\x32\x2c\x55\x87\x3a\x69\x1d\x1b\x06\xeb\x54\x0e\xe8\x9a\x52\x16\x68\x5a\x07\x35\x1d\xdd\xdc\xae\xe9\xbd\xe5\x43\xf1\xde\x16\x4a\x45\x4e\x2e\x09\xb1\x3c\x2a\x1a\x47\x02\xad\x8f\x45\x8a\x27\xc0\x8a\x85\x92\xec\x78\x1c\x2d\x51\x14\xf5\x6b\x2c\xad\x56\x70\xb7\xba\x65\x70\xb9\x84\x14\x65\x6b\xc9\x1d\x5b\xcc\xa5\x44\xde\xa5\xc7\x2e\xa7\x90\x5b\x00\x94\xbf\xa0\x40\xd3\xf7\xa0\xb4\x22\x84\xd8\x80\x30\xe3\xb3\x1d\x4c\x4a\x13\x73\x28\x5b\x1d\x8f\xa3\x15\x8a\x22\x5f\x9d\x95\xd3\x12\xee\x36\x61\x0d\x1d\x6c\x19\x7d\x73\x5a\xd9\x73\xea\xcf\x68\x65\xcf\xc8\x99\x4f\x1a\xa3\xc3\x26\x8a\xb6\x51\x14\x6f\xc8\x68\x8a\xb7\x5a\x5f\x6b\x4d\xb6\x9a\x40\x5b\xa3\x64\x4f\xce\xa7\x78\x6d\xf4\x52\x76\x31\x72\x98\x8f\x12\xaf\xdc\x68\x25\xf4\x32\x4e\xd1\x6c\x43\x46\x93\x59\xeb\x0c\x49\x57\x9e\xf1\x99\xa4\xd2\xb6\xa0\xfb\x35\x5f\xcc\xce\xce\xf6\x7f\xe0\x33\xb4\x8d\xa2\xed\x7c\xbf\x18\x57\x3b\x16\xa3\x19\x74\xd8\xd6\x6a\xb6\xd2\xb4\x1d\xc6\x08\x2c\xde\x4e\xdc\x47\xa5\x43\xbe\xda\x31\x42\x2d\x47\x1b\xc4\x41\x08\xd0\x01\xb8\x3d\x4b\x2c\xbd\x99\x6b\x6e\xe5\xa1\x99\x8d\x3a\x66\xbb\x4b\xaf\x87\xcd\x76\xbf\x5d\xb4\x9f\x09\x6b\x2d\x7a\x97\x84\x35\xa2\xfa\xca\x5b\xdd\x5e\xd8\x0b\xfb\x47\x52\xb5\x4d\xac\x48\xd5\x34\x2a\xa4\xe9\x16\x00\x24\x27\x2d\x00\x32\xcb\x40\x7d\xf3\x43\xbe\xfc\xe8\xf1\x93\xd8\xba\x96\xea\x12\xbd\xe7\x53\xd8\x88\xfd\xc8\x72\xa8\x0d\x7f\x33\x9d\xb1\x3f\xf4\x89\xe5\xb3\x33\xc4\xe7\xec\x7c\xba\x70\x89\xe5\xb5\x32\x75\xa4\x77\x0a\xfa\x08\x4f\x47\xc4\xac\xd6\xf1\xb8\x39\x1e\xcb\x78\x87\x1a\x6c\xbb\xab\xa9\x76\x8e\x6f\x0c\xbd\x60\x2a\x60\x60\xeb\xcd\x00\x56\x0e\x35\x38\x1b\xf3\x9c\x17\x94\x84\xd7\x55\x79\x57\xd3\x2a\xc4\xd9\x58\x7d\x92\xd1\x04\x67\x63\xca\x6e\xc9\x41\x94\x4b\xab\x9b\x5b\xd0\x68\x1c\xdf\xd2\xaa\x86\xb0\x62\x61\xfb\xa3\x96\x85\x4a\x46\x0a\x51\x36\xcb\x74\x14\x3e\xf8\x5d\xb2\x25\x95\x1f\xab\x15\xfc\x95\x64\x8e\x53\x46\x26\x7d\x5f\x14\x26\x7e\x1f\x24\xd3\x4d\xce\xe1\x63\x5b\xd1\x2d\x65\x6e\xbb\x2a\xed\x92\x2d\xdd\xb6\x0a\xd3\x84\x47\x02\xb3\x10\x03\xbd\xce\x59\x96\x33\xd7\xdc\xb9\x77\x0b\x6f\xab\x72\x49\xeb\x5a\x17\xd6\xac\x22\xe3\x54\x29\x04\x00\x2e\xef\xb2\xbe\x5d\x63\xf8\x65\x08\x79\xeb\x2c\xaf\x1e\xd6\x09\x14\x1d\xe8\x62\xb7\x49\xeb\x8f\x1e\xe3\xc9\xc9\xe3\x42\xd9\x5a\x97\x19\x8d\x2d\x27\xa2\xfa\xcd\x05\x65\xe3\x56\x2b\x1b\x7e\xba\xf7\x40\xe9\x10\xab\x50\x00\x9e\x7b\xf9\xa5\x2f\x12\x2d\xec\x48\xef\x75\x94\xec\x13\x78\x5b\x9c\x6b\x89\x7b\x3b\xfe\x54\x7e\x4c\x39\x8d\x22\xde\x4d\x6a\x7d\xb0\xdd\xc8\x5b\x23\x46\x80\xb3\x99\x5f\x33\x13\x33\x74\x28\x92\xaf\xcc\xe5\xbe\xdc\xae\x45\x0e\xb8\x4f\x7b\x10\xfb\x8a\x62\xa6\x54\x28\x1f\xc8\xed\x62\xa8\xa5\x2e\x44\xb5\x0a\xcc\x7c\x30\x98\xf9\x98\x9c\xa6\x63\x1f\xf4\xe0\xf6\xa9\xd3\xbe\x06\x72\x63\xda\x05\xb6\xe0\xe7\x84\x47\x56\xbd\xaf\x2a\x4a\xff\x49\x05\xfd\xf7\x78\xe7\x8a\xda\x6f\xef\x9c\x2f\x8e\xc7\xbe\x60\x45\xa4\xdb\x12\x1e\x37\xc7\x30\x2c\xf3\xfa\x55\x55\xfe\x93\xb2\x18\xbc\x33\x1e\x8f\x95\xfc\x68\x1c\x3f\x99\x1a\x63\x52\x08\x77\x2e\x90\x6f\xa4\x9b\x88\x73\x81\x7f\xab\x55\xf3\xea\x3d\x4a\x0b\x6d\x9f\x0e\xa8\xcc\x89\xc3\x10\x21\xa3\xc7\x29\x4e\x90\xe1\x59\xc2\xa1\x50\xda\x02\x2c\x7e\xf6\xfc\x31\x66\x6d\x7e\xd6\x5d\x28\x30\xe5\x10\x61\xb5\x01\xe2\x72\x9c\xa1\x18\x45\xd1\x28\x9f\xd3\x05\xaa\xef\x72\x71\xc8\x4d\x1e\x85\x89\xc6\x22\x4f\x32\x68\xd0\x61\x99\xd6\x54\x59\x32\x27\xdd\xa3\x3f\x93\xea\xc4\x3a\x0a\x8d\x83\x9c\x8b\x8b\xc1\x66\x23\xc3\x74\x70\x4e\x5c\xcb\xb1\x43\xf3\x38\xcb\x3d\x5b\x14\x05\xce\x9b\xe2\x8e\x18\x87\x22\xf4\xe8\x6d\xea\xb0\x7f\x95\x55\x93\xb3\xf8\x5c\x07\x96\xc7\x26\x75\x8d\xda\x12\xb9\x20\x39\x11\x42\xc7\x63\x39\x4e\xc7\xe5\x2a\x46\x0d\x1b\x67\x31\xc7\xe1\x32\xc4\xfd\x6b\xb9\x6e\x10\x56\xf9\xd4\x97\x5f\xb4\xf9\x2b\x5f\xfe\xb2\xcd\xbf\xf6\xe5\xaf\xda\xfc\xd4\x97\x9f\xc9\x60\x23\xd6\xca\x7c\x3d\x91\xb6\xa6\xcf\x9f\x21\x9c\xfa\xad\xba\xf9\x85\xc0\x84\x13\x33\x41\xbc\xf3\x3c\x9e\x5e\x7f\xd6\x60\x13\x95\x89\xca\xb4\xc1\xf5\x80\x8d\x7f\xe6\x17\xca\x9b\xee\x50\x83\x0b\x9f\xf3\x0b\x19\x14\x41\x21\xcc\x75\x8c\x12\x0a\x74\xfd\xee\xe1\xb2\x7e\xd4\xe0\x65\x2f\x02\x7f\x87\xeb\x20\x47\x98\x22\x6d\xa7\xbb\x8b\x39\xc2\x10\xde\xcf\x31\xb2\xcf\x62\xfb\x8a\xa8\x90\xf6\x21\x2b\x7f\xd7\xe8\xc2\xc7\xd2\x8f\x39\xba\xa8\xcc\xae\xe3\xd6\x26\x4a\x6a\x6f\x72\xd3\x52\xe1\x36\xbf\xac\xdb\x10\x66\x03\x4d\x39\x19\x70\xfc\x3a\x2b\x2e\xb1\xd1\x9d\xa2\x9d\xec\x29\x98\xd7\x21\x70\x8e\xba\x98\x7b\x3e\x4e\xe3\x50\x50\xd2\x69\x45\x03\xf1\x98\x80\xd4\x17\xa0\x1c\x08\x22\x27\xe0\xb4\xda\xe4\x2c\x05\x69\x70\x91\xb3\x8f\x38\xb8\x5b\xe7\xcb\x75\x70\x97\x17\x85\x24\xc7\x59\x19\xd0\xd5\x0a\x42\xff\x30\xa4\x23\xd6\x49\x60\x9f\x82\xf2\x85\xcf\x24\xcb\x4c\x97\x62\x4f\x76\x0b\x26\xea\xc0\xc2\x0b\x64\xc7\x7e\xec\xc1\xed\x62\x3e\xd4\xb2\x40\xd9\x06\xa2\x39\x52\x74\xa0\xda\xfb\x9d\x6a\x89\x58\xcf\x83\xed\xc9\x65\x5b\xe4\x96\xb5\xbf\x0a\xba\xdf\x65\x9d\x56\x10\x5b\x5a\x00\x8d\x8a\xdd\x6b\x82\xbf\x89\xad\xbf\x34\x21\xf8\xb1\xdd\xb0\xcc\xf5\x1d\xb5\x95\x21\x5e\x9d\x0a\x7a\x9c\x1d\x85\x93\x2e\x1e\xab\x9d\x0e\x28\x0c\x36\xdf\x6c\xa5\x11\xb7\xc4\x61\xe9\x98\x6e\xb6\x7c\x4f\x6a\x4c\xc1\x5c\x8c\x14\x58\xcf\x71\x09\xa1\x88\xe8\x72\xc7\x29\xa9\x20\x96\x5b\xff\x66\x77\x82\x15\x3d\x9f\x20\xcb\xc2\xef\xf1\x0f\xe8\xc8\xc5\x28\xf9\x80\x3b\xef\x17\x29\x13\x13\x11\x5b\x3d\x48\x03\x08\x06\x25\x65\xe0\xe6\x0e\x44\x3d\xc5\x48\x25\xe0\x51\x36\x13\x12\xa3\x64\x1d\x63\x8b\x91\x25\xe7\xf6\x75\xcc\xce\x42\x0d\x44\xbb\x2f\x73\x42\xba\x9c\x12\x13\x8b\xac\xb5\xed\x9e\x39\xfb\x64\x04\xa8\x82\xb6\x75\xe2\x84\xcf\x6f\xe3\x10\x58\x5d\xb4\x0e\xd1\x02\x01\x1a\xa1\x03\x30\xb4\x55\x2e\x78\x72\x37\xa0\x6a\x66\x83\xef\xae\xe3\x28\x7a\x37\x2e\xca\x9b\x0b\xf8\x5f\x3c\x09\x16\xff\xc8\xa1\x4b\xc5\xbc\x1d\xf5\x2a\x90\x71\x74\x8d\x32\xfb\x46\x97\x82\x86\x71\x88\x97\x1d\x20\x22\xa8\x23\x94\xd0\x40\xb9\x5a\x16\x34\x65\xbb\xed\xcc\x36\x74\x92\xfc\x4a\x9d\xa5\xed\xf1\xc4\x3e\xa8\xf6\x43\x86\x31\x1c\x71\xdb\x54\x8e\x91\x52\x3c\xbf\x96\xfd\x65\x88\x66\x2c\x8a\x98\xc2\xe3\x51\xd3\x1d\xa1\x2d\x07\x01\xf3\x7f\x15\x03\xc4\x58\x13\xd2\xf1\xd5\x6f\x3b\xba\xa3\xd6\xef\x9a\xa7\x9c\x92\x70\x59\x94\x35\xcd\x42\x47\x9a\x61\x4d\x11\x6a\x81\xa3\x45\x68\x77\xa0\x11\x70\x30\x19\x5a\xc1\x78\x27\x33\x66\xb4\x8c\xa2\x28\x06\x96\xf5\x9c\x2d\xc0\xb5\x8d\xfc\x92\x92\x65\xac\xfb\x07\x71\xab\x6c\x0e\xcd\xce\xce\x18\x9a\x35\x1d\xa1\x85\x3c\xaa\xa6\xc7\x1d\x63\x02\x3d\x9e\x69\xe5\x5c\x33\xe5\x99\x8e\x80\x91\x93\x32\xae\x30\x47\x33\x85\xa7\x6a\x74\x94\xd1\x4f\x3c\x4c\xf2\x28\xca\x25\x3c\x2b\xcc\x34\x2e\x6a\xa3\xab\xf9\x2a\x16\xd0\xc4\xa3\x5c\x9f\xa4\xd9\x40\x05\x6d\x64\x1b\x26\x50\xc1\x6a\xb9\xb7\x52\x7a\xba\xa4\x9d\xee\x85\xd8\x53\x89\x99\x90\x95\x23\x77\x92\x03\x62\xe4\x11\x72\x88\x4d\xe5\x81\xa2\x42\xaa\xa4\xe3\xe8\x4e\xcb\xd2\x9a\x53\xaf\xa7\x64\x06\x1d\xc4\xda\x24\xdc\xe8\x78\x88\x31\x41\x9f\x56\xa3\x17\xd6\x80\xda\x86\xdb\xdd\x35\xef\x36\xb2\x90\x67\xbe\x8e\x3d\x88\x26\x28\xe9\x20\x69\x2e\xa9\x57\xf8\xd1\x51\x30\x95\x9c\x62\xe0\x45\x74\xdc\x5d\x38\x9b\x52\xea\x90\xc8\xcd\xc3\x21\x26\xeb\x98\xb2\xdd\x46\x3a\xcd\x22\xf6\x8f\xe3\x71\x34\xc5\xd5\xd8\x78\x03\x10\xf9\xa3\x89\xb6\x02\xca\x59\x00\xef\xe4\xf8\xae\xca\xb9\xca\x33\x04\x6a\x67\x16\x14\x83\x55\x29\x16\xdb\xc2\xe3\x53\xc3\x7a\x83\x19\x04\xeb\xb0\xfd\x60\x20\x5c\x41\x1a\xae\x40\x62\x10\x77\x82\x3a\x0f\x63\xd0\x92\x6a\x6c\xf0\xde\xf7\x2a\x6f\x04\x31\xa7\x0d\x0f\x65\x49\x41\xd8\x35\xf8\xd6\x57\x1a\xe2\x21\x98\x52\x49\xf8\x1f\xff\x11\x9e\xd1\x66\x06\x8d\x8c\xf6\x71\x58\x9a\x77\x33\x14\xf7\xbe\xf2\x35\xd6\xa6\x12\x4d\xc1\xda\x05\x91\x32\x4b\xf6\xaf\xa0\xc4\x51\x35\xee\xa0\x7c\x46\x76\xef\x56\x48\x34\x37\x9e\x72\x12\xe7\x5e\x55\x32\x49\xed\x5c\x10\xbc\xa5\x45\xfe\x4f\x73\x81\x48\xbf\x52\x37\xca\x8b\xb2\xb8\x40\xdc\x9e\xd4\xcd\xab\x1a\x2b\xad\x17\xa2\x6c\x39\x59\x6e\xbb\xda\x51\xab\x39\xca\xce\x10\xf4\x69\x56\x90\x5d\xb7\x31\xa6\xed\x5b\xbf\x1b\xd4\x16\x1d\xac\x83\xee\xb6\xbe\x94\x63\xc7\x52\x48\x80\x90\x89\x91\xab\x2a\xe0\x1b\xea\x44\xec\x50\x1b\xa6\xbd\x8e\xac\xe6\xda\xb8\xb7\x37\x43\xcb\xd2\x5f\x14\x35\x6a\x30\x58\x21\xdc\x33\x31\xb8\x76\x3d\x61\x7a\xb7\x71\xbf\x01\xac\x4a\xd3\x76\x1e\xca\x1d\xda\x43\xeb\x6b\xef\x69\x16\x20\xf4\x2d\xdd\x87\xaa\xbf\x09\x53\xe1\xb3\x81\x69\x35\xd7\x03\xed\x1d\xe1\x16\xa2\x39\x0c\xe7\x7c\x15\xb7\xa0\x1e\xc1\x97\x8d\x21\x0d\xc5\x8b\x69\x9b\x0e\x96\x12\xd7\xbc\x96\x94\x15\xcd\xba\x88\xe6\x6c\x00\x83\xe4\xf7\xb6\x6c\x36\x3c\xad\x2c\x73\x0d\xab\x65\x07\x0e\xd7\xe2\x70\x7a\x36\xc6\xf0\x7e\x6f\x59\x03\xc3\x3c\x55\x42\x8f\xc7\x98\xaa\x90\x34\x54\x79\xc4\x68\x85\x1d\xd3\x45\xeb\x0e\xc3\x76\xb5\xd0\x20\xf0\x2d\x74\x1d\x53\xdc\x1d\x64\xbb\xdc\x8a\x93\x78\x3a\xaa\xb8\x4d\x5d\xfa\x3d\xd7\x59\x88\x3c\x3a\xe4\xae\x5f\x0d\xcc\x62\x70\x7c\xeb\xe5\x3d\x22\x1b\xd5\xee\x7a\x64\xa3\x7e\x54\x5e\x9b\x0b\xf1\x9e\xef\x10\x9b\x7f\x20\x31\x5d\xee\x5c\x65\x10\x50\x25\xef\xba\xfd\xd0\x3e\x46\x5a\x30\x32\x08\xb0\xa4\x61\xb4\x49\xb7\xf7\xc0\x67\x70\x76\xbe\xed\x35\x30\x2b\x0b\xc8\xb1\x72\x76\x8f\x2c\x28\xdb\x0a\x2d\xf7\xcc\x9a\x13\x08\x83\xd5\x0b\x72\xd6\xde\xe3\x0c\x84\x74\x60\xc9\x21\xe7\x6e\xcf\xcb\x2a\xd7\x42\xc4\x3a\xbc\xcc\xb8\x5c\x51\x3e\x53\xda\xcd\x04\x1a\x35\xff\x56\xb0\x02\x87\xcc\x31\xd7\x7c\x9b\xff\x0d\x40\x93\x7c\xb8\xff\x15\x40\x93\x28\xa2\x82\x97\x47\xf1\xf8\xbb\x29\x2e\xc9\x68\x8a\x53\xe2\x5c\x2e\x3b\x92\xda\x17\x00\x7b\x3c\xa0\xe5\x71\x1d\x95\x62\x1a\xa5\xc0\x2c\x47\xf9\xf1\x58\x01\xb9\xb8\x23\x34\xde\xe1\xd3\xbb\x15\x3c\x6d\xec\x08\xff\x1c\xb8\x83\xf7\x8d\x28\x1a\x19\xbf\x10\xba\x82\x9f\x5b\x21\x17\x23\x48\x59\x00\xfc\x96\xa0\xa6\xbf\xed\x28\x5b\x02\x12\xa7\xd6\x7f\x87\xf0\xf0\x62\x4a\xee\x90\xe7\xfd\xd5\x28\x3a\x85\xf5\xc4\xbc\x07\x7c\xcc\x88\xb6\x66\xd1\xd1\x96\xda\x30\x4b\xed\x7a\x54\x0b\x85\xcd\xe9\x78\x18\xd6\xca\x94\xfe\xb8\xa9\x20\x17\xc8\x09\x1d\x5e\x22\x8a\x0e\x5c\x4e\x8e\x7a\x37\x37\xbf\x07\xc8\xc0\x08\xd6\x4c\xe6\x38\x37\x18\xa9\x05\x26\x94\x54\x71\x29\x3d\x1d\x19\xd7\xf1\xe0\xa6\xbe\x91\x9b\x43\xb9\x83\xb1\x84\x3e\x36\x63\x3e\x8f\xa2\xb6\xd9\xce\xfd\x0d\x8d\x98\x1b\xa8\x48\xf9\x9b\xff\x35\xd7\xb5\x73\x9a\x06\x0e\x48\xf7\x65\x4c\xc7\x12\x81\x8a\x22\x01\xb2\xdc\x70\x0f\x2a\x7b\x43\x49\x80\xcc\x17\x38\xbd\xe7\x85\x83\x90\x03\x27\x2e\xfc\xaa\x5d\x36\xe5\x52\x4f\x2e\x00\xef\x3b\xdd\x72\xf0\x91\x53\x5b\xa1\xba\x67\x2b\xa8\x60\x2d\xc6\x46\x2a\x45\x33\xfa\x1d\x99\x44\x51\xae\xad\x85\x28\x9e\x22\x5c\xc2\xc1\x99\xe5\x92\x2e\x4f\x3f\xab\x2b\xd5\x46\x97\xcc\x14\xf8\x87\x4f\x65\xd7\x30\x89\xdd\xd7\x1f\xe1\xb4\xef\x06\x4c\x6d\xa7\x5b\x97\x8e\xeb\x9f\x6a\x7d\xfb\xad\xf3\xba\x69\x16\x1a\xdb\x13\x40\xee\xed\x40\xc3\xdd\xf4\x72\xc7\xd6\x79\x0d\xce\xcd\x13\x2b\x04\xab\x1f\x39\xe5\xd6\x76\x64\x81\x42\x1a\x91\xd1\xa4\xe5\xf8\xb6\x4b\x7c\xb6\x91\x19\x72\x52\x69\xfe\x9a\x2d\xb9\x40\x23\x42\x72\x6f\x67\xb9\xbf\x33\x63\xc3\x99\x23\x60\x04\x59\x5e\x31\x09\x61\x17\x79\xd2\x39\x06\x96\xe9\xab\xb5\xf3\x20\x48\x66\xbe\x8a\xf7\x71\x1b\xc7\x00\x01\x43\x5e\x4d\xa3\x4d\x6d\xc5\xc1\xfd\x96\x1d\xc6\x8b\x8c\xaf\x20\x0f\x99\x06\xf8\x68\x22\x9f\x35\x73\xc9\x80\xfa\x93\xba\x8f\x53\xbc\x6b\x81\xd2\xf3\x1d\x1e\xa3\xd9\x28\x66\x24\x4e\xc9\x4e\x1e\x0a\x84\xc6\x59\xc9\x28\x9a\x81\xde\xf3\x41\x1a\x9e\xa6\xad\x7d\x3c\x95\xc5\x6a\x84\xcd\x28\x14\x62\x61\xd1\xd3\x10\xaf\x9e\xd0\x66\x95\xb3\xb4\x28\xf6\x80\x87\x8c\x58\x14\xed\xc6\xb2\x6c\xfb\x15\x23\x53\x48\x3c\x9d\x6a\x8d\xf2\xa6\xa1\xdd\x17\xc8\x6b\x15\xf9\x39\x30\x1b\xe0\x25\x9d\x9d\x31\xd4\xce\x0f\xd4\x29\xba\x53\x9c\xf5\x07\x75\xcf\x06\xb6\xf7\xa9\xb9\xc2\xcb\xd5\x89\xe7\xf3\xf7\xbc\x9b\x16\xce\x78\xcf\x19\x44\x8f\x05\x16\x27\x93\x19\xff\x03\x6b\x81\xc5\x2d\x60\xb1\x39\x7f\x08\xb0\xac\x4b\xc7\x08\x17\xfc\x54\xb8\xbe\x6f\x24\x99\x2d\x99\x53\x7e\x76\xdc\x1d\xd6\xfc\x28\xaa\x5d\x75\x88\x56\x15\x73\xf1\x50\x43\x66\xef\x9a\x5b\x97\x35\x7f\x47\xb7\x65\xc5\x61\xc5\x92\x9d\xb8\x7f\x35\x6b\x50\xf2\x24\xbb\xea\xbc\x3e\xbb\x6a\x0d\xac\x3b\x7a\xbd\x4d\x97\x1f\xdf\x2a\x1f\xd2\xfa\x25\x76\xf5\x1c\x28\x9a\xf1\xf1\x72\x9d\x17\x59\x45\x19\xe8\xc4\xeb\x1f\x64\xbe\x18\xe2\x36\x72\x1c\x16\x65\x9a\xd1\x2c\xc4\x87\x96\x9b\x99\x8c\x26\x43\x70\x1b\x17\x4d\x73\xa2\xb1\xfc\xe1\x0d\xe5\x27\x1b\x52\xc0\xe8\xb6\x06\x7a\x05\x1d\x70\x90\xa9\xe6\x17\xf0\xc7\x69\xa3\x69\x13\x42\x3a\x96\x6b\x3c\x1b\x66\x90\xb2\x0b\x66\xf1\x28\x2f\x38\xb1\x7f\x26\x31\x27\xac\xb3\x03\xec\x7c\xc2\x51\xc2\x49\xf8\x1f\xff\x61\x95\xc0\xfc\x41\x3a\x24\xc6\x69\xf7\x73\xf0\xd9\x1d\x4f\x9f\x29\x97\xdd\xcf\xbf\x02\xa7\xdd\xf1\x93\xc9\x44\xb9\xf8\x9d\x4c\x6d\xaf\xdd\xff\xae\x26\x95\x08\x17\xe2\xa5\x59\x02\xaf\xb5\xba\xd7\xdb\x2a\x1d\x83\x2d\x2b\x31\xea\x45\x52\x89\xf3\x85\x51\xd4\x37\x7e\x73\x5e\x55\xe5\x46\x3b\x83\x43\xb1\xaa\x87\x30\x97\x56\xc0\xab\x61\x71\xb9\x85\xf5\x02\x38\x95\x2a\x92\x72\x5e\x4a\x0e\x8d\x8e\xce\x55\x53\xfe\x9e\x97\x15\x7d\x91\x16\xc5\x75\xba\xfc\x58\x93\xf9\xc2\x18\xdc\x81\x3e\x42\x45\xa8\x74\x31\x8c\x81\x98\xa8\xab\x37\x65\x46\x71\x4d\x8c\x5c\x30\x8f\xa2\x1c\xaf\x64\xde\xab\xb2\x5a\xd2\x57\x94\x2f\xd7\x3f\xd2\x22\xdd\x1b\x47\x9e\x84\x90\xd5\xc5\x24\x59\xe1\xad\x14\xb9\xba\x1e\xd6\xf1\x9a\xa8\xb9\xfd\x48\xb3\x9d\x09\x03\x89\x37\x6d\xed\xf5\xf1\xb8\xc6\x7b\x42\x3b\x33\x01\x65\x3f\x76\x3c\x8e\xaa\xbe\xad\xf3\xdf\x58\xa0\xfe\xbd\x66\x41\x59\x65\xd2\x58\xa1\xe5\xec\x05\x72\x9d\x02\xe9\x4d\x18\x07\xfb\x72\x27\x79\x7d\xda\x9e\x41\x4c\x3f\x88\x94\xcf\xe4\xad\xdc\x0c\x39\xad\x83\x12\x8c\xa0\x95\x73\x64\x85\x1e\x8d\xdb\xde\x3e\x00\x23\xb3\x0e\xb6\x69\xc5\x03\x78\x61\x28\xc4\x16\xc8\x2b\x9a\x05\xbb\xed\x4d\x95\x66\x54\x9a\x52\x6f\xf2\x9b\x4a\x6a\x7e\x08\xdc\xd1\x1d\x4f\x30\x1d\x4f\xc4\x78\xdd\xc4\x27\xe3\x89\xd5\xd3\xab\xb2\x0a\x36\x65\x45\x83\x9c\xad\xca\x6a\x23\x81\x16\x6c\x0b\x9a\xd6\x34\xb8\xcd\xeb\x9c\x27\x6d\xe1\x20\x58\x73\xbe\xad\x93\x2f\xbf\xbc\xbb\xbb\x1b\xa7\xd0\xac\x72\x6d\x2b\xde\xa4\x2f\xb3\x72\x59\x7f\x59\xd1\x74\xc9\xbf\xbc\x4e\xeb\x7c\x59\x7f\x59\x53\xbe\xdb\x8e\xd7\x7c\x53\xb4\xad\xf0\x32\x58\xd3\x62\x0b\xc0\xba\xa1\x3c\xa8\x79\x5a\x71\x9a\x99\x41\x69\xd6\xa8\x80\x1d\x59\x6a\xa5\x0a\xa6\x75\x2c\xc0\x1f\x77\xa5\xa3\x70\x95\x95\x0c\x20\x92\x8e\xd3\x58\x47\x80\xcd\xf2\x5a\xdc\x35\xca\xab\x31\x6c\x25\x5a\x93\xfa\x78\xcc\xbe\x53\xc2\x8e\xfe\x46\x21\x1b\xd5\xa2\xdc\x9c\xa4\xc6\xbe\x4d\xbf\x07\x8f\xbd\x99\x6d\xbb\xe1\x11\xde\xf1\x81\x11\x8c\xa6\x0d\xce\xd4\x18\xef\x04\x4e\xf7\x17\x38\xc3\x9d\xdf\xd2\xe7\xb0\xe4\xb4\xb4\x83\x25\xed\x67\xaf\xc0\x66\x07\x72\x13\xeb\xbb\x57\xa4\x3d\xa5\xa4\xf3\xdb\x53\x14\xc6\xdb\x72\xb2\xc5\xa8\x72\x5a\x93\x93\xb9\x56\x33\xda\xd9\xb6\xb9\x9b\x20\x60\x55\xb6\x03\x28\x81\x86\xa4\x37\x0c\xc4\x5d\xce\xb2\xf2\x2e\x8a\x46\xf2\x63\x7c\x75\xf5\xfd\xdb\xcb\x9f\x7e\xba\xbc\x7a\xf1\xd3\xeb\x97\x3f\x7f\xb8\xba\x9a\xf9\x43\x51\x6c\x2f\x6e\x93\xed\xc9\x36\xc1\x6f\xee\x40\xa3\x44\x49\x86\x8c\x0e\x6a\x6f\xb8\xc7\x63\x5c\x80\x4c\xf3\xd4\xa0\x55\xf3\x3a\x94\x82\x49\xe0\xe5\x96\x10\xa2\x7e\xd4\xb4\x58\x39\x03\x25\x9d\x76\xda\xe1\xfd\xf8\xf2\xaf\x1f\x2e\x2f\x7f\x7a\x7f\xf5\xc7\x9f\x2e\x7f\xf8\xfe\xa7\xab\x3f\x5d\x5e\xfe\xf9\xea\xca\x34\xcb\xd2\xdb\xfc\x46\xd0\x19\xfd\x94\xf1\xae\xa6\xd5\xf7\x37\x94\x71\x43\x49\x87\x2f\xd6\x55\xb9\xa1\x21\xfa\xee\x7c\xda\x2a\x99\x67\xf4\x7a\x77\x13\x87\x3f\x96\x77\x10\x13\x06\xee\x18\x75\x53\xe8\x4b\x15\xfc\x4f\xa5\xc1\x35\xe5\x9c\x56\x41\x46\x6f\x69\x51\x6e\xc1\x25\x05\xfd\xb4\x15\xcb\xce\x96\x34\x31\x77\xc2\x12\x7a\x19\xdf\x94\xe5\x4d\x01\x38\xea\x97\x77\xf4\x1a\x4e\xe8\x97\x19\xe5\x69\x5e\x7c\x29\x6f\x8c\x73\xe9\x9c\xfe\x5c\xb5\x47\xab\x73\xfe\xe5\x3f\xb2\x8f\x1f\xd9\xc7\x8f\xd7\xf4\xfa\x3a\xdd\xe6\xc5\x4d\x49\x97\xcb\x65\x7e\x53\x7c\x5c\x5d\x6f\xae\xd9\x6a\x13\x6a\x15\x2b\x6d\x02\xb1\xd3\x5f\x3e\x15\x2e\xeb\x70\x79\x28\x49\x68\x47\xdc\xe1\x50\xe2\x4d\xca\xd2\x1b\x5a\xc5\xc8\x77\xe0\xad\x96\x20\xf8\x7f\x1d\xeb\x67\x6f\xb0\x1c\xa6\x08\xe1\xd1\xf0\x3d\x74\x3c\x86\xca\x37\xfc\x79\xc9\x0a\xa5\x40\x00\x6e\xc1\xdf\x96\x45\xbe\xdc\x47\x51\x08\x57\xdc\x79\xca\xb2\x73\x55\xb2\x57\x08\xa4\x3a\xb5\xf2\x84\x61\xa5\x27\xaa\xee\x2a\xaf\x6a\x1e\x36\xc8\xbe\x41\xd4\x44\xad\xa1\xc6\x5d\x85\xb3\xdf\x7a\x20\xd3\x41\x44\x1f\x08\xae\xdf\xee\x87\xd4\x6f\x06\x48\x9e\x79\x92\xce\x3c\x3d\xa1\x71\xbb\x75\x02\xab\x78\xb0\x4c\x59\x20\xa0\x1a\x5c\xd3\x60\x57\xd3\x4c\x46\x17\x68\x67\xdc\x72\x20\x86\x17\x28\x8a\xdc\x05\xea\x8e\xa9\x9d\xde\xe3\x61\xff\x9b\x17\xec\xea\xfe\xfe\x9d\x5b\x55\xb6\x72\x1a\xf8\xb2\x0c\x40\xbf\x3f\x38\x99\xd9\x1b\x9d\x61\xbb\x3c\x7a\x80\x4e\xeb\xf0\xca\xab\xb8\x05\xef\x2d\xd9\x6f\xaf\xbf\x8a\xa6\xd9\xfd\x67\xf7\x6d\x55\x7e\xda\x43\x5c\x54\x55\xda\xdb\x8e\x36\x28\x7e\x70\x53\xba\x42\xaf\xb5\xbb\x2a\xe7\xb4\x3f\xac\x16\x49\x76\x9a\x6a\x4b\xdb\x06\xea\x3d\x98\x5c\x57\x65\x9a\x2d\xd3\x9a\xab\x47\x54\x00\xce\xd3\xad\x77\x16\xa7\x7a\xb6\x66\xf1\xbb\x3b\x77\xc3\x44\xdf\xd3\xb1\x28\xfc\x3b\x3b\xbd\xba\x4a\xa1\xab\x3f\x95\xe5\xc7\x57\x65\xa5\x9f\xa2\x8e\x29\x17\x6c\x6d\x99\x23\x0a\xbe\xb8\x26\xb4\xdb\x8c\x52\x8b\x7d\x97\xde\xf9\x56\x5f\xbd\xf6\x95\x56\x80\x45\xb1\xc1\x39\x7b\x7a\xb8\xdd\xfd\xdd\x0f\x9f\xd6\x52\x49\xf6\x6c\x75\xb4\x64\x3b\x8d\x68\x8d\xee\x03\x04\x5c\x68\x3b\x85\x87\x32\x69\xb1\x5a\xdc\xc7\x51\x93\x01\xdc\x15\x2b\xa4\x35\xb1\x31\x58\x5c\xb2\x1f\x34\xb0\x6d\x3e\x04\xed\x00\x0e\x1c\xff\x39\x29\xf1\x41\xae\x40\x72\x68\x20\x0c\x1c\x4d\x0e\xbf\xc9\xd5\x4a\xa8\xe7\x3a\x93\x58\xe4\x8d\x42\x27\x63\x84\xe1\x1e\x01\xdf\x49\xd4\x73\xc1\xe4\x25\xeb\xd6\x68\x70\x96\xf2\xf4\xd7\x9c\x43\x64\x8c\x4d\x5e\xf3\x7c\xf9\x8e\xd6\xbb\x82\x8b\x26\xe0\x56\x1d\xd3\x4f\xbc\x4a\x97\x3c\x06\xd7\x0a\x4d\xd3\xd5\xad\xb6\xf0\x5b\xff\xe2\xa8\x65\xbf\x5f\xcd\xd5\x25\xb0\xd5\xd0\x2f\x3a\x33\x01\xfb\x56\x35\xfa\xa4\x17\x26\x7f\x57\x14\xbe\xa8\x25\x9d\x21\x80\x55\x98\x8f\x7c\x1e\x74\x8f\x18\xa3\x06\x9d\x68\xd8\x1d\xa3\x58\x57\x67\xcc\x43\x98\x7b\x77\x6e\x43\xe5\x86\x67\xea\x2e\x45\xc9\xde\x79\x16\xc3\xab\x15\x32\xc4\x40\xd0\x6e\xca\x6c\x41\x1e\xf7\x72\x1a\xbc\xa9\x27\xfc\x73\x70\x81\x49\x01\xc7\xd4\xdd\x3d\x03\x24\xcf\xd0\xb3\xe1\xec\x8d\xfe\x2d\x37\x08\x42\x3a\x04\x43\x67\x38\x6a\xaf\x3f\xe8\xd1\xd2\xe7\xa2\xff\xfa\xd5\xbd\x05\x18\x7e\xf8\xa0\x6c\xaf\x0d\x53\x66\x28\xe8\xff\x56\x64\xea\x5b\x6e\x08\x0b\x80\x42\xa4\xa5\xdd\xed\xe4\x46\xf2\xa1\xf9\x38\x25\xab\x7b\x38\x82\xa7\xcc\xae\x6e\xed\x30\x7f\x8a\x63\xf8\xe4\x2b\xcd\x31\x7c\x26\x39\x86\xd3\x67\x92\x61\x38\x7d\xfe\x0d\xc2\x35\x61\xf1\xd7\x53\x19\xf8\xeb\xf9\x53\x19\xf7\x6b\xfa\xfc\x5b\x19\xdd\x6f\xfa\xfc\x39\x44\xf7\x8b\x9f\x7d\x83\xf0\x56\xb4\xf5\x1c\xe1\x35\x61\xf1\xd3\xe7\x08\x6f\xfe\x6d\xbd\xb6\xe1\x3d\x39\x18\xfb\xec\x64\xbe\xc0\xb9\x74\xf5\x9b\x72\x9a\x25\xa3\xa9\x89\x03\x08\xae\x4f\x30\xa3\x77\x10\xb1\x1b\x7e\x14\x69\xad\x63\x44\xbe\xce\x64\x52\xe9\x6c\xee\xbd\x4c\xb4\x95\xfa\x44\x17\x8e\xae\xac\x9f\xc1\xa8\x58\x84\xcc\xcf\xbe\x2b\x5b\x1e\x21\x8b\x22\x86\x53\x42\xd5\xf3\x58\x13\x71\xd5\x98\x27\x0e\x17\x2d\xa3\xaf\xbe\xb0\xfa\x6c\x92\x1a\xfc\x21\xe8\x67\x71\xdb\xb6\x98\x45\x51\x36\x6b\xb9\x26\xfa\x65\x22\x32\x82\x58\x6a\x21\xb1\x6d\xfa\x4a\xa7\xe7\xd9\x8b\x72\xc7\x38\xad\xc8\xb4\x2d\x28\xee\x0c\x51\xea\x4d\xba\x95\x89\x40\x1f\x00\x80\xd4\xb9\xef\xe4\x43\xeb\xaf\xb3\xfa\x07\xb0\xd0\x35\x4c\x55\x60\x7d\x71\x8d\xc2\x6b\x80\x94\x15\xa9\xfa\xd1\x9f\x14\x42\x81\xf9\x02\x0d\x32\xb7\x4a\xd5\x54\xca\x53\x39\x15\x35\x09\x0b\x80\x44\xf9\x27\xa8\x97\x6b\x9a\xed\x0a\x85\xa9\xec\x04\xa6\x62\xdf\x6d\x80\x63\x18\x84\x63\xdb\x78\x4d\xa8\x3c\x04\x4d\x7b\xf9\xc3\x52\x6b\x80\x03\x43\x58\xbb\x9a\xae\xf1\x4e\x2c\xaa\x8d\x03\x40\x3c\x53\x5c\x10\x3a\xde\x6d\xc5\x46\x55\x17\x29\x5e\x12\x71\xc5\x19\xe8\x8a\xa4\x55\xbb\x01\x96\x17\xf3\x45\xb2\x84\x65\x97\xd5\x80\x67\x0c\x3a\x01\x92\x56\x33\xb1\xa0\x08\x21\xdb\x8b\x90\x95\x8c\x86\xc9\x16\x98\xc3\x16\x45\x87\x6f\x25\xa7\x19\xcc\x53\xaf\xdb\x1a\xb7\x17\x87\x26\xb9\x95\x7c\xe3\x3e\x85\xaa\xa7\x16\x94\x70\x0c\x82\xbc\x36\xac\x5b\xe5\x10\xc7\x66\x10\xef\xcb\x5d\x15\xe8\x70\x6e\xfa\x04\xca\xd0\xdf\x34\xe8\x34\xa5\xfc\x79\xef\x05\x85\x5a\x9e\xc3\x65\x1a\x8e\x08\xf1\x50\xc9\x36\x4d\xbc\x2a\x2b\xd3\x50\x1d\x2c\x77\x55\x45\x19\x2f\xf6\x92\x4e\x56\xee\x0e\x6a\xe8\xee\x0b\xdd\xea\x17\xc1\x16\xea\x2a\xed\x80\x1b\x79\x7b\xdf\x88\x8b\x43\xad\xc1\xfe\x75\x26\xd5\x74\x9d\x6d\x25\x70\x3a\x19\x98\x0f\xcd\x18\xb9\x1b\xf3\x2a\x65\x35\xc4\xfe\x57\x13\x8b\x59\x6b\xa7\x1c\xa7\xea\xb6\x44\x82\x5a\x35\x69\x37\x94\xff\x68\x45\xa3\xa8\x8d\x31\x30\x64\xbd\x51\x13\x69\x3d\x44\x81\xe9\x24\xce\x75\x5c\x6e\xc3\xc5\x4b\x45\x86\x3c\xdd\x35\x95\x0f\x53\x7c\xd3\x7f\x3b\x0e\xed\xad\xd7\xa8\x57\xe4\xd2\x13\x1e\xd9\xf8\x48\x2e\x8c\xc0\x14\xfc\xe7\x16\x1e\x8b\x7a\xa3\xdb\x16\xf3\xce\xf9\x9e\x33\x08\x9e\xe4\xa9\x53\xa1\x03\x9d\x57\x0b\x72\x90\xfb\xb5\x4a\x8a\x39\x5b\x48\x12\x20\xe1\x1d\x3c\x1b\x2c\x67\xa4\x5d\xbd\x83\x48\xb9\xe8\xb5\x00\x8f\x86\x56\x7c\x83\xaf\x70\x8e\x3a\x97\xc0\x78\x93\x56\x1f\x75\x91\xd7\x2c\xe7\xf1\x41\x37\xf1\x3a\x4b\x6e\xac\xf7\x00\x9b\x13\x9a\xe4\xc0\x01\x77\x0e\x63\x72\x19\x23\x95\x92\x64\xb8\x7f\x7c\x93\x5d\xa3\xba\xf6\x50\x7f\x5e\xc5\x60\x8a\x4b\xe5\x6c\x18\x2f\x21\x9c\xe5\xf5\x2e\x2f\x32\xe3\x3d\xec\x55\x59\x81\x64\x8c\xe1\x1c\x6f\xc4\xe6\xb9\xc6\x07\x7f\xb7\x68\xe6\xa1\xf3\xe4\x83\xb3\x3d\xad\xca\xd4\x2a\xb9\xa4\x3a\xba\xa3\x24\x49\xfe\x94\xd6\x70\xc8\x50\x4c\x11\x1c\x44\x06\x9e\x36\xd7\xb6\x3a\x72\x2c\xc5\x78\xb5\xb8\x3c\x9d\xd0\x90\x89\x76\xd8\x21\x86\xc6\x3b\x2b\x66\x2f\x87\xec\x2b\xbe\x41\xd8\x3d\xea\x51\xc4\x07\x16\x50\xd5\x70\x97\xb0\x82\xc4\x84\x7e\xde\x5a\x82\x50\x92\xfa\xd5\xfa\x86\x87\x2e\xaf\xa0\x1b\x30\x7e\x18\x18\xeb\x0b\xad\xbf\xe0\x8e\x76\x68\xeb\x78\xb9\x06\x0f\x3c\xd5\xf2\xd2\x6e\x1a\x84\xcb\xd8\xac\x89\x1d\x9c\x33\xa1\x40\x4c\x0e\x68\x80\x2e\x21\x72\xe7\xbd\x73\x5d\xfe\x97\xce\x75\xe9\xa8\xba\x97\xf1\x12\xcd\x7c\xb2\xfa\x55\x14\xc5\x2b\xb2\x8a\x0b\x84\xf0\x2a\x8a\x56\xc3\x21\x3e\x7a\x01\xd4\x9c\x0e\xb8\xfd\xb2\xee\xe5\xcd\x25\xb5\x2c\x24\xfb\x52\xe2\x03\x9a\xb8\xb7\xf6\x93\xfd\x92\x3b\x8c\x51\x87\x9f\x0a\x57\xd7\xe3\x97\x2f\xcc\x6f\x58\x59\xc9\xb3\x16\x45\xe6\x1a\x1e\x3e\x9e\x05\x8a\xa2\x8c\x0a\xd0\x07\x85\x3a\x75\x98\xc6\x85\x52\x99\x71\x08\x9d\x76\xb6\x1d\x77\x05\xc6\x95\xbe\x0a\xb0\x8c\x77\x84\x5b\x93\xb4\x70\xce\x9d\xc0\x09\x76\x78\x49\xf8\x78\x43\x79\x2a\xf6\x82\x8b\x91\x80\x2b\xd6\x65\x1b\xad\x57\xa1\x18\xdb\xb6\x4c\x76\xe1\x70\x90\x93\x4c\xd1\x1a\xde\xf7\x15\xef\xc9\xc6\xf3\xbe\x72\x2d\xdf\xbf\x25\x3d\x2e\xf6\xf6\x78\x6c\x2f\x13\xf1\x1b\x14\x06\xc1\xb3\x55\xaa\x97\xbc\xcb\xfc\x1e\x11\xb2\xed\xa0\x1b\x5b\x09\x92\xeb\xe1\xb1\x8d\xb3\x7c\xb5\xd2\xdb\xc4\xde\x20\x05\x96\xeb\xfb\x36\xad\x78\x9e\x16\x40\x5f\x8c\x26\xd6\x59\x48\x46\x53\x88\x3b\x7b\x6d\x54\x9c\xf0\x1d\xb9\x1e\xcb\x6b\x6c\x76\x4b\x46\x37\xc7\xa3\x5f\x6c\xb0\xc5\x25\xb9\x6b\x24\x0e\x70\x6b\x64\x28\xf6\x1c\x6a\x9e\xb2\xec\x5a\xfe\x9c\x99\xcd\xb3\x4e\xeb\x1f\x5b\xf7\xa2\xf1\x3c\x2c\xf2\x5b\x1a\x2e\xf0\x5e\x50\x51\x57\x64\x34\xd1\x38\x81\x83\x02\x19\x5a\x28\x46\xf8\xa5\xcc\x6a\xaf\xd1\xfd\xaf\x52\x5f\x0f\xef\xb1\xd4\x96\x74\x91\x10\x7a\x6a\xbf\xef\x3b\xa4\xd6\xa5\x4b\xa4\x4d\xf0\x32\x65\x4b\x5a\x24\x2f\x1b\xfd\xa6\xb6\xf9\xf1\x68\x82\x2b\xd4\xa5\x5a\x5a\xba\x5c\xad\xc8\xeb\xcc\x7e\x0f\xf6\x92\xf1\xf8\xb6\xa2\xb7\x79\xb9\xab\xff\x6a\xd6\xea\xca\x59\xb7\xbc\x7e\x5b\x16\x45\xc2\x88\xdc\x2d\x82\x06\xc1\x79\xfd\x4e\x6e\x1a\x93\xac\x36\x11\xd6\x27\x20\x59\xc9\x7b\xe0\x4d\x59\xd1\x57\x65\xa5\x10\xc7\xa4\x3a\x81\x0f\xc4\xa3\xab\xc1\x25\x46\xda\x50\xd0\x9a\x9d\xb8\x6a\xa1\x5d\x79\xfc\xa5\x8e\x43\x4c\xf1\xe8\xca\x0b\x1f\x6a\x20\xd4\xef\x1b\xe1\x2b\x1d\x30\xb5\xa5\xdd\xd4\x52\xc4\x87\xca\x5a\x13\x2f\x1c\x4b\x45\xf5\xf2\xa1\x39\xab\xd0\xc2\x1d\x3d\x6c\x13\x02\xea\x1a\x5c\xdd\x48\x54\x5e\x3b\xac\xce\xc5\xa9\xd2\x72\x84\xb1\xb3\x35\x94\x86\xe4\xe5\x77\x24\x66\xc7\xe3\x54\xc0\x26\xf7\x02\x46\xe9\xa2\x63\xb0\x8e\xcd\x7d\xf0\xc8\xbd\xc0\xc8\x95\x4e\xd1\xab\x2e\x09\x1b\x5f\x4a\xb4\xad\xff\x94\x72\xad\x4f\xea\x17\x61\x6e\xf5\x33\xf3\x69\xf6\xa9\x0b\x0c\x74\x68\x49\xc9\x2e\x8b\xec\x00\x7b\xa9\xec\xde\xda\x30\x59\xed\x7d\xee\x55\x59\x5d\x6a\x23\xd7\x2e\x1f\x49\x19\x32\x8b\xfb\x3b\x27\xc6\xfb\x56\xab\xf7\xbd\xc3\x85\x34\x25\x74\x80\x33\x15\x18\xcc\x4e\xd6\x5e\x92\xca\x59\x89\x0e\xf3\x03\xaf\xc8\xf2\x62\x39\x56\x3b\xc0\xbe\xdf\x13\xe7\xb6\x9f\xc9\xd7\xd7\xdc\x43\x2b\xd9\x7a\xe6\xd4\xb6\xc8\xd4\x84\x77\x88\x56\x51\xee\x86\xf2\x9f\x60\x23\x00\xbe\x87\x12\xe5\x3a\xd2\xca\x92\x2b\xae\x72\xf6\x64\x54\x68\x73\xc0\x1d\x04\xe6\x75\xce\xb9\x39\x6c\xfa\x95\x58\x0d\x1d\xbf\x15\xbe\x25\xda\x1a\x7a\x1d\x45\x3b\x1d\xe2\xfc\x3d\x4f\xf9\xae\x86\x67\xc4\x49\x41\xf8\x9a\x64\x51\x14\x6f\xa2\x68\xe3\x06\x48\x47\x23\x42\x76\x6e\x92\xc6\xa4\x47\x84\x64\xb3\xd6\xa9\x5a\xbc\x15\xc7\xa2\xd3\x15\x3a\x1e\x6f\x05\x5a\xc6\x4a\x9e\xaf\xf6\x97\xec\x67\x3b\xf3\xc5\x3a\x65\x37\xf4\x78\xdc\xcb\x78\xbd\xa3\x0c\x1e\x3d\x89\xa3\x67\x48\x0c\xbb\xd3\x6f\x27\xc1\xf2\x17\xbd\x73\x82\xb8\xcb\xa5\xba\x19\x42\xec\x77\xdd\x18\xf0\xf6\xb9\x70\x5b\x92\x47\x24\x27\xa3\x09\x56\x26\x45\x60\x8a\xa1\xcd\x8b\x6e\x2c\x73\x8c\xd3\x3e\x3c\xf0\x44\x59\x38\x9d\x2a\x76\x23\x8a\xb5\xe4\x75\x4f\xb9\x45\xab\x83\xe4\x6c\x55\xc6\xe1\xf7\x2c\xd8\xb1\x75\xca\xb2\x82\x66\x32\x1c\x7c\x70\x97\xd6\x01\x34\xc5\x82\x6b\xba\x4c\x77\xb5\x74\x27\x04\x79\xb2\x64\x25\x79\x1c\x37\xe2\x28\x56\x34\x33\x51\xcb\xe0\x80\x06\xe1\x99\x4d\x93\xef\x8c\x8e\x8c\x89\x47\xde\x68\x9f\x14\x77\xda\x4e\xe7\xca\x8a\xf1\x5c\xa0\xea\xf4\xdb\x69\x33\x2a\x1b\x08\xc3\x5e\x28\x84\x01\x5f\x91\x51\x61\x30\x89\xe3\x71\x34\x9d\xe9\xd0\xcb\xeb\x28\x5a\x03\xee\x12\x45\xa3\x6b\x74\x47\xe4\x0f\x51\x61\xda\xba\x1a\xb9\xec\x9c\x7a\x3d\x72\xfc\x92\x54\xf7\x23\x3e\x97\xd6\x03\xea\x3d\x78\x3b\x0b\x93\xb4\x51\xa0\x49\x83\x66\x77\xe4\xa5\x35\x89\x97\x66\x12\x8d\x7c\x9f\x5a\xf0\x7c\x22\x57\x3d\x6c\x67\x75\x21\x6f\x4c\x33\x49\x5c\x94\x69\x96\xb3\x9b\xe4\xd4\xa9\xc2\xce\xcf\xa4\x93\x8d\x6b\x9e\x4a\x4d\xe4\x44\x36\x7e\xf7\x2f\x6c\x74\xda\xe0\x30\x2d\x0a\x38\xa3\x8f\x38\xa2\x51\x14\x7f\x52\x98\x7d\xf7\x3e\x41\x58\xda\xdc\x29\xb7\x43\xeb\x28\xfa\x24\x80\xe1\xf4\x4e\x08\xf9\xe4\xa6\x88\x22\x30\x24\xc8\x82\x2f\x0d\x42\x48\x11\x1f\xe8\x78\xcc\xd5\x79\x05\x1d\x7d\x73\xb2\x36\xe9\xfe\x9a\xfe\x48\xe9\xf6\x15\xb8\x62\x44\xf1\x27\xf4\xa8\x93\xdc\x88\xb7\xa9\x67\x89\x05\xd7\x04\xf0\x14\x98\xf6\x12\x6a\xdb\x21\xfa\xc9\x59\xd4\xc0\x3f\x7c\xaf\x4e\xd4\x40\x4c\x92\x09\xc2\xe6\x99\xba\x57\x25\xe7\x0b\xa9\xce\x65\x75\xd0\x37\xaa\x07\x35\x1c\x9b\x29\x59\x53\xf0\x07\x6e\x7a\xf9\x42\x5b\xc5\xd9\xcc\xbe\xbf\x48\x46\x76\xcb\xe9\xd3\xda\xcb\x40\xb8\x8c\x3d\xf1\x93\x05\x70\x3c\xc9\x4e\xc0\xce\x8a\x9c\xe0\x35\x32\x34\xb3\xa8\x58\x2f\xa7\xb2\xc2\x56\x09\xd4\x78\xd5\xf9\xe8\xa9\xc7\x09\x3c\xd7\x9c\xc8\x27\xa3\xa9\x76\xbd\x0f\xdc\x2d\xea\xfa\x68\x13\x2b\x6e\x98\xf4\x89\xcb\xb3\x37\x48\x68\x89\xeb\x75\xb9\x2b\xb2\xf7\x9a\xc5\x05\xb8\xd9\x3d\xca\x5e\xae\x9d\xe3\x48\x43\xbb\xc7\x5d\x96\xf7\xfa\xef\x67\x6f\xdb\xed\x28\xde\x76\xa8\x29\x59\xa9\xf2\x26\xf5\x5d\xbd\x31\xb9\xbe\x30\x7d\xdd\x55\xe9\xd6\x6a\x4f\x72\x37\x44\x1f\x69\x10\xde\xfc\x56\x84\x01\x4f\x6f\xc6\x5f\x20\x69\x64\xd5\x23\x40\xfb\xd3\xeb\x15\xd1\x53\xb5\x39\xe6\x34\x0b\x4a\x66\x69\x96\xa9\xf1\x53\x20\x8d\x20\x08\xef\x6d\x5a\xf4\xdb\xb6\x73\x1f\xda\xac\x8a\x70\xe6\x08\x9d\x4e\xfa\x55\xa8\x70\x69\xe9\x22\xa7\x59\xd6\x47\xe1\x19\x16\x85\x30\x77\xb4\x01\xf1\x68\x8a\xd4\xab\xd3\x53\x8c\xa0\x52\x02\xef\x27\x08\x18\xc2\x95\x8c\x4c\xd9\xc1\xea\xef\xab\x55\x4a\x53\xbe\xce\xce\xec\x08\x1a\xfc\x1a\x1d\x2d\x2c\xc6\xbc\x94\xe1\xce\x63\x57\xf1\xc8\x14\x38\x3b\xc3\x1d\xed\xa0\x9a\x97\x5b\xd9\x3a\xeb\xeb\x29\x74\x49\x4c\x53\x38\xa6\x7e\x9a\x72\x90\xa2\x74\x3b\x4d\x33\xa9\xa9\x66\x1c\x66\xbb\xf7\xf0\x20\x97\x80\x1a\xef\x76\xad\x7b\x6d\x35\x51\x4b\x9e\x6b\x05\x57\xb9\x98\x2f\x12\x86\xb4\xe2\x3c\xd8\x90\xb5\x23\x16\xaf\x6d\x17\xe0\x5d\xde\xc5\x29\x0a\xaa\xd4\x9c\x90\x16\x2f\x92\x3c\x89\x59\x19\x45\x65\xac\x3d\x6c\x74\xd6\x8c\x4b\x0f\xf7\xec\x34\x1d\x05\xf7\xba\x0e\x5e\xc9\xba\x94\x8e\xe8\x20\xe6\xa4\x94\xcf\x70\x6b\xfb\xe4\xaa\x74\xfa\xd0\x32\xd8\xe4\x1a\x2f\xe3\x16\x5e\xc6\x86\x50\x30\xac\xf1\x35\xd9\x79\x92\xe3\xa5\xd2\x2e\x71\xec\x72\xef\x41\x4d\x3b\xbc\x1b\x8d\xa9\x72\x30\x14\xee\xef\x8e\xde\x11\xe9\xad\xc3\x80\x4c\x59\x8c\x22\xa6\xd6\x39\xc0\x07\x45\x3b\x27\x1c\x57\x54\xbc\x61\xe0\x98\xa4\xa3\x21\xe2\x3d\x96\xfd\xa3\xe0\xe9\x4f\xf2\x55\x9d\x2e\xfb\xd3\x71\xd5\x5f\xba\x68\xc7\xfd\x4c\xb1\xae\x86\x01\x6f\x9a\x07\x61\x09\xdc\x90\xd2\x36\xb6\xc0\xd2\x0d\x15\xe8\x41\x3f\x76\xb5\x9d\x36\xf3\x48\xe5\xe7\xd5\x82\xf8\x93\x21\xd4\xb5\x3f\x4b\x45\xdc\xd4\x19\x7d\x8d\x23\x01\xfc\x61\x08\x39\x6a\x96\xd6\x89\xc1\x8c\xf0\x1e\xf7\x01\x22\xc5\xca\x33\x98\xaf\x64\x28\x4f\x84\xcd\x39\x3a\x09\x2b\xd6\x81\x15\xce\x49\x29\xe3\x58\x96\x16\x54\x80\xb6\x9a\x3d\x7e\xc5\x34\x49\x96\x3b\x8c\xbb\x16\x4c\xb9\x1f\xb0\xf9\xe2\x54\x44\x40\xa6\x8b\x0b\xcc\x14\x34\xe2\x3a\x6e\x56\x8d\x6e\x5e\x3f\x1e\x43\x7f\x27\xfb\x64\x24\xf1\x04\x8b\x15\x12\x60\x43\xb1\xf5\x78\x43\xa3\x01\x28\x9c\x05\x77\xeb\xbc\xd0\x18\x87\xa0\x90\x73\x16\xac\x8a\xfc\x66\xcd\x63\x70\x5d\xaa\xc8\x35\x08\x99\x0d\x36\x60\xcb\x75\x9a\x33\x14\x22\xa4\xf6\x30\xb5\x42\xeb\xda\xea\x23\x1e\x07\xed\x70\xf0\xbb\x8b\x1e\x45\xca\x33\x21\x43\x4d\x9f\xe7\x0b\x63\x34\xcf\x95\x2b\xbf\x92\x79\x3d\x61\xb0\x4a\xfe\x3c\xb5\x4a\xa9\xdd\x65\x29\x45\x0e\xeb\x28\x0e\xab\x17\xf6\xd1\x00\xde\x39\x20\x46\x87\x66\x50\xb3\xe4\xa1\x40\xad\xb4\x84\x39\x27\x95\xef\x15\xca\x65\x6e\x4a\x72\x1f\x57\x6f\x96\x4b\xc8\xb4\xaf\x53\x1d\x1b\x7b\x06\xcd\x48\x4b\x8f\xc7\x11\xb5\xe4\x0e\x32\x89\xc9\x55\xcb\x35\xaf\x3c\x46\x8e\x30\xac\x7c\x00\x83\x83\x77\xf0\x8f\x52\x05\x59\x7f\xbc\x4a\xa3\x7b\xc7\x0c\x00\xbb\xab\xcf\xed\x61\xda\xdb\x2a\xad\xbc\x6b\x3e\xc0\xd3\x8a\xfb\x64\x6b\xae\x2a\x61\x17\x39\x82\x80\x09\x5d\x1d\x2a\x78\x39\x7c\x9c\xe3\x3e\x7e\xe7\x37\x36\xe8\xcf\x1e\x33\x8d\xd6\x68\x79\x66\x7e\x42\xe8\xb6\x23\xb9\x47\xe8\x56\x22\xec\x27\x15\x1f\xa8\xd4\xe2\x09\x8b\x06\x61\xc8\x1c\x42\x13\x2f\xad\xcd\x2d\x2e\xa5\x62\x9c\x76\x25\xbb\x4b\xa3\x38\x3b\x25\x84\x2c\x1d\xb2\xb7\x24\x7d\x25\x07\xd6\x91\x59\xdb\xa0\x52\x58\x17\xc5\x3b\x0c\xdc\x14\x9f\x5c\xda\x1b\x4d\x42\xfa\x03\x02\x06\xad\x72\x06\xe3\xf5\xd1\x32\x54\x59\x31\x39\x2c\xc7\x41\xe2\x82\xcf\x09\x1b\x50\x02\x11\xc3\x9b\x99\x70\x8c\x96\x9e\x07\x93\x7a\x1e\xb9\xad\xe7\x51\xa2\x9e\x6f\x51\x74\x58\x92\xe5\xfd\x1a\xc3\x78\x62\x41\x34\x8a\x60\x7e\x3d\xe7\x2f\x7e\x1a\xa3\x8f\x51\x75\xc9\x0f\x73\x53\x4b\xb4\x60\xc8\x9e\xc5\xe4\xf5\x5b\xb4\x91\x6a\x47\x09\xf3\x71\x0e\x6d\x9c\x4b\x53\x23\x79\xfd\x6b\xf9\x85\x54\x22\xb3\xe4\x6e\x5d\x3f\xf7\x3d\x86\x92\x31\x08\x57\xd7\x29\x16\x78\x97\x85\x7c\x13\x66\x8e\x1f\xed\x22\xfe\x78\xd7\xc5\x83\x0c\x5a\x35\x56\x97\xa3\xb8\xb3\x77\xc8\xb5\xed\xf0\xb0\xe4\x24\xeb\x72\xa7\x59\xab\x5b\x49\xe3\x83\xd4\xd9\x78\x46\xae\x4f\x08\xb6\x2b\x9a\x66\x9a\x8e\x28\x2d\x3a\xa2\xea\xd1\x0b\x17\x39\xb4\x90\x68\xaf\xa8\x2d\x71\xc1\x5b\xcf\x43\xf7\x0d\xb4\x76\x46\xd8\xe3\x0d\xde\x57\xfd\xd0\xb4\xf5\x27\x3d\xa5\x77\x0d\xcd\x5f\x73\xbe\x7e\xeb\x8c\xbe\x7f\x4b\xce\x06\xd4\x46\x0e\x16\x6f\xe2\x1e\xba\xce\xa7\x2a\xd9\x79\x71\x24\x9b\x90\x83\xed\x7b\x06\x01\x05\xd9\x17\x3c\xa0\x9f\xf2\x9a\x27\x41\x78\x46\xc5\x39\x67\x52\xe2\xc1\x09\x55\x1a\xdf\x06\xdb\xc7\x25\xa9\xac\x1d\x25\x1e\x76\x58\x28\x4d\x2a\x77\x56\x48\x8f\xb9\xbf\x97\x63\x88\xce\x29\x19\xe7\xed\x12\x97\xad\xac\x37\xef\x40\xb2\x7b\x35\x9e\xb2\x0f\xb2\x34\x6e\xe3\xce\x79\x1b\xc2\xfc\x2c\x2a\x52\xdc\x3a\x86\xe4\x77\x7e\xdc\x13\xe1\xd7\xab\x71\x58\xe9\x83\xd4\xaa\x16\x8a\x37\x57\x9f\x29\x0f\x67\xc6\x16\x89\xfb\xde\x52\xc5\x1d\x80\x43\x6c\x04\xe6\xa0\xb4\xad\x0e\x2c\x68\xf8\x1a\x39\x4a\x61\xdd\x07\x4b\xcd\x66\x76\x05\xe7\x78\x45\x0a\x6b\x55\x33\x52\x18\x8d\xdc\x35\x29\x1c\xf1\xe8\xde\x72\xf5\xa0\x75\x7a\xd7\xf8\x96\x14\x8e\xc2\x8d\xd2\x5b\x19\x7a\x4c\x56\x52\xa3\x30\xc3\x87\x95\xf1\x43\x91\x8c\x06\xf4\xaa\x1b\x84\x4e\x32\xe2\x28\x2e\xd0\xa1\xf4\x73\xe0\x72\x2c\x72\x67\x52\xfe\xdb\x7f\xbd\x4a\x47\xef\x1b\x5f\x9f\xd6\x56\x54\x3e\xbc\xda\x33\x98\x76\xb5\x05\x04\x4e\xfb\x1d\x89\xab\xe3\x71\x2a\x03\x2c\x39\x3a\x3d\xb7\x20\xd1\x28\x3b\xe8\x80\x7d\x26\x04\x1e\xb0\xc2\x4b\x5b\x0d\x6b\x7f\x3c\x6a\xa9\xcd\xbe\x7f\x39\xc1\x5a\x14\xc6\x09\x63\xd9\xe2\xb8\xe9\x09\x1c\xf7\xa0\x35\x16\xe5\xf1\x33\x5a\x79\xa3\x49\x23\xa8\xff\xf2\x84\xea\x47\x9c\x62\x8a\x97\x08\x97\x1d\xf4\x38\x95\x89\x1e\xee\x1c\xf0\x6b\xa9\x23\x7f\x86\xb9\xb8\x33\x78\x80\x26\xa7\x00\xa7\x86\x04\x44\xb5\xd1\x99\x08\x2f\x3b\x4a\x57\xb7\x88\x13\x39\x39\x29\x8b\x94\x4e\xf8\xca\x53\xcf\x4d\x7b\x07\xad\x94\x46\xf0\xae\xab\x32\xd5\x42\xbf\xf1\xe1\x5a\xe5\x20\x0f\x36\x17\xa0\xf1\xad\x8c\x59\xc8\x83\x6b\xd3\x41\xbb\xe8\xc5\xd0\xb5\x13\xd0\x11\x21\x19\x30\xba\x70\x31\xec\x89\xef\x7f\xf3\xc8\xb4\x72\x09\x97\x50\xab\x13\x66\xc4\x9a\xa3\x69\x47\x78\xb9\x05\x0d\xa7\x34\xdb\xb7\x62\x4b\x24\x37\xe5\xef\x19\xa6\xe6\xd2\x66\x0b\x9f\x66\x62\x5f\x13\x73\x98\xf6\xf5\xb1\x52\xe8\xc2\x89\xbf\xc1\x90\xc7\x08\x91\x0d\x19\x1c\xf2\x53\x6f\xfa\xbd\x41\xe5\x07\xcd\x18\x5b\xd2\xb7\x67\xc6\xd9\xd3\xaf\xbb\x8f\xf7\xff\x50\x86\xbf\x9e\xc8\x49\x8b\x3e\xf1\x08\xdf\x50\x19\xb9\x08\x5e\x81\x7d\x17\xa5\xef\xb7\xd2\xc6\x9e\xe9\xb1\xea\x2a\x29\xbe\x63\x58\x3c\xab\x68\xe6\x74\x03\xec\x19\x5c\xf5\x0c\xee\xf4\xc5\xd5\xe7\xfc\x2a\x8b\x33\xb3\xd5\xf8\x3d\xfc\x66\x0a\x4c\x81\x6e\x2d\xf6\x80\x5a\x1d\xe4\xc6\xf7\x50\x9e\x10\x10\xf8\xad\x41\x54\x57\xf2\xfa\xaa\x5a\x1a\x5a\xb5\x77\xd1\x4f\x82\xa8\x66\x16\xfe\xc5\x71\xa9\x07\x21\x76\x76\xe2\x25\xa0\x45\x0e\x82\xf5\x53\x78\xb7\xc2\x15\x12\xb5\x12\x07\xb8\x87\x93\x0a\xeb\xa1\xfd\x99\xee\xbb\x6a\xff\x3a\x9a\x85\x09\x23\xa8\x7e\xc3\xc4\x5e\x67\xaf\xaa\x72\xa3\xfa\xa6\xb6\x9b\x42\x85\xd2\x7e\x90\x41\xae\x55\xbf\x63\xab\x1f\xe9\x1d\x8a\x51\x9a\xe9\x48\xd8\xa9\xf2\x0b\xc5\xd7\xa9\x8c\x35\x9d\x06\x76\x20\x8d\xa0\xdb\x21\x0e\x8a\xfc\x23\x0d\xb4\x17\x15\xe0\x36\xe5\x6c\x43\x37\x25\x08\x0a\xa5\xfb\x51\x7f\x18\xa7\x01\xe7\x6a\x5f\xa3\x93\x76\x95\xd5\x38\xbd\x37\x88\xe0\xa9\xfa\x79\xcf\x2e\xd3\xb1\x9d\x04\xcf\x82\x59\x6d\x59\x4b\xea\x43\xae\x4c\x6c\x6a\xca\xdf\xea\x8d\x78\xb9\x3a\x1e\x0f\x57\x57\xb0\x31\xaf\xae\x92\xf9\xa2\xb1\x1c\xfd\x83\x1f\xc7\x28\x72\x8f\x25\x1d\x9b\xe2\x84\x37\xb6\x4d\x26\xee\x86\x15\xe5\x88\x77\xac\x29\x63\x26\xcd\x28\xd9\x02\x22\xa0\xa0\xa6\xa7\x35\x08\xa0\x30\x16\x8d\x95\xe6\x31\xdb\x2e\x4d\x79\x23\x83\x74\x60\xcb\x6a\x93\xa8\x70\x50\xec\xc2\x75\x63\xc8\x50\x12\x57\x76\x31\x3b\xc0\x09\xbd\x0b\x2a\x04\x81\x4d\x72\xe7\x06\x33\xdd\x73\x47\xce\x36\x22\x84\x42\x2c\x78\x88\x3d\x0c\xcf\x83\x31\x2c\x45\xc7\xa3\xc3\xb9\x1d\xe7\xec\x15\x30\xae\xd5\x9d\xdb\xd2\x64\x96\xa9\x62\x8b\x7c\x56\x56\xaa\xe6\xa5\x94\x31\x97\xd6\x1e\xf7\x85\x2e\x6b\x2f\x4a\x29\x2b\x17\xa7\x43\x1e\x94\x18\x28\x14\x85\x6f\xeb\x93\x07\x27\x4c\xf2\xae\xe8\x98\x97\x7f\xa6\xfb\x1e\x00\x8c\x6b\xee\xe1\x59\xb4\x7c\x0c\xcc\xec\x79\xa8\xab\xbe\x01\xe2\x54\x89\x75\x07\xdb\x10\x65\x4b\xa4\x98\xc2\x78\x47\x80\xb9\x5e\x2b\x67\x7d\x6d\xc1\xb8\xff\x38\xf7\xfb\x2c\x5b\x7e\xea\xf1\x18\x73\xc5\x97\x9b\x2f\x14\xe2\x36\xb7\x82\x32\xcc\x21\x14\x83\xd3\x82\x78\x39\x4a\x2c\xeb\x48\x16\x9b\x41\x21\xa4\xd7\x50\xe9\x89\x8b\xa2\x05\x52\x0d\x2a\x56\x9a\x55\x4c\xfe\x6e\xcb\x99\xfe\x5a\xbf\xdb\x56\x69\x93\x64\x2a\x34\x08\xa7\xc7\x23\xf8\xb6\xbd\x8f\x2a\xe1\x24\x17\x13\x76\xe7\xa0\x56\xa4\x44\x18\xf8\x43\x72\xd8\x3e\x76\xa0\xb5\x11\x80\xf1\x6d\x86\x72\x8a\xab\xa5\xf1\x8a\x1e\x1a\xfc\xb0\xf1\x68\x70\xdd\x3b\x9e\xa6\x41\x8e\x87\x82\x34\x8a\xd2\x6e\xfc\x8a\x07\xec\x4b\x60\xdf\xcf\xee\xdb\x80\x72\xd9\xeb\x56\xec\xfd\xa0\x0d\xdb\x60\xde\xc4\xb6\xcd\xf0\xef\xb9\xcd\x77\xd6\x6d\xfe\x54\x59\xd9\x3f\xfb\x46\x5a\xd9\x3f\x79\x8e\x70\xfa\xef\x6b\x19\xbf\xbb\xdf\x4a\xdd\x36\x82\x06\x13\x66\x65\x03\xed\xae\x9c\xe6\x00\xb5\xde\x31\xb5\x56\x6c\x37\x27\x57\x5a\x40\xdd\x74\xb1\x54\x39\xbb\xf9\x90\x6f\xc4\x5d\xab\x53\xb5\x5b\xc2\xd1\xb4\xef\x5a\x49\x1b\x8a\xeb\x32\xec\x78\x1c\x4d\x7d\x66\xd9\xcb\x35\x5d\x7e\x7c\xad\x46\x3a\x24\x08\x3a\xe1\xe0\xc5\x96\x04\x49\xfe\xbe\xab\x00\x9e\x6b\x02\x69\x28\x13\x0e\xd6\x03\x4d\xaf\x6c\x9c\xf2\x24\x93\xa5\xc4\x39\x3a\x54\xee\xb8\x5d\x91\x11\x66\x1e\x6d\xa6\x72\x48\x61\x29\xf7\xea\x24\x81\x44\xe9\xad\x5c\x1b\xff\x70\xa5\xca\xdc\x69\xf5\xaf\xef\x39\xa7\x9b\x2d\x97\x28\x20\x34\x19\xa4\x81\x5a\x71\x2d\x4c\xce\xf9\xba\xdc\xd9\xe9\x7a\xa7\x8c\x3b\xde\xcb\xd4\x7a\x5f\xf0\x24\xf6\xef\xb5\x39\x5f\x10\x6a\x68\x00\x07\x40\x3d\x71\x1b\x37\xe2\x36\x9d\x75\xc9\xf4\x3c\xd4\xf3\xee\x91\x6f\x0c\x00\x04\x1d\x94\xe1\xdd\xc0\xb8\xe8\x62\x60\x13\xe4\xb4\x6e\xbb\x1d\xd2\x4d\xf4\x1d\x9f\x39\x5d\x90\x81\xf4\x1e\x99\xaa\xd6\x8a\xf7\x07\xd6\xc7\x01\x8f\x47\x4f\xb1\x39\x5b\x38\xeb\x2c\xd0\x2d\x27\x76\x3c\x77\x8f\x5a\x1b\xdc\x77\x34\x51\xf8\x8c\xbf\x55\x9c\x93\x54\x10\x2a\x2d\x86\x90\xdb\xbc\xcb\x8e\x49\x1f\xe6\xf6\x3e\x67\x38\xc7\x95\x32\xcd\xf2\xcb\x48\xc1\x8b\xf4\x44\x07\xe0\xf2\x00\xca\x44\xa4\x04\x49\x7e\xbb\xfa\xbd\x6b\x69\x4e\x17\x08\xdb\x4b\xdc\x6f\x6c\x40\xf7\xcd\xbb\xba\x2e\x6a\x08\xea\x2c\x36\x78\x65\x34\x7e\xcf\x61\x82\x13\x62\x8e\x87\xad\x89\xda\x1e\xaf\xfe\xe1\x0a\xf2\x2c\xf8\x22\x3c\xa3\x67\xe1\x17\xe3\x10\x79\x77\x53\x77\x1f\xd8\x2a\x86\x48\x1d\xa7\xee\x94\xab\x85\xd1\x4b\xbf\x18\x2a\xa0\xa4\xb3\x49\x3c\x50\x80\xcc\xe9\xc2\xf3\x0a\x88\x9c\x9a\x72\xb3\x20\xd6\xb2\xb2\x81\xb3\x13\x57\xa8\xe9\x47\x20\xd6\x7b\x6e\xf0\xd8\x3e\xfa\x0e\xd3\x2d\x06\x69\xc0\x4a\x76\xee\x81\x36\x5f\xd3\xc0\xe8\x27\x8f\x43\x37\xec\x4c\x5f\x97\xd9\x68\x30\x53\xb8\x81\xef\x27\x66\x4f\xd2\xaf\x06\x63\xf1\x3f\xef\xad\x38\xb6\xa2\xe4\xd0\xf8\xde\xcc\x1b\x8f\xfe\x8b\x73\x09\x8b\xcc\x1e\xaf\x69\x90\xcd\x04\xc5\x7b\xf7\x9f\xed\xab\xc1\xaf\xf3\xa7\xeb\x91\x43\xab\xcc\x23\xf6\xa3\xab\xcd\x08\xf6\xfc\x86\x7f\x39\x51\x28\xb0\xd4\x1b\x71\x3d\x4e\x76\x6d\xd8\x87\x39\x5a\xba\xe7\x19\xc4\x6b\x1f\xab\xd6\x05\x22\xa2\xec\x10\x48\xf7\x61\xe8\x7b\x25\x18\xc2\x35\x4c\xdb\x92\x0c\xb0\xda\x56\x48\x38\xf1\x78\xc7\x02\xcd\x9b\x9e\x6a\x97\x59\xc3\xdf\xbb\x67\x6c\x2c\xf7\xc9\x57\xae\xf7\xf9\xff\x97\x62\xb9\xff\x27\x1d\x83\x93\x8a\x90\xaa\x9a\x66\x72\x03\x6f\x1b\x30\x51\x2d\x51\x04\xa3\x81\xd6\x09\xb3\x11\xab\xa5\x28\x6e\x0b\xa1\x11\x21\x76\x0e\xb5\x4c\xd2\x7a\xb7\x1d\xdc\x83\x2c\x2d\xe4\xef\x24\xd8\xa4\x7b\x08\x40\x22\x55\xa6\xa5\x70\xba\xbd\xf1\x5a\xdb\x03\x18\xaa\x51\xde\x87\xd0\x68\xa0\x44\xa9\xdc\x57\xf5\xec\xad\x95\x4a\x89\x0f\x6b\x56\xc7\x22\x8a\x62\xcb\x45\xf5\xcb\xdf\x76\x69\x21\x66\xd5\xca\x46\x6d\x6d\xa1\xe3\x31\x86\xf0\x35\xa9\xed\xaf\x40\x85\x3f\xdc\xcd\x76\x84\x5d\x88\x96\x6b\xca\xff\x6a\x79\x6f\x90\x46\xde\x90\x23\x2e\x72\x48\x51\x26\xde\x17\x79\x6b\xde\x9d\x58\x83\x9a\x49\x8d\x89\x39\x1c\x61\xde\x35\xdc\x8a\x6b\xc2\xbb\x76\x59\xde\x85\x24\xad\x05\xbc\x25\x1e\xf6\x7b\x96\xe8\x59\xd2\x25\xa9\x6b\x6d\x09\x9a\xe6\xae\xb0\xae\xee\xda\xa1\xb5\x26\xea\xd4\xf8\x6b\x68\xb0\x47\xc5\xc1\x27\x93\xd6\x4c\x75\x35\x09\x4f\x89\x85\x56\x78\x3d\x55\xa6\x63\x8d\x26\xa0\x6a\x8a\x79\xae\xd4\x21\x6d\x9b\xde\x1b\xd1\xe9\x7b\xe1\x18\x9f\x4a\x3d\x7c\x37\xdf\x81\x15\xe1\x46\x24\xaa\xbf\x74\x7c\x36\xfd\x3b\xd1\x5a\xcf\xa6\x85\xde\x9a\xf8\xba\xe9\x4f\x57\x4a\xd3\xfa\x50\x67\x0e\x84\x59\x67\x46\x6c\xb0\xa9\x2e\xbe\xe3\xda\xc0\xff\x1e\xa8\xf1\x7b\xe7\x02\xa0\x39\x31\x17\xbf\xa3\x02\x86\x47\x93\xc1\x51\xdb\x25\xbd\xda\xf3\x9f\xbb\xe0\x9f\xb1\x5c\xfc\xc2\x40\xd9\x3e\xff\x0f\xd2\x79\xb3\x29\x05\xff\xcd\xdf\x79\xd3\x3d\xf4\x9e\x7c\x9c\x6c\xd7\x5b\x6d\x72\x5f\x12\x69\x07\x4a\xd1\x5e\xf0\x39\xfa\xee\x7c\xda\xa0\xb1\x0c\xd4\x68\x2b\x69\xb4\xaa\xa8\xc0\xef\x07\x12\x8c\x9b\xcd\x86\x0f\xee\xdd\x61\xcd\x5e\x2a\x9e\x1e\xfe\x05\x98\x6a\x69\x4b\x4a\x9e\x09\xac\x63\x90\x21\x25\xa5\x0c\x10\x05\x83\x0e\x3c\xd5\x20\x72\x1a\x7a\xaa\xa1\xea\x63\xae\x17\x0c\x1c\x16\xa3\x5b\x23\x23\x2a\x6a\x1b\xc5\xd4\xc4\x79\xa8\x86\xfd\x64\xcd\x72\xeb\x2d\x3e\xe1\x4d\x8b\x2a\x93\xec\x38\x05\x1b\xd4\x51\x19\x45\xa9\x3a\x3e\xd2\x0b\x30\x38\x99\x8e\x3b\x4a\x22\x52\x4c\x96\x84\xef\x2e\x2f\x3f\x5c\xfd\xe5\x97\x97\xef\xfe\x33\xc4\x1e\x53\x9f\x2e\x47\xc7\xaf\xf0\xda\xbb\x24\xee\x1f\xb7\x14\xa8\x3c\x78\x84\xef\x7f\xf9\xe1\xfd\x8b\x77\xaf\xdf\x7e\x78\x7d\xf9\xf3\x83\x07\x6a\xbb\x69\x3b\x61\xb3\xe9\xf3\x9e\xa8\xb0\xf9\x99\x3f\x7e\xa0\xaf\xc6\x85\x2f\x31\xb6\xd1\x8b\xc4\x57\xa2\x4f\x6a\xf1\xfb\x3c\x94\xb5\x8e\x20\x5f\x67\xda\x59\x99\x54\xc8\x60\x0d\x7e\x38\x4a\xe0\xba\x30\xeb\xfa\x8a\x54\xee\xcc\x74\x72\x83\x9a\x99\xb5\x60\x15\x5d\x96\x55\xd6\x3a\x9e\xfe\x50\xa5\xac\x96\x0e\xb0\x7b\xd2\x1c\x06\x86\x36\xcb\x35\x9d\x71\x7d\x02\x41\x6d\xb4\xb2\xa2\xed\xe9\x1c\x06\x24\x57\x3b\xbd\xae\xfa\xe5\x83\xa9\x24\xdb\x1d\xc6\xf0\x2e\x54\x2a\xad\x48\x0f\x74\xbe\x98\x29\x53\x83\x76\x2f\xca\x0f\xcf\x96\x7c\xf3\xcb\x87\xef\xed\xed\x78\x1f\xc0\xc5\xbd\xe7\x02\xd9\xf5\x8a\xd8\xc9\x3c\x7d\x3f\x3b\x45\xe7\x7c\xe1\x53\x56\x34\xc6\x1a\xdd\xe2\xe5\x02\xa7\x44\xf9\xbd\x01\xed\x7c\xe5\x3f\x11\xd7\x7a\xa9\x1c\x9f\x0c\xa9\x6f\x62\xa9\xb5\x93\x1e\xe4\x9f\xaa\x20\xb5\x76\x49\x95\xaf\xe2\xda\x48\xa5\xb4\xaf\x18\xb3\x58\xbc\xda\xbf\x52\x53\xb8\xac\x7e\x2a\x6f\xd4\x62\x79\x88\xce\xb8\xc0\xe6\x5c\xbc\x73\xd7\x4b\xae\x89\xad\xf3\x50\x79\x74\x1e\xda\x99\xb5\xca\x0f\x50\xf1\xaf\xbe\x79\x82\x9f\x9e\x65\x14\x75\xb6\xc8\xf2\xc4\x5d\x7a\x1f\xe8\xa4\x3e\x95\x75\xb0\xb6\xb4\x5a\x95\xd5\x66\xe8\x3c\xb1\x53\x02\x36\x7d\x8f\x72\xe0\xc4\x1b\x19\xb0\x5c\xdc\x59\xe9\xbc\x09\xa7\xfa\xe1\xd6\xfd\xfd\xe0\xc5\x00\x71\xb6\x3e\x4f\x2a\xbe\xe2\xd0\xc9\xd5\xde\xfd\x3c\x67\xd7\x3e\xfc\x33\xdf\x7d\xe9\xcc\x42\x19\x04\x9a\x42\x3d\x3b\x1a\xd1\xeb\x2f\xad\x9d\xee\x29\x42\xc0\xf7\x12\x31\xef\xd2\xda\xea\x35\xea\xe8\xf7\x35\xd0\x3a\xec\x96\x1e\x2e\x61\x99\x8e\xf5\x90\x20\xf1\x06\xe8\x90\x3d\xe1\x93\xf1\xd3\xf1\xb3\xf0\x51\xa1\x0a\xe1\x4d\xbb\xba\x12\x23\x61\x62\x9f\x1f\x6c\x6d\x36\x3a\xce\x75\x50\xcc\xc0\x2e\x75\x16\x26\xe1\x99\xc8\x9c\xb9\xa5\xaf\x4e\x16\xbf\xca\x33\x8d\x4e\x01\xc7\x8c\x8f\xaf\x49\x85\x4f\x21\x6d\x6b\xb3\x35\x59\xfc\x64\xf2\x54\xf9\x1b\x57\xee\xc6\x9f\x7f\x2b\xdd\x8d\x3f\x7f\x2e\xbd\x8d\x4f\x27\x13\xe9\x6e\xfc\xeb\x27\xca\xdd\xf8\xe4\x09\xc2\xab\xff\x4f\x23\xe6\xf7\x6a\xc4\x64\xff\xbe\x0c\xb9\x2d\x39\xac\x54\xa8\x96\x37\x29\x5f\xae\x69\x95\xa8\x58\x76\xb8\xab\xfb\x95\x54\x38\xcd\xb2\x0f\x6a\xcb\x8a\x57\x09\xe8\x93\x57\xa9\x00\xeb\x3e\x29\xc6\xd7\x0d\x5e\x0f\xe9\x06\xf5\x2d\x72\x0e\x4d\x6b\x91\x23\x87\xb9\xce\xbb\xaa\x41\xcc\xba\xb3\xc8\x7c\x81\x99\xb4\xa3\xa7\xb5\xfc\xa1\x8f\x8f\x36\x83\x93\x44\x87\x18\xff\xaf\x34\xfd\xf8\x26\xdd\x62\x36\xae\xf3\x82\xb2\x25\x6d\x9d\x8c\x03\xdb\x58\x2a\xb9\x91\x4c\xd0\x59\x5b\xcc\x91\x49\x1a\x2f\x77\x35\x2f\x37\xef\xa4\xed\x3a\x70\x90\xb4\x7b\xaa\xbb\xb4\x62\x71\xd8\xc9\x0f\xd6\xe9\x2d\x0d\xae\x29\x65\x41\x05\x63\x01\x99\x04\x5c\x4a\xef\x68\x06\x6e\x1d\xeb\x71\xf0\x56\x06\x33\x54\x1c\x3b\xf0\x48\xa2\xe2\x2e\xa6\x75\x70\x47\x83\xbb\xbc\x28\x82\x6b\x1a\x64\x74\x5b\xd1\xa5\x0c\xa6\xd8\xed\x48\x79\x2c\x61\xf4\x13\x0f\x36\xe9\x3f\xca\x2a\x50\xb7\xda\x38\xb4\x87\xef\xf4\x4c\x86\xa6\xd5\xaf\x31\x38\x5f\x27\xfb\xbf\x70\xba\x6e\x3f\xbf\x73\xb6\x4e\x63\xa2\x82\xb5\x73\xdb\x62\x56\x22\x96\x86\x88\x6d\x9e\xbd\xb7\x63\x84\x4d\x90\xb7\x95\x4f\xd3\x6c\x30\xd0\x85\x7e\x61\x45\xdb\xe3\x8a\x6e\x8b\x74\x69\x4c\xed\x1a\xa7\x11\x5f\xc4\x0d\xdb\x2f\x92\x0c\xab\x35\x9a\x22\xac\xdb\x6c\x8f\x86\x11\xfb\x39\xac\x6a\x2b\x7f\x50\x0f\x1a\x98\x8e\x1d\x63\x30\x75\x61\x29\xd5\x3d\xa5\xf7\x39\x37\xe1\xbc\xc4\x4c\x78\xa9\x70\x1a\xb4\xd0\x5a\x5a\x1c\xb9\x8a\x41\x9d\x72\x4d\x07\x62\x69\xe6\x05\xd7\xb8\x2a\x4b\xfe\x3a\x8b\xa2\xf6\xb2\x30\x8d\x81\xfa\x87\x2a\x80\xa4\x33\x5b\xe3\xb9\x32\x43\xf1\xc1\x0a\x5f\xe4\x5b\x43\xc8\x30\xb1\x4a\x2c\xe8\x20\xa4\x49\x60\x51\xa2\x6f\x5b\x6b\x02\xd6\xfa\x29\x3f\x39\xa0\x44\x8f\x0c\x77\xae\x53\x8d\xf0\x39\x03\xeb\x94\x19\x6f\xc4\xdf\xae\x01\x1f\x1d\xbb\x09\x2a\x8e\xb5\xdd\x50\xd3\x81\x2b\x20\x5c\x0e\x60\x15\x84\x76\x00\x21\x85\x7f\x51\xa5\x47\x8c\x3b\x64\xd9\xc0\x04\x0d\x11\x7c\x1f\x7c\xac\x05\xb0\x08\x3c\xeb\x01\xb1\x41\xd0\xd3\x2c\xfe\x6c\xb8\xf5\x5c\xb9\xfe\x2a\xdf\x88\xee\xa6\x13\x54\xd8\x89\x38\x5c\xf5\x78\xf9\xbf\x71\x13\xf5\x88\x3e\x8f\x9f\xa8\x7b\x37\xc8\xe7\x6f\xbd\x07\x6c\xad\x8e\x57\x9e\xc1\x60\x4a\xea\x85\xf6\x07\x50\xd2\xcf\xb7\xf9\x7a\x50\xa0\x24\xe7\x9e\xbc\xcd\x3b\xb7\x64\x4f\x60\x06\x45\x94\x63\x30\x56\xf2\x20\x17\x04\x92\x98\xb3\x74\x6d\xf5\x9a\xbd\x01\x7d\xf5\x00\xd0\x85\xb0\x77\x35\x9d\x20\x36\xe0\x1e\x02\xd5\x94\x78\x70\xd3\xe1\x5e\x80\xaf\x6e\x07\x2e\x99\x75\x8f\x35\x8d\x75\x8b\x9f\x00\xd5\x38\xcf\x24\xb4\x66\x9d\x4a\x12\x51\xf2\xe9\xaa\xf2\x93\x7c\x27\x2a\xf7\xb0\xfc\x85\x81\xcc\x79\xe8\x39\xeb\x53\xc3\x83\xc2\xd4\x0e\x6e\x36\xf3\xa6\x92\xd1\x04\x53\x1d\x1e\x58\x87\x7a\xf2\xa0\x75\x0f\x1c\xde\x89\x59\x0f\xeb\x8a\x0f\x0d\x6c\xe6\xb8\xf3\x5b\x82\x07\x65\xfb\x8a\x18\x4d\xac\x03\xc0\x5b\x77\x3f\x60\x7d\xa7\x50\x0e\x8e\x99\x8f\x83\x00\xca\xe2\x50\xa0\xea\x2f\xab\x62\x9a\xe4\x59\xc2\xb1\xb5\x50\x09\x85\x4b\xb7\x75\x6f\xed\xc3\x7e\x1f\x04\xa5\xde\x0d\xe6\x8d\xc9\x6a\x21\x50\xce\xc2\x7a\x11\xf3\xae\xfe\xa6\x62\x5a\xfb\xcb\x4a\xeb\x24\xe3\x54\x21\xb7\xbb\xfa\x50\x5a\xd1\xe4\x11\x6a\xad\x00\x68\x1f\xcb\xf0\x19\x4b\xd9\xc6\x95\x96\x87\x80\xa9\xf1\x80\xd0\x5a\xd8\x9f\x8e\x30\xe0\x9a\xd4\xf7\x3b\xf7\x44\xcd\x7c\x64\xff\x03\xaf\x89\x81\xca\x0d\xe5\xba\x13\xe9\x58\xc9\x0a\xb3\xaf\x6f\x7a\xdc\x7e\x02\xa3\xee\x5e\x44\x26\xcf\x4e\xce\x6c\x20\x0e\xa9\xbc\xfc\x25\xc7\xc7\xc7\xe8\x71\xe5\x11\xbf\xe3\xb1\xf4\x8e\xc7\x1b\xa0\xd4\x33\x24\x98\xdd\x23\x86\xf2\x5f\x01\xe9\xee\x04\xba\x67\xf1\x94\xf1\x7e\xf7\x40\xab\x43\x64\x5e\x53\x0f\x43\x53\x13\xd9\x36\x17\x9a\xf7\xf6\x35\xf7\xe8\x37\x68\x3f\x05\x1d\x3c\x23\x8a\xba\x29\x31\x72\x76\x8c\x75\x51\x89\xab\x6b\xac\x1d\xd7\x81\xa7\x28\x30\x08\x28\xc7\xe9\x43\x4d\xc4\x9e\x4c\xbe\x7a\x80\x89\xd8\x4c\x14\xfc\xfa\x5f\x66\x29\xf6\x4c\x45\xf0\x9b\x3c\x73\xcc\x7d\x3a\x3a\x4b\x3e\xd9\xe7\xe9\x8b\xb3\xbd\xa8\xbc\x75\xfa\xb6\x8d\x43\x55\xfe\x97\xdf\x6d\x0f\x88\x6b\xfc\xc8\xfe\x6d\x51\xc2\xa3\x8f\xd6\x67\xdc\x61\x0f\x88\xa5\xfc\x39\x77\xd8\x49\x30\x7a\xfb\xfd\x1d\x77\x95\x7f\xd6\xff\x02\x78\x7a\x07\x3a\x10\x78\x19\xc6\xc5\xb4\x0f\x81\x7c\x15\x5b\x0e\x88\x47\x46\xac\xdb\x62\x3b\xe0\xb9\xaf\xda\x1f\x94\x75\xae\xdc\x03\x6a\xa5\xb8\x2b\xda\x52\x53\x29\xc7\xd7\x8e\x47\x01\xe5\x26\x2d\x8a\x2a\x8b\x69\x7e\x3c\x86\x57\x57\x52\x35\x45\x0c\x34\xc4\x29\x71\x18\x18\xf1\xa1\x2d\x9b\xe4\x0d\xd6\xb1\xd8\xdc\xf8\xd4\x12\x87\xd2\xb0\x48\x6c\x47\xf1\x29\xce\x91\xc4\xa7\xd2\x46\xf9\x90\x68\x1b\x90\x2a\xef\xee\x56\x2e\x05\x09\xc9\x54\x1d\xf6\x40\x9d\x0c\x57\xda\xa0\xac\x94\x3f\xe6\x2c\x4b\x5a\x4f\xc4\x38\x6b\x3d\x49\x27\x73\x95\xeb\xf1\xd9\x15\xb6\x16\xca\x89\xf4\x91\x1c\x62\x98\xbe\xaa\x22\x96\x3a\xc4\xd2\xa1\x62\xf8\x47\x65\xe9\x9e\x49\x18\xc2\x84\xc2\x06\xd7\xb4\xa0\x30\xa0\xf7\x94\x27\x60\x89\xb2\x68\x1a\x33\xc8\xd2\x3e\xe6\x0f\x1a\xa6\x86\xb4\x3d\x4a\xb1\x2c\x2f\x4a\x96\xc1\x4f\x7b\x70\x80\xe3\x0d\x8f\x99\xc3\x9a\xbf\x4a\x3f\x52\x28\xd7\x34\xff\xe2\xd9\xe5\x3a\x3e\x15\xdb\x6d\xae\x69\x65\x2b\x29\x1c\x8f\xe1\xb5\x0c\x3d\xd1\x49\xed\x2b\xec\x1d\x8f\x7e\x8f\xdc\xc7\xa3\x12\x33\x98\x60\x57\x70\x34\xf2\x55\x0c\xa2\x92\x71\x5e\xc3\x5f\x81\xd3\xea\x37\x29\xa6\xf3\xc9\x42\xbe\x4b\xdc\x72\xbe\xe6\x48\xba\xfd\xf1\xff\xe4\xd9\xd3\x6b\x90\xd3\x22\x1b\x06\x2b\x6b\x1a\x5c\x92\x1c\x24\x2b\xd2\xc7\x6d\x35\xb6\x01\x45\xc0\x4f\xf3\xff\xc3\xde\x9f\x70\xb7\x6d\x33\x0b\xe3\xf8\x57\x91\xf8\xe6\xcf\x12\x8f\x60\x45\xb2\x9d\x8d\x32\xaa\xeb\x38\x4e\xeb\xd6\x4b\x1a\x3b\xed\xd3\x47\xd1\xf5\x4b\x4b\x90\xcd\x46\x02\x54\x12\x4c\xe2\x5a\xfa\xee\xff\x83\xc1\x42\x80\xa4\x6c\xe7\x59\xde\xf3\xbb\xe7\xdc\x93\x1c\x8b\x04\xb1\x0c\xb6\xc1\xcc\x60\x16\x60\x39\x32\xc9\x06\xea\x2a\xce\x9d\x2c\x41\x39\xb2\x79\x2c\xd6\x6b\xd1\x9d\x90\x0c\x8b\x6e\x42\xb8\xb9\xc0\xba\x6a\x3a\x75\x93\xb5\x51\xe2\xf9\xb7\xaf\x79\x50\x28\x6b\x70\xc5\xae\x3e\x4c\x6d\xc8\xa5\x78\x34\xf6\x97\xc5\x43\xdd\x1b\xf9\xa3\x9a\xcc\xd3\x44\x57\xba\x71\x35\x96\x98\x28\x58\x97\x86\xd0\xb2\xe5\x7b\xe0\x80\x3b\xc0\xf1\x5a\xfe\x7f\x80\xac\x89\xb6\x7b\x2f\x1e\x45\x4f\x0d\xb2\xd5\x2a\xca\xc8\xdd\x83\x36\xf5\x6a\xf9\x44\xb2\xe6\x57\x08\xb3\xa8\xdf\xeb\x23\x15\x25\x59\x92\x5b\xdf\x82\xd1\x94\xea\x21\xcd\xf3\xe4\x9a\x12\x6a\x34\xfc\x92\xc9\x27\x12\x04\x6b\x55\xf1\xc0\xbd\x63\x03\x21\x4e\xf9\xfe\x40\x5b\x7a\x27\xa8\xdd\x66\xef\x09\x05\x0e\x2e\x2f\x69\x7e\xc2\xa7\xc5\x9c\x06\xf8\x4e\xcd\x02\x84\xb5\xb0\x64\x65\xbf\x6f\xc9\x4a\x75\xdb\xf7\xa3\x10\x4b\x49\x7d\x35\xd3\x98\x57\x60\x06\x0d\xd9\xef\xcf\xf8\xb0\xbf\x02\x77\x7c\x4a\x39\xc3\x68\x8c\xab\x36\x10\x5a\x37\x82\x76\x02\x12\x74\x28\x9b\xf0\x29\xfd\xf0\xfe\xe8\x80\x2f\x96\x9c\x41\xa8\x35\xa4\x6c\xc7\xf5\xb2\x4f\xc1\x28\xd2\x78\xc7\x0f\xb0\x8d\xc4\x26\x09\x72\x47\x55\x03\xf2\x78\x29\x41\x35\x8b\x2c\x53\xea\x5a\x69\xef\x8d\x3a\xe4\x07\xf8\x69\x2a\x19\xf3\x6b\x5f\x05\x3c\xb0\xda\x1e\xad\x45\xb2\x0c\x6a\x5e\x99\xee\x96\x49\x96\x53\x13\x28\x62\x9d\x45\x81\x2d\x1b\x60\x0e\x1e\x91\x44\x17\x2e\xa1\x73\xb9\xd9\x8c\x13\x54\xa7\xed\xa4\xd2\x76\x99\x19\x07\x87\xf6\xf9\xb1\xad\x97\xa5\x03\x9c\x20\xa0\x34\x0a\x12\x04\x38\x27\x2a\xe8\xaf\xd1\xdd\x0c\xfe\x8f\x35\x1c\xda\xea\xb7\x09\x99\x87\x61\x54\x10\xe5\x4a\x47\x64\xd1\x1c\x41\x38\x68\xfd\xd6\xc3\x73\x84\xf0\x1d\xa3\x5f\x3e\xbc\x3f\x8a\xf3\x4e\xb4\xd5\x27\x84\xe4\x65\x65\xc3\x00\x0d\x83\x61\x10\x07\x61\x80\x3a\xac\xfb\x07\x4f\x59\x04\xcf\xc5\x7a\x7d\x1f\xba\xcc\xcb\x55\xd8\xc8\xc4\xcc\x1d\x7d\x80\xfe\x2b\x6d\x32\xd2\xdf\xae\xd9\x8c\xfc\xef\x2d\xff\xb7\xdf\xf2\x17\xfe\x10\x66\x54\x72\xdf\x4d\x12\xc3\xbb\xb5\xbd\xa6\xcf\x64\x17\xe9\xe3\xae\xe9\x29\xce\x90\x64\xad\xcd\x22\xc9\xd0\x5e\x2f\x0c\x23\x36\xca\xc6\x84\x8e\xb2\xb1\xf2\x22\x0e\xbe\x35\x68\x18\x36\x69\x52\xea\x66\xae\xa9\x70\x2a\x3f\xbf\x5d\x5c\xf1\x79\x8e\xac\xe6\x00\xe9\x61\x23\xb1\x6c\xce\x1a\x51\x34\xe0\x7b\x99\x51\x45\xe0\x9d\x0e\x72\xa0\x1a\xf1\xb1\x05\x6c\xc4\xc7\x00\x9b\xfc\x2d\xcd\xea\xd6\xb8\xe2\xe3\xd7\xbf\xc3\x34\x17\xff\x92\x91\x28\xb2\x14\xb3\xd2\x69\x9e\x18\x06\x4f\x41\xbd\xf0\xcf\x79\x10\x0b\xf0\xda\xa7\xc2\xf9\xe5\xb0\x13\x27\xf3\x62\x4a\xcb\x2d\xae\x82\x72\xe7\xf4\x87\xc3\x0b\x6d\xd3\xa0\xe2\x72\x17\x11\xc5\xa3\xa0\xc8\xd2\x00\xab\x30\xd4\x01\x0e\x6a\x85\x03\x1c\x54\x8b\x06\x63\x1b\xac\x37\x05\xfa\xdf\xf8\x98\x80\x4a\x14\xd0\x33\x72\x77\x23\xc4\x32\xbe\xab\x55\x18\xe7\x6b\x6b\x39\x38\x51\x60\x9f\x19\xc7\x82\x19\x9d\x52\x26\xd2\x64\x2e\x3f\x39\x6f\xf8\x86\x26\x53\x9a\xc9\x54\xfd\xb4\xf6\x8d\x13\x4b\xb7\x09\x75\xbf\x1e\xb8\x28\x11\xe1\x0c\x29\x6f\xc5\x39\xf1\x5d\x9a\xe0\x89\x86\x37\xef\xca\x1f\x0b\x60\xbe\x19\xc0\xbc\x11\xc0\xdc\x02\x88\xa7\x65\xb3\x54\x36\x9b\x76\x27\x78\x86\x27\x08\x2f\xc9\xd4\xfa\x52\xbc\x21\xd3\xee\x15\x9f\x2a\xbf\x9b\xcb\xae\xe4\xc7\x92\xb9\x02\x7c\x51\x96\xbf\x42\x3a\x8c\xe8\x84\x33\x91\xf1\xf9\x9c\x66\xf8\x33\x59\xe8\xec\x03\x41\x6e\xc1\x3d\x87\x29\x4f\x3e\x2b\x04\x7d\xd5\x20\x20\x69\x24\x0d\x21\x72\x90\x24\xc7\xc2\xd0\x06\x45\x57\x89\xf6\xb4\x83\x03\x74\x1e\x86\x26\xd6\x4c\xd7\x21\x3b\xbb\x39\x5f\xd0\xe8\x0a\x01\x08\x0b\x2a\x6e\xf8\x94\x04\x3f\x1c\x5e\x04\x08\xc3\x0f\x21\xc4\xa4\x9b\xd8\x6c\x59\x54\xe0\x1b\x84\xbf\x90\xeb\xae\xc2\xfe\xf8\x92\x5c\x77\xcb\x53\x47\xb6\x76\x59\xf1\x12\xcb\x21\x8c\xbe\x56\x06\xbc\x44\x83\x82\x7c\x59\x5b\xcf\x7c\x4b\x18\x46\xef\xc8\xbb\xc1\xc1\xbb\xe4\x76\xce\x93\xa9\x3d\xe0\x2e\xab\xb7\x99\x95\x3a\xd7\xde\xaa\x6a\xf2\x16\x53\x5a\x20\x24\x51\x81\x97\x55\x77\x05\xae\x62\x64\x5e\x2e\xb0\xbb\xcc\x84\x0e\x16\x6b\x84\xc5\x5a\x17\xb3\xd0\x4e\x41\x42\x5f\x77\x7d\x60\xf5\x7b\xb4\x83\x66\x50\xe9\xd0\x51\x8a\x11\xa6\x8d\x5e\x11\x82\xfd\x2b\x9e\xa9\xc8\x82\x2a\x34\x8f\x8a\xa7\x60\x15\x8f\xc3\xd0\xea\x17\x1b\xf3\x21\x4f\xe1\x18\x42\x2f\x40\x73\x46\xb3\xd2\xd8\x8f\x4a\x18\xd7\xfe\x4d\xa5\x44\xc4\x89\x6c\x2f\x32\x3e\xf1\xe6\xf7\xa8\x36\xd9\xa1\xb1\x8a\x4c\x38\x8f\x04\x32\x3e\x88\xb4\x56\xd3\xda\x0e\xb0\x52\x21\x59\x47\xfc\xdb\xfd\xa2\x4c\x1e\x20\x0b\xa6\x4d\xdf\x27\x0f\x90\x0d\xb3\xf2\x7b\x23\xd9\x31\x2d\xbf\xd3\xa6\xef\xcb\xf2\xfb\xf5\x06\x35\x45\xf3\x7d\xd6\xf4\x7d\x51\xb3\x78\xfd\x1f\xab\x50\x97\x12\x73\x34\xa8\x00\x14\xed\x1e\xae\x1f\x15\xed\xfe\x1a\x27\xe4\x2e\x99\x4c\xe8\x52\xc4\xc1\xdf\x9e\xfe\x2d\xc0\x01\x38\x6c\x63\x62\x4b\x36\x1b\xc4\x41\xb2\xb4\x4e\x5e\x9f\xfe\x91\x73\x16\xac\x71\x41\xee\x14\xb6\x89\x83\x77\x67\xe7\x17\x81\x3c\x68\x15\x7a\x4f\x2d\xa2\x4e\x2c\x8e\x2f\xfc\x35\xeb\x7a\x34\x29\x2f\xcb\x99\x71\x20\x97\x75\xcd\x56\x26\x14\x67\x92\x43\x13\x45\x7e\xc0\xa7\x94\x50\xfd\x82\x33\xbd\x6f\x88\xc0\xd9\x1a\x4f\x9a\xa4\xd4\x8d\x77\xd3\xda\xbb\x56\x3d\x9a\x53\x76\x6b\x32\xfd\x74\x7e\x76\xaa\xb0\x64\x44\x0d\x4e\xcb\x0c\x3d\x55\x86\x9a\x2a\x61\x14\x98\xb9\x30\x0a\x03\x23\x03\x74\x79\x41\xbf\x0a\x42\x9d\x9b\x78\x40\x47\x4c\x6e\xe5\x0a\x18\x4e\x0c\x00\x5d\xc5\xf7\x64\xa7\xd7\x0b\x43\x39\xcb\x0c\x07\x46\x53\x1a\x14\x09\xf2\x62\x32\xa1\x79\x3e\x2b\xe6\x71\xeb\x3d\x9d\xd0\xf4\x33\x9d\xb6\x54\xa9\x96\x64\xce\x5a\x41\xc7\xd4\x82\xb0\x2f\xd3\x61\x68\xb5\x62\x55\x42\x37\x90\x68\x29\x68\xfc\xa2\x30\x98\xfc\xa6\x01\x39\x87\xc0\xb2\x2d\x33\x00\x10\xf1\x63\x91\xe6\x79\xca\xae\x21\xda\xa5\xb2\xfe\xfd\x2e\xe8\xd4\x84\x49\x43\xba\x59\xff\xcb\x63\xfa\xd6\xca\xa8\xc6\x65\x03\x95\x87\x0a\xcc\x40\x0d\x63\x56\x77\xd4\x10\x86\x8d\xa2\x2e\x45\x30\x69\x71\x71\x50\x30\x45\x85\xa9\x95\xd6\x58\xe0\x4b\xca\xa6\xfc\x0b\xdc\x15\x04\x8c\x4f\xe9\x96\x2a\xa1\xa2\xfc\x6a\xb5\x8e\x8f\xaa\x1a\xa3\xd5\x31\xe3\x05\x9b\xb6\xae\xe7\xfc\x2a\x99\xcf\x6f\x5b\x09\x9b\xb6\x18\x57\x2d\xd3\xac\xb5\x4c\xf2\x9c\x4e\x71\x4b\xf0\xd6\x2c\xfd\x0a\xaf\xad\x44\x7d\x95\xc3\xf5\x91\x81\x56\x22\x65\x9f\xd3\x8c\x33\x88\x08\x07\x8e\x0d\xe5\x66\xca\xe3\xa7\x4f\xbf\x7c\xf9\xd2\x65\xcb\xc5\x1f\x60\x59\xf1\x74\x99\x4c\x3e\x25\xd7\xf4\x69\xd0\x11\x9d\xa0\xfb\x91\x7d\x64\x6f\x79\xd6\xa2\x5f\x13\x79\x62\xc5\x1f\x59\xba\x58\xf2\x4c\x98\xda\x33\xbe\x90\xf3\x20\x3a\xc1\x77\x03\xfb\xed\xae\xe5\x0b\x19\x5a\x6b\x9d\x51\xbb\x52\x9c\xa7\xec\xd3\x96\x6c\x5d\x96\xf9\xc8\x80\x95\x51\x61\x5b\x48\xa5\x64\x74\xd7\x2a\xb2\x34\x6e\x7d\x67\x28\xe5\xef\xb0\x6a\x39\xd6\x00\xac\xd1\x20\x90\xd3\xe5\x79\x2e\xf5\xa5\xf4\xe5\xc0\xc3\x99\x7a\x60\xa9\x2f\x4d\x99\xdc\x95\xf4\x58\xdc\xee\x63\x45\x7d\x49\xac\xa5\x03\xc7\xc8\x59\xa9\x94\x1c\xd4\x4b\x52\x53\x90\x6a\xfa\x6d\xbd\xc6\x4b\xb2\x81\x17\x24\xa3\x31\x4e\xc9\xf6\x20\xdd\xab\xa1\xee\xb4\xd3\x41\x6c\x94\x6e\x6d\x8f\x1d\xd4\x9d\x8e\xb5\xdc\x90\x2b\x5b\x49\x43\x78\xde\x19\x44\x28\x0c\xc5\xea\x51\xb7\xc2\xa5\x6e\xd7\xc0\xd4\x01\x65\x3c\x68\x56\x92\xd1\xd5\x27\x98\xd6\x1b\x50\x5f\x6c\x2b\xd4\x3c\x21\xb0\x4d\x72\x9a\x09\xc3\x28\x71\xdf\x89\xf7\x55\xc2\x00\x55\x15\xb2\x0a\x21\x96\xc6\xdc\x24\x27\x95\xdd\x08\xfc\x8e\x23\xed\x98\x10\xf7\x12\x68\x66\xc3\x87\x4c\xc9\x9d\xef\xa8\x34\x77\xee\x8d\x26\x96\xc3\x28\xea\x1c\x55\x18\x46\x53\xa7\x05\x32\x47\xd8\xe6\xd2\x31\x7f\xa2\xa9\x0e\xdb\xe8\xfa\x2f\x98\x21\x84\xef\xcc\xb9\x93\x60\x89\x82\xe3\xe9\xda\x57\x07\xb7\xfc\x31\x08\x71\x18\x01\x94\xaf\x84\xe7\xe9\xec\xb6\x44\xfb\xb4\x7e\x48\x05\x3a\x44\x65\x4b\xd3\x53\xad\x59\x92\xce\xe9\xb4\xdb\x82\x5d\x66\x10\x42\x4e\xb3\x34\x99\xa7\x7f\xc9\x7e\x82\xb3\x7e\x23\x75\x2c\x8f\xb8\x92\x0e\x97\x87\xdc\xba\x64\x58\x17\x8d\xaa\x3f\x15\x5e\x2a\x23\x4c\x32\xac\x66\xfc\xb2\xd5\x2a\x6a\xe2\xc2\xc5\x50\x52\xb4\x70\x57\x61\x99\x59\xf4\x90\x08\xf7\x5b\xe5\x98\x86\x9c\xfa\x92\x8a\x1b\x75\xc3\x71\x2e\x12\xd1\x48\x9c\xcd\x6b\x2e\x50\x1d\x77\x22\xfd\x5d\x84\x13\x12\xb1\x2e\x8b\x52\x84\x65\xc2\x33\x54\x13\x75\xfc\xaf\xb4\xe8\xdb\xa5\x45\x79\xb3\x7e\xf3\xe4\x26\xc9\xf6\x45\xd4\x43\x5d\xc1\x3f\x2c\x97\x34\x3b\x48\x72\x1a\xa1\x0e\xed\xe6\xf3\x74\x42\xa3\x7e\x8d\xd3\xa8\x4a\x4f\x32\xa3\xd6\x1e\xdf\xad\xf1\x54\x85\xf4\x91\xcf\x8e\x54\xc5\x66\x51\xb7\xb4\x3a\x0f\xa0\x0f\xd0\x8c\x07\xcc\x21\x01\x7e\x43\x67\x56\x79\x73\x1e\x86\x2c\x0c\xe7\xe5\xcd\x6f\x64\xcc\x60\xe1\x14\x8e\x1a\xb9\x9f\x59\xb9\xcc\x1e\xe9\xf5\x75\x6d\xed\x0d\x67\x92\x09\x9a\xd5\xee\x9c\x35\xb4\xee\xe1\x75\x0f\x68\x6b\xaf\x86\x06\x9f\xaf\x85\xaf\x46\x5f\x80\xd8\xb6\x49\x6e\x5f\x32\xc5\x5d\x3e\xb3\xe1\x4b\x24\xef\x87\x27\x6a\xb9\xcf\x49\xfd\xb2\x6f\x32\x9c\xc4\xf7\xe8\xd7\x8b\x2c\x5d\x44\x68\x8d\xb4\x84\xf7\x23\x0b\xd0\xc0\x63\xa0\x9b\x6e\xd7\xf3\xc9\x0d\x5d\x24\x36\xc0\xa6\x7e\x75\xc2\x6b\x8a\xe1\x68\x1c\x8b\x32\xbc\xe6\x5d\x29\xb3\x88\xbd\x9b\xad\xc0\x3e\xb7\xfe\x4b\xc5\x48\x6e\x71\xd6\x7a\x7b\x74\x78\xfc\x26\x58\x2b\x6f\xef\x8e\x69\x2f\x97\x5b\xeb\x8d\x2d\x8d\xa2\x51\xa0\x0a\x05\x63\x6c\x54\xb2\x90\x9d\x3e\x6a\x04\x62\x65\xd8\xa9\x32\x3c\x32\x9e\xda\xd3\x68\x49\xf2\xa8\x74\x1b\x73\x4d\xc5\x49\x92\x7a\x61\xa6\xa6\x68\xb5\xba\x5b\xa3\xf2\xac\x43\xab\x55\xa0\xee\x6b\xfd\x03\x24\xc3\x1c\xa7\x38\x71\xb6\x44\x16\x86\xea\x36\x4b\x79\x95\x21\xd9\x28\xd1\x3c\xca\xcf\xf4\xd6\xf7\x3b\x6f\x43\xf3\x14\xfa\x70\x15\x23\x5f\x99\x60\x09\xf9\x73\x33\xd5\xb9\x76\x5c\x3f\x37\xe5\xe6\x91\x69\xdf\x9e\x1b\x23\x3a\xf6\xe4\x75\xcd\x7e\x78\x25\x0e\x03\x31\x85\x0e\x77\x6c\xcc\x9e\x66\x61\x58\x0c\xe5\x38\xc6\x9b\x17\x9f\xe4\x84\x5d\x5f\xb9\x02\x2c\xfb\x36\xbb\xbc\x65\xbe\x8a\x29\x64\x56\xac\x04\x84\x3d\x71\x8f\xb3\x52\xd4\xa9\x0f\x29\x14\xdd\xe0\x29\xce\x80\x0e\x29\xef\x7e\x9a\x82\xf0\x82\x14\x45\x01\x49\x4d\xd4\x82\xc4\xf3\x8e\x1b\x95\x8e\x2d\xb9\x75\x84\xcb\x4b\x4b\x13\x67\x03\xd6\x7d\xd6\x82\x03\xf8\x59\xc5\x6b\x6c\xd3\x09\xda\x76\x17\x07\xba\x03\x17\x92\xf2\x68\x43\xeb\xa8\x57\xb1\x01\x6d\xbe\x80\x33\xf7\x6c\x0a\x75\x89\x30\x0c\x38\x0c\x8a\x7b\x9a\xfb\x76\xe5\xa2\x39\x8e\x8d\x76\xa9\x38\xca\xc6\x83\xa2\x94\xe6\x0f\x59\x44\x47\xd9\x18\x73\x14\x43\x08\x4f\xbe\x46\x6b\xef\xf2\x8f\xe1\x4c\xae\x28\x89\xa4\x2a\x18\xea\xce\x12\x81\xa2\xbe\x67\x22\x86\xf0\x5c\x7d\xa8\x6b\x57\xe4\xf2\xeb\x84\x98\xf3\xea\xad\xd5\xf7\x5f\x46\x73\x84\x67\xc4\x84\x9e\x3a\x49\xe4\xf1\x83\xa7\xa4\xa8\xda\x04\x78\xe7\xbc\xf1\x1a\x59\x31\x15\x5c\xc6\x13\xe3\xd9\x1e\xe2\xc9\xc5\xa9\xa5\x31\x55\x7c\xb9\x38\xc1\x6e\x3b\xf1\x0c\x9b\x53\x29\xa6\x55\x43\x85\x78\x6a\xb7\x11\x8f\x72\x4f\xf5\x00\x67\x78\x89\x7c\xf5\x93\x4c\xa2\x00\x23\xf8\x52\x87\x8c\xb6\x36\xd7\x3f\x15\x2a\xa5\xc0\x13\x3c\xc3\x53\xbc\xc4\x37\x9e\xb5\x82\x16\xd4\xd9\xdc\x0b\x74\x97\x7f\x49\xe5\x92\x5d\x74\xe7\xc9\x15\x9d\xa3\xbb\x49\x92\xd3\x56\x2f\x36\x98\x83\x24\xce\x50\x2d\xf1\x84\x24\x5d\x77\x0c\xf0\x8c\x94\xd6\xe8\x6a\x14\x24\x2d\xee\x33\x3d\x0e\xe8\x37\xf7\xc3\x9d\x4b\x88\xf1\x02\xdf\x6e\x02\x78\x6e\x01\x9e\x37\x03\x2c\xba\x2a\x04\xfb\x91\xa2\xe0\x23\x8a\x67\x68\x28\xba\x69\x0e\x9a\x0b\x11\x45\xc3\xd1\x2e\x4e\xf5\x90\x8e\xe3\xd1\x0e\xde\x1e\xc7\xa3\xed\xf1\x00\xaa\xe9\x9b\x6a\x72\x32\xef\xe6\x94\x49\x12\x78\x09\x6e\x43\x35\x82\x95\xbc\xc5\xdb\x8c\x2f\x4c\x6d\xd8\x22\x5b\xc9\x48\xd8\x05\x3d\x1d\x2d\xc7\x43\xf9\x87\xe4\x31\x8b\xe4\x03\xce\x11\xc2\xb6\x9d\xed\x18\xee\x7c\xd3\xfc\x88\xcd\x53\x56\x6a\x66\x51\x84\x6e\x08\x55\x31\x6a\xe4\x29\x15\xdd\x90\x62\x44\x9d\x98\xb0\xe3\x06\x67\x69\xa7\xbc\x65\xa6\xa8\xa5\xec\x13\x25\x23\xe0\x44\xdc\x35\x83\xb9\x20\x37\x5d\x4f\x0d\xc9\xc9\x84\x93\xea\x96\x88\x32\xbc\xc0\x13\x18\x2f\x1e\xdd\x54\x57\xa8\x1e\xbc\x5d\xdd\xa1\x9d\xf8\xb6\x1c\x31\x16\x4d\xf1\x2d\xc2\x7a\x86\xc8\xae\xca\xb2\xab\xc7\x76\xb4\x3d\xd6\xe2\xe5\xd1\xae\x17\xc3\x92\x96\x6d\xe4\x40\x5e\x2c\x11\xaa\xce\xcb\xc2\xb4\x91\x78\x5b\x7a\x38\xda\xae\xa4\x44\x53\x9c\x49\x10\xb7\xf1\x54\x37\xe7\x6a\x3c\x49\x2c\xf4\x4d\x1b\x2a\xc5\x05\xce\xcd\xa6\xfa\xa7\x17\x67\xea\xc4\x4a\xd3\x9b\xa5\x20\x99\xbf\xa1\x72\x92\x59\x62\x16\x88\x56\x67\x8e\x66\x44\x74\x2d\x71\xa9\x50\xb4\xb3\x18\x41\x75\x8f\xdc\xa5\xf9\x31\x4d\x66\x71\x9b\x56\xa6\xcc\x2c\xe1\xf8\xbe\xe5\xec\x10\x52\x80\x6b\x2d\x69\x74\xc4\x66\xdc\x6f\x0b\xe6\x2f\x8f\x26\x98\xe1\x19\x2e\xf0\xb4\x36\x57\xcb\x72\x45\xf8\xb0\x0c\x15\x9b\xb1\x94\xb3\xb6\x1c\xc7\xbe\xf0\x6e\x89\x60\x32\x23\x8a\x97\x66\x06\x79\x54\xe9\x8b\xfd\xb2\xac\xce\x6d\x52\x89\x72\xea\xc5\x48\xf5\x69\x56\xe1\x91\xf1\x40\x62\x82\x81\xa5\x0f\x8e\x40\x43\x53\x67\x5c\x83\x43\xa6\xae\x91\xd1\xa0\x78\x40\x8e\xee\xb1\x47\xe0\xe1\xa9\x5c\x82\x92\xd9\x60\xe0\x3d\x50\x03\x8c\x50\xc5\xd5\xb6\xdb\x43\x25\x46\xce\xa3\xcc\x5c\x25\x39\x72\x04\xd0\xef\x2b\xc7\xa3\x70\x73\x03\xe6\xb8\x37\x7b\x2e\xd3\x68\x77\xca\x19\x1d\xf2\xc8\xe0\x0f\x30\x8f\xf7\x2f\xc6\x84\xfd\x68\xc4\xcb\xf2\x44\x5f\xe7\x51\x94\x91\x4c\xf3\x42\x14\x8b\xd5\x6a\x34\x46\x48\x81\x89\x6a\x57\x4a\xc0\xea\x3a\x74\xc9\x7d\x22\xf5\x2c\x1a\x51\x2c\xc6\x2e\xb0\x99\xf6\x29\xcd\x1d\x94\x78\x71\xbb\xa4\x1a\x2d\x6a\x6d\x48\x9e\xb5\xd2\xbc\x95\xcc\xc1\x89\x5a\x4b\x45\x7a\x4b\xd9\x75\x37\x40\x70\x0f\x32\xc8\x07\x10\x85\x4d\xd6\x43\xfa\x10\x33\x3b\x21\xe9\x68\x3b\x64\xa3\xde\x78\x18\xe8\x8b\xd6\x58\xbd\x29\x61\x6e\x1c\xc8\xfe\x04\x63\x14\x86\xed\x28\x91\x07\xa2\x5c\x5d\x29\x66\xa3\xbe\xec\xac\x1c\x3c\x43\x40\x27\x03\x8d\x10\x52\xd2\xc3\x09\x04\x29\x1b\xf5\x70\x62\x70\x39\x96\xd5\x5a\x24\xa1\x77\x4f\x42\xd8\xe0\x2a\xa3\xc9\x27\x1f\x6d\xb6\x72\x85\x53\x3a\x1d\x23\x13\x91\xed\x61\xd9\x1a\x48\x29\x21\xf3\xb3\xb8\xcc\x95\x12\xc8\x20\x5b\x1c\x0f\x24\x8a\x49\x59\x41\x55\xb6\x17\x31\x23\x79\x97\x2f\xf3\xee\x92\x2f\x25\xe3\xde\x15\xd9\xad\x7e\x29\xb3\x6a\x26\x5a\x1e\x55\x09\x51\x59\xb0\xea\xb0\xb1\xbd\x0e\xc3\x64\x64\xde\xb6\xfa\x72\x40\xa2\xe7\x84\x10\xd9\xab\xd5\x6a\x5b\x3f\x21\x74\x97\x93\x9e\xad\x56\x72\x5f\x3b\xfa\x53\x18\x46\xed\x64\xb5\x92\x70\x7e\x9f\xc0\xbb\x7c\xdc\x4b\x46\x3b\x50\x4a\x9f\x1f\x32\x4d\x8d\x88\x2c\xfb\xdc\x96\xd5\xdf\xf7\x12\x39\xee\x36\xb7\x7c\xc3\x76\x0c\x65\x89\xc4\xcd\xba\xed\x65\xdd\x1e\x63\x3d\x0e\x2a\xa8\xb7\x2e\x24\x3f\xc8\x42\x0f\x8c\xd0\x5a\x79\xa6\x02\xca\x37\x77\x36\x15\x23\xa3\xe7\x98\x8e\x71\x4a\x7a\xd6\x41\x15\x27\x09\xe9\x49\x68\x9e\xc1\xca\x32\x4b\x56\x76\x4d\xf3\xbc\x66\x52\x7b\xe3\xa1\x4c\x36\x31\x4c\xd5\x04\xf7\xd6\x80\x64\xb8\x22\x9d\x71\x4e\xee\xa0\x0b\x71\x0f\x4b\x0c\x1b\xfb\x52\xef\x7e\x98\x94\x4d\x24\x65\x13\xf0\xbc\xc6\xb2\x27\xf1\x68\x8c\xf9\x52\xfe\x94\xb2\x51\x1d\x12\x85\x45\x3d\x84\xa1\x6c\xcc\xa2\x3e\xd2\x76\xba\x31\x8b\xb6\xd1\x1a\x37\x09\xff\x94\x0a\x8d\x24\xe1\x47\xea\xb1\x9b\x0a\xb5\xf3\xc6\x1b\x8c\x4a\xd7\x08\x17\xeb\x01\x35\x5c\x18\xc9\x70\xb3\x2c\x90\x6e\x94\x05\x7e\x93\xc2\xa1\x11\x33\x24\xc6\x1c\x4f\x12\x5f\x36\xdc\xcd\xa0\xd4\x64\xbf\xa1\x93\x4f\xae\x9d\x9d\xe6\x5a\x6d\x06\x65\xc7\x5a\x8a\x0b\xe4\x81\x58\xe6\x1f\xa5\x63\x5c\x12\x5b\x89\xb6\xe7\x63\x08\xb3\x35\x28\x91\x96\x5a\x6a\x20\x89\xbc\x13\x34\xf7\x23\xb7\x68\x64\xa3\x05\x10\x84\x78\x87\xff\x1a\xab\xd6\x65\xf7\xe5\xfa\x56\xe1\x80\xfe\x43\x22\x56\xed\x9f\x7a\x83\xcd\x90\xc9\x05\x79\x36\x69\x85\x26\xff\x1b\x85\xea\x3f\x1b\x85\xca\x13\xc2\x34\x29\x4d\xb9\x74\xd0\x66\x51\x8d\xe1\xe4\x25\x66\xd1\x7a\xae\xf2\xdc\xdd\x2c\x6f\xe1\xea\xd0\xb5\x0a\x27\x51\x42\x68\x35\x4c\xa7\xf9\x8a\xad\xae\x0c\x77\x54\xd6\x05\x9e\xf1\xec\x4b\x92\x4d\x63\xb6\x46\xc8\x0d\xfc\x19\xa5\x24\xa9\xb5\x9c\x39\x01\x96\x32\x13\x5e\x29\x73\x45\x44\x99\x13\x4c\x29\xab\x44\x4e\xca\x10\xc4\x8b\x55\x34\x08\xaf\x47\x28\x52\xdd\x81\x3e\xb8\x10\x7a\xbe\x8d\x39\xae\x76\xcf\xa8\xdf\x70\x5f\xfd\xc6\xeb\xd8\xff\x9b\x7e\x29\x6d\x1e\xbe\x21\xd2\x67\xb2\x5a\xd5\x0b\x2a\x71\x93\x11\x55\xdd\x01\x3c\x5e\x6f\x37\x4c\x15\x76\x5a\xab\x0b\xb5\xb8\x1c\x0d\x3f\x10\x53\x5a\x4b\xd2\x9c\x5f\x72\x9f\xcf\xa4\x07\x1d\x24\xcd\x53\xf6\x89\xa4\x91\x70\x5c\xd4\x3c\x3a\x18\x9a\xeb\xda\x40\xd6\x63\xb2\xc1\xd7\x6f\x0e\xdc\xd4\xac\xd6\xde\x60\x1f\x33\x94\x1b\xf0\x0b\xed\x26\x10\x60\x11\x34\x04\x23\x89\x7d\x2c\x16\x93\xdf\x50\x33\x21\x7b\x52\xe4\xa2\xb5\xcc\xf8\xe7\x74\x4a\x5b\xe7\xbc\xc8\x26\xb4\x6b\x75\x31\xe2\x56\xd0\xd1\x41\x32\x58\x19\x17\xb9\x30\xd2\xe7\x33\xda\xbd\x42\x11\x93\x94\xf8\x9d\xe4\x54\x3c\xa9\xd2\xe3\x01\xb6\xda\xb3\x95\x0a\x07\x0b\x1a\x65\xf8\x8c\x76\x93\xee\xf9\xd9\x5b\xa3\x87\xfd\x35\xca\x70\xbb\x5f\x8a\x1d\x6c\x9e\xc3\xb3\xb7\x08\x73\x9f\x13\xff\x4f\x01\x71\x1a\x65\x8f\x80\x20\x29\xa9\x83\x05\x8d\xa8\xca\x74\xba\x7f\x72\x68\x83\x67\x82\x65\xcb\xa1\x49\x36\x46\x59\x9a\x21\x9f\xf3\x49\x3c\xa3\x6a\xed\x54\x98\x2e\x73\xb3\x21\xf8\x27\xca\x06\x65\xe5\x16\x44\xf0\x16\x3a\xe5\xc6\xe2\x21\x07\xc6\xec\xcb\x4d\x3a\xa7\x51\xfb\xc6\x66\x97\x00\x37\xc0\xf2\xe6\xec\xe0\xc3\xc9\xe1\xe9\x85\x67\x31\xc4\x36\xc0\x93\x6b\xdd\x95\xa5\xdf\x43\xa4\x79\x13\x0d\xa3\xe6\xe7\x80\x1b\xd1\xe6\x14\xc0\x92\x94\x5a\xa4\xea\xd5\x0d\xa4\xab\x93\x8c\xe4\x28\x88\xad\x64\x84\xa2\x81\xca\x0d\x37\x39\xa6\xe8\x24\x99\x27\x99\x7e\x51\x3a\x5f\xf0\x08\x31\x59\x66\xc9\xc4\xbc\x17\xac\xac\x9b\xb2\x62\x61\xb3\x2d\x0b\x61\x92\x81\x7e\xd0\x2f\x56\x6a\x61\x01\x38\x32\x21\xb0\xfd\x7e\xbf\x7e\xbf\x7f\x70\x78\x79\x8c\x90\x0b\x67\x3a\x8b\xf6\x1d\x03\x34\x28\xaa\x36\xe2\x67\x50\xcd\xb2\xe3\x38\xff\x0f\x8e\xa3\xd1\x5a\xb4\x03\x57\x1b\xd3\x33\x1b\xd5\xfb\xde\x2e\x4d\xca\x00\xa9\x15\xf0\x27\xf5\x65\x79\x5f\x4d\xce\x6a\x3b\x7b\x77\xf8\x1e\x5c\xd5\x5e\xbe\x39\x7c\x7b\x74\x7a\x24\x1f\x37\x99\xa0\x19\x31\x5a\x83\x11\xda\xfd\xa6\x5f\x8b\x88\x22\x6f\x01\x9b\x3b\x23\x15\xd5\x57\x5b\xc3\x18\xd9\x92\x3f\x05\x70\x27\x96\x80\x67\x8c\xc7\x83\xcd\x14\xc0\x59\x23\xac\x55\x69\xd8\x49\x44\x25\x4e\x7b\x00\xe4\xb5\x73\x4b\xbc\x11\xb1\xe8\xe5\x22\x9a\x16\x8a\x66\x01\xd4\xdb\xa0\xb2\x6c\xf4\x47\x9b\x30\xd8\xb8\x8e\xfc\x44\x67\x35\x4b\x20\x2d\x8c\x53\x87\x8c\x2c\x07\xf4\xdd\xfe\xfb\xc3\xd3\xcb\x63\x34\xbc\xae\x26\xe1\xa5\xfb\xfa\x1e\x49\x42\xdc\x56\xb6\xac\xaf\xae\xda\x3a\xfa\x75\xff\xfd\xd1\xfe\xeb\xe3\x43\x77\x3e\xcc\xe0\xc7\xe0\x39\x49\x22\x85\x38\x2a\x47\xec\xe0\xec\xf8\xec\x14\xe1\x53\x98\x5a\x2d\x90\x50\x97\x2f\x0e\x8a\xfc\xe5\xc3\xfe\xf1\x39\x1a\x7e\x95\x53\xd4\x43\x66\x05\x36\xcf\xcb\xcd\x26\x30\x5b\x65\xa3\x6f\xce\x8e\x8f\xf7\xdf\x7b\x4b\xc9\x40\xae\x96\x4c\xb2\x79\xde\x17\x8f\x18\x86\xf3\xc3\xe3\xc3\x03\x58\x97\xe7\x87\x17\xae\x95\xe5\x75\x75\x2f\xe2\x5b\xf7\xf5\xfd\xa6\x46\x6f\x1b\x27\xf2\xfc\xdd\xfb\xc3\xfd\x37\x68\x78\x29\x4f\xcf\xcf\x1e\x2a\xf8\x5c\x83\x12\x33\xd8\x3f\x76\xa3\x61\x5e\xd9\x71\x37\x95\x39\x19\x46\x19\x61\x98\xab\x5d\x17\x73\xc2\xdc\xe1\x82\xeb\x76\x6d\x25\x9a\xa9\x31\xe3\x8e\x0d\xe8\x95\xde\x4c\x0f\xed\xaf\x3a\x6e\x1a\x2e\xa0\x33\xf7\xcd\xf0\x95\xe7\xc9\x68\xf8\x25\xbe\xae\x23\x8d\x7b\xd6\x38\xbb\x67\x8d\x5f\x3f\x62\x72\xf7\xdf\xff\xa0\x4e\xe6\x72\xa5\x28\x9a\xa1\xbe\xaa\xbf\xaa\x3e\x6f\x9a\xd5\x2f\xff\xde\xd6\xde\xc1\x1e\x6a\x6e\xea\xb2\xf1\x68\x58\x54\x97\x12\xae\xa1\xdd\x80\x33\x65\x98\xe0\x1e\x7d\x35\x28\xdf\xbe\xdf\xff\x41\x42\x79\xa9\xea\x51\xc0\x1e\x6e\xc0\xb0\x0d\x47\x80\xb7\x12\x03\x63\xcf\xe2\x34\x09\xba\x06\xc9\xf4\xb3\x24\xa6\x23\x84\x19\x79\x53\x3d\x0b\x8e\x4e\x8f\x8f\x4e\x0f\x2f\x0d\x24\x15\x73\x7c\xf6\xaf\xa0\xfa\xb3\x8d\x28\xe5\x56\xe6\x2d\x4f\x72\x54\xaa\x54\x76\xe9\xd7\x25\xcd\x52\x99\x9c\xcc\xcd\xf5\x9f\x35\x23\x1d\x36\x8d\x9d\x83\x33\xcb\xf1\xdb\x78\x74\xf9\xfd\x8b\x14\x24\x9c\x05\x08\xab\xa1\xf9\xe6\xfe\xc6\x8f\x86\xe9\xdf\xde\x74\x39\xd4\x87\xc6\x59\x41\xc3\x1a\x40\x0e\xd1\x63\x85\x70\x1e\xd6\xfb\xea\x2b\x3a\xaa\xa9\xd2\xa7\x31\x03\x9b\x29\x2d\x8b\xb7\x28\xe7\xe7\xc3\x8b\xcb\x63\x43\x80\x5d\x40\xf1\x81\x9f\xe3\xb0\xfc\xfe\x47\xf5\xfb\xd1\xe9\x45\x6c\xd5\xa2\xca\xd5\xe9\xad\xca\x0b\xe3\x8f\xa0\xca\x51\x30\xb4\x76\xaa\x7a\x7b\x7c\xb6\xff\x50\x65\x90\xe7\x71\xd5\x9d\x5f\xbc\x3f\x3a\xfd\x21\x76\xba\x72\x7c\x76\xf0\xf3\xa5\x4e\xd6\xcd\x7c\x32\xb4\x68\xcb\xee\x78\x43\x5e\x88\xac\xa0\x72\x02\x74\x33\xab\x55\x30\x4b\xe6\xb9\x9b\x34\x8c\x36\x40\xf9\xfa\xec\xec\xf8\x70\xff\xd4\x78\x09\xa8\xd4\xe4\x01\x8c\xe2\x80\x15\xf3\xf9\x63\x6a\x3d\xfd\x70\x7c\x5c\x29\xbb\x29\xeb\xe1\xe9\x87\x93\x7b\x46\xc9\xed\xb2\x22\x04\x62\x88\x5b\x6a\xe8\xeb\x9b\x8d\xec\xc1\xa7\x8d\x78\x60\x03\x24\x6a\xb8\x2b\x2c\xe5\xd5\x9c\x4f\x3e\xc5\x02\x96\x23\x21\xa4\x36\x3b\x1b\x76\xc6\x3b\x87\x04\xd0\x84\x50\xf9\xf1\xbc\xfa\xb1\xef\x7c\xbc\x68\xd8\x15\x38\x23\x62\xf8\x2e\x3e\xaf\x1f\x38\xc7\x47\xe7\x7a\x8d\xe5\xf1\x95\x77\x3c\xc3\x5e\xc1\x99\x9f\xe0\x92\x2c\xcc\x85\xf7\x8f\xa6\xbd\xb8\xa8\x9d\xf7\xa5\x55\xb1\xe4\x96\x1d\xbe\xd8\x50\x44\x03\x94\x29\xfe\xf9\x00\x2a\x6c\x60\x95\xcf\x5e\xff\x74\x78\x70\x81\x67\x29\x9d\x4f\x25\x35\xd2\x0c\xcf\x41\x13\x3c\x1b\xea\xba\x54\xe4\xcd\xe3\x0e\x78\x81\x36\x0d\xc1\x49\xdd\x1c\x60\x50\x1e\xb0\xfb\x17\x68\x80\xb4\x6c\xe0\xbd\xd7\xb7\x16\x2b\xeb\x78\xbf\x19\x6c\x87\xa0\xdd\xbf\xf0\xd6\xdd\x9b\xa3\xf7\x92\xfe\xfc\xd5\xa5\x66\x7d\xe2\x4c\x6c\x82\xf9\xb4\x89\x70\xdc\x44\x28\xda\x55\x81\x86\x11\x23\xb2\x28\x5e\xd4\x3e\xbe\x97\xc7\x75\x65\x81\x5d\x5e\xfc\xfe\xee\x50\xf1\x02\xbe\x4c\x03\xc5\xea\x68\xc7\x4e\x23\xfb\xa7\x3f\x20\xf7\xc0\x3c\x3d\x3b\xbd\x94\xe8\x60\x63\x25\xb1\x33\x7e\x6f\x1e\x41\x63\x49\xc4\xf7\x46\xd5\xf6\x10\xf5\x7f\x54\x56\xb7\xaf\xcc\x90\xe6\x9c\x7f\x4a\x6e\x68\x32\x8d\x50\xec\x90\x56\xfe\xfe\x06\x62\xaa\x91\x2d\x34\xe2\x13\x3d\xb6\xc7\x8e\x5c\x45\x89\x52\xf4\x87\x3f\xed\x07\x25\x56\xd1\xc9\xbf\xd8\x64\x47\xc4\xa2\xbf\xfd\x68\xbf\x69\x71\x8b\x4e\xff\xc1\xa6\x2b\xd1\x8b\x4e\xfe\xd9\xa9\x0a\xc4\x30\x3a\xfd\x1f\x65\x76\x2d\x92\x31\x22\x56\x6a\xbf\xd4\xe5\x33\xca\xe8\x6d\x03\x5f\xba\xdf\xcc\xce\x00\xfa\x43\xab\x95\xc3\x15\x38\x78\xd1\x29\xff\x56\x53\x09\xae\x54\xe7\x93\x87\xaa\x8f\xeb\xd3\xae\xc8\x14\x3d\xde\x46\x42\x77\xa2\x30\x29\xce\x48\x9d\x35\xfb\x50\x41\x44\x75\x36\xef\xe0\xc7\xc3\x93\x7d\x97\x46\x72\x28\x1f\x56\x0a\x22\x2e\x6e\x97\xd4\x43\x4c\xde\x92\xfa\xd0\xb4\xe3\x66\x72\x68\xab\xe8\x46\x5f\xb7\xbd\x29\xe9\x9f\x46\x59\x88\x5c\xc8\x9b\x04\x22\xb0\x5b\x36\x41\xf2\x67\x13\x24\x72\xac\xed\xd8\xc1\x92\x34\x70\xc0\x36\xe1\x66\x08\x9b\x86\x67\xff\x78\xff\x7d\x0d\x9c\x29\xb5\x82\x8b\x52\x42\xe3\x0c\x1c\xdf\x00\xdd\x2f\x0f\x40\x07\xfb\xa2\x02\xdb\x6b\xf9\x93\xda\x59\x2e\xc8\xaf\xcd\x63\xa7\xb0\xfe\xa3\x20\xb5\xfb\x4c\x42\xea\x80\x9d\x9a\x03\xa8\xd8\x00\xff\xeb\x12\xfe\x11\x68\x61\x07\xd6\x87\x73\x5e\xa7\x75\xef\x5c\x92\xa2\x44\x86\xfb\x27\xef\xd0\x60\xca\xef\xb4\xe7\xaa\x37\x8e\x4c\xd9\xcf\xb4\x5a\x95\xac\x48\x32\x9f\xf3\x2f\xc7\xf4\x3a\x99\xdc\x9e\xbf\x39\x3e\xb2\xad\x1e\xd9\xae\x84\x61\x55\xe4\x69\xfd\xde\x97\x1d\xf8\xb5\x62\x65\xd9\x54\xf9\xe1\x62\x29\x6e\x41\x85\xcc\xab\xd3\x9c\xf6\x61\xe8\x21\x4c\x9f\x06\x52\xfb\xcc\xa7\x00\xdd\xe7\xd1\x18\x35\x09\x0c\xea\x1b\xf7\x37\x7f\xe3\x7a\x1c\xfe\x6f\x9b\x56\x11\xb6\x8b\xe6\xf7\x8d\x7b\x2f\x55\x67\x5c\xb1\x79\xcd\x03\xe1\xf0\xe0\x1a\x2a\xcf\x62\xae\x76\x64\xea\xae\xa4\x4d\x0b\xe8\xf7\x6f\x95\xe6\xfd\x75\x8f\xa4\xe3\xaf\x07\xc6\xa1\x79\x00\xb8\x1a\x80\xd4\x50\x04\x35\x19\x1d\x04\x31\x04\x41\x84\xb6\x5e\xd8\x38\x52\x47\xa7\xef\x3e\x5c\x5c\xfe\xba\x7f\xfc\xe1\xe1\x3d\x07\x63\xc4\x7d\xf1\xe0\xa3\x86\xec\xc7\x07\x70\x46\x79\x68\x36\x23\x35\x9c\x6e\xc0\x18\x47\xa7\x17\x87\xef\xdf\xca\xf5\xf5\xed\xe8\x4d\xe3\x89\x74\x03\xcc\x3f\x3c\x00\xb3\x3a\xcc\x37\xc2\xfb\xa4\x11\xde\x0f\xa7\x4d\x27\xc3\xc3\xb0\x0a\x38\xba\x36\x81\xfa\xa4\x8a\xd2\x6a\xeb\x01\xdd\x95\x49\xef\x8e\xde\x1d\x3e\x8c\xbc\x20\x57\x13\xfa\xf9\xf9\x81\x71\x01\x62\x66\xe3\xb0\xfc\xd4\x38\x2c\x92\x55\xfc\x27\x46\x45\xb3\x47\x9b\x86\xe5\xa7\xc6\x8d\x7a\x0f\xc2\xfa\xfb\x3d\x08\xeb\xef\x0f\x23\xac\x8d\x7b\x0c\xba\xf7\xb8\x2d\xf6\x88\x03\xf8\x1f\x0f\x6e\x26\x49\x36\x6e\x9c\x01\x4a\x37\xec\x24\x89\x07\xbe\xe5\x04\xfe\x96\xcd\x04\x8d\x7e\xd3\x5c\xfc\x75\xcf\x5c\x00\xc5\x6b\x87\xc0\x39\xc8\xbe\x8d\xe2\xf7\x08\x7b\x46\x9b\x29\xfb\x8c\xde\x43\xda\x73\xba\x81\xb6\x4f\x69\x33\x71\x9f\xd0\x0d\xd4\x7d\x71\x1f\x9d\xce\xe8\x26\x32\x5a\xb3\x02\x08\x37\x50\x86\xf6\xa2\xc1\xac\xcb\x74\x16\x81\x61\x9b\x56\x24\x6d\x90\xe3\x6d\xa0\x1a\x0f\xff\x7e\x71\x78\x7a\x6e\x85\x8f\x9e\x10\x77\x13\x11\x9b\x3d\x16\x66\x87\x5e\xb4\x10\xbf\x6e\xc4\xfe\x15\xf8\xc3\x50\xbe\x71\xef\x2d\x7d\x54\xdf\xdc\x55\x5e\xeb\x9b\x43\x58\x7e\xdb\x1a\xe7\x8f\xed\x71\xf5\xb4\xab\x4e\x14\xe6\x8f\xe8\xef\xfd\x3d\xac\x9c\x8b\xf7\x4f\xa0\xee\xd7\x26\x7c\x93\x3e\xb6\x5f\xee\x89\xd8\xd0\xa7\x27\xff\x62\x9f\x9c\xb3\xf3\xfe\xfe\xa8\xc3\x72\x53\x77\x92\xc7\x76\xc7\x39\xc8\x1a\x7a\xf3\xd3\xbf\xd8\x9b\xf2\xc8\xbb\xbf\x33\xfa\x8c\xdb\xd4\x9b\xe2\xf1\x8b\xae\x3c\x15\x1a\xba\xa3\x4e\x85\x7f\x69\xc5\x55\xcf\x8f\x7f\x69\xd1\xe5\xf5\x7e\xf9\xa7\x5c\x29\xea\x70\x85\x5d\xfb\x17\x95\x73\xef\xf7\xb2\x84\x5d\x9b\x29\x99\x37\xf7\xc1\xca\xeb\xbe\x89\x73\x98\x73\xe5\x49\x69\x33\x66\x80\xe6\x6a\x14\x98\x25\xd8\x4a\x52\x0c\x02\xb8\x6d\xa2\xc5\x06\x75\x5a\x6c\xd2\x38\x4a\x89\x9e\xca\xaf\xb2\x6c\x55\xe3\x56\x9f\x81\xd6\x4b\xf4\x60\xc3\x99\xa3\x7b\xa1\x5c\xf1\x58\x2e\x93\xf1\x63\xdd\x5b\xe4\x28\xbc\x4e\x29\xc4\x94\x9d\x27\xb9\xb8\x00\x18\x68\x37\x07\xf5\x39\x57\x07\x82\x7a\x41\x5c\x73\x91\x64\x42\xb9\x7f\xca\x84\x72\xdc\x4b\xd9\x94\x08\xf9\x17\x97\x39\xa0\x3a\xe3\xd9\x97\xb2\xa9\x7a\xd7\x05\x54\x1b\xc4\x91\x32\x2e\xa9\xa7\x7c\x68\x58\x79\x4d\x10\x38\x03\x77\x43\x1b\xe4\xb9\x36\x9f\x95\xff\x82\xbf\x81\xf2\xb6\xd3\xd1\x3e\x68\x2a\x0f\x3e\x34\x6d\x25\xa8\xe1\x4e\xc2\x8c\xb6\x56\xaf\xbb\xa4\xca\xae\x5d\x75\x44\x79\x9d\xca\x04\x0e\x0e\xbf\x2e\xe9\x44\x80\x7d\xa1\xe8\x04\x58\xbb\x23\x0a\x3a\xa5\x56\x1e\xf8\x82\x77\x46\xf7\xf6\x41\x78\x2c\x35\x14\x86\x7a\x0d\xfc\x6b\x40\x7e\x57\x02\xf9\x5d\x47\x74\xbe\xb3\x60\x7e\x77\x0f\x98\x9f\x3d\x30\xc5\x6a\x55\x91\xa4\x3f\x30\x2e\x1f\x18\x2d\x47\x66\x73\x2b\x57\xb4\xb4\xfb\xd2\x13\x55\xba\x62\x2b\xaf\x37\x32\x34\x40\x5c\x1b\xa4\x00\xa7\x6c\x88\x3a\x47\x0f\xe1\xfe\x9a\x64\xb1\x87\x6b\xfb\x66\xdb\x00\xa1\x7c\xc9\x80\x8f\x73\x78\x02\x4e\x9b\x70\xf3\x7a\x71\xbb\xa4\x24\x35\x6f\x07\x9c\xe5\x8a\x17\x27\xef\xdc\x1c\xef\xe9\x8c\x66\x94\x4d\x28\x39\x35\xc9\xd6\x0b\x3e\x79\x03\xd8\xe7\x0b\x05\x37\x2d\x2f\x11\xbe\xa4\x10\xb2\x77\x17\xe1\x33\x48\xdb\xde\x46\xf8\x50\x3d\xed\x22\xfc\x55\x3d\x3d\x43\x83\xa9\x17\x5a\x84\xff\x74\x7e\x76\x4a\xbc\xb4\x94\xe5\x72\x86\xea\xf6\x28\x77\x30\x87\x71\xb9\xb5\x31\x65\xd3\xd8\xec\xeb\xf5\x43\x3e\x6c\xaa\x0a\xc0\xa0\xd8\x4b\x5d\xc5\x5e\xb1\x41\xab\xf7\x20\x61\x8c\x8b\xd6\x24\x99\xcf\x5b\x49\x6b\x32\x07\x6f\x5d\xe0\xb0\xcb\x58\xd8\xa0\xf5\x63\x62\xb7\x80\x41\x89\x0a\x83\x5c\xb2\x35\xe0\x3f\x2d\x05\xf7\x00\x37\x69\x8e\xa9\x89\x13\xc6\xa7\xb7\x06\x4b\xa9\xb0\xa0\xab\x55\xf0\x83\x52\x6d\x37\x8e\x86\x02\xf5\xd9\x9c\x1e\x67\xb3\x59\x4e\x05\x49\x57\xab\xbb\x79\xca\x68\xdc\xc7\x13\x3e\x2f\x16\x2c\xee\xaf\x9b\x32\x76\x65\xa6\xef\x7b\xc6\x6f\xa1\x0a\x2a\xd1\xc3\x81\x4c\x6e\xa5\xac\xe5\xe7\x6e\xa5\x79\xab\xbf\x05\x6e\x76\xe9\x14\xdc\x99\x2d\x8a\x5c\xb4\xae\x68\x6b\xc9\xf3\x54\x9f\xa2\x4d\xad\x28\x18\x1a\xda\x51\x1f\xfe\xb9\x96\xbe\x6d\xae\x2b\xc6\x15\xbc\x9b\x44\xc1\xf9\x2d\x13\xc9\x57\x65\x97\x1d\xb7\x82\x0e\x33\xd6\xc4\x14\x8f\xc4\x18\x55\xcc\x80\x9e\xef\x3c\xe8\xff\xf2\x51\x79\x60\xf6\x3d\x3f\x91\xff\x94\xd6\xba\xec\x45\x11\x9d\x75\xcf\xcf\xde\xe2\x9e\xfe\xc7\x8a\xf9\xdc\x12\x24\x0a\xed\xc5\xd4\x7a\x5b\x14\xd8\x1e\xad\x31\xc3\x42\xff\xea\x65\x22\x7f\xce\x61\x6f\xf5\xb0\x46\xe2\x40\x94\x68\xa6\x38\x4e\xbd\x08\x1b\x15\xc5\x7c\x53\xad\x0e\xad\x06\x87\x77\xf9\x48\xf4\x92\xb0\xfc\xb5\xab\x51\xee\xc6\x8f\x2a\xcf\x1b\xe5\x12\xb7\x4d\xc8\x19\x68\x54\x4f\xf9\x1d\x25\x14\xec\x2f\x56\xab\x48\x3d\x90\xb9\xd9\x2c\x86\xd2\xa1\xf6\x90\xea\x1e\x9c\x9d\x9c\x1c\x9e\x5e\x58\xf4\x49\x1b\x55\xc8\xb5\xa9\x96\xa5\x88\x86\xaa\x86\xce\x77\xe6\x30\xfa\x2e\x56\x29\x9e\xae\xb8\xc2\xe4\xc6\xd1\x0b\xc0\x0d\xed\x52\x87\xe0\x20\x0e\x31\xa2\x87\x42\x0e\xb0\xc4\xc5\xca\xf0\x48\x2e\x7b\x89\x8a\xe5\x9b\x3a\x46\x13\xf5\xb2\xcc\xe8\x67\x89\x95\x61\xcf\xcb\x6e\x42\x88\x05\x5f\x37\xdc\xa0\x94\xfc\x34\x39\x8d\x28\x1a\xc2\x20\xc5\x74\xaf\xbf\xfd\x62\x58\xf1\x59\xa6\x6c\x0d\xc0\xd3\xee\xc1\x4d\x92\x1d\xf0\x29\xd0\x86\xf1\x77\xc1\xc7\x8f\xc5\x77\x9d\x28\xe8\xf5\x82\x8e\xc4\xc1\xda\x28\xa1\xff\xbc\xe2\xf6\x09\x69\xaf\x4f\x5b\xbb\x48\x0e\x88\xa7\x5d\xed\x92\x0a\xfa\x90\xcd\x88\x72\x6f\x89\xb9\x25\xff\x25\xa6\x8b\xe4\x21\x24\x69\x32\x8a\xc0\x65\xb6\x1c\x0c\x3c\x27\xfd\x4e\xba\xa5\x5e\x60\xe9\xc9\x99\x4f\xbf\x27\xdc\x25\x0a\xe5\x12\x3f\x3c\x7b\x8b\x39\xe6\x38\xc1\x73\x79\x74\xca\x26\x6f\xc8\xa1\xb2\x38\xc9\x70\x0a\x54\xea\xcd\xde\xce\x76\x18\xbe\x6a\x13\x72\x13\x86\xfd\x9e\xfe\xdd\x91\xbf\xc8\x23\x44\xbe\x48\xd4\xc3\x70\x8a\x2d\x4a\xe7\x4c\x24\x3a\x98\x73\xca\x3e\x27\xf3\x74\xda\x9a\xdc\x24\x59\x32\x11\x34\x6b\x05\x9d\x3c\xba\x41\x9d\xa0\x1b\x58\x4d\xe0\x1b\xad\x76\xb4\xb3\x13\x57\x00\x7d\xbd\x7f\xfa\x03\x4e\x71\xda\xe9\x1b\x58\x55\xc6\x67\x26\xe3\x14\x5a\xf6\xbe\x3d\xaf\x56\xa2\xb4\x58\x9a\xaa\x79\x59\xcd\xba\x7f\xf2\xae\x21\xdf\x6e\xaf\x9a\xcf\x5c\x21\x34\xe4\xed\x37\xe7\x6d\x6a\x7f\xf7\x79\x9c\xce\xa2\xdd\xe7\x84\x38\x83\xdf\xe9\xa3\x30\xac\xa6\x6d\xa3\xea\x14\x6a\x4d\x42\x59\xe9\x8e\xa9\xd4\xb1\x9a\x7e\x56\xeb\x1a\x5c\x53\x34\x00\xf1\xbc\x06\xb0\x92\x4d\x37\x65\xdd\xad\x8d\xd7\x45\x43\xb6\x57\xb5\x1a\x4b\xf5\x98\x86\xdc\xf5\x49\x37\x9a\x11\x0d\xb9\xfb\xdb\x8d\xd9\x0f\x1b\xab\xee\x6f\xd7\x00\x96\x2c\x5b\x63\xce\x67\xcd\xd5\x36\xc1\xf0\xfc\x99\x52\x1c\x7b\xfe\x5c\xff\xbe\xd0\xbf\x2f\xf5\xef\x2b\xf5\xfb\x42\x9b\xb4\xbf\xe8\xeb\xdf\x6d\xfd\xbb\xa3\x7f\x77\xf5\xaf\xae\xef\x85\xae\xef\x85\xae\xef\x85\xae\xef\x85\xae\xef\xa5\xae\xef\xa5\xae\xef\xa5\xae\xef\xa5\xae\xef\xa5\xae\xef\xa5\xae\xef\xa5\xae\xef\xa5\xae\xef\xa5\xae\xef\xa5\xae\xef\x95\xae\xef\x95\xce\xff\x4a\xe7\x7b\xa5\xf3\xbd\xd2\xf9\xfa\x3d\x63\x9b\xdf\xeb\x9b\x87\x6d\xf3\xb0\x63\x1e\x76\xcd\xc3\x33\xf3\xf0\xdc\x3c\xbc\x30\x0f\x2f\xcd\x83\xa9\xb9\x6f\x6a\xee\x9b\x9a\xfb\xa6\xe6\xbe\xa9\xb9\x6f\x6a\xee\x9b\x9a\xfb\xa6\xe6\xbe\xa9\xb9\x6f\x6a\xee\x9b\x9a\xb7\x4d\xcd\xdb\xa6\xe6\xed\x6d\x33\xc5\xd7\x35\xa4\xb1\xab\xab\xde\xd5\xf5\xec\xea\x6a\x9e\xe9\x5a\x9e\xe9\x4a\x9e\x69\xe8\x9e\x69\xe0\x9e\x69\xd8\x9e\xe9\xf2\xcf\x34\x64\xcf\x5e\x58\x27\x20\xd0\xd6\x8d\x8f\x77\xec\xb2\xdc\xd9\xad\xef\xfd\x6a\xda\x36\x1a\xde\x3a\x00\xc7\x0b\xe7\x65\xdd\x8c\x89\x27\xd1\x0d\xaa\x1a\xbe\x98\x16\x5f\x11\x42\xe8\xd0\xe5\xd9\xf2\x94\x5d\xcf\x69\xeb\xcf\x82\x0b\xea\x20\xea\xe8\x3b\x84\x5b\xd3\x74\xda\xba\xe5\x45\x6b\x41\x13\xd6\x12\xbc\x25\xc9\xa8\xa4\x35\xe5\xc5\x95\x2d\x11\x7d\x0c\xd0\x30\x88\x0d\xf6\x07\x8e\x06\x70\x7f\x51\x36\xe1\xa3\x7f\x0a\xe8\xdf\xb3\x15\x51\x54\x5a\xa9\xec\x46\xcd\x59\xc7\x89\x18\xf0\xbd\x6c\xa0\xdd\xd0\x98\x81\xa1\x98\xc3\x29\x25\x7b\x93\xae\x56\x3b\xdb\xea\x77\x77\x57\xfd\x3e\x7f\xb6\xfd\x02\x3e\xa1\x4e\x87\x5b\x77\x42\xfd\x9e\x49\xc2\x9d\x0e\x53\x67\x26\x2b\x4f\x4b\xa2\x72\x82\x07\x01\x79\xce\xa5\x48\x21\x54\x28\x56\xb6\xdb\xe9\xa3\x21\xef\x90\xed\x78\x73\x3d\xeb\x75\x9d\x67\x9d\x96\x84\x8e\xe9\x0b\x55\x27\xbb\x89\x74\x83\x73\x22\x06\x53\x7e\x97\x98\xc6\x52\xdc\xe9\xe4\x86\x18\xd3\x0e\xcb\x92\x30\x8c\x92\xef\x77\xfa\xab\x95\xec\x5f\xe2\x28\xc5\x59\x3c\x7f\xa2\x14\xbc\x71\xae\xc9\xaa\xaf\xa6\x36\xd1\xe9\xe3\xdc\x5d\x18\x4b\x97\xf8\x32\x61\x77\x34\x54\x73\xc2\xf0\x84\x08\x3c\x23\xed\xbe\x1c\xe9\xdd\x67\x44\x45\xc0\x99\x1b\xf0\x12\xdc\xe9\x4c\x10\xc2\xbb\x2f\xe5\x17\xe0\xfd\x6a\x1f\xbf\x27\xbb\x2f\xc3\x70\xbe\x47\x9e\xbd\x68\xa0\x1a\x28\x9e\xe0\xe0\x48\x93\x08\x2a\xfe\x1a\x76\x97\xcd\x34\xbd\x4e\x45\x2b\x99\xc9\x85\xd3\x8b\x61\xed\xcc\x15\xe9\xa0\x0c\xc1\x26\xe4\x06\xea\x98\x23\xec\x34\x3c\xb1\x63\x02\xc7\xa8\x84\x79\x46\xda\x3d\x5c\x81\x0d\x6f\x2a\x8d\xf0\xf3\x57\x2a\xda\x4f\xbf\x07\x61\x7f\x56\xab\xe6\x0a\x76\x77\x54\xb6\xdd\x67\x3a\x57\x6d\x68\xca\x26\x94\x5b\xeb\x22\x9a\x0d\xcf\xb4\x32\xf3\x19\x68\x3f\x0b\x3c\xd1\xb4\xef\x57\x53\x54\x48\x18\x3c\x8b\x1d\xd7\x8f\x3b\x35\xe4\xa0\xc0\x29\x61\x9a\xc2\x93\x83\x9c\xc2\x20\xdf\x4d\xf9\x5d\x5a\xa2\x8f\x4e\x87\x9b\x05\xe4\x65\x2b\xc5\x20\x4d\xb3\xc2\xeb\xb3\x52\x99\x93\xab\x42\xb4\xae\xb9\x50\x73\x92\xea\x39\x71\x8d\x80\xca\xb5\x6e\x36\xb5\xb3\xde\xe5\x42\x9c\x93\x04\x4f\x48\x0f\xcf\x48\x10\x0c\x92\xbd\xd4\xca\xb6\xf5\x42\x8f\x26\xe5\x36\x48\x10\xd2\x34\xe8\x44\xd3\xa0\x93\x01\xac\x37\xc0\x95\x13\x43\x1b\xcd\x3a\xc4\xae\xf5\x39\x4e\xcc\x90\x9f\x19\x45\x63\x81\x93\x4e\x5f\x2f\xf7\x19\xa0\x8f\x89\x25\x72\x27\x8d\xcb\x33\x29\x07\xa2\x44\x61\x5f\x52\x71\x93\xb2\x96\x22\xf0\xd5\x08\x4c\x34\x41\x9b\xce\xa2\x4e\x27\xc1\xaf\xb6\x01\x2c\xe3\x0d\xab\x02\xd7\x56\x5f\x2e\x0c\xb7\x73\x77\xe6\x58\x98\x75\xc8\x77\xc1\x77\x9e\xfb\x9b\x17\x32\x31\x78\x1a\xb8\x89\xaf\xb6\x21\xf1\xe3\x47\x3f\xf5\xa5\x4a\xbd\xf2\x52\xe5\x59\x0d\xc9\x33\x3f\xb9\xdf\x53\xc9\xac\x92\xbc\xab\x92\xb3\x4a\xf2\x73\x95\x2c\x2a\xc9\x2f\x62\x39\xb5\x53\xf2\x39\x2a\xfb\xd3\xe9\x23\xec\xbc\x6d\x7b\x6f\x3b\xde\xdb\x2e\x82\x31\x9b\xee\xf5\x1e\x3f\xfc\x34\x9f\x24\x4b\xda\xca\xe9\x9f\x05\x95\x4c\x75\xeb\xe3\xc7\x22\xe8\xa4\x9a\xad\x92\x33\x9c\x74\x9e\xe9\xf9\x98\x75\x48\x13\xc3\x36\x45\x38\xe9\x90\x5d\xdd\x15\xe3\xe7\xe7\x5f\x81\xc0\x18\xa1\xfb\xed\xe8\x65\xb1\x96\x6b\x62\x4e\x92\x75\xe3\x66\x4b\x70\xf0\x81\x09\x9a\x2d\x52\x96\xc0\x71\xac\x2a\x72\xf7\xd3\xed\x83\xfb\x69\xe7\x5b\xf7\x93\xbb\x7f\x7c\x9a\x43\xcd\x60\x3d\xad\xe4\x41\x36\xee\x33\x4f\x4f\x5f\xee\xb6\x1d\xbd\xdb\x8c\x00\x59\x3b\x0e\xaf\x6c\xbd\xea\xde\xfe\xb7\x6c\x45\xb5\x07\x1f\xdb\xb5\x7a\xda\x0e\x1a\x56\x37\xae\x64\xd8\x83\xe0\x3b\x58\x3b\x72\xbc\x51\xdc\xe9\x24\xff\xec\x9c\x7e\xae\x39\x41\xbb\x8a\x28\xda\xdb\xeb\x6f\xaf\xae\x22\x81\xf6\xf6\x5e\xae\xae\x22\x86\xf6\xf6\x76\x57\x57\x51\x86\x3c\xfb\xbe\xf2\x26\x45\xe1\x74\x2a\x71\xfa\x90\x6e\xed\xbe\x8c\xe9\xf7\xe4\xf9\x33\x48\x79\xd1\x1b\xd2\xad\x67\xcf\x64\xca\xab\x17\x90\xd2\xef\x6d\x0f\xe9\xd6\xcb\x17\xf1\x56\xdf\xb3\xe9\xbb\x77\x6d\x99\x85\x24\xa9\x13\x40\xdb\xbd\x41\xae\xe8\x10\xb3\xb0\xe6\xe5\xb0\xe5\x12\x51\x47\xaf\x80\x54\x58\xad\xe6\xce\xe9\x0f\x6f\x12\xb2\xf9\x1e\x79\xd5\x83\x37\x09\xd5\x7c\x8f\xf4\xb7\xb7\xd1\x00\x75\x3a\x79\x95\x92\x01\x7f\x03\x4d\x64\x0c\x10\x31\xa2\x7b\x45\xb2\x7b\x23\xdc\x9c\x29\xf7\xb4\x24\x51\x42\x75\x23\x49\xbf\x04\xa1\xf9\x0e\xc2\x67\xc6\xd5\xce\x2c\xa3\xf4\x2f\x1a\xdd\x9d\x9f\xbd\x8d\x83\xbd\xf3\xb3\xb7\xdf\x07\xf8\x10\x9e\x0f\xe1\xf9\xf5\xfe\xe9\x0f\x71\xd0\x0e\xb0\xb6\x87\x09\x9e\x04\x78\xff\xe4\x5d\x1c\x84\x01\xd6\x92\x80\x38\x88\xcc\xf3\xfb\x38\x40\x01\x56\xfc\x79\x1c\x74\xbb\xdd\x00\x03\xef\x1d\x07\x71\x80\x15\x6f\x1d\x07\x24\xc0\xfb\x17\x71\xf0\x5f\x01\x2e\xcd\xac\x82\x51\xf9\xf6\x3e\x0e\xc6\xea\xed\x50\x7e\xb9\x0b\xb0\xe4\x5c\xe3\x60\x65\x12\xdf\xc7\xc1\x3a\xc0\x60\x93\xa4\xc3\x8e\x1e\x9d\x5e\xc4\xc1\x11\x13\x01\x56\xf4\x45\xf0\x76\xce\x13\x11\x60\x6d\xd4\x14\xa8\x4d\x12\x60\xcf\xd4\x29\x78\x3d\xe7\x93\x4f\xe6\x93\xa6\x1d\xe3\xe0\x80\x2f\xc0\x62\x6f\x8d\xf0\xa1\xc1\xa0\xe5\x65\xc2\x44\xe3\xb7\x7d\x81\xbf\xd6\xbf\x02\x1e\x1e\x14\xf5\x0b\x89\xe2\x51\xf7\x11\x70\xed\x6b\x85\x80\xc6\x38\xc8\x8a\xf5\x94\x78\xd5\x0a\x00\x8d\x34\xde\x91\x02\x7e\xd3\x9d\x85\x13\x45\x88\xd0\x6e\xbe\x9c\xa7\x22\x7a\xfa\x31\xfb\xc8\x56\xa3\x8f\xec\x63\x36\x7e\x7a\x8d\x30\x03\x91\x21\xce\x48\x7f\x90\xed\x09\x13\xa1\x22\xeb\x74\x0c\xc5\x2c\x46\xd9\x18\x22\x3a\x24\x80\xd9\x8a\xbd\xc4\x22\xdf\xc8\x78\x3c\x5a\xad\x8a\x3d\x86\xd4\xcd\x7d\xc4\x48\x81\x90\xf5\xcf\xc6\x6c\x9c\xbe\x9c\xf4\x07\x79\xd9\x44\xde\xe9\x20\x31\xca\xc7\x44\xfe\xd1\xe7\x1b\xd3\x6e\xfb\x84\xe3\x84\x2e\x8d\x04\x84\x0c\x46\xa2\x9b\xdf\xa4\x33\x11\x6d\xc8\x23\x1c\x57\x75\x32\xb3\xf2\xe6\x66\x84\xb5\x8e\xbf\x72\xcf\x4d\x8a\x3b\x44\xbd\x81\xd8\xa3\x65\xe7\x82\x16\x68\x66\x8f\xc4\x78\xb5\x92\xb4\x81\x7e\x91\x95\x77\x3a\x0d\xf7\xe2\xa9\x83\xba\x64\xcd\xa0\xd6\xad\x6a\x53\x77\x03\xff\x42\x2c\xff\xcc\xfa\xdb\xaa\xec\x6a\x77\x8f\x18\xb7\x21\x6e\xcc\xe1\x26\x2f\x09\x1b\xa2\x0e\x37\xd8\xef\xc7\x36\xf8\x69\x53\xc6\xf2\x6b\x80\x3d\xab\xf7\x6a\xa8\x61\x50\x8c\xb6\xe1\x85\x8d\x55\x73\x1c\xec\x6b\x85\x86\x00\x57\x6c\x88\xcb\x20\xdb\xe7\xcb\x8c\x26\x53\xb9\xff\x3d\x0b\x5f\x89\x0b\x5c\xdf\xba\x4e\x0d\x2e\xf4\x4d\xa1\xba\x0d\x26\x81\xdb\x4b\x1f\x9d\xe8\x24\x1f\xa7\xe8\x44\x6d\xd9\x18\x07\xaf\x55\xd0\x6c\x9d\x7c\xfa\xe1\xf8\x38\x0e\x4e\x8b\xf9\x5c\x27\x1c\x9e\x7e\x38\x89\x83\x43\x56\x2c\x74\xc2\xf1\xd1\xf9\x45\x1c\x1c\xa7\xb9\xa9\x5e\xa9\xab\xc4\x81\x9a\x49\x2f\xf1\x52\x8f\x94\xf6\xfe\xaa\xc6\xcb\x2a\x88\xc4\x81\x75\x4e\xa7\x90\xa3\xb2\x5b\xf2\x02\x8d\x5b\x03\x2b\xd5\xa4\x4a\xf4\x8c\xa6\xe2\xe0\x94\x33\x09\xb0\xfa\x56\xb3\x63\x89\x83\x73\x30\x93\x71\xc7\x6c\xa3\x7d\x89\xb3\x94\x2e\x54\xf8\x05\x5b\xa6\xd9\x02\x44\xd6\x9e\xcc\x93\xac\x9a\xbb\x59\x07\xd4\x8c\x44\x35\x77\x55\xd3\x5e\xaf\x2d\x7f\x9a\x9b\x54\xcc\xe5\xcc\x2f\x0b\x35\xe8\x95\x45\xd1\xac\xd2\x0d\x4b\x45\x29\xce\x55\x81\x68\x54\xab\x8e\x83\x0f\xac\x61\x30\x9a\x74\x8d\xd5\x2a\x69\xcc\x59\x07\xdb\x2e\xa8\x7a\x1f\x37\x0d\x1d\xf4\xb4\x79\xfc\x1a\xf5\x2c\xdd\xa9\xb1\x11\x74\xfc\x99\x71\xf2\x96\x15\x3b\x79\x37\x69\x00\x56\x46\xd1\x29\xd1\xa4\x5f\xe7\x8c\xa1\x93\xb3\x41\x77\xad\x1c\x41\x0f\x86\x8d\x3a\x61\xb5\x31\x71\x8a\x35\xa9\x61\x39\x1b\xce\x19\xbd\x07\xbd\x53\xfe\x53\x88\xfc\x97\x0f\x87\xef\x7f\x8f\x03\xf8\x09\xf0\xc9\x87\x8b\x7d\x05\x81\x79\x0a\xf0\xf9\x87\xd7\xe7\x07\xef\x8f\xde\xe9\x6d\xe4\xbc\x95\x18\x16\x02\x61\x6c\xc0\x85\xf5\xc4\x26\xbc\xeb\x27\x34\x21\x5e\x3f\xc1\x60\x90\x38\x50\xbf\x66\x71\xc9\x77\xf9\xeb\xe0\x3b\xf8\x6d\xdc\xbc\x95\x94\xf2\x8c\xf0\xb2\x35\x24\x3a\x4b\x4e\x42\xa6\x1f\xf5\xb2\x8a\x03\xf8\xb1\x38\xf9\xf4\xc3\x89\xbb\xbf\x54\x8a\x7a\xf6\x97\x8d\xac\xaa\x7c\x33\xdf\xea\x70\x37\xa7\x3f\xbc\x40\x36\xd1\x68\xd5\x40\x61\x5b\x7d\xcc\x48\x60\x42\xb8\x65\x34\x99\x88\x3f\xf2\x2e\xcf\xae\x9f\x4e\xf9\x24\x7f\x0a\xee\xfa\xb6\xa6\x74\xc2\xa7\x34\xeb\xde\x88\xc5\x7c\x98\x32\xf0\x19\xc1\x04\x09\x3a\x14\x67\xa4\x27\x89\x3a\xa0\xe6\x58\x87\x04\x61\x92\x5d\xe7\xa3\x71\x73\xec\xf5\x32\x12\x59\xd6\x91\x24\xd4\x55\xd4\xee\xe3\xe0\x24\x65\xe9\x2c\xa5\xd3\xd6\x7b\xd9\x7a\x0b\x9a\x6c\xfd\x9f\xa0\x43\x3b\xc1\xa0\xf5\x39\xcd\x53\xd1\xfa\xff\xe5\x10\xaf\x4f\xdc\xd0\xd6\xac\x98\xcf\x5b\x3a\x48\x55\x8b\x67\x20\x50\x97\xe9\x8c\xb3\xad\x85\xa9\x69\x4a\x3f\x7b\x71\xea\x64\x61\x28\xa8\xbc\x2c\x82\xfe\x46\x32\x55\x0e\x26\x92\x79\xeb\x86\xce\x97\xb3\x62\xde\xfa\x92\x64\x2c\x65\xd7\x79\xb7\x15\x60\x56\xf5\x75\x67\x55\xfc\x96\x19\x5f\xe6\xe6\x72\x5d\xbb\x5e\x37\xd7\xeb\x19\x9d\xe5\xe4\x5a\x3d\x17\xcb\x69\x22\x68\x26\x49\xd7\xf7\xbe\x82\x41\x83\xbb\xf1\x7f\x43\xcd\x85\x2f\xe7\xb4\x6e\x78\xee\xd6\x38\x55\x14\x78\x02\x3f\x65\x48\x6c\x01\x84\x33\xc4\xdb\xb6\x61\x08\x84\x6c\x09\x9c\x72\xc2\x93\x13\xa0\x00\xa2\x79\x80\x01\x56\x10\x74\xe0\x05\x61\x81\x8e\x4c\x78\xcf\x0c\x85\x61\x7b\xbf\xaa\x97\x29\x53\x23\x3e\xca\xc6\x40\xe4\x1b\xab\xad\xda\x2a\xdc\x96\x40\xf5\x09\x21\x05\xe2\xdd\xc9\x4d\x3a\x9f\x66\x94\x11\x56\xde\x3c\xec\x15\xe5\x2a\xce\x89\x72\xad\x5e\x20\xe0\xa6\xe7\x7b\xc5\x60\xde\xe9\xa0\x7c\x34\x77\x83\xdd\xcd\x3b\xdb\xe3\x81\x53\x59\x2e\x59\x05\x88\xb4\xa4\xe5\x55\x12\xc6\xbc\x1c\x81\x82\x54\xbe\xd8\x60\x0c\x12\x7c\xd3\x8b\x02\x7a\xa1\x59\xad\x27\x4f\x94\xa3\xc1\xf8\x4c\x99\x90\x51\xfc\x89\xde\xc6\x29\xce\xe8\x2c\x4e\x30\xcc\x66\xcc\xf1\x25\xff\xc2\x68\x16\xbf\xe9\x4e\x8a\x2c\xa3\x4c\x54\x1d\xeb\x19\xaf\x34\xd5\x28\x2a\xd4\x4a\x08\x00\x6a\xd3\x18\x21\xe4\xac\xe2\x52\x4e\x6d\xed\xbb\x80\x04\x71\x40\x7a\x01\x0e\x24\xab\x4c\xb6\x03\xe3\x77\x36\x78\x12\x74\xa2\x20\xe8\x50\xd4\xcd\xe8\x72\x9e\x4c\x68\xf4\x74\x44\xe2\xf1\xd3\x6b\xdc\xe0\x10\x56\x8c\xe8\x78\xed\xdf\x7e\x19\x41\x4b\x3a\x8b\x8e\x8d\xd6\xb4\x8e\xdf\x72\xec\x73\x41\xc6\x9f\x29\xa1\x98\xcb\x25\xf2\x2e\xa3\xb3\xf4\x2b\x11\x98\x77\x65\x85\x84\x61\x6e\x57\x76\x06\xcf\x05\x13\xa4\x87\xb9\xbe\xf1\xb9\x53\xc5\xd5\x50\xaa\xc2\xb1\x00\x28\x63\x66\x82\xa7\xc4\x19\x86\x62\x71\xaf\xea\x2f\xcd\x44\x29\x56\xcb\x9d\x3a\x00\xe8\x04\x05\x83\x7a\x36\x60\xd8\x57\x05\x49\xbf\xf7\xfd\xb1\xe5\xd0\x8e\x95\xe6\x23\x45\xf5\x7b\x28\x7b\x0b\x65\xa6\x6b\xe0\x04\x8b\x6c\x13\x92\x86\x61\x70\xa5\x08\x79\x78\x5d\xad\x22\xe5\xbf\x17\xe9\x20\x8c\xea\x5a\x48\xf3\xb7\x14\x25\xa4\xdd\x53\xeb\xdd\xb8\x7c\x37\x06\x3d\x4a\xb8\xa0\x9c\xfe\xa9\xeb\x84\x20\x86\xdc\xa5\x24\xd9\xac\x9e\xd8\xba\x12\x34\xcb\xc5\x78\xa4\x51\xf7\xaa\x87\x50\x70\x0d\x5e\xcd\xad\x46\x44\xc4\x31\xc5\x41\xa0\x62\xc9\x77\x83\xce\x32\xa2\xb8\x87\x62\x81\x30\x40\x98\x90\x1e\x16\xa4\xfc\x1e\x8b\x4e\x10\x07\xb8\x1a\x32\xd5\x32\xe1\x05\xe9\x0d\x0a\xcb\xe5\x0e\x0a\xc9\xe7\xa7\x84\x8e\x8a\xb1\x89\xce\xd3\x59\x46\x29\x2e\xd0\x20\xe9\x90\x69\x94\x82\x80\x8a\x97\xae\x09\xcd\x88\xac\x56\x8d\xd1\x37\xe9\x30\x87\x61\x8c\xa3\x9c\x9c\x84\x21\x1d\x9d\x8c\x57\x2b\x3a\x0a\xfe\xeb\xbf\x8c\xd7\xf0\x60\x8c\x73\xd2\xe4\x68\x3c\x1f\xe6\x31\xcc\x40\xa3\x1b\x72\x85\x0b\x28\xc9\xf5\x4d\x25\xc2\xb2\x27\xed\x28\xd5\x8a\x5e\x91\xf6\xcd\x3f\x40\x29\x49\xb5\x30\xc5\x76\xa6\xd3\x01\x91\x78\xd9\x1d\x98\x4a\x67\x53\xa7\xe0\xbc\x3f\x80\x33\x33\x0a\x76\xfa\x01\x0e\x46\xea\xab\x16\x7d\x8e\xc1\x4d\xcd\x50\x17\x01\xc9\x6c\xeb\x13\xbd\xcd\x5b\x77\x46\x27\x58\x45\x53\xa2\x26\x30\x1a\x6e\x05\xa8\x13\xac\x83\x98\xe1\x20\x28\xef\x31\x93\xca\xf5\xe4\x23\x11\x8c\x7a\x82\x2d\x33\x9c\x47\xf0\x8b\x62\x51\xea\x61\xed\x3c\xaf\x5e\xa9\xc9\xed\x26\x53\xf4\x70\x99\xfd\x84\x85\xd9\x4c\x9d\x4e\xfd\x4a\xab\xbc\x85\x53\x3b\x15\x73\xe2\x6c\xd3\x01\x25\x0f\xd7\x59\x5b\x79\xc3\x5b\x08\xc7\xc3\xf0\x97\xae\xb8\x49\xc4\x7b\xe8\x6e\x6e\x38\x7f\x14\xeb\xae\x85\x21\xf8\x48\x85\x80\xb9\xbc\x13\xb5\xa1\xdd\xd5\x0a\xc2\x96\x7f\xa2\xb7\x2a\xee\x3d\xbd\x1d\x06\x41\x0c\xc8\x12\x86\xc0\x22\xcc\xb7\x38\x78\x12\x3e\x95\x23\x2e\xff\x30\x4c\x49\x1d\xfd\x43\x70\x1c\x38\x03\x04\x9c\x01\xb2\x93\x33\x7d\x0e\x50\x75\xba\x9b\xd3\x80\x76\xd5\x03\x38\x45\xd6\x38\x66\xd3\x85\x85\x42\x33\x41\x30\x50\x1d\x61\x70\x06\x4b\x10\xd9\x06\xf0\xb0\x20\x93\x48\xe0\x14\x8a\x63\xb5\x9f\xe8\x6a\x25\x31\x57\x10\xe0\x05\x16\x08\xcf\x22\xa1\xc2\x8e\x7c\x26\x2c\x7a\xf6\x0c\xe1\x2b\x10\xef\xbe\x40\xf8\x1a\x1e\x5e\x22\xac\x04\xbe\xaf\x10\xbe\x6c\xdc\x4c\xc6\x6b\xbf\x76\xd9\x3f\xe3\x19\x3e\x23\x97\xc3\xf2\x35\x0a\x80\x9c\xec\x52\xe5\x0e\x20\x40\xf1\xf3\x5e\xbf\xb7\x83\x0f\x1b\x73\x2d\x79\x26\x92\xb9\xce\xf4\x1c\x7f\x6d\xcc\x54\x7a\x42\x83\x6c\x2f\xf0\xa7\xc6\x6c\x8a\x08\xbe\x5c\xf0\x29\xd5\x39\x5f\xe2\x77\xcd\xad\x66\x7c\x96\xce\x69\xa6\xb2\xf5\x77\xf1\xf9\xa6\x6c\x9f\xd3\xa9\xc9\xd6\x7b\x85\x2f\x1a\xb3\xe9\xd5\xaa\x2b\xeb\xe1\x3f\x1a\x73\x25\xf9\x2d\x9b\x38\xc0\xf5\xfb\xf8\xa0\xb9\xb7\xca\x73\xf6\x65\x46\x67\x3a\xe7\xf6\xe0\xd2\x1d\x70\x93\x51\xa4\x0b\xca\xad\x15\xd4\xc9\x63\xa6\xcb\xe0\x4a\xfc\x9e\xdc\xa5\xf9\x89\xdc\x5a\x74\x1a\xd7\x98\xc9\x76\x7f\x8d\x29\xfb\xb3\xa0\x05\x7d\xcb\xb3\x09\xfd\x00\x94\xa7\x9b\xcf\x7e\x7f\xaf\x56\x22\x84\x54\x6d\xcc\x70\x4e\x45\xfd\xe3\x7a\xc0\x5d\xa9\x76\x0e\x3c\x80\xe5\x18\x24\xed\xea\x7e\xcf\x75\x15\x15\x9f\xdc\x06\xb5\xb5\x5d\xd4\x56\x0e\x42\xbb\x8e\xf1\x68\x18\x66\x51\xf0\xf2\x99\x51\x0f\xd7\x14\x75\xb7\x02\xaa\x56\xe8\xc5\x02\x07\xa6\xe9\x00\xf9\x20\xcd\xca\x61\xf1\x7c\x92\x37\x55\xeb\x0c\xa1\xa9\x39\x70\xca\xcb\xaa\x53\xc7\x8b\xbf\xd3\x0c\x4c\xec\x29\x49\x5c\x1f\xff\xf4\x4b\x2b\x1d\x9c\x7a\x31\x03\x12\xfc\x39\x3a\x75\xc1\x43\xf8\xb4\x9b\xe6\xef\x8a\x8c\x56\x06\xb6\xdd\x83\x2a\xdf\x90\x3b\x4d\x95\x02\x96\x5c\xe3\xa3\x07\xa3\x10\xed\x93\x3b\x89\xe1\xda\x3d\x40\x71\xed\x1e\xbe\xbc\xcc\xe9\xdc\x3c\x29\x15\xef\x76\x6f\x8d\xdf\x92\xa7\x1f\x9f\x76\x9e\x5e\xe3\x63\x32\x1a\xe3\x0f\xe4\xee\x40\x53\xe2\xf1\xdd\x22\x59\xc6\x55\xee\xd5\x1e\xfc\x36\xf6\x0d\x1d\x58\xbf\x5d\xc6\x1d\xa2\xc2\xf3\x92\x5e\x83\xc8\x08\xd9\x1a\xeb\xc0\x82\x8f\xaa\x4e\x62\x45\x28\x5c\xd6\x50\xc5\x8d\x37\x16\x37\x6a\x12\xb3\x81\x3e\xd6\x65\x86\xbd\x58\x17\xf2\x8e\x9d\x53\xd3\x00\x5a\x63\xc1\xe1\x88\xf2\x2a\xb1\xd6\x71\x4e\x9f\x84\x82\xa8\xf9\xf8\xc2\x62\x8d\x39\x9b\xdf\x36\x81\x22\xcf\xb3\xd5\x2a\x8b\x82\xfe\xee\x4e\x80\x30\x5d\xaf\xb1\x8a\x08\xf1\x9e\xce\xea\x9b\xd9\x9f\xea\x35\xb6\xab\x21\xe6\x58\x2e\x91\xf2\x3d\xd1\xd5\xe8\xc0\x97\xb1\xbf\xdd\x74\xe3\x65\x68\x55\x38\x52\x15\x61\xe5\x1e\x8b\x17\xf8\x72\x92\xcc\x27\xc5\x5c\xd6\x74\x93\xb0\x6b\x3a\x7d\x9d\x8a\x3c\x16\xf8\xd2\x73\xb5\x41\xf1\xa5\x86\xac\xf1\x7d\x1b\x12\x9c\xf2\x3d\xef\x75\x3b\xee\xe1\x77\x1a\x3f\x43\xcf\xf0\x01\x67\x79\xb1\xd0\x6f\x6b\x4c\xbb\xe6\xb3\x03\xdb\x39\xbe\x34\xdc\x04\x95\x59\x4c\x19\x42\xd7\x26\x62\x81\x37\x86\x76\xcc\xcb\x2a\x0e\x70\x46\x99\x6c\x54\x0e\xbb\xb9\x06\x88\xbf\xe2\x73\x38\x7d\x4e\xf8\x94\xc6\x9f\x70\xc1\x72\x91\x5c\xcd\xe9\xe5\xbe\xc4\xfa\x90\xf8\x47\x99\xf8\x4e\x1f\x3f\xf1\x3b\x3d\xe0\x87\xea\xac\x8c\x0b\x3c\x99\x73\x66\x5f\xab\xab\xdb\xa1\x91\xcb\x50\xc7\x08\x70\xda\xf6\xf3\x17\x01\xa6\xc6\xb4\x47\x0b\x01\x52\xf2\x39\x92\x88\x58\xd1\x20\x4a\xe3\xfd\x13\xbd\x85\xf8\xa6\x92\x44\xc9\x89\xa1\x47\x5c\xe1\xc0\x5d\x4d\x28\x50\xa8\x27\x9c\x13\xcb\xcd\x36\x08\x08\x92\x52\x40\x00\x60\xcc\x8d\x3b\x17\x45\x20\x49\x66\x16\x10\x8b\xcb\x6d\x83\x5e\x5c\x43\xba\xba\x89\xe3\x2a\xce\x8a\x95\x35\xf0\x46\x59\x03\x07\xf7\x30\x23\x3e\x26\xe5\xd2\x1c\xf1\x71\x18\x5a\x08\xe7\xc3\xf9\x88\x8f\x63\x99\x0a\x51\x7c\xfb\x84\x90\x88\x37\x88\x23\x10\x4a\x9b\xc5\x10\x1c\xdd\xcd\xb5\xf8\x81\x97\x36\x73\x13\xd2\x1b\x4c\xf6\xf8\x60\xd2\xe9\xa0\xf9\x68\xe2\x8a\x21\x26\x9d\xed\xf1\xc0\xa9\x6c\xbe\xde\x24\x3c\x28\xa9\xc7\x04\x50\x6b\xa1\x29\xc7\xd4\xd0\x8c\xb9\xdd\xde\x6f\x13\x89\xee\x9b\x10\x4b\xa1\x62\x74\x28\x9e\xd6\xb9\x9b\x84\x23\x83\x4a\x5c\x92\xe6\xbf\x26\xf3\x74\x6a\x96\x56\x8e\x3f\xd3\x2c\x07\x2f\xec\xfd\xe7\xdd\xdd\x6e\x3f\xc0\x97\x97\xe7\x87\x07\xef\x0f\x2f\x2e\x41\xda\x79\xba\x7f\x7c\x7e\xf9\xe6\xec\xf2\xf4\xec\xe2\xf2\xc3\xf9\xe1\xe5\xd9\xfb\xcb\xdf\xcf\x3e\x5c\xfe\x76\x74\x7c\x7c\xf9\xfa\xf0\xf2\xed\xd1\xfb\xc3\x37\xf1\x9d\x3a\x5e\xd4\x92\x38\x53\xf2\x0e\xac\x6c\x89\xe2\xcf\xeb\x35\xfe\x93\xdc\x19\x2d\xa1\x0f\x6b\xfc\x0b\xf9\x33\x0c\x3f\xac\x56\x7f\x0e\x68\x97\x7e\x95\x94\x5f\x4e\x7e\x31\xd3\x3e\xb4\x4f\xf1\x2f\x8f\x17\x72\xa2\xbb\xb5\x31\x8b\xda\xde\x7e\x89\x9c\x8a\x1d\x34\xe8\xd8\xb7\x19\xf2\x1a\x4c\x66\x24\x93\xdb\x26\x44\x93\xda\x85\x1b\x45\xff\x20\x99\xcf\x53\x76\xdd\x92\x8b\x0c\xfc\xac\xb5\x40\x85\x46\x92\x4e\x79\x4b\xd9\x6a\xcf\x6f\x6d\x34\xfd\x62\x29\xdb\xa4\xd3\xd6\xd5\x2d\x08\x25\xff\xaf\x9c\xc1\x2d\xb0\xdb\xff\xbf\xad\x65\x32\xf9\x94\x5c\xd3\x6e\xeb\x43\x4e\xcb\xfa\x54\xd0\x28\xfb\x1a\xa1\x96\xe0\xca\xa8\x4f\xdc\xd0\x45\xb7\xf5\x9e\x26\xd3\xd6\x82\x67\xb4\x95\x88\xd6\x8d\x10\xcb\xf8\xe9\xd3\xd9\x55\x77\x41\x9f\x16\x39\xdd\x82\xc2\x5b\x65\x2b\x81\x71\xdd\x5f\x28\xfb\x3c\x50\xf9\x01\x69\x6d\xeb\xd7\x94\xcf\x95\xdb\x77\x5c\x38\x72\x13\x51\x5e\x1c\xd0\xb5\xa2\xc0\xfe\x2c\xd2\x8c\x4e\x09\xd5\x36\xf5\x77\x09\x1c\x62\x14\x5f\x71\x3e\x8f\xa9\x12\xc6\x50\xac\x24\x11\x31\xc5\x8a\xf8\x8a\x29\x56\x82\x0a\xf9\x00\x34\x66\x4c\x71\xc2\x64\x39\x28\x7f\x36\x8b\x05\xd6\xac\x40\x4c\xb1\x31\x70\x84\x64\x26\xd1\xa2\xa9\x08\x52\x38\xa3\xe5\xaf\x1c\x98\x58\xe0\xfc\x26\x81\x5f\xfa\x35\x99\x88\x58\x94\x51\xa4\x2b\x43\x08\x5a\x2d\xe5\x1b\xc3\xec\x21\x85\x86\x72\xb1\x04\x7a\xe5\xeb\xf5\xfe\x6e\xff\xfc\xfc\xf2\xe2\xc7\xa3\xf3\xc6\x55\x1f\xd4\xab\xfd\xac\x03\x56\x6d\xef\x80\xf7\x81\x2c\x6a\xf7\xdc\xb5\xc8\xeb\x25\x7c\x41\xbd\x31\xa4\xf2\x62\x25\x6a\xab\x62\xa3\x47\x94\x11\x86\x53\x97\x38\xec\x8a\x9b\xac\x00\x5c\x44\x25\x2f\x9b\x51\xb9\xa3\x69\x84\x06\xd9\xd6\x96\xd6\xfb\x5e\xa8\x38\xcb\xe9\x2c\x72\xc9\x62\x4d\x15\x2f\x1a\x0d\x4c\x27\xa0\x8b\x91\x86\x61\xfb\x36\x0c\x83\x2f\x19\x44\x45\x0d\x08\x29\xa2\x05\x42\xb2\xce\x5b\xd8\x27\x3c\x1a\x8d\x95\xb3\x58\x9e\x45\x19\xb9\x1d\x66\x31\x1b\x74\x3a\xd9\x1e\x1b\xa0\x3b\xdd\xac\xe2\x33\x65\x41\x7c\x45\x9c\xaa\x3e\x0f\x93\x68\x61\xbc\xb1\x0f\x6e\xc9\x55\x18\xce\xa3\xab\x51\x6f\x8c\xc2\xf0\x6a\xd4\x1f\x13\x12\x2d\x57\xb3\xd5\x74\x75\x23\xf1\xfd\xd5\x68\x77\x6c\x05\x73\x7d\x42\xae\x46\xaf\xc6\xc3\xdb\x51\xa1\x4a\x8c\x75\xd0\xc8\x5b\x7c\x35\xda\x19\xa3\xb8\x4f\xc8\xc2\xe6\x9e\x47\x0b\x34\xbc\x1d\x7d\x1e\x47\x28\xbe\x85\xe1\x8a\x16\x4d\x21\x88\x94\xe5\x9f\x45\xde\x38\x23\x74\xd4\x83\x61\xbb\x85\x26\x4b\xd5\x8d\x3c\xca\xac\x3a\xdf\x6d\x77\x39\x4f\x98\x88\x32\xa4\xa4\x42\x91\x6b\x4c\x2d\x0f\x5f\x36\x94\x27\x8e\x1b\xe1\x9f\xa2\x38\x1b\x74\x3a\x5c\x8e\x52\x0a\xa7\x54\x19\xae\x08\xa7\x16\x6f\xa7\xeb\x35\xb2\x78\xed\xf9\x2e\x92\x75\x45\xdb\x3b\x7d\x88\x68\x1e\xf5\xfb\x3b\x08\x17\xf0\xb0\x8b\x70\x4e\x58\xf4\xa2\x87\xf0\x5c\x66\x79\xf6\x0a\xe1\x09\x29\x0d\xee\x1d\xab\x60\x3c\x23\x2f\xf1\x94\xec\x6c\xe3\x25\xe9\x6f\xbf\xc4\x37\x64\xfb\xd9\x73\x67\x8d\x36\xe8\x90\x34\xae\xd1\x24\x4a\x23\x6a\xec\x53\x39\xc2\xb4\x13\x04\x25\xb0\xdb\x3b\xdb\x1a\xda\x5d\x0d\xed\xf6\xee\x0e\xfa\xf6\x66\xa2\x92\xda\x36\x83\x8f\x86\x3c\xa2\xb8\x0f\xae\x93\xca\xe6\xbe\xa5\x72\xc0\xfd\x2a\x82\x38\x08\x24\xb7\xfa\x78\x6e\xe7\x16\xe6\x4e\xc5\x52\x4d\x11\x2e\x56\xab\xa8\x20\xa3\x31\x1a\x74\x3a\xf9\xde\x5c\x6f\xa7\x09\xa1\xa3\x7c\x3c\x10\xdf\xf7\xc2\x90\x45\x13\x34\x14\xdf\xf7\x87\x59\x34\xc1\x62\xab\xaf\xab\x8e\x79\x54\xe0\x09\x8a\x13\x59\xc1\xa8\xd0\x95\x8f\xc9\xc4\xae\xbb\xc2\x81\xde\x4e\xed\xb3\x7b\xba\xe1\x07\x3b\xf5\x5d\xff\x6e\xf5\x71\x56\xa2\x08\x5e\xf6\xa6\xd3\x61\x7b\xd9\x00\xd1\x11\xef\xe8\x70\x74\x03\x07\xdd\x9b\x96\x1a\x2c\x7e\x37\x4c\xba\x64\x38\x52\xf8\xdb\x6e\x47\x45\x18\x4a\x72\x6e\x54\x8c\x9d\x65\xfa\xc2\xf4\xe5\x85\x9a\xf8\x17\xe0\x19\x93\x0f\x79\x37\xcd\x0f\x38\x9b\x24\x5a\xe3\x06\x82\x76\x58\xca\xf0\x9e\xa9\x6b\x40\x86\xa5\x30\xb3\x0c\x39\x0f\x82\x3c\xc5\xbd\x12\xa2\xd9\xd8\x30\x14\x03\xb7\x97\xc8\x50\x90\x92\x4c\x40\x0d\x97\xa8\x25\x02\x7f\x29\x11\x38\x8b\x9e\xbf\x92\xdd\xa9\x32\xc5\xa0\xd7\x59\x61\x8c\x0b\x02\xcc\x3b\xbc\x1c\xe5\x87\x4c\xb2\x13\xb2\x8f\x38\x27\x59\x54\xbf\xa6\xb7\x58\x66\x1d\x21\x34\xcc\x9a\xd8\x3b\x0e\xe2\xca\xc4\x58\xce\x04\xf2\x97\xd2\x40\x22\xc3\xa2\x96\xb8\x76\x3a\x9a\x3f\xfa\x9c\x91\x0d\x28\x4d\xb2\xc4\xce\x60\xbf\xdf\x57\x53\x28\xfb\x9e\x10\x2b\xa7\x36\x2c\x69\x3e\x0e\xbe\x65\x23\xeb\x8b\xe7\x32\xd0\x29\x66\x7a\xfb\x64\xb7\x77\xf2\xc1\xb0\x07\x6a\xec\xdb\xbd\x32\x10\xaa\x06\xc9\x74\xd6\xe2\xc5\x4c\x72\x9c\x43\x28\xcb\xe2\x29\x9d\x53\x41\x5b\xf2\x0d\x61\x5e\x59\x87\x8f\x9d\x38\x23\xe7\xc6\x39\xac\x54\xf3\x7a\x91\x5c\x3f\xb8\x44\x37\xc4\x20\xe6\x06\xe8\xb5\xa7\x8c\x51\x42\xc2\x49\x66\xdb\x19\x3c\x7a\x2b\x7a\x8e\x03\x04\x49\xcb\x98\xf1\x62\x48\xed\xa5\x7e\x2c\x70\x0f\xb9\xba\x21\xa5\x65\x58\x79\xba\x25\x12\x6b\x14\x24\x8d\x8c\x61\xf4\x16\x94\x2a\xaf\x57\x07\x9d\x4e\xb2\x57\x0c\x50\x3e\x4a\xc6\x24\x1b\x89\x4e\x32\x1e\xc8\x42\xf6\x78\x33\xac\x90\xe8\xf4\x55\x66\x31\x40\x73\x95\x39\xb1\x78\x66\x3e\x12\x63\xc2\xa2\x1c\x61\xb8\x47\x97\x27\xdc\x1c\xad\x4b\xe4\xb7\x0b\x27\xc5\x49\x22\x6e\xba\x8b\xe4\xeb\xe3\xd1\x9f\x1c\x07\x1b\x7c\xc1\x5c\x4a\x4e\xbc\x78\xe9\x26\x08\x20\xaa\x44\x16\xa7\x16\x0d\x80\xde\xe7\x44\x85\xd4\x6f\xfa\xa8\x82\x32\x9b\x18\xf5\x1b\x73\x60\x36\xda\x1e\x5b\xcc\x4e\xcd\x51\x8f\x19\xba\x1f\xc9\x5a\x74\xb3\xbb\xab\xd0\xcd\xf6\x33\x38\x0a\x78\x94\xb9\x07\x41\x7a\x5f\xc9\x67\xba\xe4\xee\x73\x8d\x78\x9f\xed\xc8\x6d\xcb\x87\x8d\x52\x1b\x0e\xbe\xe9\xb8\xd1\x58\xbe\x9b\x70\x36\x4b\xaf\x0b\xc0\x54\x71\xbb\x87\xa9\xc5\x5b\x71\xbb\xaf\xb5\x87\xb3\x48\x20\xfc\x25\x4b\x85\xce\xb4\x46\xeb\x38\x75\xc0\x4b\x1e\xb5\x21\xea\x28\x90\xae\x1f\x37\x3a\xfd\xfe\xb6\xec\xa3\x53\x81\x44\x1d\x8a\x58\xcb\x74\xa4\x42\x1c\xf8\x8e\x68\x82\xd2\xd5\x42\x74\xb7\xc6\x41\x80\xef\xd6\x08\x53\x07\xb7\xac\xa3\x7f\x82\x34\x6f\x47\xed\xf2\x0c\x04\xdd\x86\x88\xa2\xe1\x4d\x3c\x47\x5d\x41\x73\x11\x15\x70\x8f\x53\xae\xed\x97\x86\x0a\x7a\xa5\x0e\xc3\xe7\xcf\x14\xc9\xb6\xfd\xac\x2f\x77\xda\xd3\xd1\xc7\x8f\xff\xfd\xa4\xfb\xb7\xce\x30\x42\xa3\x8f\xe3\xbb\xf5\x6a\xfc\xf4\x1a\xcf\xc9\xd3\xff\xfe\x68\xb0\x6e\xb7\x33\x3c\x28\x45\xbc\x1f\xc7\x4f\x9e\xe2\x09\x79\xab\x41\x73\xd0\xc9\xac\x8e\x61\xa6\x64\x52\x22\xb6\x25\x99\x55\x11\xdf\x0d\x79\x4f\xaf\x0f\xbf\x2e\xa3\xe0\xbf\x83\xce\x54\x2d\xea\x65\x79\xa7\x94\xe3\xe0\xe3\xc7\x27\x61\xe0\x68\x0d\xf8\x15\xac\xec\xb1\x86\xba\x7f\x1b\x46\x43\xf2\xf1\xe3\xc7\x08\xad\x40\xdd\xa6\xdb\xd1\x09\x63\xf4\xf4\x1a\x07\x4f\xfa\xdd\xbf\x0d\x03\xd4\x09\x9e\x04\xdf\x44\x05\xa6\xb3\xa8\x9d\x96\x6e\xd8\xdb\x7d\xed\x5e\x8c\x3b\xa7\x81\x20\xa4\x58\xad\x04\x21\x39\xfc\x4d\xe0\xef\xbc\xe1\x38\x7b\xe6\x1f\x67\xf9\x2d\x9b\x98\x81\x1c\x07\xb8\x28\x3f\x39\xa9\x79\x99\x6a\x03\xc2\x3b\x9f\xe7\xe5\xe7\x77\x19\xff\x7a\xfb\x6d\x47\xa3\xee\x54\x3b\x0d\xc3\xb4\x95\xca\x0d\x61\x57\xce\xb3\x9e\x17\xaf\xd7\xf0\x26\x4f\x47\xff\xdd\x1d\x77\x9e\x3c\xed\xd2\xaf\x74\x12\x41\xc8\xd4\x4f\xf4\x36\x37\xbf\xdd\xa3\xc3\xcb\x77\xef\xcf\x2e\xce\x56\xab\xc0\xd9\x01\xc3\x40\x5d\xfb\x44\x79\x36\x41\x97\xfd\x6e\xd0\xa1\x71\x10\xf8\x1b\xa0\x01\x58\xb3\xff\x9e\x03\x2d\x94\x8d\x82\xcb\xcb\x09\xcf\xe8\xd6\x1f\xf9\x65\x7e\x93\x64\x74\x7a\x79\x19\x8c\x37\xef\xa1\x2a\x1e\xb0\xa2\x45\xaa\x36\x70\xed\xa0\x2c\xf7\xa6\xf3\x59\xf2\x15\xee\xae\xd5\xb7\xd9\x81\x3e\x56\x1b\x76\xc2\xe3\x0e\xd6\x3a\x35\x5d\x91\xef\xab\x83\x35\xa6\x23\x31\xde\x8c\xa6\x36\xe0\xba\x7b\x68\xeb\x6a\x09\x6d\x18\x80\x19\xe9\xd5\xc2\x44\x1b\x03\x89\x34\x02\x12\x7a\x2b\x4a\xb6\x18\xb0\xe5\x8c\x24\xb8\xf8\xbe\x07\x63\xda\xe9\x88\xef\x49\x86\xaa\x64\xe5\xa8\x37\x56\x2a\x15\xa2\xac\xd8\x1c\x4c\x9a\x6b\xb3\x79\xf5\x71\x9c\x91\x97\xbd\x1e\xe6\xa4\xff\x1c\xa7\xe4\x4d\x22\x68\x97\xf1\x2f\xf7\x93\x26\xf6\x18\x7a\xf6\x1c\xd6\x48\x18\x42\xa4\xe8\xfb\x11\x6b\x05\xaf\xab\x05\x96\x92\x2c\xe2\x38\xf8\x8d\x26\x9f\x4e\x92\x65\x70\xcf\xf1\xe7\x8d\x20\xba\xbb\x6f\xa8\xb5\x04\x6b\xfd\x78\xfa\xca\xd2\xab\x11\x95\x84\x6a\x31\x12\x9b\xc4\x26\x6c\xb5\x6a\x47\x42\x6e\x5b\xf7\xc2\xad\x44\x54\xe9\x2c\xa2\x84\x10\xe3\x51\xb0\x6d\x08\xdc\x34\x62\x66\x67\xb6\xdb\x59\x18\xca\x4c\x99\x9c\x2d\xb3\xf7\x5f\x68\x7c\x05\xfc\x7d\x62\xf8\x7b\x38\x35\x9e\xf7\xbe\x15\x7b\x2a\x95\x87\x76\xa1\x7e\x7c\xd7\x62\x1c\x41\x16\x2f\x2d\x2d\xef\xcb\xd2\x59\x34\xb3\x6c\xc6\xe5\xa5\x92\xdb\xc8\x3d\xef\x85\x3f\x5d\x3b\x56\x67\xa9\x21\x77\xdd\x6e\x3c\xdf\xd5\x47\xdf\x73\xd5\x89\x17\x3d\x25\xac\x90\xdc\x05\x08\x2b\x9e\x83\x3d\x6f\xed\xf4\x9a\x91\x49\xe5\xc0\x1a\xb8\x31\xce\x9d\xbb\x50\x9c\xb9\xc6\x55\xce\x7d\x68\x86\xbf\x6d\xb0\x2a\xa3\x53\x92\x7b\x73\xce\x68\x64\x5c\x5b\xea\x9e\x76\x9d\x21\xc1\xf2\x6d\x72\x93\xa4\xec\xf2\xd2\x91\xba\x5f\x5e\x26\xd0\x40\x7e\x79\x29\x17\x94\xfb\x8e\xb0\xfc\x0c\x0e\xc5\x2e\x2f\x09\x2d\x9f\x21\x5d\x79\x47\xd5\x1f\xcc\x0b\x16\x1b\xc7\x76\xfb\xf9\xf6\x37\x09\x0e\x1c\xa1\x81\x27\xf7\x10\xab\x55\x24\x34\x51\x9f\x21\x64\xa4\x07\x62\xc4\xc6\x84\x3a\xb2\x03\x71\x3f\xe1\xf6\x3f\x4f\x15\xf9\x4d\xf6\x3f\x4b\x17\xd9\xf8\xfb\xc2\x05\xce\xb5\xb2\xc1\xe5\x4d\x92\x1f\x24\xc5\xf5\x8d\x00\x01\x2e\x69\xf7\x95\x6e\xc3\xe5\xc4\x49\x04\x05\x60\x87\x75\xab\xda\x1d\x6a\x1f\x0a\x96\x47\xdc\x41\xc0\xa6\x0b\x7d\x70\x30\xc9\xba\xd9\xc3\xb8\x5e\xbd\xd6\x5d\xae\x81\xe2\x6a\x6a\xa6\x11\xec\xb5\x5f\x33\xc8\xf6\x9e\x82\xf0\x19\xf2\x19\x22\x47\x7e\xca\x9c\x74\x7d\xa7\x51\x4d\x56\x9a\x9b\x0d\xf5\xc8\xae\x53\xd7\x35\xb2\x6a\xf1\xb7\xcc\xea\x28\x82\x2f\xc1\xdf\x33\x83\xec\x7f\xcf\x46\x74\x8c\x19\xf9\x2d\xeb\xc2\x2e\x3c\x9b\x69\x57\xb3\x5b\xfd\x3d\x06\x17\xec\xaf\x9e\x07\x98\x22\xdc\xfe\x2b\x1b\xb1\x31\xba\x13\x5d\xfa\x55\x64\xc9\x44\x1c\x7e\x96\xc3\xa4\xb2\xc0\xc5\x2b\x86\x1c\x44\x60\x46\x44\x97\xca\xaf\x70\x0d\x51\x4a\x84\x65\xcb\xcc\x28\x75\x99\x83\x98\xb0\x11\x1f\xe3\x9c\x08\x3c\x27\x7c\xf0\x63\x56\xbd\xda\x9c\xab\xcb\xdd\x57\xaf\x02\x3c\x47\xf8\xc7\x0c\x54\x9d\x07\x4a\x14\x99\x74\x97\x37\x49\x4e\xa7\xef\xe9\x75\x9a\x0b\x65\x29\x75\x9a\x2c\x68\x0e\x56\xe2\x6a\xc7\x01\x75\x39\x41\x55\x84\x1a\xa5\x28\x0c\x8b\x68\x32\x4a\xc7\x58\x72\xe5\x83\x54\x4e\x15\x50\x0d\x49\x37\xab\xd4\x37\x8c\x8a\xa8\x9e\x0a\xe5\xb0\x2c\x87\xe2\x14\x74\x5a\xd5\x60\xbc\x0c\x30\xc7\x14\xad\xd7\xeb\x06\x0d\xf5\x1f\xe4\x78\x43\x8f\xfa\xbd\x1e\x8c\x1a\xa4\x10\x81\x9f\xa8\x5f\x67\xe4\x46\x6c\xdc\x9d\xd2\x25\x65\x53\xca\x26\x29\xcd\x2b\xda\xd3\xbf\x65\xba\x9e\x7e\x80\xf0\x6f\xd9\x7d\xab\x9a\x22\x9c\x44\xd5\x70\xdc\xb0\x00\x30\x93\x90\x03\x02\x04\x32\x1c\x81\xc7\xbf\xca\x58\x09\x64\x74\x9e\x25\x49\x38\xf8\xbd\x36\x49\x02\x85\xe1\xef\xd9\x48\x8c\x09\x21\x7c\xb5\x8a\xe0\x59\x43\xb7\x1d\x60\x81\xb0\xfa\xca\x65\x73\x3d\xb4\x66\x61\xe8\xc1\xe3\x28\x5a\x0b\x7d\x17\x0e\x3a\xb0\x9f\x18\xff\xc2\xb6\x60\x44\x02\x4c\xcd\xc5\xfb\x45\x92\x5d\x53\x41\xfe\x91\x45\x19\x92\x9b\x20\x65\x9f\xf9\x27\xfa\x43\x91\x64\x53\x3a\x3d\x48\xe6\xf3\xab\x64\xf2\x69\x9f\x4d\x0f\xe4\x6e\x7d\x9b\x66\xb9\xda\x8b\xe0\xd9\xd3\x78\x95\x44\xb5\xea\x7c\xe7\x7e\xb3\x06\xc2\x58\x40\x8f\x76\x7a\x81\xd5\x9e\x19\x8a\xb8\xa6\x92\xe9\x27\x08\x34\x8c\x28\xa8\x39\x6a\x3c\x02\x11\xe2\x28\xc4\x58\x04\xe5\x47\xf5\x56\x2b\x34\xa2\x63\x79\x9e\x4f\x12\x11\x09\x14\x8f\x28\x16\xe3\x9a\x22\x36\xba\xab\x35\x0e\x5a\x59\x87\xc9\xe4\x06\x24\x30\x31\xdc\x8a\xc1\x0a\x60\x98\x56\xbd\xf7\xa8\x73\xbf\x74\x1b\x78\x39\x4d\xf3\xa5\x1c\xb2\xe3\x34\x17\x92\xe1\x83\x5b\xa0\x32\xf9\x48\x13\x08\xb0\xbb\xfc\x96\x59\xa9\x03\xcd\x49\x6f\xc0\xf7\x98\xbd\x2e\x6a\xd3\x6e\x9a\xcb\x85\x92\x5c\xc3\xce\x39\x17\x5c\x12\x0e\x11\x1a\xf0\x4e\x07\xe9\x89\x97\x28\x20\x1b\xf1\xb1\xd2\x1d\x6e\xb1\x30\x2c\x57\xc4\xa0\x09\x32\xa3\xba\x5e\x07\xce\x7c\x49\xf3\x77\x34\xcb\x21\xbf\x88\x20\x68\x93\x43\x1e\x75\x33\x3a\xa7\x89\x8a\xa4\x56\x09\x70\x6d\x9d\x6f\x55\x02\x41\x2e\xaa\x1f\xfb\x55\xa5\x55\xc7\x01\xa3\x48\x04\x3d\xe5\x53\x20\x24\xdb\xa5\x63\x6d\x73\x02\x71\xf2\x53\x16\x29\x76\xa6\xcd\xbd\xaf\x8c\x70\xb9\xc3\xa8\xd1\x66\x17\x5a\x13\x9e\xb3\x83\x79\x3a\xf9\xa4\x55\xe1\xf5\xdb\x41\xb2\x14\x45\x46\x6d\xe2\x1b\xf0\xad\xe5\x67\x74\xd2\xaa\xd9\x4f\x78\x91\xd3\x37\xfc\x0b\xab\xa7\x34\x66\x3d\xe1\x9f\x1b\x52\x1a\xb3\x7e\x58\x56\xdf\x6d\xb6\x88\x93\x36\xef\x4e\xd3\x3c\xb9\x9a\xd3\x29\x02\xdb\x00\xad\x00\xc2\x49\x3b\x0a\xae\x0a\x21\x74\x88\xda\xd5\x4a\xfb\xb8\xd7\x2f\x2a\xd4\xad\x79\x13\xf4\xab\x48\x32\x9a\xc0\x3b\x42\x98\x92\x36\x57\x76\x01\x2d\x6a\x1d\xb3\x50\xd2\xee\x5b\xd9\xe4\x50\x29\xcf\xb3\x66\x0d\x49\xa6\x94\x88\x76\xfa\x01\x16\xd8\xa4\x21\x8f\x02\xf9\xac\xa6\xb9\x54\x1d\x8f\x28\x27\xb3\x88\x4a\x74\x2f\x01\x90\x0f\x5c\x2f\x40\x90\xd3\xcb\x8d\x7a\x83\x40\x5b\x6e\x81\x30\xe5\xea\x28\x7b\x16\x00\xda\xd2\x07\xba\x43\x2d\x44\x08\x55\x82\x71\x2b\x9c\x58\xee\x2d\xa8\x3b\x25\xbd\x41\xba\xf7\x97\x91\x5d\x0f\xd2\xd2\x9f\xc0\x5f\xd9\x28\x1d\x0f\xc0\xd3\x17\x49\xfc\x93\xda\x56\x07\xb2\x3b\x32\x8b\x38\x4e\x10\x5a\x7f\x8e\xb8\xbf\x96\xaf\x0d\x47\x30\xe2\x7c\x6c\x19\x01\xf9\xa2\x5c\x03\xb4\xd5\xb3\xf1\x23\xbf\x4c\x24\x0e\x95\x8b\xdd\x5b\xc8\x72\x52\xcb\x4f\x76\x0a\x08\x14\xc6\xcf\x54\x54\xb6\xe4\x7a\xb5\x7a\x6e\x1e\x87\x34\xf6\x51\xf0\x17\x0d\x48\x53\xe6\x92\x41\x29\xf7\x9a\xc4\xcd\x3b\xae\x07\x82\x4b\x57\x2c\x31\x4a\xf9\x78\xb5\xf2\x5b\x80\xf0\xd3\xda\xa1\xad\xca\x67\xdc\xd7\x86\xe1\xb3\xb6\x69\xca\x8a\x10\xaa\xc5\x0f\xeb\xce\xe7\x46\xe3\x01\xb5\x71\x55\xe5\x21\x43\x64\x1b\x4a\x43\xc1\x7a\x61\x1d\xf4\xf6\xe8\xd6\xd6\x00\x89\x08\x88\xaf\x60\xa2\xf6\xc6\x54\x92\xbb\x3a\x6b\x6f\x40\xf7\x6c\x76\xda\xe9\xd8\xbc\x57\xc5\x95\xdc\x37\x3e\x65\xfc\xd5\xde\x17\x0a\x22\x51\x11\xeb\x1a\xb4\x78\x00\x32\xee\x4d\x64\xd2\x48\x8c\x61\x35\xb0\x26\x0c\x3b\x6b\x4c\x96\xa7\x17\x6b\x42\xbb\x5e\x76\x9b\x8c\x3d\xdd\x7e\x08\xf3\xab\x0c\xd1\x1e\x05\x5f\x18\x1e\x4a\xd6\x51\xc0\x01\x2d\xeb\xc4\x5f\xbd\x63\xec\x9d\x59\xaa\x8f\xaf\xb2\xf4\x37\xec\x54\x3b\x10\x44\x0c\xcf\x22\x6d\x30\x81\x0f\x23\xdd\x90\x17\x06\x58\x8d\x30\x0d\x43\x16\x86\xb5\x01\xae\xd2\x86\xa0\x17\xda\x38\x15\xd5\x9c\xff\x4f\x27\xe0\x62\xd3\x04\xd4\xe1\x3f\xaf\x8c\xbc\xd6\xab\xf3\xc2\x10\xa3\x3b\x89\xd9\x3e\xa1\x4a\x2c\x60\x6b\x31\x27\x51\x2a\xa2\xb1\x8b\xbf\x70\x4a\x32\x9c\x90\x1e\x2e\x08\x1f\x14\x83\x82\x9c\x45\x05\x42\x49\xa7\x33\x28\x48\x6f\x50\xda\x39\xa6\x83\x7c\x90\x93\xb3\x28\x47\xa8\xe8\x74\x14\xe6\xe9\xed\x25\x5b\xc5\x00\x71\x72\x16\x71\x84\x93\xad\x2d\x93\x5c\x6c\x25\x03\x94\x92\xb3\x28\x45\xb8\x30\xc9\x09\xa8\x00\xa5\xb3\x88\x2b\xc7\x8e\xf0\xd3\x4d\xe6\x82\x66\x2c\x11\x14\x99\xa3\x42\x57\xa7\x8a\xaf\x15\x8a\x55\x8c\x80\x7a\x86\xda\x52\xc2\x31\x04\x1a\x90\x93\xdf\xd6\x36\x4d\x4a\x13\x35\x4a\x08\x73\xaa\x5d\xad\x12\x70\x00\x59\xc6\x0e\x40\x98\x91\x33\xe3\x7d\x05\x42\x15\x4b\xc2\xbd\x56\x49\xd6\x58\x89\x0e\x63\x9c\x21\x9c\x91\xb3\x28\x53\x95\x28\x7e\x9f\xbb\xfe\x64\xce\xc1\x48\xd3\xc1\x0f\x16\xeb\xb0\x0a\xd6\x39\x8f\x58\x05\xeb\xb8\x41\x42\x4e\x2a\xd2\x43\x83\xd3\x47\xb4\x2b\xf8\x31\xff\x62\x7c\x51\x4b\x4e\xc5\x4b\xc0\x6c\x14\xfc\x46\xaf\x3e\xa5\x22\xe8\xd0\x31\x09\xbe\xe8\x67\x49\xdd\x05\x27\xfc\x2f\x95\xba\x90\x0f\x90\xb4\xc8\x55\xca\xc9\xb9\x4e\x38\x53\xef\x3c\xe8\xd4\x6a\xf6\x82\x36\xc3\x9c\xce\xf9\x88\xda\xc3\x09\x5e\x80\x98\xca\xdd\x64\xa5\xc5\x27\x39\x1c\x48\x2e\x99\x1c\x86\x20\x8c\x46\x03\x0f\x03\x9f\x27\xdc\xab\x98\x30\x49\x91\xd5\x9d\x97\x9f\x96\xa6\x22\x9f\x79\x18\xee\x67\xdd\x49\xc2\x3e\xe4\xf4\xcd\xd9\x49\x18\x46\x9f\x39\x01\x0a\x05\xf4\xc8\x99\x08\x52\xd6\x9a\x6a\xbf\x31\x5d\xf3\xa0\x15\x51\x87\x5e\xc6\x38\x48\x19\xa3\xd9\x05\x58\xd3\xe0\xcf\xdc\x0d\xb8\x0c\x5d\xbf\xe2\xdd\xcb\x99\x66\x72\x64\x2e\x03\x6c\x35\x1d\x7a\x0f\xbb\x91\xc8\x4f\x2a\xf8\x0a\xfd\x2a\xc0\x2f\xb8\xd5\x96\x39\x8a\xe0\xd2\xd5\x95\x84\xe9\xd3\x27\x0c\xe5\x3a\x01\x23\x60\x3a\x86\x33\x48\x5b\x6f\x66\x5b\x54\x8d\x25\xe9\x0f\xc4\x1e\xb8\xf3\x1a\x65\x5b\x8a\xf7\x1b\xa5\x5b\x62\x3c\x10\x32\xf3\x06\xb0\x08\xd7\xee\x88\x28\xee\xef\x89\x61\x7f\x4b\x68\x35\x03\x84\xab\x59\xdd\xe0\xd0\xd6\x96\x0f\x44\x82\x72\x38\x65\xee\x8c\x73\x31\x34\x0f\x4a\x05\x2d\x36\xaf\xa3\xd3\x08\x8d\xbd\xc8\xc8\x96\xc5\xbc\x49\xf3\x0a\x02\xb4\xe2\x9b\x12\xe3\x95\xd1\x1e\x44\xfa\x99\x02\x0d\x45\x18\xd6\xde\xf1\x5d\x5e\xc2\x7a\xdf\xf0\x25\x1d\x14\xd5\xf8\x68\x50\xd3\x8e\x84\x24\x82\xc6\x68\x28\x2b\x1a\xf1\x31\x11\x11\x43\x71\xa0\x1a\x96\xc4\x2c\x1f\x2a\x07\xfc\x8a\x2d\xcd\x62\x93\x8f\x01\x83\x64\xc4\x90\x32\x4b\x9a\xbf\x31\x0a\xe3\xc0\x23\xd3\x29\xd1\xf7\x4c\xac\x54\x25\xd7\x5f\x86\xf5\xa4\xb8\xdd\x27\x84\x30\x4d\xfa\x80\xc5\x01\x1a\x1e\x67\xae\x2d\xc6\x45\x56\xd0\xd8\x4f\x7a\x9b\xcc\x73\x3d\x5a\x4d\x8c\x1d\xd9\x94\xdb\x0b\x32\xed\x1c\x12\xca\x39\xbf\x84\xe8\x1d\xe7\xf3\x8a\x8d\x75\xe5\xa3\xef\x76\x0a\x26\x42\x32\xb7\x1c\x9b\x0a\xad\x35\x35\x08\xe5\x65\x0e\xdb\x56\x25\x84\xb5\x1f\x69\xe4\x26\x55\x92\xac\xed\x6d\xb0\x26\xe9\x4e\xa9\x99\xde\x08\xe1\x7e\xef\xfb\x46\x20\xc3\xb0\x0a\x5e\xd5\x62\xfa\x83\x32\xcd\xb6\x39\xc8\x68\x8c\x69\xf7\x9a\xc2\x0b\x9d\x92\xb7\x98\x1a\x56\x94\x1c\x7b\xe1\xa2\x25\x12\x36\x16\xcd\x9a\x07\xfc\x44\x6f\x8b\xa5\x09\x2f\xb8\xd5\x6f\x13\x72\xc8\xad\xd0\x0e\x8c\x0e\x0e\x24\x15\x3e\x30\x99\xa7\xc0\xda\xe9\xe1\xd8\xde\x7e\x65\xec\x14\x64\x2e\x9b\x69\x99\xd1\x3c\xd7\xcc\xda\x42\xb2\x6a\xd3\x92\x21\xbc\x9a\x17\x36\x9a\x62\xbb\x67\x79\x2a\x6b\x1f\x57\x89\x20\x5d\xd2\xf8\xdd\x29\x15\x49\x3a\xc7\x8d\x86\xb7\xc1\x34\x11\x89\xdc\xc0\x74\x48\xbb\xf2\xb9\x42\xf6\xbf\x6e\xec\xfc\x84\x2f\x54\xb8\x11\xce\xdc\x48\xe9\xbf\x18\x0d\x17\xa7\x2f\xc6\x5d\xf5\x36\x74\xf8\xcb\x4d\x3a\xb9\xd1\x9c\xdf\x01\x27\xed\x1e\xbe\xe0\x26\x2a\x24\xfd\x2a\x8e\xbc\x98\x8d\x94\x08\x00\x09\x53\x42\xc8\x05\x0f\xc3\x03\xae\x8a\xd2\x4a\xef\x5b\xca\x90\xc8\x02\xfd\xab\x15\xa8\x9c\x98\xd3\xa3\x0a\xb2\x62\x5b\xdb\x5f\x79\x18\xaa\xf9\x1d\x46\x94\xbc\x89\x14\xda\x93\x08\x4b\x31\x77\x1e\xae\x2e\x93\x3c\x14\x0a\xa9\x27\x1c\x84\xbd\x8a\x66\x1d\x54\x86\x6b\x99\xe4\xa2\x0c\x6a\x09\x39\x2a\xa3\x04\xe1\x76\x44\x77\x22\xb2\xf9\xcf\x60\x0c\x2c\xc9\x0f\xfd\xb4\xa0\x22\xf9\x99\xde\x22\xf9\xac\x33\x84\xa1\xc9\xa0\x36\x2d\x78\xf2\x0b\xc3\xfe\x9e\x7a\x32\xdb\xd6\xde\xff\xc8\x44\x15\xbb\x13\x26\xc0\x7c\x68\x72\x75\x6a\xb2\xac\x6b\xd0\x6e\x98\xf4\x73\x3d\x29\x6a\xae\x1e\x98\x99\xdf\x0c\x8f\x40\xfe\x9e\x45\x14\xa1\xbb\x53\xee\xf2\xff\xe5\xd2\x3c\x05\x07\x0e\x82\x67\x60\xfb\x95\xf1\xf9\x9c\x4e\xc1\xee\x51\x99\x99\xbd\xda\x0d\xcc\x2d\xd8\x4f\x59\xe4\xf0\x9d\x68\xb0\xb1\xa4\x9b\x0d\x6b\x21\x47\x3d\xf0\xf4\x11\x1f\xee\xcb\xff\x06\x7d\xc4\xfb\x9c\x8c\xe8\x38\x3e\xe2\x84\xba\x61\xa5\x3d\x69\x64\x9b\x90\x23\xae\x18\xd2\x36\x21\xfb\xdc\x8d\xcc\x0c\xfd\x3d\xe2\xe6\x4e\xe1\x88\x63\x41\xf6\x39\x48\xed\x38\x39\xd2\x42\x04\x39\x2e\x58\xa0\xf2\xc0\x17\x2e\xbb\xf9\x5b\x24\x24\x25\xe5\x07\x4f\x76\xe3\xb0\x45\x2e\xd1\xf8\xa4\xa2\x9c\x47\x95\xfe\x97\xfd\xfe\xb3\xe7\xf9\xe5\x27\xbb\x57\x8e\xcb\x8b\x46\xb9\x8f\x8f\xe5\xf6\x1c\x38\x0a\x10\x3f\xe8\x08\x76\x29\x4b\xe6\xf3\xdb\xbb\x63\x58\xf1\x7f\x45\xf2\x14\xfd\x39\x42\xf8\xc7\x08\xb9\x10\xba\xf1\x7c\x25\x8b\xc3\xf8\x94\x2a\x5e\xa6\x7c\xf6\x29\x4b\xe3\x24\xc4\x4a\x99\xc4\xb0\xdd\xfe\xc0\x47\x6a\xaa\xc6\xb1\x27\x63\x12\x95\x78\xbd\x0e\xba\x53\x47\xf5\x6a\x45\xbb\x79\x36\xd1\x54\xdd\x6a\xf5\x25\x65\x53\xfe\x05\xcc\xf7\xb3\x8c\xe6\x4b\xce\xa6\x29\xbb\xfe\x90\x1b\xdb\xb6\x30\x04\xd1\xd7\x86\xaf\x08\xef\x80\xb0\x43\x42\x7e\x71\xbb\x94\xc8\xb2\x94\xa7\xc4\xd4\x0f\xc4\x5b\xce\x4c\x3b\x6a\xbb\x94\x28\x18\xf9\xb7\xa3\x20\x99\x4e\x81\x82\x31\x6c\xa4\x4b\x8f\x02\x07\x4a\x49\xc0\x59\xd0\xa1\x58\x10\xb8\x21\x32\x1f\xb1\xba\x17\xb5\xb4\xab\x67\xac\x17\x05\xd3\xf4\x73\x80\xb0\xe8\xe6\x54\xec\x0b\x91\xa5\x57\x85\x80\xc8\x8c\x0a\x98\x01\x18\xe4\x37\x6d\x36\x58\x5d\x1e\xe3\xe1\x47\x00\x06\xcb\x5f\xad\x07\x4f\x49\x39\x7f\x28\x0c\x1d\x99\xa0\x3f\x9b\x61\x18\x05\x60\x0f\x73\xc5\xbf\x42\x53\xab\x55\x90\x25\xd3\x94\xc3\xcb\x86\xe0\xbb\xd0\xec\x50\x95\xa3\xd3\x20\xd6\xf4\xa5\x64\xd9\xd4\xad\xfc\x35\x15\x0e\x09\xf7\x46\x87\x8e\x94\xbb\xc6\x23\x02\xcb\x1b\x79\x21\x59\xb5\x20\xe8\x50\xad\x3f\xd1\x6e\xb8\x4e\x09\x43\xdf\x63\x4a\x29\x82\x6c\x1a\x2c\x26\x81\xd8\xf4\x29\xa7\xc2\x10\x4b\x90\x0f\xa7\x04\x12\xfd\x00\x7c\xd5\x58\x75\x72\xbf\xd6\x14\x20\xaf\xa9\xa8\x9b\xce\x1a\x25\x25\x49\xea\xa0\x35\xce\x69\xc5\x32\x58\x39\xf6\x48\x1d\x23\x0e\x8a\xd6\x6b\x1b\x55\xab\xa9\x5d\x47\xd1\x92\x75\xcb\x97\x35\xc2\x77\xd7\x54\x5b\xc2\xd6\xe1\xc8\xa0\xf1\xca\x57\x0b\xc1\x1a\xe7\x82\x2f\x2f\xb2\x64\xf2\x29\x65\xd7\x6e\x71\xda\x55\x6a\x04\xf0\x8d\xea\xab\x53\xab\x39\x2d\xc6\xde\x3d\x9d\x8a\x71\x5c\x29\x02\x71\xae\x2a\x95\x50\xdf\x6b\x85\x8a\x14\x0c\xb3\x5d\xd5\xd7\xab\x14\x85\x25\x21\x7c\xcd\x18\x46\x60\x9d\xfd\xaa\x4c\x68\x60\xf9\x58\x86\x33\x0c\xa3\x4c\xaf\x52\xda\xd5\xcb\x74\x18\x88\xac\xa0\x41\x1c\xcc\x24\x75\x1d\xc4\x3a\x78\x16\xc2\x11\x25\x19\x6a\x13\x70\x94\x01\x9b\x52\x55\x49\x91\x7f\x97\x91\xd2\x9a\x51\xf7\x3d\x4e\x67\x14\xed\x44\xc9\xdf\x79\x18\xd2\xd1\xdf\x79\x83\xd3\x99\xa6\xa5\x49\xb5\x40\x17\x6d\x0c\xd4\x2b\xf7\xb8\xa7\x60\xe4\xe0\x87\x92\x92\x90\x8c\xda\x3c\xb9\x95\xbb\x5f\xd2\x23\x2c\x59\xa8\x52\xda\x39\x50\x53\x99\x81\x7f\x7b\xd2\x7a\xc2\x35\x71\x10\x58\x5b\xe4\x40\x29\x36\xff\x60\xbf\x68\x83\x6f\x6b\x0e\xad\x33\xfc\x66\x33\x80\x5e\x84\x75\x89\xaa\xbe\xfe\xea\x7f\x7d\xa7\x3c\x79\xa8\x6f\x7f\xd9\x6f\xc6\xd6\x39\x0a\x3a\xb4\xbb\xa4\x80\xe8\xc1\xc4\xb7\x9b\x4e\x3b\x01\xd2\xf9\x7f\xac\x81\x62\x8c\xb7\x75\x86\xdf\x6d\x86\xd2\xce\x5a\x7f\xfa\xc9\x7e\xba\xd0\x0e\x31\xd6\x72\x88\x6a\xe4\xb7\xb0\x7e\x6f\x44\x19\x42\xbd\xe2\x2f\xe9\x67\xee\x52\xc3\xca\xd0\xbb\x3a\x09\x3a\x95\xc1\x6b\x10\xe0\x40\x22\x31\x3a\x0c\xde\x5a\xfb\xf1\x08\x34\x47\x50\x10\x3b\x69\x81\x4b\xe1\x35\x07\x3c\x0e\x82\xc1\x94\xdf\xd1\xd2\x99\x93\x48\xae\xad\x6a\xbb\xd6\x64\xd7\x3a\xeb\x2a\x5a\x4e\x5c\xde\x5e\xd2\xab\xe2\x1a\x0c\x70\xf5\xb5\xa5\x7c\x3f\x57\xa1\xd0\x38\x81\xa5\xa7\xbd\xc1\x0d\x94\x1f\x99\x84\x46\x0c\x21\xcc\x48\x86\x39\x09\x3e\xb2\x56\xab\x25\x4f\xbe\xa0\x13\xf1\xd5\x2a\xf8\xa0\x2e\x9f\x03\xd4\x89\xd8\x30\x68\x45\x89\x68\x05\x1d\xd6\x95\x13\x09\x84\x84\x55\x0c\xfe\xef\xee\xdf\x46\x1f\x3f\x7e\x7c\x3a\x7e\x8a\x83\x00\x75\x82\x38\xd0\x81\x5d\x4e\xc1\x4c\x14\x06\x21\x95\x35\xa8\xa3\x13\x2c\x64\x83\x4e\xaa\x06\x27\x40\xb5\x2b\x2b\x4e\x82\x60\x2d\x3a\x84\xe3\xfa\xb5\x44\x53\xc4\xe0\x9c\xba\xfa\xb4\xa2\x6a\xe3\xa1\x0c\x96\x68\x43\x72\x18\x46\xff\xe0\x4a\x77\x9b\xa2\xa1\x48\x47\x74\x4c\xda\xbd\x38\xa2\xfa\x09\xb7\xfb\x2e\x8a\x9b\x53\x5f\xb6\xab\xd6\x11\x53\x7e\xa9\x19\xec\xe6\x12\xf5\x99\xc5\x65\x76\xa6\xe2\x4a\xec\x46\x57\xfc\xa5\x32\x96\x75\x38\x4c\xc5\x75\x6a\xcf\x61\x26\x39\xd3\x52\x52\xd9\xd8\xb0\xcd\xba\xc9\x64\x42\x97\x22\xd7\x9e\x82\xf3\x18\xf8\xc9\x2d\xb9\x00\xd5\x4d\xa2\x4b\x12\x68\x51\x53\x0f\x3f\x93\x44\x4e\x90\x64\xa9\xca\x49\xd1\x7d\xdc\xec\xa4\xde\x53\x4d\x4e\x34\x21\x48\xb1\x5a\x39\x43\x53\x22\xf6\x74\x16\x65\x9e\x4a\xa4\xe9\x04\xb2\xa6\x1b\x30\x66\x77\x9e\x85\x45\x5b\xe8\xe0\x1d\x16\x30\x08\x5f\xac\x17\xbb\x31\x5e\x82\x68\x83\x36\xa8\x58\x35\x79\xb5\xea\x7f\x2f\xd6\xb6\x63\xa5\x4e\x03\x75\x7d\x2b\x81\xec\xa2\x32\x98\x64\x5b\x75\x74\x47\xfd\xec\xca\x1f\x25\xea\x49\x0c\x75\x27\x17\xbf\x89\x9d\xe8\x25\xe6\xcb\x64\x42\x4d\x1c\xc5\x45\x91\x8b\x0f\xb9\x3d\xf7\x4d\xe0\x45\x63\x24\x06\x95\x68\x21\x12\xa8\x34\x0a\x3f\xac\xb4\x73\x6d\xd7\x1f\xfb\x41\x10\xab\xa1\xa1\xd5\x34\x69\x02\xa8\xb6\xca\x05\x1a\xb2\x74\x24\xc6\x8a\x49\x36\x53\xc0\x87\x2a\x0a\x3a\x78\x1f\x80\x05\xb6\x6d\xd9\x1f\x49\x45\x2a\x8a\x71\xd4\x1b\xaf\x56\xc1\x99\x79\x06\xfa\x52\x9d\x51\xa3\xbe\xfc\x72\x6a\x9e\x11\x42\xab\x55\x34\x51\xa1\x63\x39\xb8\x83\x8c\x98\xf6\x0a\x92\x29\x1e\x0d\xc4\x7a\x39\x05\xd2\xcf\x3a\x76\x1f\xca\xed\xbd\xe0\x9f\x69\x49\x3a\x0b\x14\x53\x9f\x98\x16\x18\xdc\x5d\xa1\x98\x57\x07\x75\x48\x47\xdc\x1b\xd1\x31\xb1\x35\xef\xb4\x4d\xff\xc2\x30\x08\x62\x16\x47\x82\x70\x7f\xbe\x70\x56\x4d\x81\x19\xc4\xf7\x43\x17\x71\x5d\x2f\x66\x64\x47\x69\xfb\xc8\x55\xc2\xc3\xb0\xdd\x53\x5e\xdc\x24\x56\xeb\x30\x9c\x0d\xfd\x8e\x9c\x9e\x47\x19\x56\x4a\x29\xd5\x0e\x32\x84\xbc\xa8\x45\x7e\x48\x69\x43\xf4\x18\xd4\xf7\x36\x8b\xee\xd6\x92\x8c\xd4\x3b\xf8\x40\x7d\xd6\x52\x64\xec\xf9\x57\xd1\x69\x9f\xdd\x17\x5d\x9d\xf6\x8d\xc6\x86\x2c\xa6\x5d\xad\xce\x9a\x01\xd7\xde\x05\x5f\xc4\xc9\x5c\x57\xec\x3a\x84\xf4\x83\x84\x6b\xad\xa0\xae\xdb\xa4\xec\xbf\x9f\x82\x15\xc9\xd9\x2e\x7b\x32\xb4\x4f\x65\x56\xdd\xd8\x80\x91\x2f\x26\x60\x97\x16\x68\x0f\x8d\x60\x9b\x21\x5c\x81\x94\xdc\xf9\xa0\xc6\x19\xd6\x09\xaa\xfb\xca\x6f\xa4\x12\x48\xc4\x3e\x6f\x64\x74\xac\x4a\x06\x09\x52\x86\x15\x50\x63\x0f\x94\x75\x3d\x3c\xb9\xfa\x1e\x89\xb2\x08\x0a\x43\xd8\x99\x96\xa7\xc2\xc2\x57\x30\x30\x21\xc3\x75\x15\x9a\x02\xfe\x42\x23\xdd\x0a\x72\xbc\xbd\x19\xaf\x8f\x25\x80\x11\x2c\x33\xb9\xaa\x81\x03\x84\x12\x92\xf3\x86\x87\x36\x61\xc0\xcc\xea\x38\xae\xb0\x73\x62\xfb\x0d\xde\xab\x9f\x25\xf7\x5a\x41\x1a\x9a\x07\x44\x43\x15\x2c\x5c\x2f\x77\x14\xd7\x33\xba\xf3\x1c\xa0\x30\x74\x0b\x40\x87\xdc\x0c\xc8\xa8\x8d\xd9\xa1\x32\xd4\x58\x75\x15\x00\x8c\x7e\x12\x69\xb7\xab\xb9\x1a\xe2\xa3\x6b\xd9\xdc\x86\xfe\x48\xca\xed\xfe\x1e\xa0\x3b\x01\xdc\x54\xf3\x86\x80\x4c\x03\xe3\xc5\x50\xc5\xeb\x65\x60\x72\x44\x14\x8f\xa4\x86\x55\x28\x01\x7a\x59\x2f\x11\x6b\x49\xa1\x49\x6a\x51\x51\x8a\x6a\x12\x94\x9b\x8e\xc0\xc9\x6d\xfb\x5a\x4d\x79\x4c\x96\x6a\xcd\xae\x00\xea\xda\x8e\x8f\xbb\xa0\xc2\x90\x76\xc1\xbf\x8c\x89\xe8\xd0\x4d\xc0\x1d\xb9\x96\x6e\x28\xa6\x48\x63\x6b\x89\x0e\xbd\x3e\x3d\x30\x4c\xb1\x9f\xdd\x5d\x7c\xd5\x6a\xbc\x48\xf7\x5f\xe0\xf4\xf3\xc9\x27\x23\xd4\xb5\x94\x91\xe7\x0f\xd5\x73\x82\x5a\x77\x9b\x5a\x92\x2c\x96\xac\xaf\xd0\x3e\x41\xe0\xec\xeb\x4b\x5a\x95\xe5\x91\xfd\xf2\xc2\x22\xe2\x69\x57\x39\xa0\x52\x37\x2e\x48\x4b\x35\x49\xa0\x52\x03\xfc\x7b\xc4\x10\xfe\x03\x54\x5f\x1c\x3d\x1b\x45\xe1\x57\xb5\xe6\x0e\x0d\xd3\xcc\x69\xf4\x45\xf2\xd3\xa8\x7e\xcb\xfa\x95\x5a\x69\xa1\x69\x83\x38\xae\xcd\x1c\xba\xe1\x13\x8d\xd0\x5d\x9a\x4a\xd2\x3e\x85\x0b\x88\xc9\x0d\x88\xbc\xa2\x80\x33\x73\x4a\x1a\x28\xdf\x51\x84\x93\x94\xa4\x8a\x1f\x70\x35\x4a\x00\x24\xbd\x61\x00\xc1\xb8\x07\x6c\x18\x1e\xd2\x28\x49\x95\xbc\xec\x52\x3e\x62\x8a\xff\x21\x21\xc7\x3f\x45\x67\xd4\xd7\xb5\x38\x2f\xd7\xdc\x8c\x4f\x8a\x1c\xaa\x1b\x46\x12\x4c\x9c\xa6\x44\x48\x00\x18\x4e\x53\x79\x06\x3f\x00\x2b\x8a\xd5\x5d\x0c\x01\xa5\xb3\x4f\x1e\x15\x74\x61\x06\x51\xab\xc7\xa5\x9c\x39\xe3\xb4\x5a\xe9\x6b\xa3\xf2\x05\x2e\x78\xdc\x31\x54\x7d\x72\x14\x3b\xdc\x21\x07\x65\xc2\x4a\x6e\x57\x96\x76\xe0\x64\xf6\x94\xf5\x1a\x26\xab\x52\xf4\xc4\x15\xc3\x55\x6e\x5a\x4b\x43\x92\x6b\x2a\x19\xdd\x74\x96\xea\x5d\x36\xac\x27\x45\x14\xc5\xed\x76\x44\xc9\x44\x72\x2e\x28\x0c\xdb\x6d\xf0\xe4\x5c\x6a\x0d\xd0\x52\x8c\x74\xe2\x5e\xe1\xbb\xf2\x08\x15\xeb\xbc\xd4\xc1\xd0\x71\x70\xb4\x24\x13\x09\x62\x9f\x4d\xa8\xcf\x9e\xe4\x39\xb6\x43\xd1\xa5\xb3\x19\x9d\x88\x8b\xe4\xda\xae\xe0\xfe\xa0\x52\x5c\xe2\x65\x5b\x03\xbe\xaf\xa4\x61\x92\x77\xd4\x99\x97\x5c\x0f\xb7\xe3\x1d\x47\x0b\x00\x60\xde\x6e\x13\x02\xd0\x2b\x25\xeb\x97\x2f\x5d\xbd\xb7\x23\x4f\xcc\x62\x7b\xe4\x49\x9e\x5a\x42\x95\x07\x29\xb3\x28\x6b\xc1\xc0\x6f\x98\x4b\xaf\xd2\xcb\x06\x85\x70\xaa\x36\x96\xaa\xb9\x34\xc6\x09\x49\x87\x8e\x56\x4d\x6c\xdc\xac\xb7\xd3\xd5\xaa\x9d\xe8\x30\xa8\xe9\x2c\xd2\x7e\xc0\x08\x21\x89\x7a\x2a\xb5\xe6\x0a\xa2\x3f\x0e\x0a\xa5\xb0\x53\x38\xb6\x63\xb2\xbf\x29\xc2\x00\xbc\x4c\xe7\x7e\xba\x18\x14\xa4\xe8\xe6\xe9\xd5\x3c\x65\xd7\x6b\x3b\x14\xa0\xdf\xa1\x19\x20\x49\x08\xab\x47\xc4\x48\x8a\x39\x49\xd4\x04\x16\x46\xf1\x5d\x2b\x1c\x69\x18\x72\x05\x43\x0e\x30\xc8\x4c\x3d\x6c\x8a\xd9\xb0\x4b\x39\x00\xa2\x3e\x72\x92\x62\x66\x3f\xe6\x24\xb7\xd0\xc8\x51\xd0\xbe\xdb\x73\xd3\xeb\xe6\xea\x13\x59\xcb\xa6\xea\x13\xd9\x7e\x43\xf5\x85\xba\x97\x7a\xf9\x2a\x40\xeb\xb5\xa3\x81\xd4\x06\x6a\x1c\xae\xac\x7a\x81\xbd\x54\x93\x0c\x01\x93\xab\xc9\x99\x6a\x56\xde\x4e\x19\x5d\x78\x45\xf8\xc7\x0e\x5a\xdd\xb7\x92\xcd\x88\x12\x58\x59\xc8\x53\xf4\x74\x82\x60\x0d\x06\x56\x5f\x53\x94\xfa\x9a\xc2\xd5\xd7\x14\x03\x7d\x79\x28\x57\x80\xfe\xd5\xb3\x23\x39\x4d\xa2\x93\xec\x16\x83\x43\x58\xaf\x22\xa5\x7d\x2a\xcc\x00\x68\x0d\x54\xb3\xa7\x94\x58\x0a\x2a\x72\x50\x0e\x80\x58\x6e\xbc\xb5\x2d\x6d\x1b\x35\x0b\x59\x66\x32\x43\xdb\x2c\xa7\x7a\xfb\x1f\x1b\x89\x30\xdc\x6d\x9b\xcf\xff\xc3\x06\xe5\xd8\xc3\x35\x46\xbb\xc0\xdc\x80\xeb\x2b\x5e\x75\xdb\x0f\xf1\xcb\xe0\xc6\x4b\x27\xa3\x30\xec\x6b\xf4\x13\x51\xd2\xdf\x41\x31\x25\x02\x43\xcc\x64\x6a\x92\xf0\xce\xf6\x9e\x3c\x4f\x20\x23\x1d\xd2\xb8\xe7\x68\x57\x78\xdc\x18\xf8\xab\xa2\x84\x8e\xfa\x63\x4d\xa3\xc2\x8d\x56\x24\xd3\x7d\x11\x42\x47\xdb\xc6\x44\x7d\x84\x06\x82\xdc\x6d\x50\x15\x8d\xef\xb4\x32\x5d\x9c\x61\xa3\x2c\x17\x67\x9d\xc0\xa8\xb2\xaf\xb1\x6b\x9c\x13\x8f\xd8\x18\xa7\x39\x28\x03\x29\x32\x32\x16\x6b\xfc\x2e\x55\xc6\x3d\xe7\x29\x98\x46\x39\x2a\x1e\xbe\x28\xbc\x54\x45\x9d\x72\x35\x83\xe8\x8e\x76\x41\x83\x53\xf0\x2c\x37\xa6\x22\x1a\x0d\x40\x87\xb5\x3a\xa1\x18\x30\x7b\xc8\x30\x8b\x97\x01\x05\x47\x8c\xd8\x6d\xaf\x30\xba\xb7\xe3\x39\x13\x49\xca\x68\x76\xc4\x66\x5c\xc7\x94\x1b\x34\xb4\x89\x05\xb9\x8e\x98\x09\x05\x2c\x8c\x1a\x63\x6f\xc0\xf6\xdc\xdc\xfa\xf2\x98\x75\x3a\x08\x4e\x1d\xf3\x41\x0e\xcb\x55\x44\xbb\x82\x2f\x8f\xe9\x67\x0a\x81\xb1\xc0\xa9\xb9\x73\xda\x4b\x1a\xca\x7d\x77\xc9\xa8\x5f\x60\xa0\x4e\x52\xd2\x6e\x3b\x27\xf7\xeb\x92\xec\x28\x8f\x34\x6b\x5f\xc1\x48\xf4\x47\x1a\x51\x34\xfc\x8d\xc6\xbf\x53\xe4\x3b\x86\x14\xdd\xea\x65\x68\x44\x31\xf3\x29\xd3\x5f\xff\xfd\xd5\xbb\xf7\x2f\xbf\xe9\xea\x9f\x44\xbf\x03\x21\xed\x7c\xfa\xbd\x6c\xf9\x24\x35\x4b\xfb\x1f\x72\xd8\xc1\xf6\xfd\x3a\xb2\xae\x7b\x09\x5b\xad\x0c\x13\xe0\x5c\x21\x2a\x74\xb3\x4d\x80\x3e\x60\x08\xbc\x79\x29\x51\xd4\x41\xea\x29\x57\x65\xe4\x20\x35\x0a\x55\xde\xec\x10\x8a\x33\x4f\xeb\x4d\xe0\xcc\x59\xa1\xa0\x04\x97\x29\x0d\x59\x4a\xee\xdc\x92\x31\xc5\x4e\xb9\x58\xe0\xb2\x54\xcc\xb0\x5d\x12\xf1\x68\xbc\x86\x6b\xfe\x9f\xa2\x3f\x29\xe8\x14\xeb\x0b\x7e\x7f\x95\x18\x4b\x1e\x4f\x01\x4f\x25\xb9\xd0\xa8\x94\xea\x42\x54\xe1\x2c\x0e\xca\x58\xb6\xb2\xb3\x5a\x3d\xcb\x61\x77\xfe\x72\x85\x8d\x0f\xf8\x7f\x36\x06\xe1\x47\x29\x58\xad\x8c\x8e\xd2\x31\x79\x93\x76\x3a\xf8\x34\x1d\xc1\xdb\x98\xdc\xad\x51\xf9\xe6\xa8\x64\x50\x63\xff\x3b\x00\x6d\x84\x59\x9a\xe5\x02\x9c\x42\x0f\x10\xf8\xfd\x2f\xdf\xeb\x1c\xd0\x0f\x1e\x96\x83\xaa\x06\xd4\xd1\x95\xce\x06\x4c\x47\xe4\x05\x39\xbc\xd1\x17\x80\xa4\x8c\xd0\x0e\xeb\x3a\xea\xa5\x46\xf1\x93\xee\x01\xd1\xf7\x3d\x31\xab\xfb\x0e\x3c\x51\x32\xcc\x67\xb3\x9c\x8a\x58\x6c\xd1\xf5\x00\xa6\x59\x69\x6f\x9b\x36\x18\xc4\x83\x38\x57\x47\x02\xba\x93\x08\xc7\x49\x30\x77\x19\x6b\x99\xee\x58\x7f\x30\x6d\xed\xb9\x06\xf8\x99\xab\xb4\xf1\x84\xfe\xb3\x5a\x1b\x2d\x79\x6c\x38\xaa\x1b\xf2\x0d\x7c\xd0\x2b\xcd\x00\x25\xde\xca\x69\x92\x4d\x6e\xbc\x24\x41\xe7\xde\x7b\x91\xf9\xef\xcb\x24\xcf\xbf\xf0\x6c\x5a\x26\xa2\x8a\xb5\x91\x90\xef\x99\x61\x10\x27\x6a\x64\x0f\xa7\xca\x49\x90\xab\xf6\x52\xee\xe5\x5f\x52\x23\x07\x3e\x4e\x57\xab\xe3\xb4\x4d\xc8\x87\x2c\x42\x0d\xa8\xe5\x38\x35\xa7\xa7\xe5\xe7\xce\x45\x92\x81\x06\x31\x0b\xc3\x27\x72\xfc\x86\x8c\xdc\x81\x8e\x98\x44\xe8\x5e\x2e\x4c\xd9\xd4\x4d\x3c\x64\xd3\x75\xac\x14\x51\x24\xdb\x64\x23\x47\x0e\x23\x46\x1a\x92\x23\x84\x19\xb9\x4b\xd8\xe4\x86\x67\xa0\x67\xc2\xba\xe5\x0b\x56\x8f\x67\x6a\x85\x98\x2f\xea\x15\x03\x8b\xab\x8b\xd8\x67\x95\x6a\x0b\x38\x6f\x6b\x14\x9b\x45\x81\xff\x4c\xc3\xf0\xcf\x2c\xfa\x33\xc5\xb2\x67\x70\xd9\xfc\x67\x0a\x58\xc6\x95\x3c\xbc\x4d\x75\xaf\xf0\x87\x14\x2b\x23\x4a\x2d\x7a\xd0\x66\x61\x16\x2d\x90\xe3\x54\x4b\x20\x9c\xb9\xf8\xc9\xbf\x64\xd4\xe3\x7e\x94\x75\x8d\x6f\x76\x6b\x38\x49\xbd\xc8\x40\xd6\x4d\xba\x91\xaa\xf8\x9e\xf6\x6b\xf8\x97\xae\x56\x91\xe8\x10\x8a\xd6\x08\x3b\xc7\xfd\xdf\xa9\xaf\x3e\x45\xde\x66\xd1\x9d\xf1\x8c\xac\x25\xd3\x6b\xd9\xa9\x48\x90\x9f\xa8\xa1\x0b\x33\xca\x94\x72\x4e\xe9\x44\x59\x78\x82\x95\x7f\xf8\x37\x55\x12\x97\xf0\xa5\xfc\x92\xcb\xc6\x04\xb9\x5b\x0f\x9a\xed\x32\xc1\xf8\x52\x8c\x82\x27\x41\x87\x8d\xf8\x78\x4c\xda\x3d\xef\x5c\x77\x4e\x73\x4e\xea\x52\xc3\x27\x41\x87\x8e\xd8\xd8\xa8\x1d\xc0\xb3\x9a\x06\x3a\x55\xfc\x47\xe4\xa5\x11\x8e\xb0\x64\x4a\x4c\xba\x16\x40\x9d\x9b\xcf\xf2\x74\x04\xea\x56\xc1\x00\x17\x08\x1a\xb5\x2b\xb8\xa9\x0b\xb7\xb6\x4e\xd3\xcd\xbb\xcc\x22\xa4\xe6\x65\xad\x60\xee\x1b\xa9\x66\x79\x63\xb3\x46\xd8\x2c\x37\xb5\xca\xa3\x2d\x13\x41\xed\x09\x14\xb5\xd7\x26\x87\x56\xaa\x70\x60\x76\xb4\xb0\x84\x7f\x69\xa1\xa4\xa3\x9b\xe4\xf5\x5a\x3c\x6f\x6f\x20\x2a\x37\x06\x5f\x92\xfc\xa4\x98\x8b\x74\x39\xa7\x71\xbb\x2d\xba\x0b\xfd\xe2\x3a\x2f\x16\x35\x03\x65\x90\x23\x27\xec\x9a\x66\xbc\xc8\xe7\xb7\xe7\xf2\x80\x64\x34\xfb\xf1\xe2\xe4\x58\xd9\x1d\xf6\x03\x84\xed\xed\x89\x77\x27\xd2\x74\x69\x62\x57\xe7\x03\x92\x4e\xf7\x7e\x84\x35\x8e\x82\x96\xa0\xc2\xad\x58\xa5\xa7\x96\xb9\xc9\x28\xc3\xba\x13\xf6\xbe\x57\x59\x64\xbe\xda\x0e\xaa\x81\x6f\xe0\x16\xad\xff\xbd\xf5\xfa\xa9\xec\xee\x77\x40\xdb\x0c\xae\xea\x30\xac\x21\x61\x48\x25\xa6\x23\x10\xa1\xcd\x37\x28\xaa\xeb\x72\xe1\xb9\xda\x40\x1b\xbb\xd3\xb6\x75\x76\x18\x66\x6d\x7b\x13\xe1\xdc\x2e\xb0\x52\xdc\xef\x76\xb9\x2e\x02\x66\xfa\x62\xa0\xfd\x60\xce\xca\x7d\x82\xa3\x7e\x24\x3c\x6e\xa2\x3c\xef\x07\xc0\x2b\xde\x33\x7b\x0e\xc0\x2e\x19\x9a\x0a\x47\x0c\x6d\xe4\xcf\xf9\xe7\x6b\x23\x44\x0e\xb4\x3f\xee\x2f\x5f\xbe\x74\xbf\xec\x80\xab\x92\xed\x5e\xaf\xf7\x54\x66\x51\xd7\xf8\x8b\x44\xdc\xdc\x93\xbb\xff\xea\xd5\xcb\xa7\x27\x89\xb8\x81\x3f\x27\xc7\x41\x55\x28\xdd\x58\xe4\xd5\xd3\xaf\x37\x62\x31\x77\x05\xd6\x49\x7d\x23\x28\x7c\x7d\x6f\x05\xc0\x4c\xa6\x60\x5b\x7f\x5f\x57\x14\x27\x1a\xcc\x78\x46\xd3\x6b\x76\x56\xaa\xd3\x0c\xef\xaf\xde\xd5\xcf\x2c\x84\xa5\x02\x1c\x13\x71\x87\xe4\x53\x86\x72\x4c\x45\xb4\x4e\x74\x6a\x18\x56\xc8\x39\xdd\x3f\x40\x68\x2a\xf9\x57\x33\x6b\xde\x8c\xbb\x4c\x66\xae\x9b\xa6\x60\x93\x7e\x3b\x77\x04\x7a\x2a\xac\x40\xd3\x6d\x11\x43\x86\x3f\x50\x8a\x1d\xc6\xc2\x20\xd8\xda\x0a\xc0\x67\x15\x4e\x95\x33\x5d\xae\x2f\x40\xd3\xd5\xca\x5e\x4d\x94\x6a\x11\x32\x15\xa2\x7f\x0d\x83\x20\xce\x9a\x58\x95\x74\xb5\xea\x29\xd3\xbc\x9b\xa4\xc9\x52\xe6\x26\x19\xf1\xf1\x30\x0a\x82\x4e\x8a\xba\x22\x4b\x17\x11\x8a\xd3\x4e\xb0\xfc\x1a\xe0\x60\x06\x01\xea\x89\xdd\xda\x93\x3c\x57\x31\xeb\x91\xb9\x78\x2e\xfb\x83\x39\x8a\xe5\xa9\x43\xb8\xb3\x6c\xe6\xc2\xc6\x9f\x0c\xc3\xe8\x36\x01\xaf\x1c\x51\x79\xfb\xa9\x50\x92\x51\xb0\xde\x88\x58\xb5\xfc\x75\xe7\x45\x80\x29\x66\x91\xbb\x93\x37\x61\xe2\x5a\x23\x50\xc5\xf3\x5e\x80\x1a\xec\x25\xee\xa9\x27\xb8\xbc\x84\xb5\x96\xb2\xcd\xb9\x00\x31\x3e\xef\x07\x0e\x5c\xb0\x0e\xc2\xb0\x1e\x38\xc8\x7e\x92\x45\xb6\x03\xe8\x8d\xeb\xa2\xa3\x5c\xc6\x5b\x7d\x58\xab\xe5\xc2\xb0\x6e\xb1\x1a\x94\xf2\xba\x69\x5e\x35\x4e\x48\x18\xe3\x02\xe4\x2c\x5b\x5f\xe5\x66\xd1\xba\xfe\x73\x9e\x6d\xe9\xa8\x54\x3a\x6d\xc6\x99\xd8\x9a\x25\x93\xda\xfb\x56\x9e\x4d\x6a\x69\x45\x96\xd6\xd2\x66\x3c\x5b\x24\xa2\x96\xcc\x92\x85\xa9\x73\x91\xe6\x79\xca\xae\xb7\xae\xe7\xb7\x4b\x8b\xb0\xda\xfd\xaa\x7e\x90\x17\x70\xd1\x6e\xab\x57\x9e\x8a\xf6\x6a\xd5\xef\x57\x74\xb6\xe3\xca\x0d\xa3\x26\xf2\x81\xed\x1c\x08\xf2\x24\x1b\x89\x71\xc9\xc9\x29\x37\x4e\xae\x59\xa7\x31\x83\xd2\x2e\xec\xdb\x35\xab\x45\x8e\x56\xab\x36\x58\x86\x19\x6c\xcd\x0d\xb6\x9e\x64\x7c\x3e\x0f\xe2\x5f\x69\x64\x9e\x31\x45\x6e\xe4\x44\x75\x2d\xe5\xda\xfa\xc8\xbc\x2a\x15\x53\x84\xe5\x1b\xa4\xcb\x17\xd6\x95\x8f\x20\xaf\x56\x84\x7c\x25\x0c\xe3\x44\x72\xe0\x76\x32\xe7\x1c\xf4\x52\x69\xc4\x71\xbb\x87\xc2\xf0\x57\xf9\xe4\xb7\x9e\x32\x88\x27\x61\xee\x2c\x8b\xab\x45\x6a\x26\x2a\xa3\x39\x15\x41\xac\x32\x9b\x89\x80\x55\x77\x5b\x5a\x3c\x49\x14\xf1\x5a\x55\xbb\x96\x03\x00\xae\x96\x1c\x35\x22\x51\x92\xc6\xe6\x6c\x80\xf9\x2a\x71\xea\x90\xc5\xcc\x9f\x1e\x9c\x11\x42\x66\x09\xf8\xd8\x02\xc5\x5b\x38\x07\x91\x9b\x3c\x0c\x94\x06\xb8\xbe\xce\xa3\x84\x35\xeb\xc4\xcb\xfd\xa1\x77\x21\x09\xf6\x54\x99\xef\xf7\x3e\x3e\xd5\x4f\x81\xd6\xee\x5b\xf0\xcf\x14\x10\x7e\xe4\x9e\x09\x08\xc5\x92\xb1\x69\xda\x4c\xc3\x6a\x7b\x14\xdf\xa5\x79\x2c\x3f\x49\xa6\xaa\xfa\x51\x56\x54\x49\x04\x4d\x1c\xff\x82\x76\xe9\x1d\xa2\xd1\x2b\x10\x56\xdb\x61\x12\xb1\xf0\x87\x09\xe9\x0a\x2f\xe8\x57\x60\xf0\x3d\x9b\xb7\x1b\x51\x55\xcb\x9a\x08\x50\xf2\xa9\x68\xe5\x06\xe9\x2c\x2b\xb7\xa1\xb9\xc0\x7e\x4d\xa3\x60\xce\x93\xa9\x8d\xe4\x93\x12\xe6\xae\x9a\xcf\xe9\x94\x72\x5d\x26\x29\xa6\x29\x0f\x62\x65\x9f\xdd\x1b\xa4\x7b\xb7\xdc\x75\x89\xf1\x9a\x46\xb7\x7c\x94\x8e\x65\x4d\x95\x5a\x54\xb0\x2e\xd5\x1a\x38\x23\x83\x25\x5e\xc9\x94\x2e\xcc\x1d\x7a\xba\x48\xae\x0d\xa0\xf3\x94\x7d\xaa\x16\x74\x81\xae\xd6\x22\x31\x90\xca\xaf\x56\xb5\xc9\xaf\x17\x7c\x43\x09\x65\x3c\x97\xab\x42\x82\x5f\x5f\xcf\x69\x23\x78\xca\x72\x0d\x54\x92\x98\xfc\x7a\xa3\x9f\x64\x31\xb3\xb9\x64\xb9\x99\x88\x32\x1c\x70\xa6\x02\x51\x05\xde\x26\x54\xdc\x62\x10\xa7\xe4\xef\xaa\xb4\x37\x4a\x8a\xb1\x8e\x81\xb7\x81\x26\x14\xf7\xc0\x7c\xee\x61\xfd\x6d\x4d\x5a\x49\x4a\xcc\x6c\xbd\x42\x7c\x13\xe8\x06\x25\xa4\x84\xad\xe7\x02\xe2\x3d\x7e\x4e\xb4\x79\x32\x2e\x48\x0a\x18\x35\x81\xd0\xc6\x92\xc4\x29\xaa\x48\x33\x41\x26\xfe\x41\x31\x4a\xc6\x83\x00\x0e\x3e\xb9\xcf\x92\x21\x90\x4c\xb9\xac\x2e\x0e\x36\x1c\xaa\x2a\xa3\x56\x7c\xca\x49\x3e\xcc\xbb\xea\x28\x36\x86\xcc\x61\xb8\x4c\xc0\xdd\x7b\x1c\x98\x33\x5e\x95\xa9\xef\xe8\x7c\x18\x95\x03\xa2\xb8\x50\xd0\x63\xc9\x51\x18\x02\xe1\x28\x2b\x71\x54\x56\x74\x29\xfd\x31\x08\x3a\xf2\x7b\x5e\x2c\xc1\xa8\xef\xc0\x97\x44\xfd\xa6\xfc\xe8\xc9\xea\x92\x30\xb4\xb9\x7e\xbc\x9d\xaa\x4b\x8e\xca\xf7\xa4\x10\xfc\x2d\xe0\x7e\x95\x10\xfd\x50\x73\xf3\x95\x20\xdd\xed\x3c\x0c\x61\x6a\x12\x13\x62\x34\xd7\x4a\x5f\x09\xce\x31\x47\x68\x5d\xdd\xea\xc6\xca\x32\xa2\x08\x83\xb2\x12\x08\xdc\x9b\x97\x85\xca\xc5\x45\x6d\x3d\x9a\xc5\x6a\x4c\x9c\x35\xc7\x55\xd1\x27\xb4\x16\x3c\x46\x9b\xac\x69\x45\x5b\x96\x9a\xb4\xdb\xcc\xbe\x60\x61\x6a\x35\xe4\xd2\x10\x24\x2c\x7e\x1e\x09\x79\x5c\x31\xb3\xd6\xbc\x54\x3d\xb7\x9f\x43\x1e\x86\x95\x35\xdc\x64\xfd\x90\x76\xb5\x87\x27\xe0\xce\x38\x03\x2d\x0c\x72\x9c\xb9\x02\x87\x85\xa8\x07\x4a\x75\x2d\x41\x2b\x43\xcf\x2c\x7a\xc8\xd4\x53\x26\xf7\xdd\x68\xdc\x38\xbe\x06\x19\xe0\x4c\x3d\x35\xe4\x35\x23\xc9\x36\xe2\x84\x4c\x7f\xc9\x6a\x5f\xaa\x75\x39\x18\xc1\x62\x82\x4c\x3d\xf9\x2d\xd7\xc7\xcc\xbd\xf8\xb0\x63\xd6\x34\xa4\xd9\xc6\x21\x05\x04\x92\xc9\x1d\x8f\x05\xa1\x6e\x44\x86\xa4\xf4\xff\x41\xad\xdf\x88\x76\x6d\x57\x50\x14\x86\x35\xba\x0c\x12\xd5\x1a\x19\xd1\x31\x52\x06\x2b\x1a\xcb\x50\x1b\x6d\xcb\x73\x4b\x51\xa0\x1a\xa2\x02\x41\x47\xb2\x5a\x45\x09\x5c\x2d\x24\x23\x31\x26\x41\xa0\x64\x65\x1b\xd1\x93\x72\x4d\x55\xa2\x1e\xfd\xfe\x30\x96\xa0\x0f\x60\x09\x5a\xc5\x12\xb4\x11\x4b\x50\x34\x4c\x57\xab\x48\xce\x1b\x8a\xa3\x54\x32\x78\xa3\x31\xd2\xb7\x2f\x2a\x40\x24\x2a\x07\x35\x33\xa8\x38\xd3\x4e\x3c\x0a\x62\xe5\x62\x23\x3a\x36\xd2\xa8\xc6\x51\xcf\xdb\x84\x14\x96\xa3\xca\x0d\xb7\x56\xa0\xea\x78\xcb\x6a\xd5\x05\x8c\x1e\xe9\x76\xc3\x50\xaf\x56\x79\x18\xe6\x4d\xe9\x0d\x53\x50\x4e\x5b\x8e\x1a\xca\x84\x61\x31\x12\x63\x89\xc8\xc1\x11\x62\xb5\x02\xf0\xbc\xa4\xbd\x4d\xca\xa1\x32\xc3\x85\xcd\x25\x15\x4e\x10\xc2\x09\xc9\x07\xf7\xce\xb4\x22\x41\x1b\x8e\x20\x5c\x90\x62\x58\x54\xd2\x2c\xa6\x2e\x24\x5c\x60\x02\xe3\x4f\x0d\x1c\x27\x95\x43\x8b\x0e\x0b\x02\xee\xe5\xeb\xf2\xef\xbc\x49\xfe\x9d\x43\x57\x1a\xea\x7d\xcc\x31\xf5\x88\x05\xd8\xbc\xde\x22\xf7\x58\xe2\x40\x2c\xad\x56\x1a\x70\x35\xb2\x0d\x2b\x31\x47\x56\x3b\x26\xa9\x8d\x86\x5e\x3d\x38\x41\x38\x75\xb4\x9e\x3d\xa4\x5b\x5e\x3e\xb1\x30\x2c\x35\xa9\x8d\xde\xbd\x82\x89\x83\x36\x6a\x18\x82\xb6\x33\x47\x78\x22\x22\x70\x54\x91\x11\x78\x72\x42\x29\x2a\x1a\x56\x94\x24\x2c\xd9\x36\x6e\xdd\x84\x24\x63\x0b\xf9\xd3\xe9\x37\xd0\x2b\xc5\x23\xe8\x15\x20\x49\x8a\x1a\x49\x02\x74\x44\x81\x62\x7d\x7a\x17\x38\xb3\x87\x37\xf3\x4f\x90\xcf\xaa\x03\x1b\xce\x6c\x51\xfb\x58\x9e\xb5\x9b\xa5\x8f\xe6\x0a\x48\xd4\x64\x94\x8e\x08\xbc\x2a\xb3\x75\xbf\x91\x76\x9b\x3b\x87\x2d\xe1\xde\xf1\xcd\xcc\xf1\xed\xe6\x81\xe3\x5b\xb4\x89\x57\xd4\x22\x11\xee\x6b\xf3\xd7\xcb\xf3\xda\x81\x1e\x37\x65\x32\x8f\xc3\xd1\x38\x0e\x02\x65\x4a\xe5\xa8\xc0\x7b\xeb\xe8\x9b\xf9\xa2\x87\xf9\x21\x25\x4a\xb8\xf5\x5c\x44\x29\x7e\x28\x1b\x57\x6a\x68\xe4\x85\xfe\x75\x3e\xe8\xdb\x78\xa0\x47\xf0\x3f\xf7\xf0\x3e\x0d\x6c\x03\xdf\xc4\x7e\x54\x99\x9a\x6f\x29\x5b\x67\x5d\x1e\x2a\xad\xa8\x0b\x06\xd4\x45\x46\x3c\x35\xb1\x74\xb3\x2b\xaa\x14\x99\x8d\xcf\x46\xe9\x78\xe0\x6d\xd9\xb4\x81\x8b\x48\x86\x9e\x08\x58\xd3\xef\x19\x19\x95\x25\x71\x32\x6e\xe2\x24\x12\x08\x49\xeb\x15\x0d\x82\x4e\xbd\xb4\x4c\x1c\xa3\xb8\x8e\x7c\x53\x4b\xe7\x24\x1a\xf9\xa6\x8f\xa3\xfe\x7b\xdf\x4a\xfd\x9b\x89\xf3\x48\xd5\x87\x69\x69\xb6\x91\xf0\xb3\x76\xe5\xa5\x19\x85\x7f\x97\x40\x4b\x31\x7b\xdb\xf3\xff\x70\x2d\x1a\x7d\xd4\x68\xd7\xa5\xb1\xdb\xe9\x3a\xe8\x6e\x57\xb5\xcd\x66\xd7\x52\x55\x0d\x56\x7b\x5f\x3c\xa0\x7c\xb7\xa7\xe5\xb1\xec\x0a\x89\x4a\xe9\x75\x7d\xc2\xbd\xaf\xdf\x22\x6e\x36\x97\xa0\xf7\x08\xa4\x1b\x40\xd9\x90\x59\x53\x26\x8e\xd9\x81\x30\x1a\x32\xe0\xed\xc1\x51\x29\xa1\x61\xd8\x6f\xbb\x42\xd5\x30\xdc\xf1\xde\x95\x0a\x8d\x5b\xa4\xae\x43\x73\xe6\x55\xef\xdc\xbd\xfc\x5b\x6a\x3f\x14\x4e\x90\x6c\x13\x69\xdc\xbd\xac\xfd\x0a\x19\x7a\xdf\x7f\x4a\xc0\x4c\xc6\xe8\xda\x7e\x4d\x46\x9f\x92\x31\x56\x3f\xea\xb6\xfb\x53\xb2\xb5\xe5\x3a\xcc\xd4\x73\xff\x29\xe9\x74\x4c\x3e\x5b\xbe\xf4\x60\xed\xae\xcd\x77\x0e\x30\xad\x0b\x30\xed\xbd\x48\xe2\x77\x89\xc9\xeb\x18\x28\x08\xdf\x6b\xb1\x89\x21\x21\x57\x98\xf2\xdc\xee\x79\x2f\x7e\x9d\x59\xd3\x1f\xcf\xbf\x71\x16\x86\x59\xf7\xf2\x12\xa2\x16\x80\xf6\x23\x4b\xe6\x27\x74\xc1\xd3\xbf\xe8\xf4\x03\x5b\x24\xf9\x27\x3a\x85\xc1\xd6\x66\xed\xe0\x8c\xc3\xec\xbd\x4d\x05\x4f\x6a\xc5\x94\xe3\x64\x9c\x1a\x9d\x06\xed\x4d\x1e\x82\x5e\x8b\x11\x1f\xbb\x01\xf2\x28\xf1\x1d\xef\x7c\x0b\x74\x62\x73\xfe\x3a\x50\x24\xf5\xc8\xc3\x0b\x77\xec\xb7\x8d\xaf\x5a\xb3\x77\xcc\x08\x3b\xe5\x61\x98\x1d\xcb\x0b\x28\x0f\xb5\x84\x61\xf4\x55\x44\xe7\x89\x3c\x54\xbe\x8a\xe8\x5d\xe2\x1b\x97\x1c\x40\xce\x5a\x0e\xc7\xb8\xc2\xde\x6f\x95\x53\xdf\x26\xe4\xb5\xf6\x19\xff\xfc\x65\x80\xf0\x27\x28\x25\x64\x05\x9f\xa0\x26\xdf\x49\xf8\x7b\xb1\xc1\xab\x35\x04\xd9\x6c\xee\x4b\x35\x60\x8c\xe7\xc2\xc4\x1d\xb9\x52\x0d\x9a\x91\xda\x47\x27\x8c\xac\x39\x25\x21\xd8\x8c\xd2\x78\xef\xbd\x0c\x30\x98\xf3\x3b\x56\xfa\x4e\xe4\x58\xa3\xe1\xe0\xda\x7f\x9d\x0a\xa3\xba\x0d\x83\x5b\x77\xd1\xe1\x78\x11\x36\xe6\x11\x10\x54\x73\xd3\x4a\xa0\xd9\xb5\xbf\x12\x56\xab\xd7\x19\xbe\x48\x48\x39\xda\xf5\xe1\x3d\x2f\xbf\x81\x47\x0e\xc7\xa8\x63\xd3\x50\xc3\xe5\xb0\xea\xf6\xf3\x57\x01\xc2\xd6\xd7\x0b\x4c\xce\x45\x82\x06\xec\xf1\x30\x12\x8e\x6b\x2b\x46\x43\x09\xb7\x28\xc0\x8f\x9a\x1c\x03\x05\xb3\xf0\x96\xc4\x91\xa8\x78\x51\x14\x89\x75\x9d\xf8\x89\x5a\x33\x6f\xad\x32\xae\x5d\x25\x82\xdd\x07\x3c\x1a\xf5\x72\xc8\x63\xba\x48\x4a\x2b\x70\x40\x81\xca\xb3\x20\x9b\xd2\xaf\xa4\x87\x75\xb1\x99\xf3\xc9\x75\xa0\x61\xac\xd3\x17\xba\xcf\x4a\xa7\x03\x92\x8a\xe5\x34\x11\xf4\x97\x82\x16\x3a\xc1\xe4\x51\x05\xcb\xfa\x16\x12\x06\x6d\xd0\x6e\xcd\x71\x4c\xd3\xf3\x24\x17\x87\x90\xa8\x2a\x81\xa3\xc3\x4d\x90\x27\x83\x7e\x2f\xab\xa4\x5f\x97\xa9\x62\x5e\x2f\xd2\x05\x35\x75\x59\x0b\x8d\x4a\xa8\x81\x7d\xe1\x47\x87\x72\x4d\x76\x7c\x1f\x2d\xd9\x30\xca\x20\x06\x8f\x9c\x07\x39\xf6\xa0\x48\xfd\x89\xde\x62\x0a\xdd\x40\x38\xd3\xe1\xee\xbb\x3a\x38\x50\x39\xca\xee\xfe\x75\x5c\xcd\x12\x89\x1f\xcb\xb7\x0c\xc5\x51\x56\x1d\xe2\xcc\x1b\x97\xac\xd6\xe7\xcc\x1b\x16\x9d\xe4\x8c\x9c\xb6\x84\xaf\x0e\x0b\xc3\x99\x5e\x1c\x1a\x91\xe0\xac\x32\x49\xd4\x7f\x77\xbe\xab\x89\xa6\xfe\x3b\xce\xbc\x59\xa7\xee\x9b\x1c\x0b\xbd\x2a\xa9\x79\xc2\x3a\xe6\x89\xb9\xcb\xc6\x19\x2c\x35\x2a\xff\x62\x87\x2c\x7c\xeb\x4d\x90\x41\x7e\x38\x55\x06\x0f\x03\xad\x78\xb7\x04\x10\x9b\x48\x50\x8e\x14\x31\xef\x04\xcb\x0a\x43\x37\x8a\x79\x9a\x83\xfb\x18\x1b\xa3\x67\xb8\x1d\xf7\x54\x24\x84\x46\x47\x37\x1c\x25\xe4\x99\xfa\xee\xdf\xf9\x96\xde\x6a\x5a\xc7\xc2\xd1\x1a\x84\x2d\x9b\x6a\x77\x11\x4f\x78\x9c\x90\x7e\x1f\x8b\x15\xd9\x71\xe8\xeb\xd6\xef\x65\xfa\xb6\x9b\x6e\xfd\xd8\xb4\xb8\x59\x7b\xfd\x67\x98\xe2\x14\xef\xae\x04\xc2\x4a\xda\x41\xfe\xe2\x98\xd7\x27\x98\x5b\xf7\x34\x09\xe9\x3f\x77\xab\xb6\x0e\xfa\x63\x43\x45\xd7\xa9\x51\x6e\xa9\x4e\x3e\xe4\xd6\x4d\x8d\x72\x2a\x74\x67\x7c\xe6\x24\xa4\xbf\x63\x7d\xa8\x18\x9f\x3e\x09\xe9\x6f\xfb\x89\x3f\x43\xe2\x6e\xcd\xdb\x0a\x68\x6f\xf4\x02\xad\xaa\xc5\x87\x3c\x36\x8d\xe3\x20\x40\xeb\xc4\x68\x2e\xaf\xed\xb9\xa0\xc7\x20\x81\x21\x10\x48\x9b\x7b\x13\x8e\x45\xbd\xff\x0e\xb5\x75\x5c\xbf\x8f\xa6\x76\x3c\x7b\x98\xe2\x4c\xe9\xb4\xd6\xea\x70\x08\xcd\x0f\xa2\x66\x9c\xab\x6b\x78\x8e\x95\xcc\xe3\xe1\x3a\xfe\xac\xd6\x61\x7b\xb4\xab\xa5\x26\xa4\x5c\x38\xc3\xf2\x31\x06\xd7\xa5\x12\xd7\x40\x9f\xeb\x5d\x75\x70\xcd\x9d\x67\x5b\x12\x57\x6c\x4d\xb0\x46\x2f\x46\xf3\x56\x39\x5d\x4f\x17\x4b\x75\x3d\x0d\x95\xc6\xb4\xeb\x27\xac\xdd\xb1\xfc\x65\x63\x1f\x76\xd4\x28\xa8\xa1\x18\xee\xc4\x3d\x84\x25\x38\x9a\x26\x17\xb8\x02\x58\x33\x28\x34\xc9\xe6\x29\xcd\xc5\x3b\xf5\x51\x76\x30\xee\xe1\x79\x22\x6a\x69\x26\xe7\x79\x91\x83\x25\xd0\xd4\xcb\xdb\x9c\xfa\x2e\x65\xd7\x36\xc9\xb4\xcf\x17\x8b\x54\x1c\x7a\x63\x1a\xf7\xf0\x2c\x65\x69\x7e\x43\xa7\xbf\xf1\xec\x93\x02\x4d\x93\xe7\xea\xc5\x16\x76\xd2\x6e\x40\x6c\x4a\x63\x86\x33\xba\x48\x52\x96\xb2\xeb\x86\x6a\xb3\x5c\xbc\x4e\xc4\xe4\x46\x95\x01\xee\x66\x72\x43\xa7\xc5\x9c\x4e\xdf\x73\xae\xaa\x5a\x7b\x53\xea\xda\xde\x88\xa6\xd0\xb6\xc2\x8b\x6c\x09\x96\xbe\x4e\xe8\x4a\xc7\xb4\xc6\x90\x62\x8d\xce\x74\x2e\x2f\xdf\x1f\xee\x1f\x5c\x5c\xbe\x39\xfc\xf5\xe2\xec\xec\xf8\xfc\xf2\x87\xe3\xb3\xd7\xfb\xc7\x97\x3f\x9e\x9d\xfd\x7c\x79\x59\xa5\xdb\xee\xcf\xad\x0c\xec\xd2\xfc\x8d\xd5\xe8\x6d\x8b\x6e\x5e\x2c\x21\x76\xdb\xdb\xf4\x8a\x66\xa5\xb3\x1e\x13\x55\x97\x11\xd1\x4d\x99\xc4\x43\x11\x45\x83\x3f\x12\xf2\x5a\x44\x9e\xb3\x39\x63\x96\xcc\x99\x9a\x33\xa8\x47\x8e\x99\x8a\xb0\x83\xf0\xc1\x23\xcb\x7c\x60\x0b\x5e\x30\x53\xcc\x19\x2b\xab\x70\x54\x9a\x0b\xc1\x90\x35\x9d\x2c\x7f\x24\x61\xf8\x47\xe2\xa9\x5f\xfc\xbe\x31\xf3\x41\x12\x86\x07\x7e\xe6\xbf\x5c\xce\x95\x56\xd7\xc9\x55\x92\x53\x38\x58\x63\xaa\xd6\xcc\x07\x38\x4f\xd5\xa2\x91\xe7\xbb\xfb\xae\x98\x6a\x6d\x26\x57\xcd\xd8\x94\xee\xd0\x0c\x65\x46\xf7\xdd\xab\xb1\x9a\xb1\x21\xdd\x59\x64\x3f\xde\xd3\xaf\x2a\x7a\x74\xbb\xd9\xb5\xcf\x5e\x87\xb5\xc8\x40\xbd\xb9\x3d\x57\x0a\x9b\x3a\xfd\xff\x53\x23\xf0\xc3\x7d\x23\x80\x45\x72\x2d\x91\x4f\x72\x3b\xe7\xc9\x54\x63\x16\xed\x60\xb8\x44\x09\xe5\x53\x73\x13\x4f\x2c\x16\xd6\xe4\xa9\x3b\x1a\x43\x6f\xcc\xbc\x4f\x44\xc4\x91\xfb\x0e\xf4\x24\xf0\xdd\x6e\x1e\x84\xc1\xd3\x4b\x75\xb6\x56\xab\x6a\xca\xf7\xda\xe5\x4b\xf5\x44\x72\x0d\x71\xee\xa1\xb0\x4b\x07\x5f\x59\x49\xdf\xb9\x84\xa3\xf1\x19\xa7\xbd\x38\x41\xf0\x1c\x2f\x07\x91\xbb\xc8\xa7\x44\x11\x32\x11\x24\xaa\x75\x79\x24\x2a\xb6\xae\xa1\xf4\x43\x3a\x7c\x4c\xe5\xd5\x6a\x64\x9e\xac\x0a\x40\x5c\xad\xe8\x47\x11\xa5\x4a\x6f\x81\xa8\xd0\x13\xd5\x5a\x7e\x14\x11\xd7\xf6\x10\x4e\xc4\x8c\xe1\x13\x11\x71\xe5\xb8\xc9\x40\xeb\xcc\x93\xf5\x6e\x95\xba\x73\x1f\xd9\x32\xf8\x89\x88\x52\x78\x42\xb1\x93\x9a\xfa\x53\xed\x98\xe9\xd4\x66\xca\x81\x70\x90\x11\xcb\x08\x3d\x38\x48\xf1\xdf\xb5\xfe\x80\x29\xf2\xff\xe7\xee\x5d\xbb\xdb\xb6\x95\x86\xd1\xbf\x22\x71\x75\x69\x13\x8f\x61\x55\xb2\x73\x2b\x15\x54\x2b\xf1\xa5\x4d\x9b\xc4\xae\xed\x5c\x5a\x6f\x1f\xbf\xb0\x04\x49\x88\x29\x40\x25\x41\x5f\x6a\xe9\xbf\x9f\x85\xc1\x85\x20\x45\xb9\x49\xf7\x3e\x6b\x3d\xe7\xf5\x07\x0b\x04\x41\x60\x30\x00\x06\x83\x99\xc1\x4c\x77\x7d\x19\x0e\xed\xc9\xa5\x9a\xdb\x58\x54\x4f\xda\xa6\x7c\x37\x79\x9b\xbf\xb1\x93\xb8\x7e\xf4\x59\x2e\xeb\x39\x66\x12\xaf\x1f\x91\x02\xd4\x7c\xae\xc9\x08\x1a\x0f\x89\xc6\x05\x0e\x5c\xe3\x0f\x11\x04\xe1\x68\xd6\xa6\x83\x42\x95\x3b\x4a\x7f\xa8\x30\xc0\xa6\x97\x6e\x8b\xc0\x07\x63\xbf\x74\x0d\x29\xba\x96\x7c\x6c\x72\xfe\x69\xae\x4b\x72\x50\x71\x25\x96\x0b\xdf\xd5\xd4\xd7\x9f\x25\xb7\xfb\xbd\x9d\xa7\x9d\x20\x67\xf9\xec\xc9\xc0\xfa\x7a\x84\x43\x55\xd9\x86\x1d\xc4\x58\x36\x7a\x13\x5e\x6b\x0d\x2d\x97\x86\x6f\x07\x4f\x0a\xe6\xc4\x51\x11\x0f\xe9\x62\x03\xeb\x48\xf2\x1d\x25\xed\x5e\x83\x36\x80\x89\x50\x49\xc7\x27\xb1\x2e\xd8\xc7\x6d\x18\xd2\x3a\x07\xbc\x5c\xd6\x73\x7e\x94\xe0\x4e\xc9\x0e\x5b\xa0\xe5\x55\xc1\x2e\x63\x4c\x4c\x70\x41\x7a\x38\x27\xaa\xba\xcd\x10\xee\xee\x26\xe5\xd6\xef\xc6\x88\xd4\x65\x0b\x83\xd1\x8f\x72\xe8\x08\x98\x09\xfb\x95\x63\x4e\x52\x3b\xf1\x8a\xe5\xb2\xf8\x71\xa4\xa7\x56\x41\x46\x7a\x09\xa6\xc4\x8e\x72\x8e\x53\x13\x30\xc1\x35\xd1\x75\x1b\x80\x21\xa6\x7e\x48\xc8\xee\x0e\x5e\x17\x73\xd8\x16\x55\x70\xcc\x1f\xaa\xaa\x74\x24\x94\x00\xe4\x49\x1c\x3e\x87\xd5\xe5\xb8\x5a\x12\x21\x84\x73\x62\x5a\x5c\x69\xa4\x8d\x4c\x8b\x1e\x3d\xd5\x35\x56\x47\xd1\x64\x1d\x45\x93\x00\x45\xa3\x4e\x27\x1e\x91\x1c\x07\x18\xd3\xd8\x0a\xd1\x35\x31\xe8\x9a\xfc\x7f\x86\xae\xea\xc6\x3d\xac\x75\xab\x82\xbe\x5a\xa6\x47\x63\x35\xbf\x09\x9d\xf5\x2f\x2b\x68\x0d\x7a\xaf\x42\x4a\x6c\x04\x35\x0e\x55\x43\xd5\x44\xd3\xe0\x82\x66\xbd\xc7\x65\x85\x01\x9e\x61\x1a\x06\x93\x9d\x70\x5c\x99\xe1\x84\xe2\xc6\x21\x25\xa3\xf5\xf3\x65\x81\x6b\xf4\x9d\x84\x9c\x88\xb2\xb1\x9d\x9b\x24\xcf\xcc\xfa\x42\xe9\x47\x36\xe8\x27\xf8\xa9\x0e\xef\xac\x89\x30\x8c\x9b\x57\x73\x35\x00\x56\x3a\x22\x0d\xb1\x56\x43\xa2\xdd\x10\x9a\xbe\xc7\x15\x64\x37\x61\x17\x6d\xc0\xc8\xc6\x91\xd0\xc7\xdb\xca\xba\xc3\x8f\xac\x42\xcf\xc7\xe8\x33\xfe\xa0\xdc\x62\xdd\x54\x76\xef\x32\x73\xe5\xd4\xe6\x5a\xb9\xa6\x88\x33\xbd\x8b\x63\xa7\x0e\x33\x75\xae\x8c\x4e\xad\x71\x0e\xd7\xfb\xf2\xd8\xcc\xae\x81\xa6\x02\xa8\x70\x70\xfd\xb2\x01\x2a\xd5\x08\x95\xbf\xc1\x27\x42\xe5\xa9\x35\x44\x64\xd8\xd8\x3c\x24\x0a\xe7\x4a\xb3\xbc\x05\x1c\x57\x83\xeb\x74\xa2\xee\xa7\xba\x7b\x69\x4f\xde\x83\x6b\x15\xef\xeb\x89\x7b\x69\x1c\x5c\x8d\x5f\x73\x95\x5b\x39\xfa\x7b\x93\x6f\x84\x0d\xc6\x3c\xc4\xbc\x38\xa1\x18\x92\xb5\xb7\xa4\xe6\x0d\xda\x98\xae\x54\xab\x0e\xe5\xb6\xc1\xa5\xb7\x00\xc0\xfd\x52\xab\x20\xc8\x7b\xff\x30\xb8\x33\xed\x82\xa8\xff\xbd\x4b\xec\x43\x82\xd5\x7b\x85\x59\x0d\x32\x01\x39\x01\x18\x01\x4e\x0b\x51\x09\x7f\x40\xc8\x1b\x6a\xd6\xd8\xf3\x27\x51\xe5\x56\x41\x6e\x91\x7f\xad\xe2\xb7\xa5\x22\xe4\xd0\x22\xe3\x5a\xc5\xaf\x28\x7e\x43\x9d\xa1\xbf\x08\xae\x1c\x0c\xaa\x26\x48\xad\x1f\xac\xef\xe7\x7e\xa2\x8c\xaf\xc9\x5a\x08\x2d\x34\x34\x8e\xc1\xc1\x83\xe9\x87\x93\x37\x09\x55\xc6\x21\x47\xb4\x66\x33\x2e\xc8\x0b\x70\x72\xa4\xc2\x70\x0a\x0a\x2c\x7f\xc3\x1a\x0c\x63\x8b\x85\xf1\x9e\x02\xfe\x52\x15\xa1\xe6\x22\xc3\xea\x0e\x40\xf7\x7d\xa8\xea\x48\x52\x61\x55\x73\xaf\x1c\xd2\x0f\x5d\xe2\x6d\x55\x47\x37\x82\x92\x87\x34\x70\xbe\xc4\x8c\xde\xaf\xfa\x69\xf0\xc9\x44\xd4\xf9\xe3\x0a\x55\x1c\x28\xe2\xcd\xcb\x84\x77\x5b\xec\x59\x21\x35\xcc\x12\xc7\xff\x80\xa0\xb0\x4a\x52\x33\xb7\xd4\xe2\x9a\xf0\x1c\x19\x27\xcf\xf5\x33\x16\x2c\xc8\x92\xbc\x87\x21\x96\xc6\xa2\xca\x4b\x1a\x01\x78\x83\x9e\xcd\xeb\x2a\x9a\xf8\x3a\xda\xcd\x67\xb2\x48\xc7\x5e\x30\x6e\xd9\xf6\x0d\xf9\xb1\x80\xc6\x92\x36\x2b\x65\xeb\xcb\x65\xf8\xd4\xe5\xf9\x71\x91\xb1\xaa\xb4\x7d\xb9\x8c\xdb\x7f\x42\x74\x68\xb4\x5c\xea\x54\x06\x26\xec\xe5\xe5\x18\x51\x4a\x6e\x19\xb1\x42\xb1\x46\x78\x55\x77\xe4\x2a\xfd\xc4\xd3\xf4\x84\x8d\x18\xbf\x01\x7f\xbd\x39\x04\x62\xde\xf4\xd2\x0c\x59\x73\x8d\x1f\xde\x9f\xbe\x3a\x3c\xb8\x7c\xb4\xe2\xbf\x2b\x63\xea\xb7\x90\x1b\x3b\xca\x0f\xb4\xcb\xc4\x9f\x7a\x70\x4f\x8c\x23\x73\xe3\x49\x4f\xb9\x52\xc6\x4e\x37\xb8\xd5\x23\xd6\x8d\x05\x70\xb6\xa6\x15\x0e\xe9\x19\xe6\x04\x8c\x11\x06\x99\xd1\x8d\x10\xe9\x14\x52\x0d\x8a\x9b\x8c\x4d\x72\xf2\x3a\xc3\x99\xb3\x40\x20\x60\x9e\xc0\x11\xa8\x59\xea\x67\x66\x1b\x3c\x11\x38\x74\x8e\xa5\x99\xce\x1b\x2a\x37\x35\xc0\xe8\x4f\x99\xda\x67\x19\xbf\xb1\x6f\x0e\x33\x39\x3f\xde\xa8\xb5\xd1\x0d\x4c\x6c\x03\x8f\x54\xbe\x31\x60\x47\x63\x4b\xcb\x65\xb3\x71\xfa\x94\xa9\x53\x41\x17\xf9\x4c\xaa\xd7\x6c\x22\x33\xe6\x8e\xd7\x4d\x2c\x4d\xd6\x38\xe0\xef\x64\x21\x54\x73\x68\xe3\xac\xbb\x5e\x12\x1c\x03\x65\x8f\x4c\xe6\xa6\x8f\x3a\x9d\xa6\xdc\xb8\x19\x0b\x8f\x82\xf9\xc8\xcb\x18\xc1\x8d\x7a\x0b\xdb\xc6\xa9\x9a\xb9\x31\xc1\x25\xdb\xaa\x69\x17\x5f\xa3\x5d\x5f\x39\x4f\x36\xf5\xc2\x43\xb8\xcf\xc7\x16\xfa\x2a\xcb\xff\x24\xf4\x10\x2d\x02\x4f\xbc\x25\x39\x15\x7a\x82\xa3\xe6\xd1\x69\xbc\x8d\xcb\xac\xbb\x9d\x4b\xb8\x78\x67\x3c\xed\x98\xb4\x8d\x20\x6e\xef\x29\x88\x4e\x27\xde\xa9\xfa\xf6\xeb\xf7\xcc\x3d\xed\x20\x44\x15\xb6\xa6\x13\x4f\x9e\x07\xf7\xea\xa2\x68\xab\x2e\x3b\x08\xe2\x43\x68\x80\x9b\xaf\x52\xd8\x57\xf0\xd3\xbd\x34\xda\xc9\x13\x36\x01\x61\x11\x64\x26\xb1\x22\xa1\x00\xdc\xf0\x29\xd2\xac\x71\x42\x5e\x67\x43\x9b\x7e\x58\x25\x26\xe5\x84\x4e\x6c\x68\x03\xb3\xa8\x73\x7e\x91\xe8\x7f\x84\xad\x34\x47\x54\xb6\xc2\xb1\x42\xab\x46\x67\x2c\xd0\x41\xe3\xd7\xd0\x60\xca\x44\xf4\x7b\xfa\x44\xf7\x79\xb5\x6e\xb6\x75\xef\x4e\x0d\xe1\x05\x2c\x66\x8d\xb7\xb3\x38\xda\xed\x47\x38\x3a\x37\x23\x63\x7d\x43\x5d\x68\x34\xac\xb9\x89\x52\xd2\x86\x35\xb3\x67\x8b\xa1\x1d\xce\xd6\x2d\x57\xb3\xd6\x35\xbb\xcf\x5b\x0f\xd1\x96\xfd\x4c\x3f\xc6\x0a\x75\xbf\x48\x2e\xe2\x08\xb7\x22\xb4\x15\xad\xa2\x44\x81\xba\xb1\x34\x10\x06\xc4\x95\x07\x9c\xd8\x4d\x29\xe6\x76\xfe\x90\xb3\xf7\x8c\xfb\x30\xae\x6a\xe7\xab\x67\x6b\x70\x61\xbd\xf9\x74\x80\xc5\xfa\xb9\x35\x90\xd6\xbc\x08\x18\x64\x11\x3b\x97\x33\x6d\xb6\xe6\x03\xd1\x43\x33\x40\x9e\x19\xf1\xda\xf7\x41\xa3\x17\x41\x69\x46\xc2\x06\xac\x65\xb7\xad\x77\x74\xe1\x1d\xb3\x0c\x90\x9f\x93\xd7\xec\xde\xdc\xee\x37\xf1\x0e\xb1\x73\x97\x1f\x2b\xab\xc1\x07\x77\x75\xaa\xde\x58\x30\xe8\x7c\xdd\xbd\xb1\x13\x39\x62\xe6\xcd\x4e\xbc\x89\x80\x75\x2f\x16\x70\xde\x71\x55\x87\x6b\x1b\x26\x19\x76\xbe\xd3\x49\xac\x07\xa7\xf4\x23\x3b\x8c\x75\xf7\xad\x81\xc1\x4b\x31\x8c\x03\xaf\xaf\x64\x07\x0b\x94\x64\x28\x59\xcf\x0c\x82\xde\x16\x71\x60\x93\xea\x8f\xd8\x41\x1b\x70\x04\x0d\xbe\xaf\x88\xf5\xf2\xf5\x7b\xd0\x9e\x33\x7c\xe6\xdc\x4e\x0e\x63\x45\x3e\x80\x32\x0a\x0c\x49\x0c\xbb\x60\xcd\x75\xf4\xd0\xe8\x25\xcd\x6d\xd7\xab\x6f\x02\xc6\xb7\xb1\x21\x43\x55\xac\x92\xdc\x05\x0a\xd1\x38\x81\xea\xac\xd5\x84\x9e\x23\x60\x7b\xe1\xc9\x27\x3c\xdb\x46\xc0\x28\x85\x1c\x56\xc1\x7b\xb4\x7c\xc0\x63\x3f\xd2\x7b\xef\x74\x73\xb9\x54\x9b\x1c\x23\x02\x69\xad\xe4\x54\x0b\x57\xb5\xd4\x50\xba\x9a\xa5\x31\xfb\xe7\xd7\x60\x36\x30\xcc\x3d\xbf\x78\x04\xcd\x93\x50\x2a\xb9\xd6\xa7\x7e\x2f\x1c\xd2\xb7\x61\xc3\x9a\x8d\xf9\xe6\x41\x1d\x07\xdb\x59\x83\x81\x6f\xa3\x89\x71\xe9\x62\xf8\x83\x8a\xa3\x68\x4b\x39\x10\x44\xb5\x99\xc1\xdf\xc6\x28\x7a\xd8\x14\xa4\xe8\xb5\x37\x4a\x11\x7a\x62\x84\x2d\x88\x72\x62\x38\x8b\x08\x51\x36\x2a\x6a\x81\x9b\x5a\x30\x3a\x9b\x20\x5c\xf1\x49\xfc\x27\x85\x3b\x60\x9c\xc5\x0a\x95\x3d\x7b\x1b\x7e\x64\x39\x90\x4a\xdf\xec\xee\xd2\xec\x35\x75\xb1\x16\xb9\xc4\xf6\x78\x08\x74\xcd\x7b\x51\x5e\xc7\x78\xa3\x51\xb7\x40\xd5\x05\x67\xe3\x63\x9a\x95\x6f\xa2\x71\xa0\x66\x64\x0b\x8f\x6c\x11\x08\xfc\x37\x23\x1b\xac\xfc\xa0\x01\xb7\xa0\x3f\xc9\xa1\x9d\x91\x66\x2d\x97\x46\x47\x20\x8a\x2f\x89\x82\xe9\x54\x0d\xfb\x65\x85\xa3\x6a\x41\x8b\x79\x61\x30\x2f\x50\x73\x0f\xcb\xb5\x00\x23\x60\x90\x2e\x36\x20\x7d\x56\x13\xe7\xaf\x23\x37\x6b\x42\x6e\x86\x82\xa3\xea\x94\x29\x80\xc9\x88\xa4\xf5\x14\xd0\xf8\x05\x6d\x42\x23\x7e\x33\x8f\xdf\xcc\xe3\x37\xdb\x8c\x5f\xdf\x84\xd3\x59\xe9\x0d\x4f\x24\xf0\xeb\x5a\xcd\x2a\x98\xd7\x10\x64\x75\xcc\xeb\x83\x96\xfe\x22\x49\xcd\x7b\xaf\xec\xf8\xf8\x4d\x2d\x8d\xfc\xd7\x76\x34\x32\x33\x1a\x19\xda\x88\x92\x89\xfb\xa4\x1c\x10\x85\xb3\x0d\x03\x32\x8f\x33\xcc\x71\x81\xf3\xd2\x17\x78\x6a\x36\x5c\x2b\xf3\xd7\xdc\xde\x9c\x70\xd2\xc3\xf7\x15\x09\xe1\xa4\xd3\x99\xbf\x2c\xdc\xdd\xa6\xf9\xd6\x16\x7a\x98\x98\x1d\xf6\xc7\xf9\x30\xbe\x27\x13\x6c\x0c\x46\x51\x72\x4f\x26\x9e\x19\xd0\xf5\xdf\x90\x45\x9c\xe1\x09\x2e\xce\xe7\x17\x38\x47\x81\xf6\xf7\xc6\xab\xb1\x27\xfa\xe0\x47\xee\x9d\xb3\x5d\xd6\xe9\x4c\xfc\xa6\x7b\x13\x6e\xba\x4a\x57\xa5\x8f\x97\x34\xbe\xc1\x1c\xcf\x03\xd1\x79\x4a\x6e\x92\x91\x67\x22\x6e\xf0\x88\xdc\xe0\x09\xb9\xd7\x78\x9c\x13\x42\x8a\x5a\xbc\x5c\x61\x6a\x4a\x03\x78\x26\xd6\x61\x68\xad\xa3\xf1\x84\x8c\xe3\xcc\xc1\x8f\x4c\x20\xb3\x78\xb2\xd6\xfc\x24\x68\x7e\x82\x47\x64\xe2\xed\xa3\x53\x90\xd9\x4e\x88\x84\x36\xd7\xea\xbf\x27\xb3\x78\x82\x33\x3c\x0f\xdb\xf0\xb7\x19\xc9\x7d\x88\x80\x49\xd7\xb0\xeb\x0e\xe6\x7b\x98\x45\xf3\x04\x7e\x0d\x62\xee\xd7\x20\xbb\x0f\x20\xbb\xc7\x23\x8d\xe8\x92\xb7\x99\x78\x37\x8c\x4d\x16\x34\xe0\xb7\x64\x85\x70\x30\x87\xee\x63\x98\x41\x38\x75\x1a\x32\xce\xe2\x1c\x0d\x9a\xce\x59\x23\x73\x44\x78\xaa\x8f\x47\x06\x9e\x38\x27\x23\xc3\xb4\x43\x37\xe1\x6d\x3f\x2a\x75\x75\x13\x62\x27\xe2\x9c\x14\xf8\x9e\x14\xa4\x87\x6f\x6c\x48\x66\xab\x4a\x89\xbd\xff\xc0\x79\xa7\xd3\xbe\xea\x8e\xa5\x60\x83\xfb\xad\xad\xa0\x00\x7a\x98\xdb\xb9\x79\x3f\x8c\x6f\xc8\x1c\xcf\xed\xdc\xbc\x21\xf3\xca\xdc\x9c\x92\x45\xcc\xf1\x1c\x5f\x59\x41\x70\x1a\x4e\xcf\x29\x7a\x98\x2f\x97\xf1\x9c\xdc\x04\xf3\x72\xee\xe7\xe5\xb4\x3a\x2f\x01\xe7\x05\xa1\xf1\x14\x17\xf8\xde\xa3\x7f\x32\x1c\x91\x69\xe2\x57\x04\x99\xe2\x09\x99\xe2\x39\xb9\xd1\xf3\xd2\x00\x5f\xce\x48\xa8\x63\x14\x80\x30\xb7\x33\x72\x43\x37\x1d\xf7\x7b\x45\xc6\x31\x0f\x3a\x61\xd4\x69\x34\xbe\x5a\x03\xe5\x2a\x00\xe5\x0a\x4f\xc8\x95\x9f\x09\x23\x98\xa3\x73\x22\x01\x8a\xbf\x6f\x71\x16\xcf\x31\xc7\xf7\xb5\x56\xcb\x59\x7b\x15\xa2\x67\x5e\x9b\xb5\x57\x30\x6b\xef\x93\x2b\x33\x6b\xbf\x15\x56\xa8\xf1\xd1\x59\xcb\xcd\xac\x1d\xad\xea\x36\x73\x0c\x4b\x4c\x35\xf9\x33\xa4\x6f\x7d\xfb\xa0\xbe\x07\xb4\xd3\xa1\x25\xe1\xf7\xe3\x4e\xc1\x02\x39\x05\xc5\x2f\xad\x6d\x03\xe6\x9c\x3f\x7a\xbc\x5a\x3d\xbe\x23\x17\x91\x8e\x36\xec\x4c\xd6\x01\xf0\xc8\x34\x85\x53\x22\xdd\x8c\x4f\x8d\x4b\xe0\xd4\x6e\xe1\x23\x78\x02\xef\xed\x29\xf0\x9f\x01\xbc\x49\xea\xd2\xd4\x06\xbd\xd3\x9d\x4f\x1d\x46\x11\x96\x84\xc7\x29\x0e\xbe\x18\xd6\x7b\x93\xd8\x0c\x9c\x23\x2c\x4b\x16\x2f\xc5\xd4\x3c\x5b\xc6\x8b\x11\x59\x7a\x21\x8e\x61\x11\x99\xe5\xa2\xe0\x01\xa7\xc4\xb7\xba\x0a\x9b\x8b\xa5\x66\xe9\xea\x8d\x3a\x0e\x2f\xc7\xd4\x4c\x8e\x6a\x4b\x28\x89\x73\xcd\x7e\x52\x5f\x0e\xe1\xbc\x84\x4d\x6a\xd8\xf2\xf0\x8b\xdc\xef\x84\x45\xcc\xca\x3d\xd9\xe2\x38\xb5\xc3\xe9\x78\x1c\x83\x5f\x69\xf1\x9b\xc2\xd3\x13\x73\xc1\x9c\x4e\x3b\x1d\xb9\xe9\xcc\x62\x82\x6c\x84\x39\xd5\xc2\xd5\x03\x0a\x94\xae\x66\x99\xe1\x91\xd5\xe1\x91\x98\x56\x8f\x28\xf9\xa3\x88\x97\x21\xe2\xa5\xae\xc2\xd7\xb7\x92\x9a\xe7\x0e\x91\x56\xad\x27\xc4\xd1\xaa\x91\x51\xa3\x4d\x8c\x1a\x75\xb4\x8b\xc2\x1d\x56\x27\x10\x94\x9d\xce\x33\x87\xb4\x61\xdc\xdc\xb1\x75\x18\x50\x62\x8a\xea\x22\x1f\x1e\x03\x16\x61\x18\x4a\xc3\x20\x51\xcf\x19\xcd\xfd\xe2\x86\xe8\x27\x2c\x78\x75\x5f\x79\x35\xea\x74\x80\x6b\xa5\x08\x37\x5a\xc4\xd2\x4e\xa7\x9d\xa2\x86\x78\xa8\x3b\x2e\x1e\x6a\xee\xc5\xf1\x7a\xff\xda\x89\x70\x5e\x0d\xd7\x9a\xbb\x38\xad\x5e\xe3\x51\x86\x05\x31\x7d\x0c\x24\x3b\x57\x15\x39\xbf\xb5\xaa\x7e\x1a\x58\x55\xf7\xd0\xc0\xf2\xfe\xd1\xfe\xc1\xdb\x83\xb3\x83\xfd\x28\x0c\x24\x42\x54\xe5\xb4\x15\xca\x8f\x4a\xf3\xf2\xc0\x68\x24\x66\x1b\xec\x42\x04\x66\x35\xd9\x15\xab\xc8\xae\xaa\x6f\x83\xbb\xb9\xa2\x7a\x37\x37\xc0\x58\x19\x2c\x56\x95\xe1\xc5\xdd\x89\x22\x56\xa4\xdf\x0e\xdd\x9e\x2d\x97\xa2\xea\x77\xdc\xbf\x5d\x77\x49\x6e\x4e\x23\xca\x18\x22\x86\xb8\x68\xf7\xea\x41\x3a\xcb\xe6\x6c\x04\xbb\x50\x65\xb2\x5c\xee\x56\x60\x78\xb4\xde\x47\x22\x98\xde\x0a\x6b\x64\xfd\x3b\x75\xe2\xd7\x4f\x40\xea\x4b\x67\xb6\x70\xb9\xd3\x22\xcb\x46\x35\x51\xe4\x52\xb3\xf2\x68\xb9\xf4\x2f\xfc\x4d\xe8\x40\xdc\xbd\x83\x7f\x07\x43\x28\x70\x45\xfa\x91\x12\x86\x06\x57\x22\xfe\x48\xf5\xc1\x4b\x3f\xe2\x4f\x94\x1c\xa9\x58\x59\x1b\xc8\xc6\x6f\x75\xb9\x30\xea\x98\x08\xef\xe7\x9a\x46\xbd\x39\x40\xa7\xf3\xb4\xed\xaf\x52\xee\xba\xa4\xb9\x98\x6b\x8b\x42\x75\xe5\x6d\x5f\xd7\x7b\xd6\x26\xe4\x23\xad\x04\x61\x6d\xff\xee\xc9\x04\x34\x0a\xf0\xf4\x70\x70\x15\x50\xd9\xb0\xd4\xbe\xd1\xe5\x32\x9a\x31\x6a\xe2\xb4\x77\x3a\xd1\x95\x1c\xdf\xdb\x74\xfb\xd6\x4a\x01\xc2\x5b\x4a\x08\x22\x47\x01\xc2\xd5\x00\xd9\xf5\x84\x01\xb7\xca\x33\x0d\xa6\xed\x4f\x94\x7c\xa4\xc3\x4b\x15\x0e\xae\x39\xfe\x56\x6e\x07\x1e\x88\x18\x3d\x40\x59\xc3\x7c\x02\x0a\x83\xdb\xc5\x5e\xe5\x70\xed\x34\x95\x75\xfb\x99\xf0\x4a\x71\xa0\xcd\xb4\x97\xc1\x89\x97\xbe\xbf\x06\xf1\x26\xac\x75\x7d\x10\xff\x8d\x42\xf7\xcc\xe5\x2c\x51\x91\xab\x1d\x8b\xaa\x6b\xe4\x8c\x4d\x06\x8e\xa1\x2a\xf9\x2e\xef\x40\xd5\xf8\xf6\xcf\xd8\x04\x24\x0d\x55\x79\xe5\x92\xf4\x77\x5e\x84\x81\xd3\x2a\x76\x77\xb6\x21\xab\xb3\x80\xc0\x59\xcf\x9e\x54\x22\x67\x99\x6b\xca\x9d\x4e\x9b\xa3\xf2\x0e\xf0\xbe\x1e\x99\x76\x1f\xe1\x77\xf6\x7b\x41\x02\xb1\x1d\xfe\x53\x96\x77\xa7\xad\xaf\x27\xee\x42\xa4\x98\xe0\xd6\x41\x9c\x81\x0a\xa8\x98\x77\x3a\xb1\x43\x22\x38\x28\x47\x38\xc4\x23\xc2\xf6\x25\x35\x6f\xaa\x2a\x76\x4b\x29\x83\x7c\x7b\x1d\xd1\x09\x42\x1d\xe4\x3d\x5f\x6b\x70\xbd\xb8\x62\x96\x52\xaa\xd2\x55\xb7\x7a\x13\x64\x68\x2e\xff\xd6\x72\xd7\x32\x80\xd2\x58\x6d\x2b\x4a\x7c\xb2\xd3\xb1\x9f\x3b\xdb\x10\x8d\x45\x63\xca\x51\x8b\x19\x13\x5c\x5c\x16\x75\x81\x96\x9d\x35\x83\xc0\xa6\x0a\x4c\xa7\xfd\xde\x80\x42\x36\xc7\x5d\x63\x0b\x4d\x4d\x77\x12\x3b\xe4\x4b\x59\xbd\x0f\x2b\x1d\xdb\xa6\x3a\x1d\x98\x0f\xbc\x23\x90\xa1\x1e\xbc\xe4\x4e\xf9\xc0\x59\x1d\xf0\xaa\xb5\x37\xf8\x1c\x5e\xb3\xde\xac\xe7\xfc\x98\xa1\x7a\x56\x69\x1f\x41\x3b\x1d\xa8\x86\xae\x55\x53\xcf\xf9\x11\x82\x01\xd7\x73\x49\x86\x7c\x30\x27\xc7\xc8\x2f\x97\xed\xaf\xaf\xd3\x9a\xb4\xae\xd7\xbb\xe2\x84\xbb\xb0\x4e\xc6\x70\xdd\x10\x61\x4e\xa4\x1d\x90\xe0\x66\x5f\x7f\x37\xe1\xc4\x63\x93\x95\x01\x60\x93\x6a\xe1\xd2\xdd\xa2\xcd\x5f\x95\xba\x4d\x8e\x5c\x7b\x44\x9a\x2b\x89\x0d\xe3\xa0\x39\x20\xe3\xf7\xcc\x1a\xd3\xfb\x50\x67\x6e\x37\x94\x84\x7b\xa6\x0c\x3d\xf8\x59\xe2\xea\xc6\xdc\x71\x97\x61\x07\x25\xe1\xc1\x1e\xb2\x57\x33\x8d\x51\x35\x13\x27\x49\x54\xdd\x3c\xa1\xb6\x0a\xb1\xde\x0a\xf4\x14\x29\x2f\x6a\x23\x4d\x6a\xfd\x55\x4c\x1e\x06\xa0\x0b\x6f\x47\xf5\x30\xdc\x80\xf2\xc4\xc6\xb8\x77\xb3\xce\x88\xcc\x3d\xa4\xea\x7a\x97\xee\x6c\xc9\x51\x41\xfa\xbd\xe7\xbb\xcf\x9f\xf4\x5f\xec\xec\x96\x2d\xf9\xd8\x06\xb6\x12\x83\xc4\x32\x0e\x04\x71\x63\x01\x0e\xa4\xe9\xd7\x00\x55\x90\x9e\x09\xb2\xe0\x02\xde\x79\xe8\x72\x62\xfc\xa8\xe9\xd5\x94\x2f\x97\xfd\xef\x75\x46\xff\xfb\x02\x2d\x97\xb9\xf1\x15\x56\xb4\x09\x29\xfe\x8b\x30\xb4\xc0\xd1\x5b\xb3\xbe\xfd\x72\x44\xd3\x51\x91\x52\xc5\xf6\x4a\x03\xb4\xe1\x86\xfc\x38\xc7\x05\x4a\x4a\x0c\x62\x88\x32\x56\x2c\x49\x0f\xfd\xe7\xe0\x1a\x50\xbf\x80\x0c\x13\x17\x81\x60\x39\xfc\xa6\xb0\xdf\xd8\x6d\xb8\x6c\xa3\x81\x82\xdb\x7a\x03\xdb\x00\x06\x86\x41\xba\x54\x79\xf1\xd2\x4a\xa2\x76\x23\x6f\xd4\xe0\x22\xe6\x81\xfd\x91\x59\x9a\x66\xe3\x05\xe5\x65\xcd\xec\xa6\x6e\xa6\x65\x7d\xd5\xb9\x3d\xaa\xe4\xcf\xbd\xde\x98\x95\xe1\xe3\x58\x70\x3d\x5a\xe8\xed\xca\xca\x3c\xbe\xaa\xa1\x4a\xd5\x15\x15\x6a\x89\xb8\x1a\x46\x4e\x42\x7b\x89\xaf\x34\xac\x17\x81\x5e\xa8\xdc\x30\x76\x93\x33\xe1\x43\xa4\x39\xdb\xfe\xf7\xaa\x96\xf5\x24\xc9\x45\x69\xe5\xd4\x10\x08\xad\x46\x20\x61\x6c\x2b\xe2\xeb\x86\xa6\x7b\x49\x39\x9a\x30\x74\x4f\x23\x64\xcd\x34\x94\xbb\x2b\x5e\x23\x3e\x94\x1c\x87\xfc\x20\x25\xa7\x7a\xdb\xa7\x70\x4e\x8e\xb9\x4e\xd4\xd8\x8e\x47\xaf\x47\x37\x1b\x6a\x48\xcb\xca\x74\x3a\xe5\x65\x08\x2f\xe1\x19\xc6\xd4\x01\x07\x5d\x21\x3b\xeb\xcc\x8a\xad\xdd\x19\xe2\x98\x5a\xca\x9c\xa1\xfd\x35\x1c\x2b\x25\xf4\xdb\x0c\xac\x68\xa7\x33\xd1\x63\x41\x8d\x95\x17\x0c\x15\x96\xd6\x76\x27\x23\x1f\x68\xe5\x02\xaa\xc4\xb2\x5b\x75\x74\x01\xd7\x28\x89\xc2\x33\x63\x04\x8c\x19\xb1\x9c\x63\xbb\x87\xb9\xb9\x71\x64\x7a\xd6\xf7\x6b\x13\xad\x31\x5e\x1c\xfb\x25\x85\xb0\xbd\xa5\xe2\x6f\xb9\x70\x87\x21\x51\x1f\xbe\x72\x87\xd0\xf3\xb3\x52\xa5\xe6\x70\x87\xb1\x34\xe3\x8b\xa5\x19\x58\xa9\x7b\xc8\xc1\xdf\x5f\x7d\x60\x2d\x6c\x7c\x1d\x36\x11\xc0\x96\x30\x62\x89\x87\x83\x72\x27\x81\x1d\xc9\xa0\xcd\x71\xde\xa8\xe4\x28\x02\xe4\x39\x7f\xa3\xb5\x4e\xe4\xb6\x7b\x03\x0b\xec\xc0\x88\x21\x77\x5c\xa8\xca\x32\x3c\xf9\xba\x6b\x20\x4a\xd2\xa1\xed\x59\xf2\x3a\xc3\x05\x88\x0a\xf2\xb8\x30\x33\xb7\x71\x1e\x15\x6b\xf3\xc8\xe6\x0c\x8b\x70\x1e\x15\x9b\x66\x40\x81\x8b\x0d\x33\x20\xed\x74\xe2\xb4\xc2\xdf\xa7\xdf\xe4\xf3\x47\x6e\x2e\xdf\xe0\xf3\x87\x22\x3f\xe5\x24\x69\xdb\x3d\xd5\xe1\x12\xd8\x8c\x00\x8e\x06\x1e\xa3\x36\x0a\xd2\x5a\x47\xa6\x56\x5c\x2b\x1d\xa2\x07\x85\x9d\x43\x85\x99\x43\x85\x19\xa0\x09\xc9\x37\xae\xb3\x41\x9c\x37\x6e\xaa\x93\x66\xbb\x43\xb9\xc9\xee\x10\x35\x1b\x1e\xca\xaf\xb0\x46\x6d\xfe\x6e\xe3\x07\xcb\x65\x0c\x1c\xf5\x72\x39\x02\x16\xa3\xd3\x59\x68\xdc\x4a\x4c\x71\x81\x30\xdc\xb8\x82\x5e\x8f\x49\x6d\x56\x0d\x46\x8e\x0c\x11\xb3\x19\x2e\x88\xaa\x5c\x16\xb4\xb3\x6e\x61\xec\xff\x14\x5e\xe8\x13\x99\x1e\xb4\x51\xbd\x2a\x84\x2d\x08\x7a\x0f\x1e\x2d\x97\xe1\xe2\x7e\x47\x87\x71\x23\x46\x8d\x75\xa8\xc2\x13\x3d\xe3\x1b\xaa\x8c\x53\xf2\x4e\x57\xa9\xcb\xa4\x98\xe2\x31\x1e\xe1\x02\xa1\x61\x9c\x7f\x0b\x6e\x1f\x31\xea\x94\xcd\x46\x9d\xcd\xe3\xdc\x54\x69\x53\xee\x06\x53\xce\x47\x81\x7b\xe4\x65\xbc\xc1\xa8\x52\x36\x1a\x55\xaa\xaa\x51\x25\x4a\xfe\xae\x33\x9b\xbf\x5d\xa3\xa5\x74\x8d\x2a\x8d\x90\x5f\x7a\x14\xbb\xa9\x34\xc2\x7e\xf9\x69\xc6\x8e\xa4\xff\x11\x10\x92\xb4\xfb\x96\x89\xdc\x40\x1f\xe8\x1a\x7d\x48\x37\xd1\x07\x8a\x03\xda\x80\xd7\x68\x03\x7e\x8c\x2e\xe0\xff\x3f\xd2\x05\xda\x26\x24\x5d\xa3\x0b\xa9\xa7\x0b\xeb\xab\x0e\x8f\x49\x39\x90\x35\x7a\x80\xd7\xe9\x41\x6a\xe8\xc1\x1a\x69\x41\x38\x68\x7a\xfc\xcd\xf4\x20\x6d\xac\x32\x9e\x94\xf4\x80\xe2\x14\x8f\xf0\xf8\x1f\xd0\x03\x77\xe5\xec\x2b\xb0\xe9\x2c\xc8\xbf\x86\x22\xb8\x6a\x1b\xb3\xe3\x14\x40\xfd\x06\xc2\x50\x56\xb7\xf9\xad\xad\xf5\x6b\xe8\x43\x70\xcf\xae\xba\xbe\xbe\x69\xee\xd6\xbf\xdf\x79\xfa\xac\x4a\x62\x1a\x31\xe9\x9b\x5f\x2e\x29\x08\x49\x2a\xab\xb5\xd3\x19\x55\x32\x61\xac\x97\xcb\x47\x00\x6d\xff\x3d\xa0\xff\xbc\x25\xdd\xa5\x35\xca\x97\xae\x51\xbe\x71\x49\xf9\x52\x4f\xf9\xc6\x35\xca\x37\xf9\xbf\x11\x37\x40\x90\xdd\x99\xcb\x9e\x16\x24\x1c\x16\xdc\xfd\x74\xe7\x38\x13\x8e\xf4\xbc\x99\x84\x80\x97\x86\x3a\xe9\xf1\x36\x7c\x72\x28\xbb\xcc\x28\x53\xad\x3b\x21\x01\x11\x4a\x6a\x64\xdd\x48\xd9\x11\x8e\x79\xbd\x2a\xf7\x35\x02\xbb\xb8\xf8\x40\xc4\xfa\x6c\x63\xb9\x7f\x94\xc4\xd5\x1d\x24\x96\xc4\xcb\xdd\xbd\x37\x06\x2b\x48\x40\x7a\x09\x5a\x8f\x40\xa8\xd3\x89\xad\x62\x66\xe3\xd9\x17\x7f\xa4\x44\x61\x49\x40\x27\x82\xb0\x1c\xd6\x50\xe8\x05\xdd\xa5\x9e\xc0\x1e\xb4\x00\x48\x7f\x92\x41\xc1\xc1\xc5\xbd\x2c\x7b\xe0\x0e\x30\x4f\x1d\xb2\x0b\x11\xbf\x2d\x25\x6e\x98\x93\x42\xc4\xaf\x82\x0c\x49\x28\x78\x91\x30\xa6\x03\x98\x5b\x59\xb2\xb9\x4b\xa8\xf4\x91\xc8\xdc\xc3\x93\x50\x7b\xa9\x84\xb8\xf5\x83\x08\x3b\xef\x3a\x2f\xbe\x26\x12\xa4\x6e\x10\xd9\xb0\x36\xc7\xcc\x50\x86\x3b\x01\x8c\xf5\x72\x19\xc7\x29\xe9\x77\x14\x68\x87\x3b\x9d\x76\x5b\x76\x67\x7c\x3c\x66\x4e\xc9\x51\x95\xcf\x96\x72\x2a\xa4\x0f\x2d\xe5\x23\x04\x31\x1d\xc6\x69\x20\xa2\xc2\xb7\xba\xd3\x12\x0d\x8d\x4d\x5c\x42\x3b\x1d\xc8\xa1\xeb\xea\x93\x67\x08\x5b\x35\x09\x2e\xab\x34\xae\x20\x4a\xd0\x1c\x60\xc3\xc7\xc0\x5a\xa3\x1e\x12\xdb\x8b\xc6\x49\x6c\x87\x37\x5d\x27\x31\xb2\x32\xde\x6b\x27\xd5\x8a\xee\x33\x1c\x9a\x7a\x3d\x0d\x4b\xc4\x9e\xc8\x2b\x55\x38\x49\x8e\xcd\xfa\x1b\x81\xce\xba\xec\xe5\xf1\xc3\x3b\xf7\xce\x02\xd8\xd0\xcd\xf7\xdf\x2a\xf3\x3d\xd9\x7c\x64\xe7\x8f\x1e\xd9\xfb\x4f\xea\x92\x05\x2b\xa1\x59\x17\x30\x48\xa3\x53\xfb\x3b\x41\xc3\x72\x29\xdb\x84\xc4\xc1\xac\xcd\x98\xf5\x90\x37\x8c\xbd\xc4\xe1\x9f\x8a\x18\xfa\xbd\xd2\xca\xfa\x5b\x05\x20\x5e\x2b\xf9\xad\x6d\xf6\x37\xb5\x59\xae\x8c\xb0\x71\x51\x7a\x3d\xf9\xaf\x82\xf1\x74\x63\xd7\xeb\x15\xe9\x76\xfc\xf7\x7e\x99\x88\x8a\x1c\x78\x73\xd3\xbe\x41\xbf\xf7\x78\x45\xc6\xc0\x29\xc2\x58\xc2\x27\xb1\x97\x25\xae\x49\x10\xd6\x09\x1b\x27\xb2\x76\x11\xbd\x80\x9c\xe0\xca\x7a\x88\x43\x90\xc5\x18\x8a\x46\x4d\xa0\xd2\xb5\xd3\x53\x4e\x68\xb7\x10\x39\x44\xec\xb8\x94\x57\x39\xcb\x6e\x6c\x45\x5e\x9a\x93\x7b\x79\xa4\xe6\xde\xf3\x0a\xb1\x0b\xe5\x38\x39\x06\xad\x5d\xd1\xc9\x11\xfa\x62\x98\xfa\x42\xf7\xd6\xe9\x05\x40\x1d\x86\x1e\x3c\x4a\x83\xa8\xf2\x34\x08\x16\x4c\x44\xcc\x37\x09\xd3\x44\xb0\x03\x59\x2b\x04\x5f\x9b\x33\x69\xa8\xb8\x80\x7c\xfa\x2c\x0a\xad\x60\xde\x83\xa6\xb5\x7a\xc9\x2f\xf0\xd6\x5b\xd3\x7d\x87\x83\x31\x68\x10\x0f\xf7\xd7\x89\xd7\x8e\xcb\xfa\xe2\xc5\x77\x8e\x03\x49\x81\x34\xee\x79\x81\x5c\x65\xbb\x77\xd0\xcb\x9a\x2e\x17\x54\xab\x8e\x7d\xab\xbf\xc4\xf5\x8c\xc0\xd1\x47\x3b\x54\xd7\x5b\xb6\x61\xb9\x8c\x8f\x2c\x7d\xf6\x08\xe8\x90\xed\x5d\x84\xff\xa2\x55\x68\x9f\x26\x23\x61\xa4\x9c\xd5\x3d\x7c\xe0\x3c\xdd\x38\x63\x8a\x7a\x53\x6b\xc2\x49\xba\xe6\xec\xb5\xa8\xb0\x39\x79\x8d\x29\x18\x14\x64\xae\xe2\x02\x73\x4c\x31\xd0\xb8\x9f\x29\x8c\xbc\xcf\xc1\x39\xc2\xce\xe2\xc0\xde\x58\x6c\x30\x3a\x70\x5a\xd8\x76\xe5\x0a\x45\x55\x7a\x6a\x3d\x66\x3f\xb3\xea\x18\xe3\xef\xb5\xc6\xa2\x00\xbe\x50\xd5\xc6\x80\x87\x0b\xb6\xda\x37\x71\x2e\xe5\x05\x51\x58\x9c\x73\x79\x41\x28\x96\xe4\x46\xc5\x02\x40\x67\x46\x44\x1c\xba\x6a\x92\x81\x29\xdb\x7b\xd0\x71\x00\xd8\x8c\x8c\x35\x3f\x20\xc0\x79\x33\x66\xb6\x4a\x06\x55\x8a\x01\x83\x38\x20\xd4\xeb\x8b\xbc\xc1\x27\x2c\xf0\xa7\xc6\x14\x93\x4e\x97\xcb\x67\x2e\x89\x58\x97\x2e\xf4\x44\x31\xf1\x28\x69\x30\x44\x7e\x6d\x3e\x69\xdb\xc2\xa5\x05\xa9\x53\x4d\xd9\x84\xd3\x00\x51\x50\x08\x98\xb6\xf5\xc4\xe4\xa2\x60\x2b\x3e\x89\x29\xf8\x7f\x37\x4a\x16\x7f\x5b\x10\x40\xf0\x3a\xa8\x50\x2d\x6e\xab\x5b\x2e\x5d\xaa\xfc\xbc\xc5\x06\xd4\x17\x58\xf9\xef\x3d\x00\x4e\x77\x4c\xcb\xba\x57\x10\x9c\x92\x9b\x19\x33\x05\xec\x21\x8b\xd3\x9a\xb7\x4b\x51\xb9\x06\xdb\x30\x73\xd6\x96\xf4\x33\xf0\x59\xd5\x34\xc1\x7f\x32\x53\xb3\x3e\xc1\x45\x69\x04\xb0\x7e\x9f\xf5\x1b\xe6\x63\x7d\xf1\xe1\xa6\xb9\x39\xac\x1d\x1b\xc4\x3a\x33\x6c\x27\xd0\x95\x8a\x65\x89\x16\x38\x6f\x2c\x4c\xa4\x22\x5f\xa4\xa2\x97\x69\x40\x45\xff\x49\xe2\xd8\x36\xc7\x47\xb8\xbd\xbd\xbe\xb9\xae\xb3\x73\x86\xfe\xd5\x29\x4d\xb9\x3d\x52\x51\x7b\xb3\xb3\x5e\x59\x0f\x88\xfa\xb3\xe7\x11\x7a\x8c\xca\xbf\xa9\xd1\x71\xe3\x15\x66\x10\x62\x7c\x74\x5d\xda\x32\x75\x3a\x05\x8b\x85\x27\x9b\xa2\xd3\xa1\xf0\xac\x5c\x64\xf8\x80\xa0\x06\xce\xff\xa9\x89\xf5\x9b\xdd\x3f\xc0\x3d\x48\x17\xdf\x0a\x7c\x50\x1c\x64\x99\xcc\xde\xca\xe9\x94\x8b\xe9\x72\x39\x92\x22\x97\x29\xeb\x42\x40\x9d\x8a\x03\x55\x13\xe5\xf0\x6b\xbf\x64\x61\x27\x5f\x55\x8c\x86\x32\x36\x09\xc8\x31\x04\x00\x6f\xbc\xe2\x8d\x00\x5e\x28\xe7\xc0\x50\xe8\xe1\xd7\x50\x2d\xae\xbc\x05\x95\xa8\xdc\xea\x39\x14\x41\xe8\xf8\xa6\xca\x7f\x57\x9d\x0e\x78\x29\xc5\x55\x73\x56\x80\xb4\xc1\x23\xff\x26\x18\x6b\xb2\x2a\xe3\x4f\xd5\x00\x6e\xa5\x1b\xf5\x15\xa7\x36\xb8\x9f\x68\xae\x2a\x6e\xe8\x79\xa0\x1c\x7e\x6a\x01\xae\x28\x97\xff\x14\x55\xec\xbf\x0d\x6f\x02\x3c\x25\xde\xa2\x70\xb7\x4c\x3e\x71\xc9\xc0\xcf\xb3\x61\x3f\x12\x7f\x2d\x4a\xad\x59\x45\x2a\x43\x26\xdf\xc2\x1a\xf5\x36\x9d\x8e\x53\x52\xc4\xdd\x45\x5c\xc1\x42\x80\x2b\x2f\xce\x95\xb5\x65\x2a\x9c\x07\x81\x06\x37\x7f\x4f\x13\x15\xba\x0f\x00\xb1\x49\xd8\xcf\xdd\xc4\x76\xb7\x52\xac\xe6\xe5\x59\x96\x01\xa2\xc3\x35\xf8\xac\x1f\xa1\x55\xff\x59\x27\x30\x0d\xee\x74\xe2\x42\xc5\x70\x03\x3e\xb4\x18\xee\x90\xed\xfe\x73\x34\x60\x89\x82\xad\x4c\x10\x36\x18\xd8\x2b\x28\x76\x89\x8a\xc6\x3d\x43\xf8\x3d\xe3\xad\x88\xdd\x03\x02\x17\x0a\xde\xf6\x08\xb8\x49\xf7\x0e\x2e\x9b\x88\xfa\xfe\xe1\xde\x86\x66\x10\x83\xa7\xa5\xab\x85\x67\x2e\x69\x1a\xdf\x09\x7b\x84\xdc\x8e\xd7\x52\x83\x10\x30\xcb\x5e\x3d\x21\xf6\xd3\xb0\x9c\xa8\xee\x9f\xa6\x5d\x6f\x6e\xd5\xae\x35\x60\x3c\x42\x94\x8b\xc4\xf5\x6a\x55\xfa\x19\x04\x74\xd9\xbd\x9e\x97\x7b\x3d\x24\x41\x4f\xac\xff\x49\x1f\x62\x0e\x17\x84\x57\x18\x2e\x31\x78\x01\x3b\xb0\x37\x46\xa6\x81\xcb\xa4\x2e\x17\x39\xcb\xac\x6c\x2e\x2e\x70\x8e\x12\xba\x9e\xe7\x28\x45\xe5\x45\xd8\x8a\x63\xfb\x25\x98\x23\xd4\x40\xf8\x86\xe6\xa9\x6e\x3e\xe4\x5e\x0a\x84\x12\x55\xc9\xe1\x9b\xf8\x19\x5e\xe1\x67\xb8\xe3\x67\x78\x75\x3c\x38\xe6\xee\x5d\x85\x9f\x31\x86\x6d\xeb\xfc\x0c\x6f\x9c\x9b\xdc\xcf\x4d\x5e\xf2\x33\xee\xd2\xd5\x20\x34\xde\xab\x4f\xc7\xc0\x14\xce\xbf\x0b\x08\xcd\x9f\xde\x82\xda\xd2\x0b\x2c\x48\xbb\x8f\x9d\x9f\x10\xcc\xdd\x72\x37\xe0\xb4\x85\x9e\x40\x8e\x48\x58\x66\x71\x50\x5a\x62\xba\x19\x6b\x79\x0d\xa0\x1f\x15\x02\x51\xf1\x2f\x82\xb9\x27\x10\x2d\x56\x23\x11\xf2\x11\x12\xc1\x3d\x89\xa8\xae\x47\x41\xda\xbd\x95\x9d\xb9\xaa\x9c\xb9\xf6\x4c\x65\x80\x2d\x67\x2d\x1d\x0c\xf4\x4c\x3e\x14\x71\xe1\x37\xe7\xc2\x59\x52\x3d\x81\x07\xfd\x5d\x51\x1d\xcf\x02\x17\xae\x94\x67\xc3\x0a\x38\x79\xae\x8f\x65\xd1\x38\x96\x85\x1f\xcb\xa2\x1c\x4b\xea\x79\xd3\xc2\x17\x58\x15\xf5\xc1\x74\x6f\x00\x06\x37\x98\x5c\xaf\x01\x59\x3b\xf7\x3c\xb6\x06\xc2\xe8\xf1\x85\x5e\x00\xd5\x0c\x04\xce\x55\xca\x9c\x90\x25\xf5\x46\x78\x4f\x1c\x5e\x87\x15\xfe\xb0\x3a\x50\xc9\xa1\xe7\xb9\x42\x63\x34\x55\xc5\xa8\x02\x4e\x68\x7d\x85\xa8\x0d\x2b\x44\x35\x62\x55\x79\xac\xaa\x86\x15\x52\x6e\x6c\xf8\x49\x69\xa6\x12\x0b\x50\xb4\xaa\x3a\x9a\x7d\xd9\xc0\x27\x48\xb0\x66\x7e\xab\x5e\x15\x51\x15\x6e\xa4\xb2\xd3\x7b\x0e\xb1\x12\x97\xc7\xc4\x98\x74\x16\xcf\x35\x7e\x7a\xc0\x36\xcb\x92\x65\xe5\x7c\x0c\xe7\xc3\xd0\x72\xa1\x7a\xfa\xf3\x57\x6f\xac\xe1\xb1\x39\x33\x4a\x7c\xaf\x99\x72\x8a\x39\x9c\x18\x2b\x9c\xc9\xb3\x64\xe3\xa1\x61\x27\xaa\x1c\x74\xca\x00\x77\x6b\xe0\xaf\x6f\xf7\xfd\xa7\x9e\xab\x6f\xd8\xd6\x77\x2b\xac\xf5\x6b\x6f\xd6\x27\xc8\x4f\x0a\xb8\x66\x30\xc5\xda\xc5\xde\xa7\x2f\x79\x08\xb5\x24\xab\x81\xb3\xda\x35\x56\xa9\xde\x3f\x80\x77\xf8\xe8\x6f\x4d\xa2\x87\x59\x16\x67\x08\x5b\xf6\x7d\x85\x83\xdb\x3f\x1f\x37\xb5\xdb\x10\xbb\xac\x7a\x21\x27\xdb\x14\x37\x3a\x54\x77\xed\x69\x7e\x50\x8f\x41\x23\x58\x16\xeb\x69\x31\x4c\x8d\x3d\xd4\x29\x53\xf1\xb9\x9a\xf1\xfc\x02\x25\x69\xd1\xa5\xe3\x71\xac\x9f\x4a\x7f\x87\xe6\xd8\x90\xb9\xb3\xc6\xe0\x8d\xbb\x2d\x02\x81\x93\xea\x0d\xc7\x02\x3f\xf8\xcc\x53\xe5\x9c\xb5\x83\xe3\x9f\x2c\x89\xa2\x15\x5a\xa1\x10\x19\x9f\x6a\x4e\xf8\x44\x78\x88\x7d\xda\xdf\xc1\xa2\x1a\xb8\xa7\xee\x2b\x14\x67\x24\x33\x6e\x3f\x31\x23\x6a\x30\x96\x4d\x97\xaa\xfc\xb9\xac\x22\x2d\xeb\xf7\x76\x9e\xe0\x8c\xc0\x34\xc8\x30\x47\x46\x4a\x08\xde\xbd\x33\x1f\x89\x06\x2c\xd8\x14\xc9\x70\x35\xba\x18\x58\xf0\x3e\x7b\x12\x3a\x86\x46\xe1\x29\xac\xd9\xe3\x5a\xe3\x30\xb9\x01\x59\x2e\xdb\x29\x44\x7c\x8e\x05\x6a\xbe\xd4\x64\x01\xfe\xe8\x25\xe5\x55\x80\x57\xe5\x65\xa3\xd5\xed\x8c\xa7\xcc\x4b\xb4\xc2\xd0\x0b\xe1\xc9\xa7\x7a\xb6\x81\xc8\x6e\xfe\x6c\xe3\xdb\x75\x73\x50\xb7\xde\x81\xcb\x70\x75\xef\xd8\x6a\xf9\xec\x09\x66\xa1\xf3\x8c\xdd\xe0\xa0\xcc\x40\x50\xc8\x20\x72\x79\xf9\x29\xfe\x96\xea\xfc\x51\x1c\xbc\x51\x36\xea\x5c\xfe\x79\xe5\x4f\xaa\xb0\x6e\x38\xce\xbb\x37\xd5\x0b\x6d\xc6\xda\x36\x88\x55\xa1\x97\x58\x70\x76\x2d\x90\x63\x03\x18\x51\x45\xfd\xd2\xd8\xc0\x9f\x79\x9b\x24\xb2\x30\x20\x55\xc3\xe0\xaa\xe0\xb5\x42\xfd\x47\x75\xbb\xe2\x27\xa6\x6c\xcd\x54\x18\x04\x13\xe1\x44\x11\x85\x5d\x46\x05\xe9\x61\x59\x90\xed\x3e\xe6\x85\xe6\xca\x94\x7d\x91\x17\x95\x8b\x5c\x3f\x7b\x1e\x6e\x50\x82\x5f\x5e\x5e\x81\x65\x62\x37\xb4\x2c\xb0\xd9\xb6\x86\xd3\xf1\xd3\xfe\x4e\x65\xcd\xa0\x07\x45\xf6\x85\x71\xc8\x51\x38\x59\x32\xec\x5c\x15\xbd\x63\x56\x2c\x97\x15\xad\x61\x3d\x8e\x93\x01\x85\x13\x7f\x54\x94\x95\xe5\x6f\x11\xea\x42\x5c\x35\x98\xe0\x19\x2f\xdb\xf5\xcb\x2a\x68\x65\x04\x94\x72\x4d\x40\xd9\x6b\xaf\x5f\x83\xb1\x37\x6e\xf8\x72\xc9\x7f\x5c\xab\xa9\xb9\xfe\x50\xf0\x37\x58\x0b\x4e\xc5\x57\xa1\x1c\xc4\xcd\xf4\x40\x38\x22\x8c\xd3\x53\x40\xab\xa8\x90\xa2\xf2\x3c\x17\x90\x4f\xd8\x15\xaa\x17\x54\x83\x27\xd4\x74\xf9\xb5\xf4\x27\x2d\x6a\xb9\x1b\xee\xc4\xd6\xab\x0c\x09\x76\x58\x31\xc2\xfd\x97\xac\x72\xbe\x6e\x68\x67\xb8\xb1\x95\xa4\xd6\x91\x5a\x43\xc8\x77\xc6\xbb\xc6\xc9\xc2\x53\x2e\x7a\xd0\xf3\xba\xe7\xdc\x54\x10\xb1\x0a\xef\x3a\x19\x7f\x88\xbf\x83\x47\xc6\x42\x4f\xcc\x26\x7a\xdc\x21\x4f\xfb\x7d\xcc\xaa\xa3\x11\xff\xdd\x76\x55\xdf\xdf\xfe\x0e\x4e\xb3\x7c\x35\x80\xcd\xfe\x69\x7e\x0a\x44\x67\x27\x22\x0e\x97\xa2\x59\x52\x35\x11\x2d\x44\x59\x80\x45\x8c\xc2\x0b\x86\x00\x5b\xe0\x90\xed\x3b\xcf\xa3\xb0\x02\xd8\xb2\x9d\x27\xbb\x11\xc2\x4c\x23\x0d\x2b\x58\x91\x9d\x0e\xf8\x4a\x2b\x4a\x57\x58\xc5\x72\x19\x6b\x0a\x88\x45\x41\x74\xe3\x44\x59\x8a\xa2\x0a\xf2\x4a\xc5\xa2\x28\x9d\x40\x1b\x92\x83\xca\xdb\x1a\x4d\xd1\xa5\x48\xcf\x51\x84\x76\x1f\xb8\x72\x4d\x99\xc4\x72\x99\x15\x2f\xc9\xaf\xfa\x44\x05\xd1\x9c\x40\x4a\x10\xfa\xf4\x53\x45\xa7\xd3\x5e\x64\x31\x1a\x20\x55\x90\x9f\x44\xac\x0a\x54\x5e\xfb\x2a\x4b\x05\xaf\x4b\x21\x5a\xc0\xe4\x17\x48\xea\xde\xce\x32\xaf\xcd\xf0\x6f\x0c\x4a\x9e\xf7\x41\x64\xa5\x0a\xcb\x2a\xbb\xb3\x61\x30\x80\x1c\x3d\x04\x95\x98\xd9\xf6\x49\x58\xf9\xbe\x32\xb3\x0b\xff\x42\x91\x46\xd1\xcf\x22\x16\x68\xb5\xf2\xf7\xce\x18\xd0\x61\x59\xf1\x5d\x58\x01\x4f\x03\x9b\x17\xe5\xd4\x7c\x0c\x95\x41\x24\xde\xf0\xaa\xa1\xed\x09\xf0\xdc\xbd\x97\x44\x16\x9d\x4e\xce\x94\xfe\x42\x16\x41\x84\xa8\x92\xd2\xbb\x3a\x6a\xf1\x0b\x7a\xd6\xf9\xb9\x71\xc1\xbc\x21\xac\xd7\x72\xb9\xf1\xd5\x4b\x85\x3a\x1d\x99\x59\x66\x59\x16\x08\xcf\xb3\x78\x53\x6b\x1b\x5c\x35\xfd\x1a\x8a\xca\x07\x56\x32\xa9\xa7\x6f\xbb\x70\xdd\x84\xeb\x4a\x6b\x72\x4a\x31\x68\x0c\x24\x62\xf6\x8b\x8a\x6c\x60\x93\x9c\x57\x6c\xf4\xdd\x0b\x6c\xde\x26\x0b\xd6\xaf\xe4\x07\x25\x42\xe8\x81\x69\x3e\x57\x19\xcf\xe8\x1f\x45\x2c\x30\xc3\x7d\x84\x7f\x55\x2e\xf5\x87\xce\xeb\x97\x22\x54\x2f\xb3\xa8\xf0\x0f\x61\x2d\xaf\xbf\xa5\x96\x40\xf2\xb1\x5b\xea\x0d\x62\xe1\xeb\x13\x86\x91\x16\xb6\x3e\x9b\xfa\x43\xe7\xf5\x51\x20\xd9\x75\x43\x17\xc4\xd3\x71\xf3\x8b\x91\x9d\xad\x9d\xa7\xff\x13\xf7\xb7\xe2\x98\x65\x31\xda\xde\xd9\x7a\xda\xeb\xa1\xef\x77\x9e\x2e\x7b\xa8\x54\x8a\xbf\x24\x9f\x29\x04\x50\xfe\x4c\xb7\xfa\x08\x7f\xae\xdc\xab\xff\x2c\xaa\xe1\xd1\xe1\x36\xf6\x1f\x74\xf8\x07\x4d\x58\x31\x2c\x8a\x61\x3f\xc9\x8a\xc4\x59\x1c\x0d\xef\x8a\xe1\xce\x56\xbf\x67\xdb\xdc\xde\xd9\xea\x3f\x45\xdf\xf7\x7b\xba\xbd\x24\x00\xa6\x0a\x49\xd2\xc7\x77\x85\x9d\xec\x37\xc5\x72\xc9\x7e\xbc\x29\xf4\x96\x7b\x53\x10\x56\x71\x2e\xff\x87\x28\x7d\x86\x86\x5c\x1f\x9f\xc4\x5f\x1b\x38\x4a\x35\x06\x8e\x0a\xf7\xea\xd0\xc3\xa6\xa9\xd4\xe7\x34\x54\xbf\xe9\x9d\x6b\x68\xd3\x7b\x12\x5c\xe0\x71\xe2\x6a\xdd\x0f\xef\xeb\xc0\xee\x54\xeb\xd1\x81\xdb\x7a\x09\xea\x51\xd0\x5b\x86\x7a\xa9\xff\xeb\x4d\x62\xe0\x16\xd7\x06\x8a\xe2\x17\xae\x28\x88\x31\x22\xca\x8c\x82\xef\xb4\xf8\xf1\xd8\xac\xe7\xfe\x8b\xa7\x51\x85\x99\x0d\xe2\xe2\x64\xb1\x9f\x03\xbf\x50\x72\x49\x63\xb4\xfd\x1d\xc5\xbf\x52\xb2\xb3\x15\xff\x42\xcd\x10\x07\xc1\x39\xb2\x72\x17\xfd\x83\x0e\xfe\xa0\x8f\xcf\xc4\x4a\x10\x41\xb4\x9a\x70\x41\xd3\xf4\xfe\xe1\x0f\x4a\x54\xe8\x80\x36\x0b\x7d\x04\x98\x2d\xc2\x54\xde\xaf\xd6\xe0\xca\x84\x15\x85\xb7\x86\xb3\xcc\xfa\x8a\xd0\x58\x1c\x1b\xba\xcf\x7e\x1c\x3b\xca\xef\x6f\x91\x14\x9d\xce\x01\x8d\x17\x05\x5a\xd9\xd0\x83\xa6\xd7\x83\xb1\xde\x8e\x17\x05\x39\xa2\x31\xcd\xf0\x83\x32\xd4\x3d\xd1\xd3\x9e\x6d\xef\xa0\x6d\xb5\x0a\x50\x61\x89\x70\xb0\x11\xda\xd0\xf2\x61\xf0\x45\xb4\x91\x90\x13\xe5\x3d\x52\x15\xc3\x78\x54\x90\x49\x01\xe1\x7b\xd7\xaa\x20\x0c\x25\xf1\x44\xbf\x6f\x7a\x87\x1b\xb3\x47\x76\x23\xf7\x1e\xde\x37\x00\x31\x80\x85\x20\x96\x4b\xf5\xd2\x06\x5e\xdb\x08\x2d\x5a\xcd\x34\xdb\x72\x54\x0c\x0f\xf4\x92\x9e\x6b\x68\xef\x0b\xd2\xc7\x13\x8d\x87\x3e\x6e\xf7\xf5\x7a\x87\xb8\x04\x45\x16\xa3\x24\xd3\x1b\x79\x80\x2e\x9e\x79\xe2\xa5\x19\xa3\x70\x93\x6e\x6b\x1c\xf8\x03\xa0\x20\x93\x02\x4b\x32\x2a\x42\x9f\x02\x66\x52\xc8\x8d\xfd\x70\xae\x00\x0c\xc9\x70\x4c\xa1\x37\xa1\x9d\x14\xc8\x32\x67\x4f\xc0\x9d\xb6\x3e\x17\xad\x8f\xd5\x83\x19\x85\x86\x57\xb5\x8b\xee\xba\x82\x51\x81\x46\x05\xe1\x4d\xa5\x9b\xc7\x84\xe3\x8d\x15\x3b\x96\x5a\x1a\x50\x1f\x26\x05\x11\x9b\x06\x76\x73\x2d\x06\x3c\xd1\xf0\xba\x09\xc6\x4d\xd5\xac\x34\xa9\x59\x7b\xe5\xb9\x7e\x43\x39\x97\x4b\xfe\xd2\x38\x63\x27\x1c\x2b\x22\x0d\x4e\x27\x85\xa5\x6d\x82\x48\x70\x11\xb5\x5e\xcd\x4a\x90\x79\x11\x28\xdd\x85\x61\xb5\xfb\x60\xa0\x79\x5a\x6c\x6d\x25\xa7\xfa\x7c\x3d\xd7\x2c\xf1\x7d\x11\xee\x57\x14\xd6\x76\x9e\xc5\x3d\xdc\xee\x55\x22\x6f\xe8\xe9\xa6\x5f\xe8\x39\x58\x8f\x74\x90\x67\xc1\x8d\xe4\x4b\x8d\x56\x3d\x0f\xb1\xaa\xf0\xc1\x73\x4b\x77\xef\xdd\x5e\xa5\x37\x80\x1f\xc9\x3d\xec\x55\xed\x2b\xbd\x71\x65\x31\x82\x8c\x01\xd2\x49\x3d\xe7\xe7\x05\xbe\x2f\x70\xfb\xaa\x40\x50\xe5\x3a\xdf\xbc\xb9\xd6\x01\x2a\xbf\xef\xdb\xcf\xed\x47\x97\xba\xf0\x58\xa3\x60\x51\x58\xc3\x2e\x57\x47\x96\xc5\xf7\x05\xc2\x97\x56\xdc\x70\x05\x4c\xef\x28\x8b\x43\xa7\xcd\x96\x24\xcd\x2c\x1b\x07\xb7\xce\xdd\x4a\x55\x66\xa5\x1a\x17\x20\x1a\x67\xb5\x8f\xf5\x93\xc6\x12\x0c\x80\x05\xe7\xba\x70\x6b\xf6\xba\x18\x5c\x9b\x96\x07\xa5\x5e\xaa\x37\x50\x2f\x99\x73\x38\xa9\xb6\xb6\x7c\x44\x89\x73\x75\x01\x94\x5b\x74\x2f\x21\x4e\xea\x02\x5c\xf4\x05\x36\x10\x53\x4d\x4b\xa6\x70\x48\xba\xd5\xcc\xc0\x6a\xa5\xd7\xd5\xb4\x40\x6a\x96\xc9\xdb\x16\x23\xb7\x85\x7e\x01\x3d\x9d\x42\x4f\x83\xa9\x30\xf1\x83\xea\x3a\xfa\xe4\x69\x84\xf0\x0c\xaa\x13\xc3\x58\xc0\xd9\xba\x8c\xb6\xeb\xe7\xdb\x70\x9c\x01\xbf\xa5\x90\x93\xb5\xc6\x82\x7c\xe7\xee\x19\x83\x9b\x41\x7d\x1c\x1a\x56\x3f\x27\x22\xf1\xdf\x21\x94\xfc\xc3\xea\xfb\xba\xfa\xb2\x1e\x80\x36\x10\x17\x8d\xb3\x7a\x58\xf2\x32\xb0\x6f\x40\x27\xc1\xf9\xdb\x65\x95\x03\x78\x69\xce\xd3\x86\xd2\x5d\x17\xc3\xeb\x82\x9c\xcb\x8b\xe4\xba\xe8\x2e\x8a\x7c\x16\xeb\xc5\xd9\xbd\x1c\xb3\x09\x0b\x5c\xbd\x56\x3b\xa8\x8c\xfb\xa7\xcd\xd4\xbf\x07\x7e\x79\xea\x68\x81\x0b\xbe\x05\x31\x67\xdd\xaa\xb9\x9c\x08\xc2\xe0\x28\x1b\x50\xe8\xb9\x8d\x64\xf0\xc8\xe9\x0b\xc4\xc5\xd2\x9e\x41\xe0\xd0\xf8\xf8\xb1\x17\xc3\x6a\xac\x1f\xcf\xfb\x2f\x43\x8f\x42\x81\x64\x28\x94\xaa\x3c\x6c\x8a\x61\xa7\xbc\x3e\x27\x10\x50\x38\xc7\x2b\x6a\xe0\x12\xe1\xdb\xc1\x94\x92\x77\xdc\xba\x1e\xfa\xa0\x97\x33\x9f\xc4\xdf\x81\x9b\x38\x63\x10\xc6\x52\x06\xc3\x7c\xaa\x68\xa6\x22\x2e\x5a\x14\x99\x4b\xdc\x0f\xb9\xce\x49\x68\xb7\x5a\x04\x33\x31\x0e\x33\x0f\xc4\x78\x65\x5a\x66\x89\xf5\xf8\x71\xcb\xc5\x58\xde\xc2\xd5\x1a\x57\xaa\xd3\x69\xc8\x34\xc0\xe4\x86\x16\xe5\xdd\x8c\x8a\x29\xdb\x03\xe3\x9a\x87\x82\xe4\x5d\x2a\x46\x33\x99\x01\xff\x69\x2e\x8c\xbb\xac\xa3\xc9\x24\x67\x0a\x8f\x48\xde\x9d\xc8\x51\x91\x43\x91\xdc\x3d\x99\xb7\xb0\xc6\x0b\xaf\xd0\xc4\x23\x9f\x2c\x57\x7a\x51\x35\xd4\x30\x97\x9e\x7b\x78\x4c\xb6\xfb\x78\xa1\xff\xcd\x34\xbd\x07\xaf\xc0\xd4\x3a\x64\x1d\x28\xaf\xc1\x76\xb4\xe6\x6a\x70\x6f\xcc\x9a\x75\x2f\x52\xe3\x39\xec\x3e\xf0\xee\x16\x8f\xc9\x64\x2b\x45\xf8\xde\x5c\xfa\xb5\x16\xcc\x6b\xa5\x16\x64\xb2\x95\x23\xbc\x4b\xc2\xfc\x4e\x27\x9e\x6c\xd9\x67\x50\x9f\x39\x7f\xbe\x3e\x0a\xc9\x15\xb9\xb7\xd1\xcf\x40\x57\x3a\x40\x37\xe4\x1e\xdf\x93\xab\x81\x03\x93\x4f\xe2\xfb\x40\x5f\x0c\x92\xc7\x1b\xe3\x87\x65\x6b\x6b\x46\x00\x64\x0d\x22\xc2\x37\x26\x9e\xde\xd6\xd6\x9c\x00\x88\x1a\xa4\x6a\x43\xb0\x69\x3a\xef\x39\x66\x3f\xbd\x27\x37\xf8\x86\xdc\x07\xea\xe2\xd5\x3d\xb9\x5a\x15\x64\x5b\x6f\x9c\xe3\xe5\x12\x7e\x17\xc6\xdd\x8f\x9d\x52\x63\x98\x43\x8b\x95\x99\xb9\x66\x14\x56\x85\x46\xa1\x2d\xd0\x83\x02\xbd\x4a\x01\xe8\xd0\x2d\x25\x0f\x30\xc8\x6c\x7c\x90\xb2\x79\x42\xb1\x9f\x87\x27\x7a\xf6\x24\xc5\x0a\xff\xc6\x62\xbd\x8d\xd0\xa2\x8c\x6b\x49\x8b\x01\x7a\x80\xab\x9c\x85\x3b\x13\xeb\xe9\x11\x6e\x89\x50\x84\x4f\xe2\x9d\xa7\xcf\x3a\xb4\x08\xd6\xe8\x83\x71\x99\x4b\x8b\x40\xe4\x62\x05\x0d\x29\xa1\x05\x4e\x2b\xd2\x06\x5b\x43\x1a\x0a\x45\x6d\x0b\xb6\xaa\x5b\x32\xad\x59\x8b\x5d\x06\x39\xc6\x4e\xec\x88\xa4\xc1\xe1\xeb\xc8\xdd\xa1\xab\x7d\x77\x64\xad\xcc\xd2\xda\x85\x75\xdd\xca\x01\x39\xda\x74\xb5\x2d\xbe\xc5\x97\x68\x70\x54\x77\x44\xd0\x54\x94\x1c\xac\xd6\xd5\xb3\x56\x3b\xfb\xcc\x19\x5e\x6c\xd2\xd1\xd2\x42\x23\x2d\x08\x96\x57\x2e\x3c\x70\x85\xa7\x59\x28\x5a\xee\x0e\xd4\x9e\x07\x9f\xbf\x88\x10\xfe\x55\xc4\xb4\xc0\xa5\x99\x85\x7e\x19\xd7\x2b\x44\x56\xb2\x5f\x1f\xe8\xa9\x1e\xe8\xdb\x47\x07\x5a\xa3\xe8\x8e\x84\xe3\x0c\xea\x8a\x67\x9d\xbb\x4e\xa7\x50\x31\x2d\x82\xfd\x22\x8a\x10\xee\xef\xbc\xe8\xdc\x99\xcf\xae\xab\x53\xa1\x24\xe1\xd7\xe6\xfd\x31\xb9\x06\xeb\x47\x9b\x7b\xdc\xe9\x34\x4a\x9b\x8e\x87\xc7\xc6\xea\x31\x39\xae\xec\x10\x68\xe5\x1c\xbf\xf4\x9f\xe8\x26\xed\xbc\xfa\xa0\x11\xa2\x27\x75\xd5\x52\x7e\x50\xd1\xc6\x6f\x28\x84\x7f\xd3\xf9\x81\x50\x99\x16\x35\x2d\xd3\xdf\x14\x78\x91\x5c\xea\x99\xfe\xa7\x88\x2f\x11\xbe\xf4\x86\x63\x7a\x3f\xbb\x0c\x3c\xd2\xe1\xcb\x8a\x1c\x23\x78\xda\x50\x28\xac\x09\x3d\x36\x5f\xa6\xc0\x8c\x11\xb6\x9a\x3e\x3a\x5f\x6e\xff\x76\xbe\xf0\x49\x7c\x4c\x6e\x29\xbe\x86\xad\x10\xdf\x91\xe3\x6e\x40\x4e\xf0\x94\x1c\x77\xab\x04\x05\x5f\xb7\x09\xb9\xeb\x74\x7e\xcb\x62\x17\x0a\xb0\x1e\x13\x10\xdf\x21\xa3\x92\xd7\x6b\xbc\xd3\xf9\x8e\xc5\x77\x9a\x5b\xbb\x26\xd3\x2e\x50\x33\x7c\x4c\xa6\x5d\x26\xc6\xd8\x3b\xc7\xd1\x73\xe2\x98\x5c\x23\xdc\xb0\xfb\xde\x0d\xe3\xbb\xda\x8e\x4b\xae\xf1\x5d\x65\xbf\x25\xef\xa8\x9a\x75\xe7\x5c\xc4\xc7\xf8\xce\xe8\xf6\xdd\xbe\x80\x92\xc6\xcd\x37\xbe\x6e\xda\x94\x63\x84\x6f\xc9\xdd\xf9\xfb\x18\x5d\xd8\xef\xf1\x71\x59\xb7\x03\xff\x16\xe1\x29\xf1\xb0\x43\x57\x86\xc7\x49\x50\x4c\xf7\xed\x16\xe1\xf6\x75\x97\xdd\x29\x26\xc6\x9d\xce\xf1\x8f\x7a\xa0\x6e\xc9\x54\x63\x14\x1f\x93\x5b\xdd\xd0\x4f\x2c\xbe\xc3\xc7\x08\x5f\x9a\xd4\x14\xe1\xdb\x4e\xe7\xb2\xd3\x89\xfb\x7a\xf1\x04\xbb\xff\x72\x79\x1d\xec\xfd\x6d\x42\x6e\x61\xff\x2b\xb3\xcd\x0e\x0f\x2f\x24\x24\xf5\x2b\xcf\x09\xe8\xa3\x8a\xff\x20\xe0\x08\x20\xdf\x94\xd7\xe3\x73\x44\xfc\x80\x8e\x32\x46\x15\x83\xf1\x8e\x91\x26\xab\x4c\x01\xe2\x63\xd3\x30\x76\xcd\x20\x7c\x6d\x0d\x9d\x5e\xa5\x29\x14\xcf\x63\x84\x8f\x7f\x9c\x0e\xe3\xeb\x2e\x1d\x8f\x4d\x0d\x47\xba\x98\xc1\x44\x6c\x00\xc1\xbe\x5d\x94\xc4\x50\xfd\x41\xc3\x3b\x5c\xa9\x43\xff\xe1\x6b\x72\x7e\x01\xfb\xde\x31\xb9\x1b\x1c\x93\xe3\x60\x97\x1d\x20\xbd\xaf\x1e\x07\x9c\xc2\xb5\xe1\xa9\xbd\xb5\xcb\x31\x4e\xd9\x44\x25\xc7\xdd\x7c\x94\xc9\x34\x7d\xcb\x26\x0a\x2b\xb9\xf0\x19\x67\x72\xb1\x32\x2e\xbb\x9a\xe8\xd3\x9d\x41\x5d\xa7\x63\x13\xb0\x5a\x7a\x83\xbb\x97\xd7\xee\x50\x75\xb7\xb5\x85\x8e\xc9\xf5\xf9\xdd\x05\x3e\x76\x57\x89\x83\xb6\xc8\x71\x57\xb7\xbf\xf6\xee\x4c\x2e\xc8\x71\x57\xc9\xc5\xca\x6e\xe8\x40\x15\x7e\x63\xf1\x94\x22\x3c\xa5\x4e\xc3\xe6\xbd\x66\xae\x6f\xe4\x5c\xd3\xf7\xbb\x3a\x7d\xbf\x2e\x5d\x01\x7a\x12\x7f\xba\x46\xe2\x77\x9f\x75\x4e\xcd\xbb\xb3\xc6\x2d\xfd\x58\x13\xba\x29\xb9\xc6\xc7\x6b\x4a\x84\x2f\x9a\x38\x84\x4a\x84\x27\x9d\xe3\x75\x5e\x9e\x10\x72\x86\xbe\xd8\x1d\xfb\xb8\xb6\x63\x7f\xb1\x3b\xf6\x71\x6d\xbf\xff\xb2\xee\xe5\x23\x0e\xa4\x64\x7b\xe4\xac\x56\xd1\xbb\x20\xc7\x6c\xfa\xff\x59\x93\x96\x33\xd8\xc3\xef\xf0\x97\xaf\x61\x0c\x8c\x74\xf2\x84\x1c\x37\xa9\xe1\x4f\x3a\x9d\xf8\x5b\xc1\x11\x9a\x96\x9d\xe0\x2f\x78\x8a\x6a\xd6\x12\xba\xa1\xfd\x5a\x43\xe5\xa6\xbb\x0f\x4c\xdb\x6d\xc5\x78\xed\xd8\xda\x0d\xba\x21\xb5\xd6\x83\xa1\x55\xe9\xad\x2b\x54\xb7\x6c\x76\x06\x43\x0d\x05\x56\x00\xe3\x3e\xbe\xc5\xd3\x9a\x7d\xbe\x06\xf1\x4d\x65\x76\xb8\x99\xd0\xe9\x54\x26\x49\xa7\x33\x55\xf1\xb1\x31\xc6\xab\x61\x06\x75\x3a\x6f\xdc\x4a\xab\xee\xea\x76\x8f\xfe\x5a\xd3\x38\xcd\xc7\xec\xbc\xd0\xb3\xfc\xd8\x2d\x11\x0d\xdf\x2b\x3d\xdd\xab\xb7\x32\x5e\x99\x85\x70\x48\x42\x76\xc7\x2d\x04\x5a\x54\x10\x76\x4c\x0e\x6b\x36\xf6\xc7\xe4\x70\xd5\x44\x38\x5e\x0d\x5f\xc5\xc7\x28\x79\xe5\x57\xf0\xf1\x0a\x26\xcb\xdb\xea\x66\x3c\xa8\x3c\x99\xf1\xa3\x05\x79\x1b\xec\xfa\x5c\xef\xfa\x77\x84\xad\xf8\xa3\xbb\xfe\xdd\xdf\xee\xfa\xac\x20\x05\x08\x6a\x9a\xe0\xfd\xa4\x3a\x9d\x4f\x15\x67\x05\x08\x82\xf4\x36\xab\x34\x40\x0a\xa0\x3a\x9d\x38\x75\x32\xb0\x47\xe4\xd2\x41\x1c\xa6\x52\x95\xd1\x76\x5d\xb9\x2c\x96\xcb\xcb\xa2\xab\xf8\x9c\x9d\xb8\x1a\x62\xf4\xe3\x19\x88\xf6\xae\x0a\xd2\x0e\x95\x1b\x33\x10\x31\xda\x2f\xe7\x4e\xb4\xf4\x0c\x64\x68\x9b\x45\x23\x78\x4d\x96\x55\xc6\xc4\xf9\x27\x15\x86\x41\x0d\xb3\xf0\x4e\xd3\x51\x31\x38\x02\x5b\x8c\xaa\x4e\xa4\xd4\x86\xc4\x47\x05\x11\x68\xb9\x9c\x15\xcb\x65\x91\xc5\xa1\x09\xe7\x4d\xa9\xac\x38\x2a\x3a\x9d\xf6\x41\x81\x1e\x0e\x1e\xad\xec\x00\xe4\x53\xab\xca\x2b\xef\x57\xbe\x2a\x67\xec\xbf\x78\x1e\x39\x33\xc8\x26\x20\x85\x55\x57\xbb\xaa\x35\x98\xb8\x06\xe0\x34\x14\xd4\xde\x95\xba\x7a\x70\xcd\x36\x38\x2a\x4c\xaf\x9c\x22\x31\xce\xb3\xf8\xa6\xf0\xf2\x5e\x7c\x53\x38\x13\x88\x8c\xdc\x15\x58\x5a\x30\xee\x1a\x7a\x88\x45\x09\xc8\x5d\x41\x32\xac\xb1\x26\x9b\xb1\x76\x1b\x68\xbb\x2a\x1d\x13\x70\x2f\x2b\xc4\xbb\xb2\x35\x54\xe5\xd0\x81\x53\x74\xa7\xe3\x0a\x22\x28\xfb\x4b\x57\x40\x2f\x6c\x58\xd0\x75\x9f\x78\xc6\x01\xad\xd3\xd3\xef\x10\x42\xde\xb3\x58\x20\x73\x2f\x4d\x18\x8b\x7a\x58\xae\xbd\x08\xe1\x82\x88\xc1\xae\x33\x93\x37\xa7\xed\x33\x15\x17\x08\x3d\x14\x24\xa0\x40\x1b\x3d\xe4\xb1\x6c\x5a\xf5\x90\xe7\x25\x37\x71\x69\x03\x8f\x6c\x83\xfd\x08\xad\xaa\xd5\xda\x5b\xcb\x2b\x41\xce\x54\x2c\xd0\xf0\x44\xc5\x02\x17\x28\x29\x8c\x94\x41\x90\xd7\x59\xdd\xd0\xc6\x7d\x33\xf4\x29\x22\x92\xba\x7b\x6b\x22\xb0\x82\x5b\x1b\x3f\xa9\x58\x22\xcc\xd7\xed\x8e\xd9\x0a\x2b\x12\x04\xc7\x06\x59\x88\x0a\xe3\xcd\xf3\xd2\xce\x57\x81\xea\x9d\x9a\x68\xc0\x7f\x88\x18\xdc\x7b\xcb\xc0\xe9\x7c\x16\xde\xb3\x6b\x1a\x13\xdb\x89\xb2\xc1\x0d\x47\x50\xe7\x14\x62\x08\xeb\xe4\x45\x84\x12\x90\x6d\xbe\x88\x70\x18\x42\x94\x21\x70\xb3\xf2\x8a\x85\xee\x1f\x4d\x17\x1a\x43\xc6\x1f\x64\x75\x17\xdd\xe5\x5c\x72\x97\xca\xc9\x67\x01\x2a\x59\xdd\xb5\x60\xf6\x85\x7e\xdf\xef\x9c\xbe\x94\x95\x06\x2b\xb8\xed\xfc\xcd\x84\xe6\x34\xde\x0e\x76\x7d\x9b\xaf\x19\x7a\xb2\xb5\x2d\x3d\x70\x57\x5f\x41\xeb\x84\x8b\x31\x20\xf3\xf5\xfd\xcf\x32\x57\x6f\x44\xae\xa8\x18\x79\x53\xee\x8f\x2a\x36\xe1\xcd\x19\x7e\xd0\x45\xc3\x32\xaf\xef\xe1\xc3\xa4\x21\x42\x0f\x60\x91\x3d\x86\x45\xbc\xa1\xe1\xa6\xda\xd4\x50\xc5\xd6\x08\x76\xb5\x0a\xd5\x99\xc7\x59\xd5\x41\xf5\xee\x4b\x9a\x4d\xe1\xa4\x93\x5b\xde\x3d\x70\x8d\xe9\x5f\x9d\xef\x5e\x0c\xc3\x07\x63\x5d\x6b\xda\x7a\x70\xce\x5c\x93\x8f\x12\xbb\xb8\x81\x84\x64\xa6\x03\x10\x98\xce\x87\xcf\x61\xb8\x7a\xa5\x43\xe1\x6a\xcc\x97\x24\x54\xf1\x9f\x02\xd6\xc1\x0a\xbd\xa6\x39\x20\xbf\xe8\xe3\xa9\x79\x93\x19\x75\xb2\x79\x70\x0b\x25\x27\xe6\x59\x38\x3f\x03\xf6\xfd\x8c\xe6\x7b\xce\x13\xb3\xc9\x19\xf3\xb1\xd3\xf3\x80\x51\xac\xa9\xc6\x95\x09\x3e\x05\x45\x04\x09\x23\x22\x9c\xe9\x7d\xbb\xde\x6e\xf8\x05\x54\x3d\xe7\xaa\xac\x18\x94\x4a\x3a\xa7\xfa\xd8\xbd\xe2\xc2\x5a\xe5\x07\xee\xec\xfd\x48\x99\xc2\xdc\xae\x63\xd0\x78\xfe\xe6\xe2\xc5\x06\xae\xc7\xb3\x72\xfc\xdb\x71\x9b\x2d\x97\x7d\x30\xdd\x28\x0f\x81\x3f\xd4\x9e\xfb\xf5\x02\xf1\x8b\x4a\xc6\x72\x19\xb5\x80\x84\x6c\xc3\x55\xd4\xed\x85\xe4\x42\x6d\x3b\x07\x1c\xad\xc8\x17\x06\xe9\x73\x38\xcb\xde\x95\xdb\xb6\x5a\x2e\x63\x45\xd8\xf0\x07\x12\x56\x3d\x64\x75\x49\x89\x8b\xac\x02\xe3\x63\x1c\x1d\x29\xd2\x8e\xdb\xca\xf4\x23\x0c\x89\xd2\x56\xdd\x19\xcd\x5f\x29\x95\xf1\xab\x42\xb1\x38\x1a\x53\x45\xb7\x01\x52\x3d\x1b\x22\x4d\x94\xda\xaa\x54\xcc\x0f\x84\x35\x4c\x85\xba\x07\xa8\x7a\x69\x49\x94\x26\x94\xec\xd6\x60\x5d\x8f\x57\xd0\x9b\x93\xca\x1e\xb8\x97\xc5\x76\x23\xd9\xe9\xf5\x2c\xff\x40\xfd\x0e\xa8\x47\x67\xcf\xcd\x71\xbd\x3f\x1a\x5f\x26\x8d\xb1\xdd\x9d\x47\x5c\x3e\xe0\xa4\x66\x89\xc7\xc8\x5d\x16\xd3\xea\xa0\xa3\x41\x61\xe2\xc4\x31\xb4\xb2\xae\x01\xd8\x90\x76\x53\x36\xa5\xa3\xfb\x4b\x43\xae\x4f\x8b\x2b\x95\x31\xf6\x46\x28\xe9\xa1\xb0\x97\x09\xe0\x6a\x16\x04\x95\x50\x70\x97\xc0\x2a\xc6\x37\x80\x4e\xde\x59\x6b\x9c\x47\x20\xcf\xbf\x1e\xf2\xbc\x84\xfc\x26\x8b\x6b\xd7\x55\xfe\xa3\x7e\x78\x5b\xc1\x86\x66\x03\x5f\x2a\x15\x8e\x74\xe7\xeb\x88\xde\x4e\x48\xf4\x76\x2a\x44\x4f\xaf\x36\x15\xcc\x02\xec\xe8\xaa\x71\xa8\x06\x87\x9a\xfd\x8c\x88\xb8\xdf\x7b\x8e\xf0\x1b\x48\x21\xfc\x4a\xff\xee\x3c\x7b\x82\xf0\xa1\x4e\x3d\x7d\x8a\xf0\x5b\x53\xe8\x07\x84\x3f\x98\x97\x4f\x11\xfe\x53\xa7\x76\x7b\x08\xff\x66\xb2\x9e\x21\xfc\xda\x14\x7b\x81\x06\x6f\x6c\x44\xf1\x1d\xc7\xbb\x7e\xcc\xc8\xc3\xe5\x88\x16\xd3\x99\xb9\x8f\x6f\xd6\x0e\x90\xba\x20\xb3\xdd\xc7\x97\x19\x03\x2d\x75\xad\xd4\x49\x98\xdb\xee\x63\x2e\x6e\xe4\x35\xfb\xa9\xa0\xd9\x98\x8d\xf7\x2c\x61\x0b\xf6\x18\x6b\xf1\xc4\x31\x75\x31\x0f\x65\x97\x2e\x16\xe9\x7d\xfc\x31\xc3\x1e\x5f\x68\xd5\x5c\xd1\x2b\x61\x0c\x21\x0f\x41\x0b\x09\x6d\xae\x55\x2d\x5d\xe5\xb0\x74\x3e\x66\xdd\xc6\x9a\x6c\xa3\x9a\x38\x06\xcd\xe2\x8f\x59\xb7\xda\xf5\x18\xb9\xd0\x76\x1f\xb3\xee\x28\x65\x34\xab\xbc\x1c\x7c\xcc\xba\x75\x34\x2c\x97\x71\x43\xae\x3e\x28\xe9\xec\x10\x8d\x44\x33\xcb\xd8\xe6\x84\xf8\x0e\xa6\xb8\xf3\xb6\xd5\x8c\xa5\xda\x38\xad\x7f\x67\x21\x09\x0a\xad\x70\xbd\x1b\xe1\x67\x06\x65\xb5\x4f\xdc\xda\xfc\x08\x11\x0c\x7c\xf6\x20\x68\x23\xc8\x36\xbb\xd8\x7a\x2d\xc6\x9e\x41\x73\x84\x3f\xbc\x88\x74\xc7\x3f\xd9\xa2\xbf\x67\xe4\x61\x85\xff\xca\xc8\xf9\x05\xfe\x19\xd2\x3f\xc1\xff\xef\xe0\xff\xaf\x19\x79\x58\xa4\xc5\x94\x8b\x3c\xf9\x2b\xc3\xec\x86\x09\xf5\x9e\xce\xd9\x3e\xcf\x17\x7a\x2e\xec\x49\x31\xe1\xd3\x3c\xf9\x39\xc3\x19\x9b\xf2\x5c\x99\x9d\x5e\x17\x79\x27\xc7\x45\xca\xf2\xe4\xa7\xf5\x57\xfb\x4c\xb3\xda\x4c\x8c\x38\xcb\x93\xef\x32\xbc\x90\x79\xce\xaf\x52\x76\x52\x2b\x67\xbd\xe6\x71\xa1\xd9\xd6\x03\xdd\xf6\x31\xc0\x72\x94\x8d\x59\x96\xe4\xeb\x2f\xf2\xd7\x10\xb3\x2c\x49\x57\xf8\x17\xdb\xbf\xcf\xf6\xf7\x0f\xfb\xcb\xa4\xdd\xe8\x25\x79\xf8\x47\x15\x0b\xff\xa1\xe6\x7a\x94\xc4\x53\xa6\xde\xf2\x5c\x31\xc1\xb2\xe4\x1e\x67\x85\x80\xef\xf2\x37\x02\x2c\x29\x92\x1b\xc8\xba\x53\x19\x1d\x29\x36\xae\xbe\xbb\x5a\xe1\x4c\x1a\xd1\x7c\x46\xc5\x58\xce\x63\xd4\x55\xf2\x14\x9c\xb9\xc4\xbb\xcf\x50\x37\x4f\xf9\x88\xc5\x3b\x08\x4b\x49\xa2\xda\x01\xca\x31\x91\xdf\x45\x5b\x99\xc4\xbc\x2c\x00\x6d\xfc\x4c\xc5\x38\x65\x59\x6e\xde\x52\x49\x1e\x16\x19\x1b\xd1\xd1\x8c\x01\x1f\xaa\xd9\xd2\xca\xf2\x45\x0f\x0a\xbc\xb3\xb0\x95\xee\xd0\x5e\x2a\x73\x56\xf2\xa9\x87\x99\x9c\xc3\x17\x53\xfd\x72\x2d\xb7\x91\x27\x06\x87\x42\x58\x33\x33\x41\xf8\xad\x67\x2e\x69\x79\x64\x68\x4c\xd7\xa1\xeb\xf2\x5c\xf1\xad\xce\x05\x30\xf7\xcc\x09\x01\x44\x69\xbe\xb9\x4b\x6c\x84\x86\x50\xc2\xdc\x88\xad\xf6\xc4\xf8\x30\x52\xab\x15\x2e\x24\x79\xa0\xa3\x51\x31\x87\xb8\x1f\x67\xb7\xf2\x78\x46\x73\x3f\x7b\x59\x9e\x7c\xc1\x8f\xbd\x3e\xbd\xe6\x8b\x33\x9a\x4d\x99\xaa\xf4\x71\x1c\x33\x7c\x8c\x56\xc1\xa7\x07\x7a\x4c\xde\x32\x7a\x13\xd6\xbd\x17\x14\xd8\xe7\x19\x1b\xa9\xe0\x65\xbd\xbe\x33\xbd\x28\x73\x0d\xae\xe0\x73\x58\x01\x4c\x8c\x93\x77\x71\xf4\xca\x3d\x47\xb8\x4c\x1f\x88\x71\x84\xb0\x2f\xca\x15\x33\xab\x66\xe3\x07\x6f\x5c\x89\xf0\x33\xa3\x95\xdf\xf4\x89\xd1\x5d\x21\xac\x32\x2a\x72\x1e\x40\x74\xe6\x33\x22\x1c\x3c\x00\x4c\x2b\x9c\x4a\x4d\x38\x46\xfa\xff\xe0\x55\xd6\x1d\x51\xf1\x21\x67\xfb\x47\xef\x3a\x9d\x78\x24\xeb\xca\x19\xcb\x41\xc6\xd1\x98\xdf\x44\xa8\x9b\xab\xfb\x94\x85\xdd\xd4\x33\x39\xe2\xa2\x65\xb4\x5c\xcb\x65\x6c\x42\xaf\xb6\x72\xd9\x0d\xf1\x54\x3e\xe0\x86\x02\x1e\x3b\x8f\x17\x03\x6c\x94\x8f\xa8\xd2\xb7\x3a\x20\xe5\xf7\x15\xf4\x04\x4f\xd6\xdb\xbe\x24\x27\x71\x14\xc2\x1a\x21\xbc\xa8\x66\xf2\x60\x6c\x66\xd5\x57\xb9\x1d\x83\x39\x64\x57\x9a\x8a\x10\xbe\x97\x24\xa2\x57\x32\x53\xad\x11\x15\x8b\x94\xde\xbb\x5f\xbd\xa7\x15\xd3\x59\x6b\x5c\x98\x8a\x8d\xe3\xbe\x16\x9b\x2f\x14\x67\xe3\x16\x13\xa3\xec\x7e\xa1\x20\x35\xd6\xff\xf5\x0e\xd1\x4a\x25\x1d\xb3\xb1\x66\xc8\x6d\x72\xce\x14\xf5\x8f\x00\x49\x6b\x41\x8b\x9c\xb5\xa0\x29\xfd\x8f\x8b\x69\x6b\x91\xc9\x69\xc6\xf2\xbc\x95\x51\xc5\x6c\x43\x39\x63\xd7\x6c\x0c\x3f\xba\x48\xae\x68\x9a\xea\xe7\x22\xd7\x84\xbf\xa5\xf8\x9c\x99\x25\xdc\xba\x91\x69\x31\x77\x9f\xdd\x52\xae\xb8\x98\x46\xdd\x7c\x91\x72\x15\x47\xad\x08\xe1\x1b\x4b\xaf\xaf\x24\x79\x80\x13\xa3\x65\x7f\x00\x9e\x33\x76\xe7\x9e\x27\x96\xb7\xf0\x59\x2b\x3c\x95\x24\x1a\x57\x36\xaa\xd6\xa5\x82\xd5\xac\x29\x4d\x4b\x50\xc5\x6f\x18\x8c\x6c\x8b\xe7\xfb\x46\xa6\x70\x9c\xc1\x1e\xc7\xc6\x2d\x9e\x6b\xd2\x42\xa7\x76\x2d\xc8\xc5\x82\x8d\x5b\x97\xae\x3e\x47\xf1\xf3\x32\xcb\x91\xaf\xbc\x02\xff\xad\x24\x0f\x9a\xf7\xb6\xe7\x22\x43\x4c\x20\x6d\xa5\x1f\x96\xbe\xbc\xcd\xba\x6a\x46\xd5\x09\x90\xcf\xfc\x3d\x6c\x55\xb0\xff\x68\x8a\x94\x58\xfb\xcb\xab\xab\xd4\x6d\x8a\x23\xdd\x54\xaa\x4f\x73\xb6\x66\x3e\x67\xa7\x8a\xce\x17\x8d\xd4\xb8\xeb\x5f\x2f\x97\xfb\x54\xe9\xd3\xdc\x6d\x8c\x56\x78\x5c\xeb\xb5\xdd\x70\xf3\xb3\xac\xc8\xdd\xe3\x6a\x70\x98\xc5\xaf\xba\x8b\x4c\x2a\x09\x2a\x0e\xbd\x93\xe8\xe2\x16\x65\x21\x07\x03\xe7\xdd\x7a\xa5\xa4\x6d\x74\x15\xcc\x9c\x9d\x03\xbc\x0f\x18\x58\x80\x57\xeb\x1b\xd6\x33\x62\x94\x44\x85\xb8\x16\xf2\x36\xf4\xf1\xec\xcc\x0c\xe0\x04\x6b\x0d\xc9\xfd\x33\x69\xf7\xad\x94\x61\x7d\x64\x49\x15\xd5\x67\x59\xc1\xd0\x0a\xe7\x4a\x2e\x82\x01\x4f\xd6\xce\x46\x1b\x60\xaf\x7d\x37\x5c\xcb\xd9\x04\xbd\x19\xc0\xd7\x30\xa6\x50\x53\x98\x01\xfe\x93\x2d\xfc\xeb\xd3\xb0\xb9\x07\x0b\x96\xe5\x3c\x5f\x1f\x0e\x9e\x1f\x9b\x37\x4c\xa8\x86\x2f\x57\x38\x2c\x50\x9b\x87\x87\x34\xcd\x19\x1e\xb3\x5c\x65\xc5\x48\x55\xb9\x55\x40\x0b\xb6\x02\x91\x91\xa6\x55\xa6\x4c\x17\x18\x94\x09\x1d\x31\xd0\x42\xb3\x16\x17\x2d\x85\x74\xa9\x73\x76\x51\xda\x7c\x19\x5b\xde\xa9\x0c\x8d\x79\xa1\xd0\x54\x9e\xab\x0b\x53\x70\xb5\x42\xf8\x55\x59\x1f\xb9\x95\xf8\x95\xd5\xc1\x93\x70\x9a\x97\x97\x45\x62\xf4\x10\xdc\xf2\x28\x59\xf1\xac\xf9\xcc\xb1\xb2\x5e\x23\x66\x3c\x1f\xa8\x72\x8a\x93\xac\x4c\xbb\xcb\x30\xec\xb6\xe5\x25\x9d\x87\x59\x2c\xb1\x28\xcb\xa0\xf0\x81\x54\x5e\x85\x98\x81\xe0\x59\x65\x6f\x8c\xac\x31\xc0\x17\xdc\xd5\x72\xfd\xcb\x6c\x02\x7f\x00\x37\x14\x2b\xfc\x21\x7e\x65\xf6\x94\x4b\x49\x1c\x16\xe2\x07\x4d\xa0\xcd\x32\x45\xf8\x68\xd3\x8b\x03\x49\xce\x7f\xc0\xfd\x5d\xbc\xf3\x1c\xef\xee\x5c\xe0\x3b\x49\xaa\x5b\xb3\x89\xed\xdb\xb8\xd7\xe1\x6b\x43\x81\x6b\x9b\x79\xe4\x76\xf2\x77\x72\xcc\x74\x69\xf7\xdc\xe9\xc4\xd7\xc1\x3e\x1f\x16\x33\xe0\x1f\xaf\x35\xae\x69\x76\xad\xd5\x4e\xa7\x7d\x2d\xf1\x69\xbd\x68\xdc\xbe\x93\xcb\xe5\xb5\xec\x74\x5e\xbc\xd4\xff\xfb\xfd\x1f\xc9\xb5\x44\xf8\x4c\x12\xc3\x35\x77\x27\x99\x9c\xef\xcd\x68\xb6\x27\xc7\x2c\xde\xdd\x41\xf8\x8b\x24\x0f\x57\xa0\xe3\x7e\x23\x16\x85\x4a\x1e\x16\x9a\xa2\x8e\xd7\xcf\x1a\x0f\x86\xbe\x8e\x93\x48\x8a\xd7\xe5\x07\x11\x1e\xd1\x85\x2a\xb2\xb5\x17\x7b\x26\x3b\xd2\x54\x34\x38\xcf\x9c\x47\xa3\x12\x97\x7a\x9f\xc6\xd1\x35\xbb\x07\xcf\x7b\x11\x8e\x14\xbb\x53\xb6\xda\x68\x41\x73\xc5\xa2\x0b\xcd\x2c\x95\xc8\x17\xe3\xaf\x83\x70\xaf\xf2\x4d\x15\xc8\xea\xbb\x0d\x70\x46\x57\x69\x91\xb5\xaa\xb0\xb6\xae\xd9\xfd\x58\xde\x8a\x96\x83\x58\x27\x8a\x45\x6b\x2e\x8b\x9c\xe9\x17\xe1\xd6\x56\x81\x1b\x98\xc5\x6f\x86\xdc\xb0\x98\x9b\x60\x87\xb7\x5f\x0b\xbd\xe1\x4f\xfe\x31\xfc\xc6\xfe\xe1\x9b\x3b\x60\x3e\xdb\xd8\x03\xf3\xfa\x6b\xbb\x60\x59\xa2\x6f\xea\xc3\x0a\xef\x49\x7d\xb6\x7f\x07\xff\x4f\x24\x79\x80\x5d\x0e\x82\x6c\x25\x5f\x24\x66\xe6\xe0\x69\x8e\x9d\x6b\xf2\x1a\xa7\xca\xa9\x3b\xf9\xe2\x93\xf8\x4e\x22\x96\x78\x67\x24\x46\xf5\x12\xd5\xf1\x1d\x25\x92\x7c\xb1\x77\x65\x83\x31\xab\xb8\xf2\xaa\x2f\x87\xb5\x4f\x0e\xc4\x78\xe3\x07\x06\x25\xeb\xdf\x18\xc4\x7a\x45\xa1\xeb\x81\x51\xf9\xbd\x93\xc3\x3f\x63\x06\x3e\x48\xe3\x86\xc6\x50\x12\x59\x14\x47\xc6\x99\xfc\xce\xce\x0f\xa0\xd6\xbc\x66\xf7\x7b\xe0\xea\x68\xed\x2b\xe8\x95\x17\x36\xcb\x61\x7c\x2a\x3b\x9d\xf8\x9d\x34\xee\xd3\x1b\xca\x0e\x25\xa9\xe7\x1f\x88\x71\xa7\xf3\x4e\x82\xaf\x89\xfd\x18\xa1\x24\xbe\x92\x56\x07\x92\x61\x9d\xf4\x1c\x2d\x79\x13\x23\x18\xd0\x1e\x42\x58\x92\x4b\x88\x66\x71\x2c\x65\xca\xc6\xb1\xb4\x03\x87\xf9\x50\x76\x35\x89\x27\xdc\xdf\xfc\xe0\xe4\xb7\x58\xc0\x95\x12\xf7\x0a\xe1\x2f\xa0\xbb\x24\x12\x25\x26\x74\x2a\x8e\x19\x39\x96\xc3\xd7\x80\x9f\xe4\x23\xfc\xa0\x61\xac\xc8\x51\xd8\xca\x17\xd9\x0d\x48\xa6\x6b\x52\x99\x5a\x19\xfe\x02\x8e\x5d\x55\x69\x9d\x43\x08\xe1\x43\xe5\xdd\x46\x0d\x79\x72\xce\xb1\xba\x58\xad\xf0\x7b\xcb\xbe\xef\x7b\xa9\x89\x39\xd7\x4b\xa1\x32\xa9\x0f\x05\x3f\xcb\x5c\xf9\xc0\xf2\x15\xde\xf5\xbd\x24\x6c\xb5\xc2\x6f\x6c\x0d\xaf\xec\xef\x61\x45\xfe\xb2\x2f\x31\x13\x7f\x16\xac\x60\x60\x70\x74\xc2\x72\x25\x33\x96\xfc\x8e\x05\x63\xe3\xbc\x92\xf7\x17\xce\x4c\x0a\x72\xdf\x4c\xde\x33\x36\x66\xe3\xe4\xe7\x15\x7e\x0b\x8b\xe7\x83\x24\x0f\x23\x99\xca\x2c\x69\xf7\x30\x50\x03\xfb\xab\x79\x67\x9d\x8e\xdc\xc3\x76\x2a\x47\x34\x8d\x74\x1e\x9b\x53\x9e\xea\xc4\x5c\x0a\x35\xd3\x09\x51\xcc\xaf\x18\xd4\xb1\xa0\x79\x7e\x2b\xb3\xb1\x4e\x83\x19\xa4\x4e\xe4\x8c\x66\x23\x28\xa8\x58\x6a\x7e\xee\x14\xfc\xda\x56\x8a\x0c\xb2\x6f\x19\xbb\x4e\xda\xbd\x15\xfe\x53\x92\x37\x59\xf7\xf2\xf2\xf4\x60\xef\xe4\xe0\xec\xf2\xcd\xfb\xb3\x83\x93\xf7\xaf\xde\x9e\x5e\xee\x1f\x5d\xbe\x3f\x3a\xbb\xfc\x70\x7a\x70\x79\x74\x72\xf9\xfb\xd1\x87\xcb\x4f\x6f\xde\xbe\xbd\x7c\x7d\x70\x79\xf8\xe6\xe4\x60\xbf\x0b\x7e\x5e\xad\x00\xe5\xe8\x56\xb0\x0c\xff\x26\x1b\xa3\x38\x9d\xde\xcf\xaf\x64\xda\xe9\x98\xdf\xee\x44\x66\xf8\xb5\x24\xbf\xc9\x61\x99\x11\x47\x20\x59\x72\x36\x7f\x11\x4a\x9e\xf5\xfa\xbd\x5d\xfc\x71\x43\xb9\x85\xcc\x14\x4d\x6d\xb1\x67\xf8\xd3\x86\x62\x93\x8c\x4e\x83\xfa\x9e\xe3\xdf\x37\x14\xcc\x55\xc6\x47\xea\x72\xae\x79\x0d\x53\xf6\x05\xfe\x6b\x53\xdb\x99\x9c\xf0\x94\x65\xa6\x60\xff\x09\xfe\x79\x73\xc1\x1b\x3e\x76\x05\x7b\x3f\xe0\x9f\x36\x14\xb4\x46\x02\xb6\xc2\x1e\xfe\x6e\x43\x39\x9a\xdf\x8b\x51\x00\x64\xbf\x8f\x7f\xdd\xd4\x73\x99\xdd\xd2\x6c\x7c\x99\xb1\x89\x2d\xbb\x83\x7f\xd9\x50\xd6\x5e\x0a\xb6\xe5\x76\xf1\xe7\xaf\x1a\x46\x23\x55\x90\x19\xfe\x43\x92\xef\xff\x9f\xf3\xe4\xd5\xf6\x1f\x97\x74\xfb\xaf\x7f\x17\xbd\xde\x5e\x6f\x5b\xff\xec\x3f\x83\xff\x2f\xe0\xe1\x10\x1e\x0e\xe1\x61\xe7\xf0\xf0\xdf\x45\x6f\xf7\x39\x14\xdb\x7d\xbe\x0f\xff\x0f\xb7\xff\x5d\xf4\x0f\xf5\x9b\x9d\x5e\x6f\x6f\x1b\x7e\xf6\xf5\x7f\x28\xb6\xd3\x7f\xa1\xdf\xec\xf5\xe0\xe1\xf0\xe0\xf0\xdf\xc5\x6e\xaf\xd7\xdf\xfe\x77\xb1\xff\x5c\x7f\x73\xf8\x03\xbc\x39\xdc\xdf\xd3\x0f\xfb\x87\xf0\x70\x78\xb8\x7f\xf1\xbf\x15\xb0\x7f\x6f\x77\x7b\xdb\x3f\xe8\xa6\x5f\x3f\xd7\xcd\xf4\x4c\x9b\xcf\xa0\x99\xdd\x43\x68\xe6\x49\xef\xe2\x7f\xbe\xfb\x1e\x33\x4e\x1e\x56\x58\xc1\x7f\xa1\xff\x0f\x22\xa7\x86\x6e\x8d\xf5\xba\xcf\x64\x91\xa7\xf7\xa7\x4c\xbd\x11\x82\x65\x3f\x9f\xbd\x7b\xdb\xb2\x67\x64\x38\xac\xba\x87\xbd\x19\x1b\x5d\xb3\x71\x8b\xfb\x52\xce\x65\x33\x98\xa4\x08\x75\x30\xe6\xa0\xbf\xfd\x44\x33\x01\x72\x15\xfb\xfa\x67\x08\xd1\xc3\xa5\xf0\x2f\xd4\x7d\xca\x42\x3e\x41\x4f\xa7\x03\x3a\x9a\xc5\x21\x81\x15\x1c\x0e\x64\xec\xb6\x35\x61\x31\xc3\x3d\xdc\xee\x63\x66\xcd\x88\x10\x3e\x3f\x8f\xe8\x68\xc4\x16\x4a\x73\xd3\x39\xd3\x0c\xab\x79\xde\x1e\xd9\x8c\x0b\x7c\x1e\x8d\x52\x9a\xe7\x9a\x45\x8a\xb0\x49\x43\xee\x4c\xcd\xd3\x43\x99\x45\x38\x9a\xc8\xcc\xe6\xa8\xc5\xc1\x9f\x05\xbf\x89\x30\xa4\xb7\x19\x3c\x5c\x5c\x34\x42\x66\xed\x35\xce\x7b\x17\x03\xc1\xcf\x95\x07\x52\xc1\xad\x6f\xcc\xce\xfb\x17\x25\x9c\xd1\xa8\x8a\x9d\x08\x47\xe3\x8c\x4e\xa7\x36\x9d\x2f\x58\x9a\x02\x6a\x23\x1c\x81\x51\x7d\xd4\xdc\x68\x0d\x1d\x3b\xd0\x52\x57\xc9\xb7\xf2\x96\x65\x7b\x34\x67\x31\x0a\x1a\xa5\x85\x92\x27\xec\x86\x65\xb9\x6e\x44\x1f\xba\x40\x77\xc9\x8c\x13\xf0\xfc\x44\xf7\x2f\x63\x9a\xfb\xd7\x43\xc4\xb2\x1b\xf6\x2a\x5d\xcc\xe8\xb7\xb4\xed\x5b\x8b\x68\x9a\xca\xdb\xc3\x22\x4d\x4f\x47\x19\x63\xa2\x05\x84\xa6\xa5\x41\x38\x94\xa3\x22\x87\xd4\x31\xc8\xff\xcc\xbe\x9a\xbb\x29\xd5\x02\xdb\x87\xd6\x98\xe7\x1a\x1b\xe3\xd6\x44\x66\xf3\xf7\xf2\x23\x4d\x39\xb0\x9a\x26\xa2\x4f\x2b\x95\x72\xd1\x12\xd2\x68\x6c\x5a\xa2\x7c\x2f\x17\x4c\x80\xa0\x2f\x7f\x23\x52\x2e\x58\x2b\x63\x74\x7c\x24\xd2\xfb\x56\x66\xfb\xd7\xca\x0c\x0e\xc6\xad\x7c\x24\x17\x20\xf3\xa3\xf3\x54\x73\xad\x5c\xb1\xf9\xa9\xce\xfb\xd6\x79\xb8\xfb\x38\xe2\x47\x66\x95\x44\x38\x9a\x17\xa9\xe2\x0b\x18\xe4\x79\xa1\x20\xcb\x5c\xa7\x60\xe3\xaf\x43\xf3\x2e\xdc\xeb\xde\xdc\x92\xe5\xdb\x71\xa4\x99\xc5\x54\xd2\xaf\xac\xf6\xc9\xdf\x74\x40\xa6\xfa\x24\x98\xc9\x5b\xfd\x93\xf3\xbf\xcc\x2c\xa5\xe2\xeb\x6a\x7f\xf6\x78\xed\x99\xbc\x3d\xd5\x75\xe1\xc8\x70\xe8\x5f\x55\xe7\xd3\x47\xea\x34\x36\x8e\x9c\x7c\x7f\xfe\xef\xed\xe4\x22\x3e\xa7\xdb\x7f\x5d\xa0\xef\xa7\x03\xa0\x06\x42\x6d\xcf\x18\x9f\xce\x54\x8b\xa6\x7c\x2a\xf4\x5e\xbe\x7d\x45\x73\x06\x93\x85\x66\xf4\x8a\x8f\xb6\xf5\x9c\x6b\xb9\xcc\xed\x7c\xc6\x27\xaa\x35\xa2\x0b\xf7\xe1\x28\xe5\x8b\xed\x05\x55\x33\x93\xca\xf4\x14\x04\x36\x6c\x1b\x0c\x02\x16\x32\x05\xd2\xd6\x94\xb7\x3d\xe1\xa9\x62\x59\x6e\xdf\xd9\x8d\xdf\x3e\x19\x4b\x03\x4d\x0d\xc7\x72\xce\x05\x0d\x21\x63\x42\x2f\x87\xed\x2b\x3a\xba\x9e\x66\xb2\x10\xe3\xd6\x84\xa7\xe9\xb6\x5c\xd0\x11\x57\xf7\xe6\x01\x00\x99\xa4\x52\x8e\xb7\xa1\x42\x9b\xf6\x65\xa4\x50\xdb\x13\x3a\xe7\xa9\x4d\xeb\x81\x2c\x53\xdb\x74\xfc\xa5\xc8\x95\xcd\x50\x19\x53\xa3\x99\x7b\xb8\x4f\x6d\xc1\x1b\x9a\x71\x2a\x6c\xa1\x5b\x83\x8e\x69\x7a\xbf\x98\x6d\x0b\x3a\x67\x36\x29\x33\xee\x6c\xac\xb6\x67\x32\xe3\x7f\x49\xa1\x68\xda\xf0\xf2\x86\x65\x8a\x8f\x68\xda\x82\x52\xdb\x74\x7c\xb3\x7d\x67\xd3\x32\xe3\x53\x2e\xb6\xef\x5a\x7c\x4e\xa7\x2c\x40\x4d\xca\x94\x62\xd9\x76\xae\x3b\xa5\x1f\x35\x08\x5c\x4c\x6d\x8f\xe7\x34\xbb\x66\xd9\x36\x13\x63\x97\x9c\x73\x9f\x34\x07\x6e\x79\xc3\x32\x18\x57\x77\xcc\x29\x73\xd4\x8c\x8f\xae\x85\x26\x05\x0b\xca\x85\xda\x96\xd9\x98\x65\xad\x05\x15\x32\x67\xdb\xfd\x16\x98\x24\xe9\xda\xe1\x68\xda\xf2\x30\xc1\x10\x0b\xd5\xca\x67\x74\x11\x82\x9a\x2b\xb9\xb0\x70\x41\xd2\x0d\x84\x66\x0d\xaf\x99\xd5\x78\x94\x60\x54\xb3\x4b\x58\x72\x95\xc9\x6b\xb6\x3d\xa6\xf9\x8c\x66\x19\xbd\x0f\x33\xcc\x8d\x1d\x97\xa3\x3b\x31\xa2\x8b\xf0\xf1\x8b\xe4\xc2\x3d\xcf\x35\x83\x95\xf2\x39\xf7\x1f\x04\x10\xe9\xc7\x5b\x3e\x56\xb3\x96\x66\x1c\xb7\xcd\xfd\x26\x93\x1e\xb3\x91\x34\xbb\xb5\x79\x2e\x7b\x58\xe8\x44\x15\x99\x65\x56\xd9\x83\x42\xf0\x91\x1c\xb3\xed\x2b\x3e\xe6\xfe\x01\xce\x17\xfa\x49\xe5\xdb\x0b\x8d\xd5\x79\xeb\x66\x9b\xea\x1d\xe7\x8a\x29\x3e\x6a\xdd\x6c\xcf\xa8\x98\xea\x56\x6e\xb6\xf9\x98\xc9\x69\x46\x17\x33\xc8\x9f\x53\x35\x63\x73\x6a\xa6\xce\x0d\x1b\x29\x99\x6d\x9b\x9b\x0d\x2d\x3d\xa3\x60\x1e\xdd\x9b\xa4\x9f\x46\xe1\xd3\x7d\x4b\x9f\x71\xfc\x14\xba\xcd\x40\x87\xb3\xad\xb9\xe0\xd6\xdd\x3c\x15\x79\x72\x97\x72\x71\xdd\xba\xb3\x0b\xfe\x6f\xb7\x83\x32\x60\xc1\x22\xa5\x23\x16\x67\x1c\x8f\x19\x6a\x66\x04\xca\x2d\x12\x1a\x49\xe8\x48\x15\x7a\xe3\xb2\x4f\xd9\x28\x93\xa9\x7b\x9a\x65\x6c\x62\x93\x41\x6e\x3e\x93\xb7\x36\xa9\xb8\xf2\xd9\x9a\xa7\xfe\xef\x42\x0a\x6c\x4f\xf2\xfd\xf7\xb7\xb7\xb7\xdd\xdb\xdd\xae\xcc\xa6\xdf\xf7\x7f\xf8\xe1\x87\xef\xa1\xbd\xc8\x10\xef\xbb\x79\x9a\x68\x22\x15\x61\x48\xa6\x54\x4c\x6d\x52\xa3\x77\x13\xe3\xf2\x9f\x82\xf1\xf9\xdd\x5b\x0d\xca\x8b\xef\x35\xd5\x31\x0d\x81\x27\x60\xde\x55\xf4\xea\x8d\x18\xb3\x3b\x57\x4b\xe4\x32\x22\x53\x9d\x7e\xe6\xe6\x19\x06\xc2\xc8\xca\x39\x79\x30\x0a\xbd\xaf\x14\xa7\x41\xd9\x9a\x0c\x0d\xf2\x1e\x17\x9c\x19\x9d\xe1\x28\xe5\xa3\xeb\x16\xdc\xb0\x69\x71\xb1\x28\x2a\x32\xc0\x62\xd1\xf2\x17\x2c\x4d\xf9\x9a\xf0\x8c\x5b\xa9\x08\xb5\xbf\x05\x78\xa2\xaf\xc9\x9c\x0b\x4e\x18\x8b\x23\xa8\x3d\x02\x07\x2d\x8d\xd2\xed\xe5\xf2\x87\x97\xcd\x62\x6f\x83\x97\x9c\x57\x84\x73\x92\xe3\x4b\x9e\x83\x80\x05\xa4\x73\xa7\xc5\x42\x9f\x9a\xd9\x38\x29\xf8\x57\x8a\xed\xd4\xf0\x36\x56\xee\x6a\xa8\x97\xde\x61\xea\x12\xe0\x58\x48\x8e\x99\xc6\x79\xa7\x53\xa6\xab\x1b\xfd\xa0\xf4\x17\xa1\x4f\x93\xc5\x72\x69\xbb\x6a\xbc\x09\x44\x7a\x4f\x8d\xc0\x7f\x91\x5e\x14\x43\x4e\xee\x58\xf2\x39\x96\x68\x58\xf0\x21\x27\x7b\x2c\x89\x39\x39\x63\x98\x92\x53\x86\x92\x38\x6c\x13\x75\x3a\x41\x55\xd5\x56\x3b\x9d\xd8\xb0\x72\x57\xf2\xae\xac\x7d\xb9\x8c\x32\x3a\xe6\xb2\xcc\x31\xce\x59\xbf\x30\x84\x39\xa4\xb8\x09\x02\xea\x4c\xc5\x2f\x19\x84\xb0\xca\xd0\x80\x76\x3a\x34\x66\x10\xc4\x13\xc3\x0c\xb1\xd2\xbd\x98\x11\xd9\xbd\xbc\xcd\xe8\x62\xc1\x32\x13\x4c\xb9\xd3\x31\xd7\x06\x8c\x04\xaa\xd3\x89\x8c\xcc\xa6\x6c\xb4\xd3\x99\xb2\x58\x62\x97\x8f\xa5\xb9\x8d\xab\x67\x4c\xca\x03\x1d\xcb\x0d\x67\xb7\x46\x65\x3a\x66\x8a\xf2\xd4\xe9\x5b\x46\x9c\x3c\xbc\x4a\x55\x12\xd1\x54\xfd\xca\xee\x23\x6c\xe5\x5d\x49\x34\x52\x59\x0a\x39\xef\x98\xa2\x49\x34\x67\x8a\xc2\xe3\xa9\x66\x8b\x92\x08\xb8\x23\x9d\xb1\xc2\x13\x4e\x52\xee\x5b\xca\x81\xf1\xff\x6c\x1a\x33\x0f\xbf\x5b\x45\x70\xaa\x59\x80\xcf\xe1\x83\x7d\xb3\xa0\x53\xf6\xb9\x4c\xba\xf2\x06\x02\x5b\x93\x6d\xcf\x3c\x19\x68\x4d\xda\x42\x66\x1e\xa6\x4c\x4f\x64\x3e\xe1\x16\x83\xc9\x09\xc3\x57\x85\x52\x52\x38\xcd\xb4\x4e\x5b\xcd\x74\xc6\x52\xaa\xd8\xb8\xc1\x6e\xc6\x6b\xa3\x2b\x45\x96\xcb\x98\x81\xda\xc6\x1a\x83\x80\xb5\x71\x9e\x8d\xec\xe3\x50\x4f\xd7\xc0\xd2\xb8\x2c\x88\x56\x2b\x84\xc7\x9c\x4c\x4a\x34\x59\xa6\xe2\x8d\x55\x64\xc3\x16\x6c\x92\x66\xf3\xb1\xd8\xd0\x87\xe6\x22\xf3\x9a\xf3\xd4\xa1\x4f\x27\x1d\xf2\x4c\x4d\x67\x5e\x75\xcf\xf3\xe3\x8c\xcf\x69\x76\xef\x06\x79\xc1\xc9\x03\x08\xe5\xc1\xf8\x27\x79\xa8\x5b\xb9\x69\x3a\xf6\xce\xbf\x8f\xea\x5a\x22\xf8\x54\x82\x22\xc8\x24\x6f\x58\x16\x5d\xac\x30\x3c\x80\x29\xd1\x23\x55\xc2\xfb\xaf\xae\xd2\xf6\xe5\x11\x38\x8f\x83\x12\x6b\xd5\xda\xcf\x4d\xc5\xee\xa1\x5a\xf5\x23\xf0\x1e\x07\x25\xbe\xa5\xea\x15\x9e\x55\x09\xe6\xe2\x6b\xc9\x62\xd0\x79\xe3\x03\xab\x52\xb3\xce\xc2\x9c\x94\xc8\xaa\x95\xb1\x39\x9a\x2a\x4a\x70\x1a\x5c\x9b\xac\xa2\x32\x05\x97\xcb\x36\xef\x74\xda\x6b\x9e\x60\x25\xc9\xba\x86\x2e\x13\xe3\x5e\x1f\x72\xe4\xad\x60\xd9\xbe\xdd\x1a\xd0\x50\x3a\x53\x89\x8f\x9c\xdd\x2e\x97\xd2\xde\x03\xff\x04\xdf\x79\xb2\x3e\x8c\x39\xc4\xc6\x88\x15\x69\x00\xc6\xaf\x0d\x34\x9c\xc6\xd6\x0d\x94\x17\xf6\x73\x12\x38\xa7\x06\xd0\x8c\xc9\xbb\xdf\x1f\x6c\x22\x77\x89\xd4\x69\x80\xcc\x37\x6b\x48\xaa\x62\x76\x18\x53\x32\xe1\xb8\x20\x0b\xde\x2d\xa7\x2d\xce\xfd\x33\xcc\x27\x9c\x5a\x64\x47\x28\x09\xb1\x6c\x22\x9d\x55\xc6\xa6\x0d\xad\xc4\x94\x8c\x6d\xad\xe1\xf4\x32\xf5\x86\x73\x59\xd7\x6c\x9f\x23\x64\x03\x0d\x13\xc2\x87\x32\xb9\x8d\x39\xb2\x21\xb5\x09\x51\x90\xa1\x10\x2e\x08\x0d\x94\x1c\x05\x36\x3b\x07\x2e\x80\xe6\x93\x74\x2b\x4a\xcd\x24\x2d\xba\xc6\x4e\x87\x30\x5c\x54\x31\x4e\x24\x16\x95\x4a\x72\xa7\x1c\x11\xbe\x12\x66\x16\x91\x70\x95\x48\x5c\x1b\x36\xc2\xf0\x5e\x5c\x60\x81\xb9\xde\xab\xce\x0b\x2c\xf4\x6c\x9f\x87\x1b\x8b\x37\x00\x83\x55\x64\x0c\x57\x53\xba\xc8\xd9\xf8\x8c\xbb\x8c\x45\xce\x8a\xb1\xa7\x8c\x96\x28\xdd\x87\xb5\xe8\x03\xf5\x95\xa4\xd9\x78\x9f\x2a\xda\x40\x89\xa3\x4a\x81\x88\x8b\x16\x1b\xb2\x6e\xf5\x2b\xeb\x5f\xa2\x92\xa9\xe9\xee\x4d\x65\x7b\xaa\xd2\x7c\x0b\xcb\x15\x27\x0f\x07\xf9\x28\x89\x0e\xf2\x11\x5d\xb0\x08\x9f\x6a\xde\xf2\x8a\x66\x49\xd4\x8a\xf0\x5b\xa6\x37\xbc\x57\x59\x26\x6f\x75\x32\xc2\x1f\x16\xf6\xf1\xc3\x22\xc2\x27\x40\xad\xcd\x33\xa4\x23\xbc\x2f\x6f\x85\xcd\xd1\xc9\x08\xef\xb3\x34\x89\xf6\xc1\x10\x2f\xc2\x9f\xb8\x48\xa2\xa3\x53\xbd\xb1\x8a\x22\x89\xec\x25\x3e\xfd\x10\xe1\x57\x8b\x45\x5e\xcb\x3a\x05\xa7\x05\x49\x64\x7e\xdf\xca\xd1\x75\x84\xdf\xc9\xbf\x8e\x33\x2e\x40\x88\xa8\xb7\xbe\xe8\x83\xe0\x63\x26\x94\xde\xf7\xc6\xd1\x0a\x4f\x39\x79\x78\x91\x44\xaf\xe9\xe8\xda\x70\xc9\xf8\x87\x24\x3a\xa3\x57\x11\xee\xef\x24\xd1\x5e\xca\x68\x16\xe1\xfe\x6e\x12\x59\x32\xda\x7f\x96\x44\xb0\xaf\x47\xb8\xff\xdc\xb4\x9f\xc9\x34\xc2\xfd\x17\x49\xf4\x2a\xd5\xb9\x3f\x24\xd1\x31\xd5\x2b\x03\xef\xf4\x92\x68\x8f\x2e\x72\x03\xc9\xce\xf3\x12\x69\xbb\x3b\x80\xae\xdd\x5d\x5d\x76\xca\x34\x72\x76\x9f\x98\xb4\x41\xc3\xee\x53\xdd\xe2\x38\xc2\xbb\xcf\x92\xe8\x67\x39\xd7\xdf\x3c\xaf\x60\x76\xf7\x45\x80\xd9\xdd\x1f\xaa\x68\x7d\xd2\xab\x20\xf5\xc9\xd3\x24\x7a\x03\xc1\xb1\x22\xfc\xe4\x59\x89\xdf\xbe\xee\xe3\x61\x5f\x27\x76\x93\xe8\x70\x47\x27\x9e\x24\xd1\xe1\xae\x4e\x3c\x4d\xa2\xc3\x27\x3a\xf1\x2c\x89\x0e\x9f\xea\xc4\xf3\x24\x3a\x7c\xa6\x13\x2f\x92\xe8\xf0\xb9\x4e\xfc\x90\x44\x87\x2f\x34\xaa\x7a\x49\x74\xf8\x83\x4e\xf4\x75\x85\x3d\x9d\x82\xaa\x75\xdd\x3b\xba\xee\xbe\xae\xfc\xc9\x93\x24\x7a\x5f\xcc\x0d\x3e\xfa\x1a\xaa\x70\xa8\x76\x76\x9e\x24\x91\x66\xa1\xa2\x15\xbe\xad\xcc\xc4\x6b\x76\x5f\x99\xe9\xe0\x44\xee\x9a\xdd\xbb\x63\xd2\x15\x3f\x87\xe7\x8b\xe5\x12\x7e\x81\xfb\xad\x0c\x74\xc5\xa1\xbf\xbd\xa2\x52\x9a\x70\x18\x07\xcb\x9a\x11\x8e\x19\x79\x0b\xf7\xfe\xfa\xe0\x75\x79\x68\x87\x3d\x69\x32\x44\x61\xa8\xa6\x75\x76\xdc\x2e\x1c\x52\x82\x4a\xa7\x16\x3c\xfd\xd5\xc5\x72\x59\x85\x2c\x89\xa2\x15\x4e\xe5\xc8\x5e\xb8\xfb\xa7\xdc\x5c\xc6\x16\x8c\x5a\x56\x08\x34\x99\x6c\x33\x97\x37\xb2\x3d\x68\xa2\x1e\x0d\x38\x01\x84\x24\xbd\x15\xb6\x5d\xd8\xf0\xd9\xdf\xa2\xc1\xe3\x40\xd7\x75\x3b\xe3\xa3\xd9\x37\x01\xf0\xcd\x6d\xac\x10\xbe\xac\x30\x92\x63\xaa\x28\x98\xff\x4e\x58\xe6\xcd\xab\x2a\x13\x4d\xc9\x02\x0c\xb9\x03\xbb\xce\xb3\x30\xcb\x06\xcb\xae\xe4\x6d\x1c\x92\x47\x86\xb1\x61\x54\x56\x08\x1f\x84\x74\x7e\x91\xc9\x05\xcb\xd4\xfd\xb7\x6e\x16\x77\xd5\x2e\xb3\x54\xd1\xcf\x4d\x78\x36\x6f\xdc\xfe\x60\xcb\x45\xb7\x33\xc6\xd2\xfd\xe0\xd5\x36\xeb\x06\x79\x7a\xe4\xa0\xe8\xef\x1b\xab\xfc\xbd\x52\xe5\xef\x61\x95\xbf\x37\x54\x59\x29\xd0\xf0\xde\xb7\xf8\x87\x3b\x93\xa5\x8a\xea\x03\xb8\xeb\xef\x35\x27\xe7\xe7\xc6\x62\x3a\xc2\xf6\xf7\x02\x9f\x4f\x24\x2e\x2d\xae\x35\x25\xbd\xc0\xe7\x8b\x30\xaf\x34\x9e\xbf\xc0\xe7\xb3\xf0\x8d\x31\x60\x02\x45\x98\xb1\xbc\x8e\xb0\x4e\x1d\xeb\x54\x90\x6b\xc5\x90\xe5\xcb\x33\x9b\xa1\xcb\x8c\x33\x3a\xb5\x3a\x2b\xff\x6c\x79\x08\x48\x1b\xb2\xe2\xdf\xdc\x71\xe5\x5e\xe8\xa4\xcb\xb7\xac\x0b\xa4\x0d\xaf\xed\xde\x00\x67\x65\x5e\x1c\xdd\xb8\x9a\x2a\x86\xe1\xfa\xad\xcd\xb0\xc2\x18\x5d\xc6\x5a\x8b\x47\xd8\xa7\x20\xd7\xd9\x8e\xeb\x7c\x9f\x36\x6f\xc6\x36\x77\xec\x72\xb2\x0c\x94\x80\xe6\x57\xe7\x4c\xa5\xb2\x0c\x5b\xa9\x5c\x99\x4a\x65\xcf\x08\x4e\xde\xa3\x4b\x82\xba\x05\x9b\x1f\xf7\x6c\xac\xd3\x6d\x2e\x33\x4c\x4b\xf9\xce\x99\xab\xfb\xf7\xef\x5c\x86\x2b\x63\x34\x22\xe6\x75\x39\x72\xa9\xcc\xd7\x81\xd2\x99\x0d\x50\x01\x1f\x3b\x97\x80\x69\x48\xbf\x93\x37\xc1\x9b\xe0\xec\x75\x54\xa8\x20\xdf\x0c\x81\x79\xe1\xc6\xc0\x1a\xd0\xeb\x83\x8f\x4d\x41\xae\x69\xd4\xb6\x61\x9f\x7c\x2b\x4d\xe7\x25\xd7\x52\xc8\x48\x97\x2f\x7d\x6b\xd6\x4c\x1f\x14\x92\x36\xa9\xf3\x8d\xf7\xa6\x08\xbb\x04\xe4\x19\xbb\x7d\xd0\xa7\x99\x14\xe4\x1a\x2b\x7e\xa3\x59\x82\x14\xe4\x1a\x9b\x7e\x9d\x6b\x53\x3a\xb7\xb4\xf0\x8f\x30\x3c\x58\x43\x39\x78\x27\xa7\x53\x50\xda\xd9\x84\xc9\x2b\x46\x33\xdb\x67\x48\xbb\x1e\xcf\x25\x0e\xae\x3d\xd8\xc5\x19\xb9\x8b\x02\xd8\xa7\x20\x57\x53\x02\x9d\x07\xbf\x17\x17\xf8\x18\x54\xf2\xa7\xa0\x92\x3f\x3f\x37\x42\x21\x2b\x1b\xb2\x8b\x73\x04\x1f\xd8\x84\xd1\x67\x73\x50\x14\x9b\x5f\x93\x23\x73\xa3\xdd\xd6\xbf\x17\x4e\xdf\x7c\xa7\xe6\xc0\x48\xba\x27\x60\x2b\xcd\xdb\x05\x50\x01\xfd\x03\xcf\x30\x56\x23\x3b\x48\xe3\xab\xd4\x35\x31\x96\xc5\x55\xca\xf6\x7c\x43\x66\xdd\x8f\xfd\xaa\x1f\xfb\x5c\x37\x6f\x75\xba\x9c\xb7\xe3\x4c\x2e\x20\x53\x2e\xe0\x19\x64\xa0\xa0\x72\xd7\xbf\x3a\x87\x5b\x43\x53\xf3\x6b\x72\x6e\x68\xca\xc7\x90\x67\x52\x3a\xd7\xed\x96\x60\xa9\x0a\x6c\xa0\xcd\x75\x56\xab\xd7\xec\xfe\xd8\xcf\x18\xb3\x8f\x42\xe6\x87\x45\x39\xc7\x6d\x0d\x90\xf6\x75\xc0\x13\x94\x86\x94\x2d\x6f\x0c\x5f\xbd\x01\x2c\xe4\x00\x17\x6c\x7f\xdd\xea\xb0\x4b\x23\x9c\xdd\x7e\xcc\x16\x6e\x71\xfa\xa1\xb3\x39\x16\x0e\xfb\xe4\x21\xb1\xcf\x00\x8b\x4d\x5b\x68\xca\x7b\x2b\x11\x86\x87\x80\x06\x66\xcc\x58\x3e\x98\x5f\xb7\x36\xac\xaa\x19\x12\x66\x0d\x5c\xcd\x81\x2a\xdb\x84\x9f\xd1\x1e\x5a\x78\x0a\x60\x35\xcc\x03\x0c\x36\x24\xdd\x68\xc3\x83\x1b\x6e\x78\x28\xc7\x3b\xbc\x2a\x13\x61\xfb\xe8\x60\x6d\xd6\x0c\x7c\x60\x31\xc3\xed\x1e\x82\xbd\xef\x91\x12\x7d\xa7\xe7\x3d\xab\x8a\x5c\x8e\x39\xe6\x39\x98\xa7\xd3\x91\xe2\x37\xec\x4c\x2e\xde\xb2\x1b\x96\x1e\xb8\x22\x4d\xe2\x3d\x7f\x1d\x3b\x66\xe4\x94\x9f\xb3\x0b\xd4\xe9\xb4\x4d\xf4\x8b\x4a\x65\xab\xaf\x14\xe7\x40\x1d\x9a\x4d\xaf\x49\x59\x6a\xb6\xa9\x7e\xba\x26\xd6\x33\xff\x5b\x16\x0b\x84\xea\xb1\xdd\xfd\x64\x4f\xdc\x53\xb1\x88\x12\x46\x6e\x79\xe0\x9e\xcb\xd0\x08\x53\xc2\x2c\xa7\x84\x91\x9b\x4a\x09\xb3\x8a\xc1\x31\x2c\x18\x8f\x1a\x11\xe8\x7a\x73\x7e\xc1\x9b\xda\xca\xa5\x12\x3c\x03\xe1\x0b\x9e\x35\x44\xe5\x93\x26\xf6\xe1\xa3\xa6\xe8\x89\x35\x94\x2d\x09\x51\xc2\xc8\xa4\x02\x20\xf0\x13\x89\x4f\x82\xe9\x6d\xf0\xa4\x7c\x2d\x9e\xab\x28\x1f\x0d\x33\x51\x3e\x07\x6d\x96\xf4\xc8\x3d\x4b\xc0\xdf\x65\xa5\xf1\x70\xf6\x27\x65\x4e\x09\x44\x49\xf0\x83\x67\x5b\x2f\x23\x47\x61\x65\xad\x89\x34\xde\xd1\x16\xf6\x77\x26\x13\x46\xe6\x95\x22\x73\x9d\x75\x50\x01\xc1\xee\x67\x09\x23\x69\x25\xdf\xec\x0e\x09\x23\x77\xd5\xf1\xd4\xf4\xda\xa2\xd5\x23\xdc\x10\xa8\x84\x91\xfb\x4a\xd9\x75\x2e\xc6\x14\x6f\xe0\x24\x6c\x3d\x15\xe2\x55\xc9\x0b\xe6\x42\xb8\xf5\x57\x72\xca\x19\x10\xee\xf1\x95\x1c\x33\x89\xc7\xbc\xe6\xcd\x8d\x91\x57\xab\x20\x0a\x63\x83\x1d\xf1\x97\x58\x21\xac\x56\x2b\xfc\x85\x93\x33\xde\x7d\x7c\xb9\xe3\x3d\x4e\xce\x2f\xf0\x3b\x70\xe1\x76\xc2\xc9\xc3\x94\xa9\xd6\xa5\xb1\xa6\x18\x97\x97\x6d\xde\xf1\x15\x06\x6f\x98\x90\x9f\xfc\xc6\x30\xcf\xdd\xc3\xfa\x2d\x79\x5d\x5a\x65\x74\x61\x6e\x3e\x99\x1b\xd2\xc9\x6b\x06\x79\x96\xf7\xb2\x99\x1f\x19\x76\x97\xed\x4c\xc6\xef\x6c\x85\xdf\xc3\x26\xbf\xcf\x49\x0f\xbf\xe1\x24\x32\x57\xa0\xfd\xf5\xbc\x37\xfb\xd1\x56\x1c\x45\x5b\x95\x3b\xd6\xc1\xbd\xea\x57\xbc\x7e\x19\x65\xf3\xbd\x96\x7e\xff\xc7\xe6\x7b\x2d\xf8\x90\x93\x07\xa3\x41\xfb\x3a\x95\xa7\x71\xd5\x5a\x55\x79\x9a\xbc\xbf\xb9\x2b\xe0\xd7\xbb\xd5\x78\x56\x75\x9d\x9e\xb8\xb4\x2c\x19\xf9\x1b\xed\xe7\x5b\x2b\x26\xfe\x60\x7f\xff\xb4\xbf\xbf\x81\x2b\xce\xd7\xd5\xbd\xe0\xf0\x2b\xc5\xef\x98\xd7\x44\xdf\x1e\x55\xc9\x0f\x3a\xa3\x74\x24\x93\x25\x35\x89\x38\x10\xf9\x58\x92\x36\x47\xe8\x81\x25\x0f\x9c\xfc\xc5\x8c\x20\xf7\xbb\xac\xeb\x30\x34\x28\xa3\x77\xf7\x06\xf4\xa5\xbf\x3f\x46\x5d\x30\x88\x82\xc8\x73\x6a\x36\x0c\xde\x9d\xd1\xfc\xe8\x56\x1c\xdb\x03\x72\x5c\x80\xc0\xfe\xbc\xb8\x30\xee\x46\xcb\xb0\xf7\x7a\x46\xaf\x74\xcb\x10\x6c\xa5\x69\x9f\xe1\x35\x75\xab\xdb\x77\xec\xfe\x10\x7f\x8e\x39\x5a\x2e\x23\x95\x15\xa0\x2d\xe5\xdd\x9a\x59\x22\xea\x74\xe2\xb7\x9c\x70\x8d\x6d\xe5\x50\x8d\xd6\x37\x9d\x3f\x39\xf9\xc0\x89\x1d\x9a\xf0\x75\xb0\x75\xfc\x56\x46\x3e\x1f\xac\xef\x04\xd5\x8d\xc4\x76\xc5\x8c\xe9\xaf\x2c\x06\x65\xa9\xa1\x90\xb5\xc9\xa1\x37\xb3\x57\x1c\x05\xd5\x36\xee\x95\xb6\x42\x5b\x55\x25\xde\xdb\x6a\xa0\x64\xb7\xd9\xab\x42\x1c\x9d\xb0\x7c\x21\xc5\x98\x65\xc1\xab\xd6\x29\x78\x91\x0a\x73\xce\xe8\x22\x7c\x2c\x6f\xd6\x87\xb9\x86\xed\xa9\x54\x04\x9d\x09\x73\x82\xab\x5a\x41\x76\xb8\x04\x10\xfe\x25\x23\x14\x2e\x3e\x6c\xf4\x36\x80\x3f\xbb\x22\x75\xb7\x07\xf8\x0f\xf7\xa6\xee\xc0\x00\x37\x61\xc1\xba\x90\x88\x1f\xd6\xba\x9c\x9c\x71\xdc\xd8\xcd\x64\xc6\xf1\x5a\x4f\x93\x9c\xe3\xb5\xce\x26\xaf\x39\x6e\xee\x6f\x72\x22\x2d\x6f\xf7\x91\x37\x9a\x8d\x67\xec\xcf\x82\xe5\xca\xdf\xb9\x3f\xcc\xe8\x9c\x0d\x1b\x73\x13\xab\x25\xfa\xc4\xc9\x3e\x55\x0c\xff\xce\x49\x19\x91\x10\xff\xc5\x09\x38\x37\x71\xcf\x3f\x87\xd7\x89\x22\x09\xbe\xe7\x82\x76\x17\x2c\x9b\xc8\x6c\xae\xf1\xd5\x1c\x93\x39\x28\xd0\x15\xf2\xd6\x2c\xee\x9f\x38\x09\xf2\x07\x3f\x57\x9c\x18\xd9\xa9\xf8\x13\xb7\xd7\x9b\xcd\x75\xa0\xc6\x32\x9f\x5c\x19\x40\xcd\x77\xde\x76\xe2\xd7\x10\xe8\x70\x67\x30\xcd\xff\xd2\x8c\xc3\x8f\x7c\xf8\x91\x57\xb6\xb6\x38\xda\x79\xfe\x2c\x42\x2b\xfc\xd9\xd2\xd4\x3f\xec\x2f\xa3\x10\x75\x13\xa2\x16\x08\xf8\x9f\x51\xd2\xc3\x92\x92\xdd\x5d\xcc\xe1\x3f\xa5\xe4\x61\xcc\xc7\x16\x8f\x49\xbb\x8f\x2b\xce\x44\xd7\xaf\x26\x67\x74\xfb\x67\x1e\xfb\xfb\x49\xbd\x97\x6c\x08\x42\x4d\x5c\x50\x52\xf5\x8c\xe1\x43\xc0\xb9\x10\x49\xce\x25\x0f\xce\x34\x39\x04\x47\x93\x9a\x21\x30\xee\xd2\xac\xb3\xc9\x5f\x79\xcc\x10\xce\x96\xcb\x58\x81\x87\x7f\xab\x12\x5a\xc8\x5c\xbd\x63\x79\x4e\xa7\x2c\xce\x29\x8e\xfe\x27\x42\xe0\xc3\x82\x96\x9e\x4a\xc6\x29\x73\x0d\x7c\x57\xdb\x83\x9b\xfd\x9c\x0c\x6c\xdd\x74\x6c\xb6\x7c\xb7\x8f\xc7\xd1\xdc\xb4\x14\xe1\x35\xe1\xbe\xb1\xb8\x26\x84\xb8\x9b\xa3\xcc\xdc\x53\x22\x24\xa7\x9d\x4e\x6c\x51\x6d\xee\x48\x7d\xe6\x28\x0c\x02\xfd\x99\x3b\xb5\x00\xe0\x0f\xb6\x1f\x08\x6c\xc1\xe8\x72\xc9\xe8\x8f\x0a\x82\x3b\x6e\xf7\x07\x65\xa4\xb0\xf3\x0b\x9c\x91\xcf\xde\x73\x75\x36\x70\xc7\x94\xcc\xdd\xd3\x80\xe8\x60\xdb\x7d\x1b\x3a\xe7\x25\x51\x43\x61\x5c\x78\x67\x28\x71\xd9\xb6\x95\xe5\x52\xba\xa0\x56\x52\x23\x3d\x03\x07\xb7\x7a\x0b\xea\xbd\x14\xce\xf7\x3b\x04\x43\xa0\xdd\x72\x46\x98\x38\xaf\x3d\x9c\x11\xe1\x2f\x4f\xbf\xcc\xe0\x02\x75\x41\x63\x71\xae\x2e\x30\xa5\x68\xc0\x28\x61\x2b\xf0\xc6\xcd\x4c\xf7\x7a\x2f\x33\xba\xcd\x7c\xe0\x8a\xcf\x7c\x80\x18\xf9\xcc\x71\xad\xf2\x3e\x2e\x68\xcc\x74\x15\xd8\x7e\x68\xef\x75\x7d\xe6\xcb\xa5\xa0\xcb\x65\x2c\x60\x1a\xfc\xc2\xe3\x94\xc2\x90\xb7\xfb\x86\xc2\xa4\xb4\x72\x2b\x1b\xa6\xb7\x0b\x5a\xbe\x9d\xd1\x2d\x4e\x07\xea\x25\xa7\x9d\x8e\xa4\x2f\x39\x1d\xc6\x2f\x7e\x34\x31\x6f\x5f\x20\x3d\xf3\xd5\x4b\x49\x87\x92\x26\x0a\x25\x92\x12\xa5\xd7\x05\xdb\xe2\x14\x2b\xfa\x55\x33\x6f\xf0\x1d\x6f\x9c\xec\xdb\xfd\x6a\xa4\x7e\x55\xb1\xf7\xb1\x0b\xd8\x5f\xb2\x81\xb8\x99\xba\xd3\x5b\x3e\x0b\xe1\x72\x4e\xc0\xf8\x89\x4e\x47\xbc\x64\x14\xc6\x8d\x12\x88\x6e\xff\xb0\xb6\xa0\x12\x86\x83\xf9\x90\x08\xbc\xc8\xd8\x8d\x91\x4b\x8b\xd2\x45\x85\xc7\xec\xf0\x33\x27\xcc\xdf\xe4\xd3\xbc\xba\x2e\x4f\xfe\xe0\xba\x15\x13\x2c\x88\x30\xa4\xa9\x08\xc3\xeb\x63\x80\xd9\x4a\x53\xae\xda\xd2\x10\x2e\x0c\xa5\xae\x6a\xb9\xfc\xcc\x75\x27\x4a\x73\x41\x5d\x27\x44\x5c\xd5\xaf\x07\xe6\xd9\xd2\x28\xd3\xb8\x08\x9c\x6f\x1b\xef\xa6\x10\x72\x2a\x36\xc1\xda\x88\xc2\xca\x96\x43\x49\xac\x82\x4f\x3e\x73\x52\xc6\xa3\x2a\xcb\x7b\x32\x88\x92\x3f\x38\xb1\x74\x71\x65\x88\x34\x00\x35\xa2\x60\x67\xf8\x8e\x2e\xaa\x63\xe9\x40\xfe\x5b\x24\xf7\x4a\xd4\x96\xe8\x5e\x61\x41\x7e\xe7\xa1\xe3\x3a\x16\x3f\x6c\x24\xa8\x2e\xa0\xfe\xf7\xbd\x15\xae\xd0\xe0\x15\x5a\x79\x02\x3b\xa2\xdd\x9c\x41\x1c\x55\x7d\x74\xaa\x63\xde\x00\x3b\x02\x2b\x81\xb8\x81\xd4\x6a\xee\xab\x6b\xfc\xc7\x68\xba\xfa\x17\x8f\x15\x32\xbe\xb4\x27\x94\x3c\xcc\xd4\x3c\x4d\x36\xda\x8a\xea\xb7\x11\x9e\x53\x35\xdb\x58\xea\xc5\xf7\x9a\xce\xc2\xbf\x77\x6f\x23\x9c\xdf\x4c\x9b\x0a\xee\xf4\x7a\xbd\xef\xf3\x9b\xa9\x3e\x68\x78\x7b\x90\x45\x75\xfd\x5a\x55\x4d\x21\xc6\x6c\xc2\x85\xd5\x8c\x9a\xf5\xf2\xee\xf4\xd5\x62\xd1\xe9\xc0\x4f\x97\xdd\xb1\xd1\x07\x91\xd3\x09\x7b\x2b\x47\x34\x3d\xb4\x55\x0c\x7d\x5d\x3e\xd0\xe6\xa3\xe5\xe3\xf5\x61\xb0\xce\x93\xd1\x2a\x61\xab\xb8\xba\xb8\x81\xf4\x7b\x83\xd5\x0f\x27\x6f\xda\x84\x4c\x68\x37\xbf\x99\x82\xfd\xa2\xbd\x41\x05\x5a\x22\xc4\xba\x3e\xc3\x86\xd3\x02\xbf\xc6\x63\x4a\xc6\x74\xb9\x7c\xd4\x25\x11\x1e\xd3\xe0\xe3\xe8\x65\x7e\x33\xfd\x31\xda\x52\x5b\xd1\xcb\xef\x21\x89\x15\x19\xd3\xc0\xfd\xe5\x20\xf4\x85\x59\xf7\x57\xc9\x2a\x21\x9d\x20\x7a\x8d\xaa\x15\xa7\x0b\x7d\xea\x33\xc5\xc3\x77\x60\xeb\x36\xa3\x81\x7b\x28\xaf\x94\x82\xe0\x1a\x49\xbb\x87\xaf\xc0\xc2\xfe\xcd\x9c\x4e\xd9\x51\xa1\x72\x56\xcf\x3c\xd5\x9b\x6c\x2d\xef\x13\x58\xc8\x41\xde\xdd\x61\xca\xee\x82\xe4\x4f\x99\x2c\x16\xf6\xf9\x28\x1b\x6b\x66\xc0\x67\x8d\x64\x5a\xcc\xcb\x96\xcd\x63\xae\x93\x13\x5b\xc9\xc4\xd4\x70\xeb\xd2\xc7\x60\xd2\x7e\xc3\xdc\xf3\xe9\x2c\xe3\xe2\xda\x3d\xbd\x67\x53\x1a\xbe\x35\x8e\xd8\xda\x3d\x3c\xcd\xf8\xf8\xc4\xd4\x62\x93\x07\x62\x1c\x3c\x9d\x2e\xa8\x08\x1f\xc1\x0d\x81\x7d\xde\x03\xa8\xaa\x4f\xc1\xd7\x26\x23\xac\xc0\xe6\xb8\x3a\x26\x52\xa8\x4f\xc6\x6c\xb0\xdd\xc3\x29\x17\x6c\x2f\xa5\xf3\x85\x7b\xf8\xd9\xbf\xb2\x86\xff\x90\x74\x80\xcb\x6c\x31\xa3\x06\x25\x8a\x5e\x9d\xf2\xbf\xa0\x6f\xb7\x7c\x2c\x6f\x21\xf3\x2f\xb0\xa3\x86\x94\x94\x73\x68\x8e\xa7\xe9\x51\x59\x13\x5c\x37\x09\x9e\x73\x25\x17\x95\xc7\x4c\x5e\xb3\x7d\x77\x8d\xa1\x9a\x65\x2e\x32\x94\x79\xef\xfc\x5d\x85\x32\x6f\xad\x2e\x37\x15\x56\x78\x4e\xc9\x79\xf4\x89\x5d\x5d\x83\x50\x7b\x9e\x47\x38\x7a\x27\xff\x8a\x70\x74\x14\x5d\x0c\x42\x27\xd2\x33\xda\x6c\x18\x3f\xa7\xeb\xd9\x0a\x3d\x28\xa2\xb6\x58\x77\x34\xa3\xd9\x2b\x15\xf7\x34\x0b\xf8\x61\xb1\x70\x06\xc1\x5b\xac\x9b\x17\x57\xb9\xe1\x09\xfb\x7a\xb2\x9f\xab\x0b\x32\xa3\xe7\xec\x62\xe5\xc4\xd3\xf7\x14\x9c\xa6\xe8\x63\x2e\x57\x6c\x0e\xc0\x3e\xd0\x8c\x51\x98\xa6\x34\x37\xb3\x3b\xb3\x53\xd2\xdc\xcf\xbe\x62\x30\xe2\x33\xc8\xe5\xf3\x29\xfc\x80\x27\x90\x76\x0f\x5f\xb3\xfb\x29\x13\x76\x44\x61\x36\xce\x99\xa2\xe6\xf2\x76\x46\x61\x58\x0c\x7b\x09\xe3\x98\xe9\x2d\x47\x8f\x22\x34\xb1\x42\xf8\x86\xd6\x1c\xea\xc4\x51\x84\xf0\x15\x25\x0f\x15\x5a\x92\x8c\x15\x36\x19\x67\xec\x0e\x4e\x8b\xc9\x42\xe1\x5c\x1f\x29\xb9\xe2\x34\xb5\xe2\x09\xce\xf2\x64\xa6\xf0\x98\x4f\x26\x41\xce\x5c\x59\x77\x77\x41\xde\xbd\x29\x65\xee\x7d\x9a\x48\x13\xf6\xcd\x4d\xf5\x0d\x78\xc3\xba\x52\xf8\x96\x66\xe2\x50\x66\x1f\xc4\x1c\xdc\xcf\x99\xfc\x80\xde\xae\x5c\x09\x63\xee\x33\x36\xdf\xd3\xab\xd4\x77\xe1\xab\x0a\x6f\xac\xd6\x58\x14\xb9\xa2\x26\x2c\xd3\xa6\x5a\xeb\x65\xd7\x2b\xb5\xf7\xf8\x4b\x27\x02\xc6\x30\xa2\x2a\x90\xf2\x71\xe3\x95\x15\xd4\x18\x2d\x58\xc2\x27\xf1\x0d\xb3\x7b\x37\x11\xb0\x85\xe0\xd2\xe8\x5c\x58\xfb\x6f\xcb\x2b\x9a\x70\x80\x82\xb0\x81\xa8\x04\xe9\x11\xa4\xf2\x6c\x0a\x89\xee\x9f\x05\xcb\xee\xcd\xe1\x5c\x66\xaf\xd2\xd4\x5e\x1a\x38\xd7\x8d\x90\x68\xeb\x97\xd3\xa3\xf7\x5d\x33\xc3\xf9\xe4\x3e\x8e\xa2\x2d\x85\xb6\xfe\x75\x71\x0e\x96\x83\x16\x86\x8b\x7f\x69\xb8\x7a\x03\xf5\x52\xac\x85\x39\x95\x44\x33\xf7\x60\x5e\x6a\x8c\x27\xa5\x5e\x66\x73\x50\xad\xe8\x84\x0b\x5a\x7c\x19\x4b\x34\xe0\xe0\x6c\xf6\x87\x5e\x84\xb0\x64\xb1\x44\xf8\x86\xc5\x12\x73\xb4\x5a\xad\x42\x41\x3d\xbb\x53\x7a\x01\x45\x49\x66\x18\x9a\x8a\x08\xdd\x88\x29\x2d\x2b\x07\xf6\xa7\xc6\x0e\xbe\xd3\xf9\x03\xf4\x46\x6d\xd1\x75\x97\x30\x4d\xc0\xd1\xd5\x6a\xe5\x83\xfd\xb8\x18\x40\x97\x94\xfc\xcc\xf1\x11\x25\xdf\x71\x7c\x40\xc9\xaf\x7c\xa0\xb9\xbc\x53\x66\xa2\x5e\xde\x51\x7d\xa4\xba\x86\x53\xf1\x31\x25\x07\x2a\x7e\x9d\x21\x7c\x0a\xa9\x76\x1f\xe1\x33\x4a\x5e\x67\xf8\x8b\xad\x6b\xcf\xfe\xbe\x83\x43\xdd\x09\x94\x02\x39\x1a\x7e\x1f\xa4\xf7\x21\xdd\x43\xf8\x0d\x25\x0f\x2b\xfc\x0a\x1e\xdf\x50\x84\x0f\x7d\xea\xad\x4f\x7d\xa0\xe4\x81\xe7\x10\x9c\x27\x14\x4f\x97\x0e\xb9\xdb\xe0\xab\xbe\xc1\x23\xbf\x8d\x87\xf0\x5e\xb3\x71\x2b\xef\x86\x02\x82\x4c\x35\xcc\xc6\x0d\x95\xd8\x10\x12\x2c\xd3\xe7\x77\xf2\x59\xc4\x19\x66\x2e\x00\xfb\x4f\x2a\xce\xd0\x40\xfa\xc8\x03\x0a\x7b\xdd\x9a\xf0\xc7\x38\x01\xfe\x3e\x7c\x9c\x01\x61\x43\xfc\x4b\x9c\xd9\x10\xff\x59\x09\xdc\x89\xb9\x21\xf4\x5f\x07\x50\xd1\x29\xe9\xe3\xff\x22\xa0\x87\x32\x1b\x59\x9b\x81\xba\x6f\xcf\x47\xa0\x14\x06\x4a\xa1\xa1\x14\x0e\xca\x4c\x43\x29\xd0\x20\x03\x28\x77\x4a\xc8\x94\x87\x4c\x9f\xfa\xb2\x7a\xa8\x06\x86\x33\x4d\x23\x00\x32\xa1\x4f\xb9\x7f\x52\xf2\x4a\x6f\xb5\x5d\x9e\xc3\x2f\xfe\x8d\x92\x1b\x11\xb7\x7b\x08\xbf\x36\xa9\x3e\xc2\x1f\xed\x04\xfd\x64\x7f\x7f\x87\x89\xfa\x97\x67\xb1\x7f\xf6\xa9\x9f\x5c\x6a\xf0\x17\x25\x15\xf2\xf6\x73\x55\x6a\xa3\xc7\x26\x56\x61\xa0\x24\x22\x50\xa7\xf3\x5e\x6f\xa9\x2b\x5d\xcd\xba\x20\x5e\xb4\x09\xc9\x5c\x11\x23\xe1\x32\x81\xf6\x21\xca\x3e\xfe\x85\x92\xef\x28\xfe\x4c\x49\x0f\xff\xa1\xff\x31\x88\xa2\xa3\x0a\x77\xe2\x33\xbf\x59\x41\x7a\x58\x16\x7a\x61\x72\x28\x40\x0b\x1f\x80\xb7\xdd\xc7\x39\xfc\xb7\xf1\x72\xf0\xc8\xfe\x4e\xec\xaf\x0b\x28\x6d\x3b\x0b\xa1\x87\xf1\xdc\xbe\xbc\xd7\x2f\x6f\xf4\x3f\x13\x52\xda\x84\x5b\x76\xc1\x97\x5d\xb8\xe9\x23\xc8\x85\xa0\x30\xf8\x0e\xfe\xdb\x70\xd0\xf8\xb8\x20\x7d\xb6\x8b\x21\x6c\xf4\x59\x41\xfa\xf8\x4b\x41\x1e\x0c\x7e\xbc\xcb\xf1\x57\xb5\xc8\xbd\xc9\x65\x66\xf7\x60\x5f\x64\x6d\x05\x38\x51\xb9\xf7\xd0\x8f\x6b\x95\x26\x07\x19\x9e\xa4\x45\x3e\x3b\x91\x52\x25\x69\x86\xad\x98\xf4\x93\xcc\xae\x13\x99\x81\x43\xa9\x42\xb1\x0f\x82\xff\x59\xb0\x57\xf9\xbd\x18\x95\x40\x24\xbf\x08\x7c\x65\x76\x5f\x33\xb1\xf3\xe4\x3e\xc3\x85\xa8\xe5\xdd\x64\x18\xee\xec\x67\x65\x96\xca\xb0\xae\xca\x3d\x8a\x0c\xf3\x52\x47\xe7\x72\xa7\x16\xb2\x37\xeb\xaf\x82\xc9\xf5\xb7\x11\x6d\x56\xa6\x96\x72\x6b\x4d\x6e\x6d\xc5\xa7\xf7\x62\x94\x5c\x65\x78\xca\xd4\x71\x71\x95\xf2\x91\xc6\x81\x77\xd9\x7b\x97\xe1\x7a\xc4\x8c\xe4\x68\x3d\xef\x13\x57\xb3\xf7\xf2\x18\xbc\xc3\xe4\xcd\x7e\x83\x0f\xff\x2e\x96\x86\x91\xac\xbf\x11\x4a\xee\xb3\x9b\x33\x29\xd3\x3c\xb9\xce\x56\x83\x7d\x27\x73\x7f\xcc\xc1\x50\x7c\x45\x11\x3e\x0d\xbc\xfb\x59\x87\xf4\x95\x73\x6f\x10\x35\xc2\x38\x6c\x7f\xaa\x37\xd1\xf5\x30\x14\x9a\x25\xac\x06\x9d\x60\x56\xda\x55\xc6\xb7\xa8\xba\xb5\xc7\x2e\x76\x45\x2d\xfa\x94\x71\x2f\x78\xe6\x9d\x7a\x5f\x86\x2e\xe9\xb1\x2c\xc3\x4d\x20\x2c\x57\x55\xf8\xd5\x8c\x89\xba\xe0\x67\x2d\x3e\x06\x62\x61\xdc\x39\x07\x9f\x0f\x7d\xe1\x04\x7c\x46\x1a\x57\x8f\x8b\x71\x7e\x81\xb0\x32\x12\x4c\xb8\x01\x57\x69\x7e\x64\x82\x62\x34\x7b\xcb\x6c\xc2\x80\x5a\x8b\x33\x1e\xa0\xbb\xa4\xc8\x16\xf1\xfd\x26\xc4\x3b\xc9\x5e\x13\x2a\xa1\x42\x5d\xc1\x8c\xe7\x6e\x24\x83\x4f\x41\xbc\xd7\x18\x97\x44\xad\x0d\x0a\x14\x73\xf1\x0a\x2a\xe3\x8c\x90\x17\x08\x4b\x77\xd1\x46\x0d\xb8\x6d\x76\x80\x24\xc4\x0d\xe2\x26\x88\x89\x43\xae\x8d\x31\x0e\x5d\x92\x36\xbe\x89\x2d\x82\x83\x90\x27\x0a\x87\xf8\x81\x0a\x57\x95\x30\x26\x7d\x0c\x31\xf7\x81\x7d\x2d\xbf\xc3\x6b\x51\x53\x48\xb5\x9e\x20\x2c\x91\xaa\xa1\x44\xf9\x5e\x06\x5d\x34\xba\x93\xe6\x58\x2c\x0e\x92\xda\x5c\x08\x02\xef\x93\xaa\x57\xfb\xf6\xfa\x8c\x7c\x68\x08\xe2\x52\x71\x13\x1b\x4c\xcf\x40\x96\xe9\x43\x83\x18\x1e\x99\x85\x3c\x72\xdc\xc3\xec\x5c\x5d\xa0\x58\xcf\xd2\xb3\x6f\x59\x24\x7a\x65\xfd\x37\x97\xc8\xd9\x3a\x5a\x6a\xab\xa4\x8e\x14\x0d\xc1\xc3\x5a\xf0\x99\xff\x10\x21\x4e\xdd\xa3\x0f\x0d\xa5\xda\xaa\x94\xe2\x09\x13\x4b\xed\x87\x7e\xa4\xa7\x93\x88\x81\x7d\xff\xf2\x28\x75\x2c\xe5\xea\xeb\xa1\x6d\x70\x56\x23\x63\x8f\x47\xc7\xca\x60\x58\x62\x85\x30\xc4\x96\x12\x86\xdc\x65\x21\xb1\xcb\x6a\xe0\x14\x02\xc2\xd9\x34\x88\x5b\x1b\xa0\x11\x35\x68\x58\x09\x8d\xdb\x56\x1c\x34\xfa\xc0\x67\xa0\x61\x00\x8d\x99\xeb\x96\xfe\x86\x00\x89\x1a\x40\x7f\x1b\xf9\x64\x8d\x93\x2b\x1d\xce\xd6\xc0\xad\xef\x01\xa2\x04\x57\x18\x70\x05\x2e\x39\x69\x69\xc0\x15\x00\xae\xc2\x19\x66\x6b\xdb\x44\x05\x50\xc3\xfa\x18\x5a\xb0\x46\xac\xe1\x3c\x66\x88\x1c\x02\xc2\x51\x27\x85\x9b\x46\xbb\x46\xc9\xed\x1a\xc9\x50\xf8\x82\x30\xcc\x02\x12\x52\x8a\x5f\x4d\x8c\x26\xaf\x48\xd3\x13\xa2\xd6\xee\x4b\xa2\xf4\x51\x3b\x03\xcd\x98\x21\xa6\xae\xaa\x2c\xc0\x45\x2c\x6c\x26\xf3\xd6\x08\x6c\x85\x7f\x22\x5f\x8a\x6e\x95\xb9\xc2\xdf\xe9\xbc\x75\xe6\x09\xff\xaa\xf3\x37\xb0\x4f\xb0\x04\xf7\x0a\x27\xd2\x31\xbc\x4b\xf2\xde\xf0\x36\xfb\x47\xef\x36\x45\x40\x30\xc8\xb0\x33\xad\x5f\x0b\xa1\x94\x40\xb8\xb7\x15\x9e\x19\x19\xc7\x26\x4e\xf4\xc4\x4e\x45\x38\x5d\xf7\x80\x23\x35\x53\xed\xab\x3e\xe8\x1b\x16\xd6\x06\x7d\x7a\x64\x92\xd6\x4d\x79\xa4\xab\xcf\x8e\x28\x5b\x2e\xcb\xa5\xb3\xe1\x24\x9c\xc5\xd1\xee\x8b\x08\x61\x1f\x71\xa9\xdd\xc7\x12\x9a\x87\x25\xeb\x39\xb0\x57\x6a\x13\xc2\x20\x0a\x16\xec\xfb\x4f\x34\xbf\xd5\x6e\xb3\xa6\xe8\x46\x9d\x4e\x5c\x0d\x43\xe4\xba\x6c\xfb\xdd\xee\xe3\x50\xd5\xd3\x18\x20\xc9\x5c\x07\x59\x21\x30\x8d\x2d\x11\x54\x19\xe0\x75\x65\xc4\x7b\xe7\x43\xda\xb9\x59\x08\x42\xc1\xf8\x3a\x9a\x38\x7c\xfb\xaa\x81\xad\xf7\xef\x1e\x61\xe8\x1d\xdf\xed\xcb\x36\x30\xe8\xdf\xee\x1d\x32\x79\x08\x6c\x44\x7e\x2e\xae\x12\x21\x71\x90\x63\xcd\xd7\xee\x93\x5f\x33\x9b\x6d\x9d\x90\xcb\x2c\x4f\x0a\x89\x8d\x6f\x49\x0f\x43\xe9\xc0\xf3\xd0\xbe\xdb\x3f\x7a\xe7\x33\xcf\x32\xc6\x12\x5a\xbe\xa8\x68\xf6\x93\x13\xbe\x36\x04\x70\xba\xaa\xee\x39\x6b\x71\xbe\x7a\xd8\xab\x73\xc1\xb8\x58\x75\xed\x5a\x42\xab\xd5\xe0\x3a\x8b\x1f\x36\x85\xdc\x9b\xe2\xab\x42\x8c\x53\x58\x88\x49\x0f\xdf\xb0\x2c\xd7\xa7\xb3\xa8\xff\xac\xfb\xa4\xdb\x8f\xec\x02\x63\xd9\x31\x1d\x5d\xd3\x29\x33\xd7\xd8\x4d\x2c\xb5\xb1\x9c\x47\x56\x12\xfd\xae\x20\x0f\xce\xc8\x72\xaf\x58\xe1\x93\x82\xbc\x2b\x3a\x9d\xbd\x62\xb9\x7c\x57\x0c\x58\x97\xdd\x2d\x64\xa6\x72\x72\x52\xb8\x3b\xde\xc3\x32\x99\x9c\x14\x2b\x5c\x5f\xc1\x51\x91\xb3\x96\xf1\x73\x19\x59\xc1\x45\x3b\x0e\x94\x6f\xa5\xb2\xda\xc5\xa0\x68\x5b\x75\xb8\x53\x60\xad\xe7\x54\x55\x5a\x08\x4b\xf2\xe0\x0d\x5a\x92\x0c\x9b\xb4\x3e\xbc\xb2\x2c\x4f\x1a\x15\x7d\xe6\xa5\x2d\x59\x19\xb8\x3c\xc9\x3a\x9d\x76\xdc\xde\x60\xb1\xd1\xe9\xf8\x37\x4a\x51\x6b\xb0\x89\x6c\x45\x1f\x39\xbb\xd5\xf8\x81\x2a\x5c\x39\xe3\xd5\x02\x0c\xce\x4d\xab\x49\x3b\x5b\x05\xa8\x94\x7f\x83\x33\xef\xf6\xdd\x85\x98\x6c\x42\x5e\xcc\xe0\x86\x79\x63\x5f\x1d\xd6\x86\xde\x60\xd1\xac\x74\x54\xb5\x22\x0f\x83\xbb\x76\xcd\x9a\xb5\x08\x5e\x2e\x59\xf7\x4a\x8e\xef\x6d\xac\x63\x15\x78\xbc\x80\xec\x55\xd9\x99\xec\x1b\x3a\x53\xce\x7f\x13\x1c\xb0\xad\x8c\xc9\x08\x1c\x93\xda\x32\x06\x0b\x12\x19\x2b\x34\x84\xc2\x81\x60\x1a\x25\x91\x8d\xda\x98\xfb\xdb\xdd\xf6\x39\x56\x28\xd1\x24\x76\x24\xe7\xba\xbc\x33\xc1\x3c\xb6\x9e\xa7\xf4\xb8\xc4\xfd\x67\x9d\x8d\x05\x62\x85\x10\x32\xfe\xf3\x25\x84\x3a\x7b\x8e\x06\xff\xac\x7b\x1e\x4b\xa6\x27\xbb\xe1\x4e\x19\xd4\xff\xe2\x9f\xd7\x6f\x2d\x1e\x86\xac\x6a\x6e\xba\x5c\xb2\xc4\x0d\xb5\x66\x71\xaa\xde\x18\xcc\xac\x1c\x54\x10\xdf\x18\x0c\x50\x74\x35\xaa\x87\xac\xc5\x2d\x89\xf1\x79\xc9\xba\xd5\x1b\x6b\xb2\x3e\x09\x03\x39\x46\x46\x3f\xb0\xf6\x16\xfc\xe9\xa0\xff\x60\x06\x81\x71\x53\x05\x48\x85\x10\x04\x3f\x03\xaa\xaa\x5b\x37\x71\xd5\xa2\x3d\x2a\x84\x54\x2d\x7d\xdc\x68\xd1\x16\x78\xf5\x6c\xd1\xbc\x45\x5b\xbe\xf3\x41\x78\x3e\x59\xd6\xce\x82\xea\x4e\xf4\x66\xc7\xc4\xc8\xd5\xa9\xf9\xc7\xd6\x8c\xe6\xe2\x5f\xaa\x75\xc5\x98\x68\x71\xa3\xfa\xe2\x39\x1b\xb7\xb6\x5b\x79\xb1\x60\x59\x8c\x2a\x25\x46\xe6\x92\x99\xb3\xba\x68\xab\xe5\xd2\xe1\xb3\x5c\xb3\x2a\xb4\x1d\x0c\xb2\x87\x2c\x09\xe2\x74\x73\x0f\x64\x63\xe1\x52\xec\xd0\x8c\x90\x53\x0d\x5d\x8b\xdd\xc1\xfd\x12\x88\xb2\x5d\xe4\xaa\xc5\xb8\x9a\xb1\xac\x75\xc5\x80\x2c\xb4\x64\x16\x60\x08\xb7\x34\x06\xa3\x2d\xd7\x82\x9e\xbb\x65\x80\x08\xab\x42\x35\xc4\x39\x86\x13\x79\x10\x5d\x25\x08\x18\x91\x3c\x80\xbe\x25\x61\x98\x89\x62\xce\x32\x08\xf7\xd2\xee\xe3\xdb\xcc\xd8\x14\x1b\x45\xa7\x98\xf0\x69\x61\xdf\xc1\x55\x66\x7d\x48\xb5\x6d\xe4\x4c\x6f\xdd\xa6\xea\xa3\xc9\xb0\x31\x17\x90\x93\xb0\xee\xe5\x25\x40\x71\x79\x49\x94\x59\xd8\x14\x22\x17\x42\x84\xe7\xae\x88\x29\xc2\xb9\x09\x86\x98\xc2\x73\x8e\xf0\x48\xaf\x4c\x84\x27\xf0\x3c\x42\x78\xac\x9f\x9f\x22\xbc\x20\x22\x7e\xfe\x04\xe1\xd9\xe6\x28\x1d\x70\x88\xc4\x1c\xd3\x81\x39\x78\x60\x55\x0a\x55\x0a\x52\x0f\xf2\x88\x73\x23\x7b\x8f\x0b\xdd\x7a\x6f\x90\xbe\x2c\x06\xe9\xd6\x16\xca\xcf\xd3\x8b\x20\xec\x63\x7a\x51\x9e\x9e\x38\x91\xa6\x62\x06\x92\x7d\xcb\xbb\x31\x7c\xae\x33\x2f\x34\x1d\x1c\x51\x15\xe7\x08\x21\xcc\xbb\x33\x9e\x2b\x99\xdd\xdb\x91\x89\xc7\x5d\x8a\x62\xae\x07\x65\x91\x23\x4c\x89\xc0\x32\xe6\x98\xfa\xe3\x05\x8f\x15\x66\x70\xe4\x0f\x05\x61\x86\xdb\xf9\xc4\xd3\xf4\x5d\xf5\x94\x8a\x1e\x8a\x18\xd9\xf3\x3e\xd4\xe9\xda\xc3\xd1\xcb\xd7\x99\xbc\xcd\x59\x76\x22\x0b\xc5\xb2\x1f\x5b\x7c\x2a\x64\xc6\xf2\x96\x9a\xb1\x96\x2d\xd4\xd2\x9f\x74\x5b\x67\xb2\xa5\x97\x37\x6d\x8d\x8a\x5c\xc9\xb9\x7b\x8b\x21\xf7\xff\xf0\xb9\xa6\x0a\xad\x87\x96\xa9\xa8\xb5\xfa\x3f\xb0\xd2\x19\x1d\xb7\xe4\x24\x78\x5d\x69\x4e\xaf\x6a\x5f\xbe\x1b\xa1\x55\xa5\x47\xf5\xb3\xbf\xa7\xd3\x69\x97\xd6\x6c\x65\x16\x5d\x8a\x1f\x2c\x40\x09\x74\xd3\x41\xe7\xe3\x07\x07\x9d\x77\x79\x2b\xdd\xe0\x2a\xd6\xd5\x79\x5e\x11\x0d\x66\x50\x0a\xee\x1c\x90\x87\x2b\x9a\x33\xa1\x39\xb0\x49\x97\x5a\xcd\x29\x9e\xc8\x6c\xc4\x4e\xd8\x24\x63\xf9\x0c\xf2\xaf\xa4\x84\x6b\xf2\x1f\x72\x90\xfb\x4e\x78\x36\xb7\x31\x7c\xba\xb4\xab\xc1\xc7\xd7\xec\xfe\x2d\xcc\x23\xc8\x32\xf4\xb7\x04\x0d\xf2\x40\xb4\xac\xba\x94\xcc\xbe\x8a\x35\x13\xf1\x93\x3e\x78\x98\xe9\x8a\x38\x43\x98\xeb\x85\xf1\x04\xa6\x4a\x57\xc4\x1c\x96\x4c\xfc\x64\xc7\xac\x98\x5d\xb3\x64\xe2\xe7\xbb\x66\xc5\xf4\xfb\x4f\xf5\x9a\x79\xcc\x87\x77\x94\x43\x62\xed\x8d\xf7\xea\x3d\x6c\x38\x40\xb9\xfd\x62\xd5\x28\x58\x6f\x36\xb2\x76\x0d\x56\xe3\xd4\x10\xe2\xf3\xdb\x2e\x5d\xce\x8c\xa1\x83\x2e\xf1\x2d\xe2\xb1\x23\x6a\x34\xcf\xf9\x54\x2c\x97\x95\x85\xef\x45\x54\xfd\x81\x5a\x0b\xe0\x1a\x8a\xaa\xca\xa5\xac\x2e\x3c\x39\xc8\x5a\x5c\xb4\x04\xb2\x0d\x94\x13\xb4\x7a\xb7\xc3\x84\xa9\x15\x38\x03\xe6\xe8\x3c\xbb\x20\xe2\x3c\xbb\x08\x25\x02\x8b\x70\x2e\x07\x5c\x9c\xe5\x3f\xed\x94\x35\xaa\x86\xe5\xf2\x61\x65\xd9\x38\x8f\xc3\x87\xd5\x6a\x85\x1b\xc4\x27\xf5\x0e\xfd\xd8\x6b\x8c\x49\xdb\x0b\x63\xd2\xf6\x2e\x92\x87\xd5\x80\xc6\x28\x1e\x75\xaf\x70\x64\x97\xa5\x5f\xf2\x10\xbd\xa0\x45\x5b\xfb\x47\xef\x6c\xac\x58\x45\xaa\x60\x62\xe1\x88\xd5\xa8\x3b\x45\x31\x98\x6c\xfb\x8c\x99\xce\xe0\xc6\x2a\xc0\xaf\x15\x3c\x23\x1e\x2a\xde\xe9\x70\x3c\x37\x37\xc2\xea\xcb\x06\xdf\x97\x92\xa7\xf9\x70\xd4\x1d\x25\x73\x7c\x43\xc0\x5b\x86\x59\x44\xf8\xaa\x2c\x70\x33\x7c\x96\xdc\xe0\x29\x61\x5d\xb7\x54\xed\x1e\x13\xe7\x1a\x2c\x9f\xa6\x28\x2e\x8b\x20\x94\x44\x11\xbe\x6d\x10\xe3\x01\xde\x81\x17\xbb\x66\xf7\x38\x23\xca\x8c\x06\xe6\xae\xf7\xce\xfb\x09\xa6\x84\x77\x17\x54\xcd\xc0\x7e\x23\x25\xbc\x6b\x02\x2b\xe0\x11\x81\x4b\x3f\x33\x3c\x21\x74\x2b\xdd\x1a\xf9\xa0\x1d\x9a\x02\x4f\x97\x4b\x0f\xd1\x08\xc5\x13\x3c\x45\xf8\x5f\xbf\xcb\xa2\x45\x33\xd6\xa2\x4a\x81\xa3\x03\x31\x6d\x29\x47\x6b\x1d\xc4\x2d\x29\x5a\xb4\xb5\xa0\x53\xd6\xba\x9d\xc9\x9c\xb5\x3e\x9c\xbc\x6d\x81\xd3\xe2\xb1\x64\x39\x6c\xf6\x57\x6c\x0a\xd1\x8b\xd4\x0c\x88\xb7\xfb\xb2\xdb\x3a\xb8\x5b\x80\x4f\x6a\x53\x3e\xfa\xd7\xd6\x64\xeb\x5f\x91\x6e\x22\xf8\x22\xfa\xd7\xd6\x74\xeb\x5f\x51\xf7\x5f\x08\x4f\x3b\x9d\x78\x42\x3c\x98\xcc\x80\x89\x6c\xf0\xfe\xb8\xd0\xa8\x9c\x80\x6e\x7a\x85\x2f\x1b\xa8\xf3\x63\x56\xf6\x60\x5f\x15\xef\xe0\x2b\xb4\xc2\x47\xae\x8d\x54\xd7\x88\xf0\x41\x65\x38\xc6\xf1\x6b\xbd\xc3\xbd\xb6\x53\x9a\x28\xb7\x11\x1f\x75\x85\x54\x7c\x72\xef\x8f\x81\xf1\xeb\x72\x50\x5e\xc3\x79\x48\x6a\xd0\xee\x2a\xd5\xf9\x99\x39\x46\x20\xe4\x39\x8d\x6f\x63\xab\xd4\x43\x68\x85\xaf\xc3\x7e\xe8\x77\x8b\x58\x1f\x2e\xf0\x31\x69\xf7\xf1\x69\x5d\x72\x7f\x8c\x20\xff\xc0\x09\xec\x8f\xba\x23\x33\x7d\xcb\x78\x8d\x67\x9a\x2d\x8d\x8e\x8f\x8e\x23\x7c\x8f\x2b\x26\x68\xc3\x83\xf8\xc1\x00\x99\x98\xf7\xde\x9f\x0e\x5b\xa1\xe4\x2c\x66\x68\x05\x12\xfc\x86\xc9\x19\x74\x54\x90\xbd\x2e\x38\x3e\x3d\x9a\xc4\x30\x57\xd1\x00\x6c\xc4\x8d\x82\xa9\xe7\x2c\x0f\xca\x42\x2c\x28\x94\x75\x3a\x71\xe6\x0a\x49\x22\xb6\xb3\x81\xec\x74\xe2\x63\xd2\xee\xe1\xfd\x58\xea\x8e\x7f\x21\x06\x07\x78\x8f\x9c\x7f\x01\x77\x45\xf8\x5d\x83\x6d\x6e\x6b\xba\xe5\x27\xca\x15\x02\x89\xe2\x49\x28\x71\xce\xd0\x03\xcc\xfb\xf0\xfa\x4d\xb3\x4c\x81\x0d\x83\xec\x64\x12\x33\x84\x02\x22\x66\x87\x2a\xc8\xc9\x10\x8e\xf4\xc2\xc9\x67\xb2\x48\xc7\x2d\x0a\x2f\x4c\x40\x0d\xbd\x80\x68\x6b\x47\x8c\x5b\xf0\x51\xcb\x11\x3d\x3d\xe5\x17\x45\x3e\x6b\xdd\xce\x98\x80\x35\xd2\xcf\x55\xf9\x96\x6b\x7a\xe7\x10\xbc\x9d\xf2\x6b\xd6\x32\x40\xb7\xd4\x8c\xaa\x16\x4d\x33\x46\xc7\xf7\xfa\x84\x60\xea\x1d\xb4\x38\x7c\x64\x38\xa6\xb1\x25\x93\x9c\x84\xeb\x84\xe1\x0c\x5f\xc6\x30\x8d\x6d\xc5\x68\xd0\x3c\x5b\x38\x8e\x8e\x3f\x9c\xfe\x5c\x99\x2e\xf6\x82\x89\x93\xd9\xbf\xd3\xfb\xba\x26\x3b\x9a\x34\x15\x9a\xe2\x00\x18\x7c\x12\x0b\xc4\xf5\x34\xd0\x9d\x03\xd3\x1a\xe3\x85\x8a\x62\x28\x90\x14\x2b\xab\xd9\x40\x78\x86\x6a\x64\xac\x3b\xcb\xd8\x84\x64\xa5\xe2\x29\x0f\xe6\x4c\x09\x35\x4c\x1e\x9c\x92\x3d\x7b\x51\xa6\x87\x61\x22\xe5\xc3\x5e\x92\x6f\xf5\xd1\x20\x35\xba\x27\x6e\xca\xed\x91\x14\x87\xb3\x1c\xfa\xe5\xa7\x39\x5f\x59\xdd\x9e\x9e\x19\x9e\x8e\x17\xeb\x7b\xd0\xc8\x1c\x03\x61\xc8\xcc\x48\x72\xd1\xba\x32\x85\x72\x33\x28\x63\x09\xa4\x2f\x37\xae\x6b\x5b\x3f\x9f\xbd\x7b\xfb\xd4\x7d\x1f\x21\xdc\xdc\xd9\x95\xe6\xfb\xde\xff\xaf\x9e\xa6\xd6\x93\xf2\xff\xd6\x99\x7a\x72\x70\xfc\xf6\xd5\xde\xc1\x7f\x34\x59\xb3\xc0\x14\xec\x1b\xe6\xab\xf7\x31\x8d\xbe\x6a\xce\x9a\x7b\x50\x79\xa7\x13\xef\x9d\xe7\x17\xc4\x4e\xd0\x60\x72\xfa\xae\xfc\xe3\xf9\xe9\xc6\xea\xff\x65\xef\x4d\xf8\xdc\xb6\x8d\xc6\xe1\xaf\xa2\x65\x5b\x95\xb0\x20\x9a\xda\xc3\x5e\x53\x41\x54\xc7\x71\xda\xbc\xf5\x55\xdb\x69\xfe\x79\x14\x3d\x2e\x25\x42\x12\x6d\x0a\x54\x40\x68\x8f\x48\xfc\xee\xef\x0f\x83\x83\x20\x45\xed\xae\xed\xa4\x4d\xfb\x34\xed\xcf\x4b\xe1\x3e\x06\x83\x99\xc1\x1c\xbf\x0c\x88\x56\xf3\x03\x30\xfd\xba\xae\x18\x12\x2c\x72\x40\xb2\xdf\xb6\xdc\xbb\x5f\xfb\xfd\x01\x2a\xf1\xe3\xd6\x2c\x99\xf3\x0d\x09\xf1\xb3\x5a\x7b\xdf\xf4\x08\xc5\xf2\x20\x7f\x33\xf2\xed\x0d\x19\x23\x5f\x5b\x18\x7b\xeb\x7c\x0d\xb3\xf2\xf0\x15\xc2\xbc\xdb\x6d\x2b\x23\x69\x1d\xe3\x13\xe4\x03\x42\x91\x5c\xac\x6f\x2c\xff\xef\xcf\x24\x01\x71\x6b\x7b\xf4\x60\x7b\x25\xfe\x4e\xde\xb5\x3f\x7d\x06\xd5\xdb\xed\xba\xbf\xb0\x20\x2f\xb5\xfc\x61\xb5\x16\x3e\xb5\x46\x35\xdf\xed\x76\xfe\x33\x7f\x80\x64\x87\x21\xc2\xfb\xab\xf8\x5d\xb7\xeb\xc3\x60\x9e\xc9\x95\x46\x58\xc0\x3b\xff\xdf\x5a\x2e\xea\x97\xda\x8c\xc2\x5a\x0f\x56\xbd\x40\x0f\x4e\xdb\xd0\x96\x6e\xea\x2b\xb2\x55\x53\x89\x2c\xb5\xd3\x4e\x29\xbc\xd7\x9a\x64\x7f\xe1\x74\x1e\x3d\xc7\x12\x43\x46\xaf\xb1\x06\x9d\xe8\x05\x5e\xe4\xd1\xd7\x78\x91\x7f\x15\xcf\x3e\x44\xdf\xe2\x45\xfe\x8d\x0a\xf6\x14\x3d\xc6\xd3\x2c\x9f\x7d\x88\x7e\xc2\x19\x8c\x2c\xfa\x5b\x69\xc6\xf5\x55\x39\xbc\x0b\xf3\xd9\x26\x37\xf5\xee\x2b\xa7\x76\x56\xaf\x7e\x4f\x38\x57\x59\x2f\xc2\xab\x6d\x6f\x80\x73\x62\x15\x05\xf8\x17\xf9\x90\xf5\xc8\x00\xf3\x1e\x19\x20\x3a\x66\x13\x22\xb9\xa7\x21\x0d\xd6\xf9\xda\x47\x35\x21\x9a\x59\xe0\xbd\xbd\x1f\xb4\xee\xfd\xc0\xe5\x78\x06\x13\x49\xf4\x33\x42\x25\xb3\xa9\x6d\xb0\xef\x7b\x68\xb7\x1b\x4f\x70\xaa\xd4\x52\x1a\xa9\xb1\x2c\x2b\x27\x8a\x37\xa0\x2f\xe0\x0b\xc9\x4f\xc7\xbb\xdd\x46\xe2\x31\x9d\x37\x4a\x09\x8b\x8c\xaa\x74\xb7\xeb\xa7\x6a\xd8\xa0\x7f\xa3\x65\x3c\x0c\x21\x7c\x94\x1a\x73\x4a\xbb\x68\xca\x64\xd1\x31\xf7\xb5\x45\x94\x35\x1a\x49\xc7\x26\xa5\x3f\x98\x0c\x33\xe2\x05\x72\xa1\x67\xbb\x9d\x17\xd8\x2f\xf8\xab\xf0\x55\x46\x8e\x2a\x43\xd1\x39\x09\x71\x42\x4c\xfd\x61\xf2\x25\x09\x87\x49\xbf\xaf\x9a\x5e\x93\x74\x9c\x4c\x86\xaa\xbd\xf5\x48\xe2\xf4\x04\x45\xba\xd5\xf5\xc8\x57\x09\x78\xde\xeb\xa1\x68\x0e\xb2\x7d\xf5\xbb\xdf\x47\x65\x3a\xf7\x8f\x0a\x50\xfa\x18\xce\xfb\xfd\xe1\x1c\xa5\xc1\x86\x81\xc7\x40\x5f\x36\x80\x86\x47\x85\x1e\x56\x3a\x0e\x27\xbb\x5d\x0a\x27\x90\xfb\xf2\x2f\xda\xed\x9c\xd2\xfa\x1e\x5a\x92\x34\x78\x9f\xa7\x0c\xd6\xdd\x80\x63\xd6\xed\x7a\xf7\xbd\x23\x42\x96\x86\x69\xe8\x0f\x24\x5f\xbd\xec\x11\x59\x0c\x2f\x4b\x09\xad\xe9\xc7\x8b\xa0\xa9\xe3\x91\xf8\x28\xac\x94\x06\xe8\x6e\xa7\x9d\xf5\x9a\xcc\x81\xb2\xc0\x76\x14\x6e\xe5\x6d\xaf\xc7\x57\x4f\x17\xe0\xd1\x5d\x73\x2a\xc4\xf2\x2a\x32\x91\x5e\x50\x7e\xed\x9a\x8e\x55\x6f\xe5\x30\xa8\x31\x9b\x18\xe3\x12\x46\xee\x40\x72\x48\xfc\x0f\xa3\x3e\x3a\x44\xa2\x88\x46\xf9\xca\x59\xbd\x9a\x92\x43\xe3\x30\xa3\xb0\x4f\x95\x5e\xfd\xcb\xb9\x2f\x2f\x6d\x51\xfd\x02\xb0\x54\x5e\x91\x63\xd7\x2f\x29\x07\x71\xe4\x50\x09\x4b\x5d\x8b\x1c\x2a\x8f\x88\x9b\x50\x85\xad\xdc\x54\x2b\x54\xd8\x15\xda\x34\x57\xa8\xb6\x3e\x63\x36\x31\x4b\x54\x9a\x39\xe8\x27\x99\xff\x24\xe9\x15\xa0\xde\xdb\xde\x53\x7e\x31\xb9\xdf\x6f\x5f\x50\x96\x90\xad\x24\x03\xa6\x31\x5b\x44\x5b\xca\x66\x79\x42\x5f\xc5\xa2\xd5\x05\xeb\x51\xe3\xee\x19\xd1\xc8\x3b\xba\xef\x55\x6c\xe9\x5c\xb1\xa5\x09\xfd\xb8\x56\x0c\xda\x19\xa0\x88\x96\x25\x66\x79\x91\xc5\xc5\xb2\x36\x9a\x22\x98\xbb\xcd\x16\x41\x5c\xe2\xb6\x52\x71\xb3\x54\x43\x12\xa8\xc8\x99\x36\x5e\x05\x74\xa1\x0c\x65\xeb\xfd\xce\xa2\x47\x60\xbe\xc4\xc8\xf3\x22\xd7\x66\x4d\xf4\x24\x95\xb7\x6c\x63\xd3\xf7\x1a\x8f\x8b\x25\xa1\x25\x5e\xb5\x10\x2f\x6d\x03\xa9\x0f\xe2\x10\xcd\xda\x5a\xd3\x30\x8c\xe2\x4b\x12\x8e\x44\x14\xa2\x9e\xf7\x3b\xaf\x27\xb7\xe4\xfa\x57\x91\x64\xfe\x25\x2e\x96\x9f\x28\xc6\x9c\x2b\x31\x66\xbb\x50\x32\xad\x64\x8e\x1c\x84\x92\x1c\x5f\x13\x00\xed\x25\x78\xa6\xba\xa8\xf2\xaf\x47\x1e\xc0\x81\x17\x5d\xe3\xe9\xa7\x48\x26\x17\x24\x19\x5f\x4c\xf0\x25\x59\x04\x15\x24\xe1\x77\x64\x11\x54\x90\x84\x5f\xee\x2f\xdf\x3b\x90\xd9\xd4\x24\x8e\xd3\xba\xc4\x91\xe2\xe9\xbf\x42\xe2\x48\x5b\x25\x8e\x53\x2d\x71\x9c\x82\x36\x81\x2b\x71\x94\xc3\xac\x4b\x1c\x25\xc0\x3c\x6d\x48\x0c\xeb\x22\xbe\xb9\xff\x03\xa6\x08\xff\xb0\x27\x31\x7c\xba\x27\x31\xfc\xa1\x12\xa4\xfd\x50\x49\x0c\x3f\x48\xda\xfe\x95\xd2\x33\x7e\xb3\xbf\xb8\x92\xa8\x13\xe4\x52\xdf\xbf\x14\x6e\xc3\x95\xbc\xde\x2c\x1f\xca\xc8\x4b\x00\xa0\xaa\x79\xf0\xe8\xf1\xc1\x32\x3a\x9b\x60\x8a\x7c\x8e\xad\x57\x40\x99\xfd\x8a\x10\xe2\xca\xd0\xaa\x4c\x3d\x94\xb7\x3e\xdb\x17\x08\xa6\x73\xff\x03\x82\x01\x5f\x19\x29\xe4\xd3\x1b\xa5\x90\x69\x43\x0a\x79\x75\x93\x14\xf2\xbd\x91\x42\xbe\x6f\xc1\x0f\x3f\xb8\x52\xc8\x17\x41\x16\x17\xe2\x5b\x8d\x1d\xdc\x79\x08\xd4\x2e\x92\x3c\x5c\x83\xa2\x9b\xe5\x93\x1f\xc8\x51\x88\xbf\x51\xf2\xc9\x27\xb0\x1d\xcf\xc9\xa5\xff\x04\x0d\x9f\x1c\x11\xf2\xbc\xdb\x5d\xf9\xcf\x55\x95\xd7\xb0\x0f\x2f\xc8\xd8\x6d\xfd\x35\x9a\x34\xb8\x69\x8d\xfb\x7f\xe7\xf5\x2e\xfd\x69\x43\x8e\x59\xe7\xb1\x81\x78\xac\x89\x03\x44\x03\xd1\xec\xc9\xaa\xda\x65\x2e\xac\x21\x73\xd1\x9a\x7c\xfa\xcf\x0f\x8e\xec\xa5\x7d\x37\x99\x91\x12\xa6\x07\x04\x2f\xa2\x01\x4b\x98\x13\x39\x39\x01\x30\xbb\xf6\x11\x88\xa4\xb6\xaf\x88\xc0\x4b\x9f\x1b\x39\xd0\xe1\x2d\x71\x46\x24\x69\x8c\x17\x75\xf1\x5f\x3a\x0a\xa3\xb4\x37\x40\xc3\x58\x89\xff\x84\x5c\xf4\x18\x5f\x1d\x14\xfd\x31\x57\xb4\x72\x34\x68\x5f\x43\x59\x07\xf0\x49\x21\xb1\x90\xc4\x20\xc3\x4e\x0c\x1a\x11\x94\x09\x7e\xdd\xb9\x4c\xb3\x4c\xa3\x9f\x4e\x9c\x24\x34\x91\x88\xc5\x7d\xae\x2e\x44\x3c\xfb\xe0\x21\x79\x32\x40\x86\xf2\xf8\x13\x36\xb2\x26\xd4\xf9\xd5\xf6\xd2\x0a\x9f\x3e\x7e\x3b\xf5\x5e\x82\xd8\x5e\xe0\x95\xcf\x91\x39\x2e\x2f\xec\x65\x7d\x68\x27\xad\x73\x20\xff\xc5\x38\x9f\x10\x81\xdc\x2d\xdb\x17\x88\xc9\x5d\x2b\x41\x7e\xe4\x0e\x52\xae\x22\x6b\x2c\xde\x22\xf7\x19\xea\xcc\xe2\x4d\x41\x95\xba\x4e\x96\xa9\x1b\x84\xd3\x2c\x8f\x13\x49\x1d\x82\x1e\x8e\x96\x90\x79\x08\x5b\x89\xd6\xb3\x16\xb1\xd5\x37\x4a\xa2\xf5\x5d\x6b\x96\xcc\xf9\x89\x84\x0d\xf9\xcb\x4f\x46\xa2\xf5\xd3\xe8\x36\x61\xd5\x1b\x25\xab\xfa\xe9\x76\x31\xd4\x1b\x54\xe2\xaf\x24\xae\xfd\xfb\x2f\x29\x85\x7a\xda\x2a\x85\xfa\x6a\xb7\xf3\xff\xe6\x0f\x90\xec\xb0\x55\x0a\xf5\x55\xb7\xeb\xc3\x60\xfe\xe6\x4a\xa1\xbe\x6f\x41\xd4\x4f\x0f\x4b\xa1\xfe\xd6\x90\x42\xfd\xcd\x91\x42\xfd\x70\x57\x29\xd4\x6b\x57\x0a\xf5\xb5\x92\x42\x7d\x6b\xa5\x50\x8f\xf1\x22\x8f\xbe\x31\x52\xa8\x67\x8e\x14\xea\x3b\x2d\x85\xfa\xbb\x91\x42\x7d\x6f\xa5\x50\x3f\x28\x56\xe8\xfa\x53\x59\x21\xc9\xf1\xc4\x9a\x03\xda\x68\xce\xa7\xf8\x8f\x62\x15\x71\xf6\x6f\xc0\xbf\xcd\xf6\xac\x4e\xdc\xb7\xe1\x55\xca\x7c\xf5\x11\x5f\x01\x46\x86\xa7\xe4\xf9\x2f\xc8\x0d\x60\x71\x80\x88\x67\xc0\x4f\x81\xe2\xdf\x53\x26\x78\x4a\x0b\xcc\x5d\x33\x97\xb1\x77\xdf\x9b\x44\x0c\xcf\xab\x72\x70\x2d\xe2\xa4\x2a\x35\x1f\x85\xd1\x1c\xaf\x6b\x0a\x09\xcb\x2a\x7b\x3d\x7a\x10\xad\xf1\xaa\x76\x39\x20\x97\xd7\xa1\x68\x9b\xf9\xef\x25\xa9\xfa\xde\x90\xaa\xef\x03\xaa\x46\x63\x0e\xdc\x6a\x8f\x64\x7d\x5f\x51\x5d\xef\x2b\x92\xf5\xe2\x13\xdf\xdf\x97\xa8\xc4\x53\x32\xf3\x13\x1c\x62\x6e\x65\x8c\x08\x2f\x08\x0f\x56\xf1\xda\x6f\x21\x93\xf6\xd5\x42\x0d\x86\x8d\xeb\xf7\x9f\x8f\x50\xd4\x9a\x03\x0b\xb6\xdb\xc9\x02\x25\xc2\x97\x24\x0d\xa6\xae\x02\x01\x88\xc6\x3e\xe9\x19\xae\xb8\xf5\x19\x8e\xfd\x46\x5f\x8b\x39\xa9\xaf\x14\x93\xcb\x87\xdf\x3b\xb4\xc3\xaa\x95\x76\xe0\x86\x0e\x14\x07\x09\x87\xf7\x8a\x0c\xc0\x8c\x08\x90\xb7\x57\x30\xa6\x69\x38\x34\x34\xae\x6b\xbf\x64\xa3\x1c\x64\xdf\x33\xea\x33\x6c\x52\xfb\xf2\x84\x47\xb9\x71\x1d\x88\xaf\x0f\x92\x75\x1c\x43\x57\x11\xc3\xba\x8b\x28\xd7\x24\xc3\xcb\xdf\xf4\xf6\xfe\x33\x5e\x59\x3f\x63\x87\x2d\x25\x56\xdf\x64\xda\xed\xfa\x76\x33\xc7\x7a\x9b\x27\x84\xbb\x1b\xb4\x4f\xc4\xf1\x52\x9e\xba\xb2\xa1\x65\xa3\xee\x82\x99\xaf\x5b\xe9\x51\x1c\xe2\x26\x32\x92\x78\x81\x57\xe0\x33\x66\x93\x1b\x80\x52\x12\x08\x8d\xe1\x8e\xae\x0f\xb1\x9a\x16\x6e\x4a\x14\x5d\xfb\x30\xbc\xab\x16\x84\xf6\x54\x91\x81\x1f\x5a\xb3\x06\xa0\xa5\xb3\x4f\xfc\xd8\x19\x59\x5b\xd0\x2f\x49\xd8\xed\x8a\x2f\x9a\xd3\x2b\xdb\x78\xfd\x4f\xa4\xea\x4c\x5f\xab\x1a\x69\xd7\xe4\xdd\x6d\xa1\x3d\xf2\x4c\x32\xdc\x86\xf8\x5a\xdc\x4c\x7c\x2d\xc6\xd3\x89\x5e\xbe\xa9\x3d\x76\x0b\x97\x22\xbb\x54\x14\xd9\x3b\x4b\x91\xbd\x94\x14\xd9\x53\x43\x91\x5d\x39\x14\xd9\x07\x3c\x8b\xd9\x9f\xf3\xe8\x95\xa6\xcc\xde\x18\xca\xec\xad\xa5\xcc\xde\x2b\xca\x6c\xfe\x5f\xa5\xff\xff\x2a\xfd\xff\x57\xe9\xff\x57\x52\xfa\x9f\xfe\xb3\x94\xfe\x25\xd7\xfe\xcf\xd2\xf8\xaf\xfa\xfa\xf7\x54\xf7\xbf\x51\xb1\xdf\x88\xff\x21\x25\x67\x12\xae\xc7\x9e\x79\xbb\xf2\xb0\xa7\xdf\x8d\x3c\xac\x5f\x04\x26\xa8\x45\xed\xff\x8e\xdc\xee\x60\xf0\x10\x0d\x79\x10\x7f\x24\x0a\x56\x77\xfc\xb6\xac\x73\x79\x14\x09\x2b\x27\xe2\xe8\x4b\x12\x9a\x77\x82\x5b\xd8\x3e\xaa\xd8\x3e\xc9\xf1\x81\x9a\x86\x15\x29\x30\x6b\x2a\x37\x00\x5e\x3c\x60\x7e\xae\x98\xf1\xe3\xe6\x59\x1e\x9c\xab\x77\xc9\xc1\xe0\x81\x3c\xcd\xbf\x7d\x7e\xf6\x3f\xce\x56\xa2\x45\xf1\x3d\x10\x39\xb0\xc7\xf4\x2a\x9e\x09\xd0\xcf\x51\x00\x85\x63\x42\x2b\xde\x73\x43\x8c\xc9\xe9\x13\x79\x43\xbf\x88\x57\x14\x27\x84\x06\x33\xfb\x6b\x6d\x4b\xbc\x11\xd7\x19\xc5\x4b\x68\x49\x7e\xad\x20\x00\xd3\x63\xc8\xc3\xd7\x84\x8e\xbd\x98\xa7\x71\x7f\xa6\x82\x1e\x78\x13\x7c\x41\x24\xc8\x8e\x3d\x91\x7b\xd8\x83\x71\x40\xac\x37\x00\x6b\xec\x99\x31\x78\xd8\x6b\x8c\x00\x82\xa3\x55\xdf\x4e\xef\x50\x5f\xfd\x35\x3d\xcb\x02\xb5\x6e\x11\x9e\x92\x5b\x39\x12\xd1\xd0\xfb\x14\x08\x8d\x84\xd5\xff\x8f\x04\x5e\x90\x69\xb7\x3b\xb5\x4f\xa1\xf7\xfd\x71\xd0\xbb\x37\x22\xff\x7b\x14\xfd\x7e\x5b\xfa\x68\xfc\xe3\x64\xf7\xe3\xfd\x1f\x7f\x9c\xa0\xfb\x0b\xec\xfd\xf8\xe3\xef\x07\x95\xae\x4b\xba\x87\xdf\x0a\x89\xdf\x64\xe3\xd1\x02\xc3\x3a\x44\x0c\xab\x75\x88\xf2\x8a\x04\x8c\x1d\x54\xb2\x47\xd3\x3b\x7b\xc6\x09\x0d\xc0\xed\x26\xce\xc9\xd1\x91\xbf\x1a\xad\xe0\x0d\x2a\xe2\x37\x8c\x20\x0b\x62\x3c\xf3\xb7\x22\x8f\x04\xb6\x6b\x1b\xe5\xa3\x71\x82\x37\x93\x60\x9e\x66\x82\xf2\x16\x29\x41\x87\x96\x48\x2b\xf3\x74\x3c\x14\x25\x18\x56\x3f\xca\x47\x33\x7f\x5b\xe2\x25\x5e\xa3\x68\xd9\x58\xff\x28\xef\x76\xaf\x95\xf2\x4d\x89\x2f\x10\xf0\x8d\xc3\xc4\x45\xca\x22\x8f\x24\xce\xb6\x29\x12\x52\xd5\xaa\x6c\x8c\xf1\x95\x5e\x1c\xfb\xdb\xae\x91\x4c\x51\x7b\x8b\x1b\x40\x03\x59\x1a\xc5\xcf\xda\x12\x1d\x30\x72\x9b\x29\x9a\x09\x06\xb0\x20\x0d\x2e\x85\xc6\x04\x37\xce\xd5\xb0\x86\x10\x02\x5e\x21\xe8\xba\x0e\xd2\x4e\xa8\x42\xf9\x87\x6f\xa8\x37\x41\x25\x4e\x8c\x4d\x30\xc4\x04\x21\xdb\xe6\x24\x34\xb0\x37\x81\x3a\x52\x1d\x35\x6e\x16\xb4\xad\xac\x77\x6b\x0a\x4c\x75\xa4\xab\x05\x3e\x63\xcd\xed\x42\x89\x89\x67\x5e\x29\x5d\xaf\x46\x5a\xb6\xa4\x6f\x06\x74\xe7\x8b\xec\x38\xbc\xcb\x45\x56\x15\x1f\x7c\x5c\xf1\xe3\x8f\x2b\x7e\xf2\x31\xc5\x1f\x3e\xf8\x98\xd2\xa7\xa7\x1f\x37\x94\x8f\x2a\x7e\x7c\xfe\xb0\x29\xfe\x3e\x69\xaa\x02\xc9\x1b\xb6\x20\xbe\x4c\xd9\x20\xcc\xfc\xc1\xe9\x09\x6a\x90\xd2\x67\x4d\x5a\x7a\x00\xa4\x74\xc0\xfc\x44\xd2\xd2\xcc\x3f\x39\x0d\x11\x5e\xc9\xb9\x1f\x23\x7c\x0d\x09\x03\x84\x2f\xe4\xc7\xc3\x50\x62\xcf\x7d\xe0\xd9\xc6\xeb\xf5\xdb\x54\x64\x34\xda\xce\xf2\x2c\xe7\x91\x77\xb9\x4c\x25\x80\x0b\x7a\x25\xbe\xa6\xb3\x5c\xbb\x24\xf4\x58\xce\x24\x98\x96\x78\xd1\x72\x27\xf9\x0e\x12\xd3\x57\x0c\x2d\x2c\xd2\x5a\xb7\x91\x85\xc1\x37\x3c\x5e\x28\x7b\x7a\x70\xc2\xbf\x57\x26\x0e\x62\xed\x6e\x70\x3f\x2f\x07\xb4\xab\xfd\x0b\x44\x5e\x21\x62\x91\xce\x3c\xac\x67\xb0\xe6\xe9\x2a\xe6\xd7\x5e\xd9\x52\x33\xd3\xad\xb6\x64\xad\x82\x29\x96\x28\xcc\xbb\xef\x39\x78\x46\x04\x66\x85\xda\x9a\x9b\xcb\x81\x5c\xc8\x13\xcd\x44\xe4\x09\x59\xcc\x0e\x23\x65\x4b\xca\x53\xe1\x95\xd8\x5b\xa4\xa2\x3f\xdd\x2c\x3a\x97\x74\xba\x49\x3d\x24\x99\x8a\xfd\xb6\x96\xc1\xf4\xd0\xd0\x96\xf6\x9a\x91\x83\x53\x28\x15\x78\x3b\xe3\x4c\xe5\x22\x88\xcb\xf6\x36\xab\x8a\xd3\xcd\xe2\x7e\x94\x26\xad\xf5\xaf\x65\x7d\x84\x94\xe8\xc0\x0a\xc4\x2f\x53\xb1\x04\xb4\x5a\x20\x7f\x6a\x15\x61\x96\xc1\x0c\xf9\x0b\x84\xee\x08\xfc\x21\x32\x8e\xc0\xd5\xad\x6c\x23\x6c\x09\xec\xbd\x7b\x47\x8b\xe7\x79\xb2\x91\xab\xa6\x79\x59\xf0\x96\x7d\xb0\x82\xc6\xb1\x1e\xde\xba\x1c\x6f\x28\x49\xff\x16\x3f\x3c\xb9\xc1\xc9\x65\x69\xde\x5c\xb9\x2f\x8f\xe3\xf9\xad\xa3\xaf\xab\x4f\x03\x94\x03\xd1\x65\x2e\x72\xb8\xab\x35\xa0\x03\x0d\x56\xd1\x55\x33\xf9\x4b\x82\x00\x50\x58\x06\x4a\xf1\x92\xf8\x21\xb6\x8e\x5d\x10\xd0\x4f\xa6\x35\x43\x17\xd1\xa2\x41\x21\x41\x3b\x10\x87\x54\xb5\x22\x89\xa0\x95\x6c\x28\xab\x1a\xe2\x01\x07\x27\x5b\xe3\xaa\x94\x61\x5f\xfd\x10\xcf\x83\x59\xbc\x4e\x45\x9c\xa5\x3f\x53\xe4\xaf\x11\x9a\x60\x5f\x90\x6d\x89\xfd\x10\xc7\x55\x23\x50\x5f\xf5\x76\xb0\xf2\x4c\x56\xb6\x60\x7d\x44\xc8\x0c\xed\xb5\xe2\xad\x36\x69\x7f\x9e\x5e\x41\xe0\x53\xf5\x97\x10\xb2\x46\x58\x20\x9c\x5b\x8c\x50\x98\x2a\x0d\x70\xb5\x97\xa8\x6c\x37\xad\xda\xdd\x16\x3f\x6d\x62\x4e\xeb\x30\xeb\x2d\x69\x9c\x50\xee\x61\x9a\xd1\x0b\x85\xa5\x4e\x9d\x83\xbb\x2a\xf1\x12\x1e\xac\x0c\xb7\xf3\x29\x80\x68\x3d\x7d\x80\x7d\xa9\x3c\x09\x46\x0b\x5c\x29\x64\xe4\x3e\xf3\x4f\x41\xe3\x42\x7e\x0d\x06\x48\x22\x73\xf9\x29\x91\x77\xa1\x12\x01\x8d\xfb\xf2\xf3\x18\x21\x0c\x49\xc7\x12\x03\xcc\x20\xfb\x21\x02\xa4\xee\x1f\x87\x12\xa7\x43\xee\xa9\x2c\xb7\x6e\x41\xb3\x5e\x96\x2e\x96\x42\x69\x40\xae\xe3\x8c\x0a\x61\x03\xd4\x9b\x9f\x0b\x4e\xaf\xc7\x83\x30\x9c\x44\x8d\xb4\x47\xa1\x95\x7a\x6e\x25\xbc\x44\xdb\x24\x2d\xd6\x59\x7c\x1d\x79\xf3\x8c\x5e\x79\x10\x4c\xe1\xeb\x94\x53\x2d\xc4\x54\x81\x1a\x3c\x7c\x09\xbe\xfe\xbd\x41\x18\xfe\xc1\xc3\xd3\xfc\xea\x4d\xfa\x73\xca\x16\x91\xa7\x22\x43\xf4\xa7\xf9\x95\x67\x22\x14\xd0\x40\x7d\x48\x8c\xf9\x55\xcc\xdd\xe0\x0d\x61\x89\x0d\x70\x7e\x23\x81\x22\x72\xb0\xb7\x86\x16\x91\xaf\xa3\x10\x67\x74\x2e\x22\x2f\xde\x48\xce\x82\x43\xd4\x04\xa7\xea\xe3\x69\x91\x67\x1b\x41\xdd\xda\xb1\x4e\xbb\x53\x03\x6f\x44\x3a\xfb\x70\x1d\xd5\xae\x0e\x99\x72\xc7\xca\xf2\x96\x89\xf6\xef\x9d\x52\x61\xfc\xaf\xb5\xcb\xa6\xed\x34\x9e\x7d\x58\xf0\x7c\xc3\x92\x27\x70\x13\x08\x7d\x23\x38\x3b\x42\x95\x4b\xac\xb8\x10\x6f\xe9\x95\x00\xf7\xcc\x50\xe6\x95\xba\xba\xf6\xdb\xa8\xea\xea\xdb\x2d\x58\xc5\x29\xdb\x6b\xd8\x64\xce\x9c\xd6\x75\xd3\x6f\xe8\x2c\x67\xc9\x2d\x8d\x17\xa6\x50\x7b\xf3\x55\x76\xad\x83\x52\xde\x1b\xfa\x78\xac\x31\x77\x59\x82\x12\xf3\x06\x61\xdc\xb8\xa4\x71\x13\x10\x4a\x6d\x6b\xe0\x87\x78\x56\x61\x80\x35\xde\x02\xff\xe6\x3d\xdf\xa4\x8f\x01\xbc\xbc\x12\xf9\x1c\x0d\xab\x13\xfa\x31\x16\x31\xb5\xb7\x6e\x01\x62\x96\x51\x3b\x72\x90\x45\x35\x46\x60\xb8\x7e\xe9\x34\x44\xab\xae\xd8\xb5\x44\x11\x1d\x8b\x09\x61\x98\x96\x1f\x8b\x74\xd4\x4d\x05\x64\xe2\xb1\x92\xcb\x0c\x8e\x1f\x48\xbc\xd2\x7c\x40\xec\x76\x69\x50\xb5\x61\x14\xfe\x8d\x67\xe1\x6d\x59\x39\xff\xac\x7c\x7f\x32\x25\x52\xba\xa3\x04\x89\x41\x4c\x29\x65\xe8\xc3\x2a\x09\x52\xb5\xe6\x14\x8b\xd2\x48\x8b\x8e\x1f\x85\x12\xd3\xb5\x4b\x49\xdc\x91\x8e\x68\x64\x3d\xa2\xd1\xb2\xf4\x0b\x77\x17\xfd\x1c\x80\xc6\xcf\xf1\x26\x78\x5f\x14\xd5\x45\x27\x7f\x21\x9d\x51\x2c\x29\x15\x2f\xd7\xb2\x9b\x02\xa7\x9a\xbf\xab\x65\x16\xc6\x2f\x9d\xd3\x00\xd7\x49\xa6\xe0\x2a\x66\xf1\x82\x72\xb7\x85\xfc\x36\xba\xe0\x93\x36\x13\x78\x00\x77\x92\xdb\xf7\x45\x11\xf9\x21\xe6\x41\xb1\x8c\xd7\x14\xf9\xdb\x5c\x4d\xa6\x9e\xa8\x2e\xc7\x3f\x53\x46\x21\xd8\xb8\xbd\xda\x38\x70\xaf\x41\x5a\xbc\xa6\x3f\x6d\x52\x4e\x93\x12\x39\x3f\xf4\xd3\x12\x10\x6e\x6f\xe4\x5a\xec\x97\xc7\x2a\xd6\xd0\x4d\x45\x4a\x84\xcd\x7a\xd5\x07\x15\x27\x49\x4b\x83\x86\xc3\x6c\x6b\xe8\x36\x6e\xb3\x85\xd6\x52\x0e\x3f\x1b\x40\x6b\x4c\x60\xc6\x6c\x82\xe3\x76\x13\x9c\xb4\x61\x52\x93\x82\x3a\x65\x4d\x44\x17\x23\xb1\xdb\x01\x09\x84\xc0\x62\x85\xa4\xa0\x95\xdb\xa9\x1b\xdc\xc4\xf6\xd1\x27\xed\x76\x8f\xea\x46\x44\x29\x32\xe1\x63\xb9\xec\x60\x23\xcf\x48\xbd\xc9\x0d\x2a\x6d\x30\xe5\x4f\x3c\xff\xff\x51\x82\x4c\x07\xf4\xff\xb5\xce\xc8\x3e\x71\x2f\x1c\xd6\xc2\x8e\x8f\x36\x2d\x26\xc3\x21\xfb\xc2\x28\xe2\x0d\x99\x11\x78\x73\x22\x21\x62\xc8\x83\xea\xee\x20\xee\x8f\xdd\xee\x68\x80\x79\xe0\xde\x25\xe4\x28\xc4\x1e\x8c\xc1\x4b\x59\x07\x74\xac\x03\x73\xb7\x80\xae\xe1\xa1\x9b\x8a\x2b\x5f\x28\x15\xf0\x55\x9a\xe4\x2a\xda\x83\x79\x01\xe8\x76\xa9\xef\x3e\x2a\x32\x30\xf2\xa5\x92\x0b\x80\x10\xdf\xbe\x92\x52\xc8\x6b\xa7\x2d\xd0\xdb\x6d\x08\x3d\xad\xdd\x56\xb5\x35\x43\x5b\xfd\x9e\x47\xb5\xbb\x76\x85\xad\xc9\x78\x62\xbc\xa8\xcf\xab\x1f\x1f\xe8\xb5\xfc\x51\x56\x5e\xff\xf0\x18\x0c\xd0\xbd\x05\x15\x1e\x56\xdb\xb4\x4f\x26\xdb\xba\x95\x4f\x8d\xea\xea\xaa\xfa\x1c\x8b\x49\x59\x62\xd5\x5e\x9c\x24\xfb\xed\x35\x3c\x58\xab\x5a\x58\xbb\x64\x96\x03\xc5\x79\xd5\x17\xbc\xa4\x58\x47\x1f\x95\xfd\x8f\xc4\x20\xa3\x34\xf2\x99\xd5\xbc\xe6\xea\x2b\x44\x38\x37\x8e\xc0\x31\xab\x54\x38\xec\x98\xd4\xf5\xf4\x71\xd3\xc4\xb5\xb1\x8e\x85\x7d\xf0\x04\x0d\x6a\x33\xee\xb1\x98\x74\xbb\x4c\xbb\xdb\xf4\x11\x76\x33\x7a\xbd\x6a\xed\xc7\x62\xb2\xdb\x55\xdd\x68\xc5\x23\x81\x43\xb9\x7b\xcc\x0e\x74\xc3\x3e\x65\xa8\x12\x31\x2b\xf3\x28\x43\xb9\x48\xce\xaa\xce\x4f\x1e\x0d\xb0\x07\xf7\x53\xf1\x5c\xdd\xd5\x51\x67\x16\xb3\x3f\x8a\xce\x3c\x65\x49\x07\x26\x09\xf6\x30\x66\x00\x68\xe8\x4e\xe5\xcb\xb0\xdb\x95\xf3\xee\xf7\xeb\x33\xaf\xaf\x50\x90\x50\xb5\x0c\x76\x3e\x45\xfa\x33\xf5\x0e\x88\x14\xaa\x99\x68\xa5\x94\x72\x82\x30\x2d\x7d\xf7\x76\xbf\xcd\x65\x6b\xfd\xbe\xab\x0c\x5b\x9b\x14\xdc\x47\x18\x99\xba\x4a\x7f\xbb\x9d\xeb\x37\x72\xb7\xab\xe3\xf5\xaa\x93\x74\xee\x6f\x1c\x43\x59\x0a\xfa\x84\x1c\x9a\xab\xef\x82\x53\x66\xb8\xf7\x46\x99\x3a\x77\x73\x41\xe8\x38\x9d\x0c\x1d\x35\x8c\xf6\x37\x9a\xa2\x31\x87\x02\xa1\x11\x1b\xa7\x13\x52\x44\xf0\x87\xfb\x45\x15\x2d\xfc\xbf\xf7\x67\xfd\xfe\xd4\x92\x07\xc9\x15\x3c\xfa\x0c\xf4\x5c\x23\x69\x6e\x01\xd8\xda\xfb\xd1\x47\x6f\x07\x0d\x9e\xbc\x79\xe3\xcc\xa0\xf5\x31\xaa\x44\x8a\xe7\x10\x98\xf9\xc7\xc7\xb7\x8a\xe7\x3e\x6f\x44\xda\x86\xfb\x78\x3e\x88\x67\xb3\x07\xb3\x93\xf8\x41\xf8\x60\x1a\x9e\x1f\xd3\x33\x4a\xe7\x67\xf4\xec\xf4\x74\x70\x3a\x9f\x4f\x3d\x1d\xca\x41\x12\x9c\xf0\xe0\xcc\x26\x24\x74\x65\x42\x32\xa5\xd7\xfb\xc8\xa1\xd7\x4f\xff\x9d\x76\xac\x4d\x9b\xea\x5f\x4c\x13\xb5\x47\x37\xff\x77\x3d\x5f\x38\xfe\x37\xd0\x6d\x38\x44\x52\xfd\x47\x93\xa1\x05\x61\xfe\xe9\x23\x84\x33\xb8\x14\x94\x71\xfc\x09\xbc\x83\x71\xab\x51\xf6\xe8\x21\xc2\x6b\xc2\xcd\x2b\xd8\xf1\xa3\x73\x84\x57\x84\xfb\x4b\xfd\x08\x16\x9e\x22\xd0\x58\xb8\x46\x78\x0a\xbf\xcf\x40\x7f\xde\x9f\x22\x7c\x49\x98\xff\xf0\x11\xc2\xef\x08\xf7\x2f\x11\x7e\x29\xab\x3f\x44\xf8\x29\xe1\xfe\x4b\x84\xaf\xa0\xb7\x01\xc2\x1f\x08\xf7\xaf\x10\x7e\x25\x07\x73\x8e\xf0\x1b\xc2\xfd\x57\x08\xbf\x85\xc6\x1e\x20\xfc\x9e\x70\xff\x2d\xc2\x4f\xe0\xf7\x43\x84\x9f\x13\xee\x3f\x41\xf8\x35\x59\x55\x72\x6e\x25\x53\x1f\x5f\x58\x09\xf7\xc2\x7c\x4d\x10\x7e\x41\x42\xd7\xe4\xb1\xb6\xbd\x60\x07\x57\x23\x99\xd3\x84\xbc\x30\x64\x9a\x76\x4a\x4f\xbc\x47\xc1\x79\xf0\xd0\x53\x89\x6b\xf0\xcc\x5f\x40\xb4\x8e\xb5\xed\x10\xb2\xb4\x9c\x81\x1c\x94\x2d\x7c\xb0\xe5\x5f\x6b\xf7\xf6\x91\x95\xa0\x8c\xde\x5b\xbf\xf4\xcf\x6d\x31\xdd\x59\x34\x9e\x94\xaa\x8b\x45\xb3\x4d\xe2\x87\xf8\x43\x45\x4e\xe8\x59\x6c\x0a\xaa\x95\xee\x60\x72\xaf\x0d\x3f\x40\xc5\x66\xed\x0b\x0b\xf8\x9b\x8a\xe8\x87\xac\x3d\x22\xf3\xf3\x2d\xd2\x2d\x01\x74\x60\x4d\x24\x7f\xef\xac\xdd\xa1\x62\xe4\x60\x03\x87\xd6\xe5\x60\x05\x1f\x21\x1d\xb4\x80\x06\x29\x04\x39\x4d\x73\xf6\x2a\x4f\x99\x68\x8e\xa5\x9e\xbb\x57\x1c\x61\x9f\x06\x17\x29\x17\x9b\x38\xdb\xed\x68\x60\xf6\x14\x35\xdb\x31\x19\xa4\x2a\xb3\xdb\x55\x75\x47\x76\xbf\x23\x0b\x03\x08\x61\x6a\x40\x4d\x13\xd5\x8d\x3d\xb5\xd9\x6a\x6f\x2d\x81\xdd\x14\x50\x1d\x66\x1c\x3e\xd1\x7d\x90\xf6\x0c\x0a\xcc\xc6\xd0\x50\xc3\xb5\x68\x46\x3e\x23\x92\x35\x78\x67\x0f\x28\x94\x1d\x85\x51\x23\xa5\x37\xb0\x22\x3c\x7a\xd9\x99\x9b\x4c\x9f\xe2\xd8\xdf\x96\x58\x60\x10\xe5\xc1\x6c\xf7\xf6\x37\x12\xfb\x7b\xae\xf9\xa9\xbd\x74\x5c\xdf\xb7\xe8\x86\x4d\xae\x0e\x66\xeb\x0e\x56\xaa\xfa\x75\xa6\x57\x6f\x45\x90\xcb\x2b\x67\x46\x8b\x02\x96\xde\xe7\x08\x73\xbb\x31\x4d\xb1\x60\xdb\xc6\xd8\xd3\x62\xf8\x26\xfc\xce\x91\xb0\xca\xfa\x3e\x6d\xdd\xef\xd7\x40\x48\xfc\x1a\x3b\xbd\x57\xf7\xb8\xb5\xee\xb1\x5b\xf7\x18\x8e\xfe\x47\x1a\xb8\xa4\xca\xc0\xc5\x67\x04\xc2\xd3\x61\x13\x28\xca\xc2\xc8\x90\x07\xef\x8b\x02\xf8\x5d\xcc\xab\x43\xd5\xbe\x51\xbc\x0d\x3c\xfc\x96\x54\xd2\x0e\x33\x48\x5e\xd8\xea\xd9\x18\xea\xe9\x6f\xb2\xb5\x3c\x90\x1f\xe2\x37\xee\x8b\xb3\xbc\x58\x8d\xbe\x3c\x0f\x0a\x1d\x7e\xb8\xdb\xcd\x5d\x5a\xf2\xa9\xa9\x01\x51\x58\x4d\x21\xe2\x05\x5e\xaf\x65\x6c\x7e\x8e\x10\x6e\x07\x30\xb9\xe1\x7e\x8e\x70\x5e\x49\x0a\x8a\x7d\x08\xa8\x68\x17\x35\x4f\xbc\x0f\x0b\x98\x11\xe3\xbe\x09\x73\x12\x0e\xf9\x17\x62\xc8\x7b\x3d\x04\xba\xad\xd5\x96\xf2\x4a\xbd\xbb\x35\xa8\x78\x5f\xc5\x56\x32\xfb\x60\xc6\x5b\x09\x6d\x24\xe5\xb5\x97\x6d\xc4\x36\x16\x99\x49\x2c\xe7\x0b\x30\x8d\x53\x50\xbe\x2f\x01\xf8\xfa\xbf\x42\xce\x7f\x0b\xea\xf2\x9f\x25\xe4\x5c\xe6\xf9\x87\x82\x6c\x73\xf6\xc4\x62\xc2\x68\x3c\xc1\xb5\x93\x52\x4b\x50\xca\x8c\xb5\x14\x78\xa6\x81\x94\x27\x60\xed\xfe\x77\xd8\x3f\x48\xd0\xe1\x8f\xc7\x93\xb2\x45\x54\xea\x76\xda\x26\xe3\x94\xc0\x69\x59\x15\x75\xb8\xec\x90\x03\xb7\xb2\x75\x03\x58\x05\x19\x3f\x50\x72\xcc\x27\xba\x65\x88\x40\x6e\xa4\x47\x79\xe9\x04\xc7\xb1\x38\xa1\xb6\x08\x6d\xf7\x03\xd8\x0e\x05\x69\xa1\x8b\xd1\xc4\xe5\xc8\xaa\xf3\x0a\x02\x3d\xac\x21\xd4\x1d\x97\xd3\xbc\x0b\xb8\x87\xca\x8c\x19\x0c\x1e\x0d\xb5\x36\xb4\x26\x6d\xea\x5b\xe3\x1b\x55\x69\xb0\x8a\xae\x8d\x8e\x1c\x85\xe5\xfe\xe4\xb4\x92\xf3\x6d\xcb\x4f\x71\x4e\xc2\x61\xde\x3a\x01\x68\xc2\xcc\x20\xef\xf5\x10\x27\x07\x8b\x8d\xf3\x89\xcf\xa1\x71\xac\x5f\xe6\x09\x6f\x19\xd4\xa1\x3b\xbe\x1e\x29\xb2\xb5\x17\x59\xd5\xe5\x80\x0f\x16\x1a\x8b\x89\xd2\x38\x35\x9d\x2b\x68\xfd\x04\x50\x54\x15\x5d\x30\x6c\xc9\xae\x60\xcf\xe9\xd2\x39\x31\x9f\xb8\x07\x4e\x0b\x37\x6c\x81\x53\xaa\xda\x01\x73\x29\xf1\x1b\xaf\x41\x77\xd5\xb5\xd9\x87\x6d\x79\x2c\x26\xa3\xda\x2f\xfd\x6e\x30\x16\x13\x14\xed\x49\xcc\xff\x38\xfe\xff\xde\xbc\x99\x74\xbe\x63\x1f\x58\x7e\xc9\x3a\xb2\x4e\xc7\xfb\x43\xe1\x05\x7f\xc4\x02\x7d\xbe\xbc\xfa\x4e\xd8\xf1\x13\xaf\x20\xc9\xbc\x3f\x92\x68\x99\x1b\x93\x94\x93\x10\x0c\xcc\xb8\x51\x32\x38\x09\x07\x35\x61\xc0\x49\x58\x17\x06\x9c\x84\x27\x8e\x30\x60\xeb\xfd\x69\xb6\x8c\x79\x41\x85\x17\x59\x75\x32\xec\xfd\x49\x99\x3c\xd5\xd3\x58\xbc\xa2\xc5\x3a\x9e\xd1\x7a\xf2\x07\x7a\x3d\xe7\x32\xcb\x8b\x36\x4e\xf2\x8a\x26\x69\xec\x55\xac\x31\xf6\xfe\xa4\x1d\x07\x17\xf5\xd4\x79\xce\x44\x7f\x0e\xcd\xce\x9d\xe4\x0b\x1d\xd7\xcc\x8b\xd6\x4e\x6a\x7f\x55\xf4\x5b\x72\x4a\xeb\xa5\x40\x79\x6a\x5c\xa2\x3d\xdb\x7f\xfd\x6a\x0e\xa6\x95\x8b\xa7\x57\x6b\xdf\xfb\x5f\xaf\x07\xef\x41\xcb\x31\xb5\x8a\x5f\xb5\x0b\xc8\xd9\x73\x5e\x05\x72\xec\x88\x40\xd0\x42\xf8\x14\x8d\x64\x6b\x26\x37\x52\x38\xbb\x74\xe1\x66\xf5\x5f\x2a\xe7\xdf\x84\xca\x39\x20\x59\xd2\x01\x3c\xeb\xb4\x0a\x98\xa0\x7a\x45\xba\x5a\xcb\x05\x54\x02\x27\xf7\x76\x1b\xd8\xf7\x41\xa2\x65\x4a\x30\x3f\xc2\xea\x02\xa6\xbc\x85\x14\x31\x4a\x22\x07\x6e\xf9\x86\xab\x56\xdb\x34\x72\x2f\x24\xf0\x0c\x6c\xef\xf8\x0b\x17\x21\xc3\xad\xde\xb3\x8f\x8d\x3d\xaf\xe3\xf5\xaa\x52\x63\x36\xe9\x79\x43\x0f\xbb\x29\xbd\xc1\xa4\xdb\xf5\x45\x8f\x78\x3f\xb2\xca\xcc\x47\x94\x8d\xc7\xbe\x46\x4b\xb2\x99\x36\x3c\xfa\x09\x4e\x6e\xff\xf5\xe7\xe1\xb7\x2f\xf7\x3e\x04\xbe\xff\xd1\x67\x16\xee\xbe\xd3\xa6\xd6\xdf\xdd\x38\x13\xb8\x2a\x0f\x1f\xf9\xf4\xc0\x91\xaf\x6e\xba\x3b\x9d\x7a\x73\xd0\x53\xad\x3e\xb0\xc9\xa8\x92\x38\xdb\x6b\xd2\xcf\xfd\x6d\x89\x53\xbc\x55\x61\x26\x41\x5c\x55\x3a\x11\xf1\x63\x05\x20\x55\xf5\x20\x4e\x12\x3f\xc6\x6c\x1c\x4f\x30\xd4\x75\x3b\xaa\x35\x83\x8d\x58\x22\x8a\x65\x8b\x4e\x13\x6b\x35\x66\xdf\x31\xc6\xbe\x1d\xff\x7c\xae\x0c\x39\x65\x89\x1c\xd9\xa0\x34\x91\xf6\xd5\x58\xac\x4b\x1f\x47\xff\xc4\xc1\x37\xd8\xc1\x2f\xdb\x1f\x99\xd7\x13\x3d\xaf\x6c\xc5\x2c\xc5\x7f\x31\xcb\x7f\x31\xcb\xbf\x2f\x66\x99\xe5\x2c\x01\x1d\xef\x38\xfb\x2d\xe0\x96\x3b\xe3\x8b\x05\x15\x87\x84\x12\x2e\x85\xa0\x1a\x5a\x50\xe1\xf2\xb9\x5a\xaa\x78\xb7\xba\x95\x56\x94\xab\x91\x76\x93\xc4\x46\x43\x60\x7d\x7a\xb4\xc6\x6f\xd6\x84\xce\xef\x8b\x43\x02\xda\xda\x03\xc0\x6f\x01\x43\x8e\x5a\xd0\xe2\x8f\xac\xf4\x22\xef\x3f\x07\x37\xfe\x1f\xc4\x3b\x29\x61\xfe\xc3\xf3\x5f\x5c\xd6\x7a\x13\x13\x53\xf1\xde\x77\xc2\x3a\x4a\x4e\xf6\xab\xf0\x31\xd0\xf4\x0d\x7c\x4c\xe1\xca\xf6\x34\x1f\xd3\x30\xad\xd3\x83\x75\x86\x3a\x66\x13\x54\xfb\x79\x33\x3b\x73\x6b\x7b\x98\x7e\xb6\x78\xe8\xbf\x07\xec\xff\xd4\x01\xb3\xb2\xaa\x7f\xde\xf9\xfa\xe7\xc1\xf2\xaf\x2e\xea\x7c\x58\x93\x74\x9e\x9e\xd7\x04\x9d\xa0\xdd\xa9\x04\x9d\xae\xe1\xd0\x21\x09\x1e\x4c\x05\x4e\x5e\xcd\x36\x58\x58\xd5\x5d\x30\xa8\xd1\xe0\x8d\xf3\x3d\x5b\xe4\x6d\xe9\x4a\xaa\xc1\xff\xe8\x8c\xa7\x53\xea\xdf\x20\xa0\xce\xc1\xd0\xcf\x17\x18\x04\xd1\x25\xc2\x79\xd9\x78\xd2\x6a\x20\xc6\x1a\x52\xa8\xcc\x7b\x8d\x63\x1b\xd0\xd9\x80\xdd\x6b\x52\xfa\xdb\x3d\x59\x27\x27\x6c\x4c\x27\xc3\xfd\x19\x73\x33\x63\x49\x75\x8a\x94\x6d\xa8\x37\x4c\x68\x46\x05\xed\xc8\x1a\xd8\x9d\xdb\x96\xd1\x2b\x47\xc9\x9b\xa1\xad\x50\x53\xa2\xf0\x7c\x80\xc0\xc2\xb0\x94\xff\xfd\x76\xa0\x46\x92\xee\x0e\xd4\x48\x20\x72\xa0\xe6\xf4\xdc\x91\x8e\x7f\x1d\x0b\x1a\xb0\xfc\xd2\x57\x31\xa4\x19\xbc\x4b\x14\x5e\x6f\x86\x13\xf9\x53\x3d\x49\xf5\x3a\xbd\xde\xec\x63\x20\xac\xd5\x45\x5e\x0b\x94\xd5\xb7\xa5\x09\x61\xe3\x64\x42\x04\xe6\x65\xf3\xc9\xb3\xcd\xfa\x62\xdf\x23\x96\x7e\x7e\x84\xe8\x63\x6d\x6a\xa1\x79\xb7\xeb\xeb\x4d\x97\x65\x30\x28\x0a\xe4\x96\xc4\x17\x12\x23\x8d\xe7\xca\x3c\xb3\x7a\x3f\xad\xf7\xad\x62\x1f\x4a\x2a\xb5\x1d\x6a\x1d\xa3\x85\x8e\x2e\x18\x6c\xa0\x21\xad\x93\x2f\xdc\x7a\xd5\x61\x83\x86\xf5\x00\xea\x66\x99\x90\xa2\x21\x90\x41\x3e\xbc\x45\x22\x34\x14\x44\x98\xb3\x3b\x4e\x00\xea\xb9\x59\x03\x70\x16\x5e\xe3\x7a\x72\xd3\x46\x8c\x73\xc9\xed\xfc\x3a\x00\xfc\xeb\xea\x24\xdb\xd6\xb5\x6b\x46\x27\x06\xb7\x7e\x79\x95\xfc\x96\x39\x37\x00\xd8\xbe\x40\xcd\x30\xdc\x92\x61\xb0\x2d\xc5\x66\xe6\xb2\x2d\xa3\xae\xb3\x47\xad\x81\xc5\x2b\x00\xef\xcb\x0a\x78\x19\x96\x77\xb8\x77\xa4\x9e\x8d\x62\xa6\x42\x72\x8d\x2b\xa3\x9d\x89\x63\x45\xa1\x46\x57\x54\xa3\x93\x77\x34\xf6\xaa\xba\x08\x1f\x85\xc3\x03\xe5\xf6\xa6\x70\x34\x30\xe1\xb4\xc2\x6a\x2a\x9b\x6a\x51\x4c\x3b\x4a\xf3\xaa\x6a\xca\x69\xc8\x0f\xf1\x75\xdb\x03\xe1\xd7\x2f\x9f\x3f\xbd\x9a\x51\xb8\x87\xe1\x81\xb0\x73\x19\x17\x1d\xd8\x32\x16\x74\xde\xf2\x54\x05\x6c\x50\x2d\x83\xa3\x41\xd9\xb4\x79\x4a\xa4\xc1\x8a\x16\x45\xbc\xa0\xf0\xa8\x68\x87\x56\xa8\xa1\x55\xab\xa1\xe5\x74\x6f\xe9\x95\x04\xfa\x46\x02\x21\x8e\x17\xce\xac\x8d\x3c\xa3\x2d\xe4\x99\x24\x7c\xe1\x0c\x68\x0b\x26\x9a\x74\xbb\xdc\x51\x96\x4b\xe8\xd5\x97\x5a\x7d\xaf\x9e\x51\x53\x95\x24\xa0\x20\x58\x53\x96\xb4\x0f\xb5\xae\x9e\x82\x1d\xdf\xac\x39\x3e\x6a\xf7\x7f\xc8\xbe\x94\xa3\x35\x51\xfb\x6e\x1f\xe2\xe7\x8d\x64\x5e\x97\xa1\xbd\xf2\x91\xe1\x25\x94\x7f\x92\x17\x79\x62\xbd\xe6\xd6\xe8\x5a\x27\x5b\x0f\xf0\x9c\x10\xc2\xc1\xb9\xa1\x3c\xa1\x72\x90\xf2\x5b\xbd\x73\x0b\x9e\xae\x7c\x44\x1c\xcb\xa4\x03\xe3\x49\xaa\x17\xc8\xe9\x9e\xb5\x35\xa0\x42\x2b\x2d\x30\x38\x3d\x03\x17\x99\x2a\xca\xac\x55\xda\xe2\x5a\x33\x2e\xa0\xca\x1f\x08\x64\x93\x19\x14\x3d\x5c\x2a\x90\xb7\xb8\xf6\x20\xf2\x26\x9d\x66\x29\x5b\x94\x7a\x17\x1a\xcb\x0a\x3b\xd2\xed\xee\x7b\x48\xb7\xd8\x74\xae\x0d\xa0\x2a\x9d\x15\x68\x5d\x37\x3b\xac\x1f\x25\xef\x7d\x51\xc8\x46\xb8\x39\x51\xdf\x9a\xde\x3a\x6b\xd9\x9d\x3a\x54\x12\xd7\xcd\xf3\x0d\x4b\x82\x3f\xca\xf3\xdd\xba\x80\xeb\x9a\xb1\x61\x53\xdf\x93\x93\xc4\x57\x71\x61\x2a\xac\x1f\x28\xb9\x97\xdc\xca\xa1\x6b\x3e\x97\x77\xbb\xb9\xae\xff\x15\x9d\xe7\x9c\x82\x1f\x48\x08\x06\xc9\xba\x5d\xd7\x30\x4c\xab\xc2\xda\xbd\x37\xe6\xd5\x26\x60\x7e\x6b\xf3\xf1\x28\x6e\xb6\x9e\xba\x2b\x04\xea\x08\x75\x6c\xe3\xb5\xaf\x4d\xaa\x22\x53\xa5\xca\x9f\xf7\xd7\x2f\x9f\x07\x1e\x42\xe5\x2b\x1f\xed\x8f\xfe\xd3\x88\xa5\xe5\xff\x45\x1e\x70\xa5\x15\xda\xae\x09\xf7\x57\xca\xf5\xd7\xc3\x47\x08\x4f\x09\xf7\x2f\x10\x5e\x68\x82\xf1\x92\x70\x7f\x81\xf0\x3b\x49\x30\x3e\x44\xf8\x25\xe1\xfe\xbb\x66\x58\x7f\x75\x9c\xb5\xb3\x9b\xe6\xc0\x2a\x19\x26\xd8\xbd\x83\xbe\xba\x28\x4b\x7c\x45\xb6\x6f\xde\xfe\xf0\xec\xe9\xbb\xd7\xdf\x3d\x7b\x1a\x0d\xf0\x5f\x9f\xfe\xf0\xcd\xeb\xc7\xcf\x9f\xbe\x51\x09\x0f\x1b\xbe\xc1\x95\x48\xf1\x17\xd3\x05\x0e\x2b\x4d\x7e\x1d\x3f\x41\x5e\x38\x36\x20\xde\xd6\x43\xfd\x01\x2a\xf7\x26\x63\x68\x3d\x60\x69\x09\xb9\x0a\xaa\x29\x20\xab\x13\xe1\x5e\x5b\xc3\x7a\xf1\xfa\x24\xab\x53\xcc\xe2\x15\x75\x11\x9c\xa3\x4b\xd2\xf1\x7a\x6c\x68\x71\x72\x51\x40\xab\xa6\x94\xd7\xa3\x3e\xc7\xbc\x1a\x78\xf5\x30\x87\xaa\xd7\x0b\xdf\x56\x44\xb0\xf3\xaf\xc8\x53\x7f\x7f\x7f\x92\x7c\x06\xeb\x13\x2c\x69\x9c\xec\x76\xf6\xe7\x82\x1a\x8c\x59\x7c\x75\xfd\x36\x5e\x80\x26\x2f\x38\x54\xf2\xd0\x38\x9c\x94\xa8\xcd\xd7\xba\x8e\x0e\x21\xc8\xd1\x60\x6f\x11\xad\x48\x7a\x5b\x0e\xe9\x6e\xe7\x53\x62\xfb\xaa\xbb\x78\xd2\x6e\x3e\x1d\x51\xbd\xd2\xb6\x62\xae\x5a\x95\x41\x45\xe3\x1c\x2e\xa9\xd4\x25\x2b\x2f\xeb\x7c\xa3\x44\x56\x66\x73\x64\xd9\xb8\xdb\x05\xa3\xeb\xb8\x5a\xbf\x1f\x7f\xf4\x10\xda\x4a\x50\x95\xe8\x45\xf9\x72\x7f\x22\x2f\x42\x50\x54\x87\xb3\x49\x03\x41\xaf\xc0\x27\x0f\x65\x82\xc4\x3d\xaf\xb3\x2d\x3d\x1d\x34\x95\xe2\x82\x68\xaf\x22\xb2\x83\x42\xf5\x9b\x91\x42\x6e\x80\xe4\x92\x8a\x61\x26\x4f\xfb\x38\x1b\x87\x93\x1a\xa0\x98\x30\xe6\x92\x00\x77\xde\xff\xe4\x28\x14\x55\xe5\x8e\x62\x00\x72\x78\x1f\xe1\xb7\xf5\x9d\x54\x6b\x6f\x57\xf3\xa7\x0d\xe5\xd7\x6f\x74\x27\xfe\x1f\x57\x54\xc4\x63\x43\x9b\x11\x6f\x56\xac\xfb\x2c\x67\x33\xea\x4d\xfe\x68\x99\x2d\x3a\x02\x6a\xf9\xb1\x10\x3c\x9d\x6e\x04\xf5\x81\x35\xa6\x92\x14\x55\x6a\x3d\xc8\x0d\x1f\x77\x8b\xf1\x51\x93\xec\x36\x6f\x34\x0e\x21\x4b\x62\x63\x51\xee\xd2\xa4\x64\x63\x0b\x9a\xe1\x93\xc2\xb6\xf9\x57\x7a\x4d\x3e\xd8\x5f\xdf\x31\x5a\xcc\xe2\x35\x4d\xfe\x4a\xaf\x8b\xe7\xf1\x9a\xbc\xd1\x7a\xb4\x71\xa1\xee\x11\x0a\x8f\x23\x05\x48\x99\xba\xdd\x8a\xe8\x88\x13\x79\x55\x3a\x9e\x05\x34\xe3\xe4\x9a\xc5\x8f\xaa\x4f\x43\x91\x45\xdb\x12\x73\xc2\x02\xd0\xea\x02\xa7\x8b\x72\x5d\xf1\x8c\x30\x4b\x8a\x40\x25\xfd\x83\xcc\x9c\xa3\xd4\x0e\xde\xd8\x2d\x2f\xe7\xec\xac\x7e\x12\x8b\xb8\x2f\x69\x07\xec\x79\x80\xc2\x6f\x28\xab\xf4\xcc\x24\x82\xcf\x6e\x2c\x07\x6d\xca\x41\x7b\x38\x53\xf7\xdf\x9c\xbc\xf5\xd1\x70\x7e\x63\x2d\x05\x2a\x78\x6e\xd1\xca\xb2\x12\xc2\x29\xc2\xb5\xe5\x21\xe8\xa8\xd6\x60\x45\x28\xb8\x86\xf5\xc6\xbc\xa8\xb9\x61\x26\x3d\xa1\xeb\x2c\xbf\x36\xa6\x60\x2d\xdb\x8a\xf0\xda\x77\xfb\xc1\xfb\x9b\x86\xaa\xc7\x32\x65\x8a\xd2\x32\xd6\x03\x43\xad\x1d\x3f\xb7\x8c\xdb\xa4\x1c\xe1\xa1\x26\x6b\x93\x34\xed\xbb\x28\xc4\x83\x87\xab\x6a\xcc\xf6\xa1\x0b\xf5\x40\x38\xef\xbc\x13\xca\x89\x1f\x7a\xea\xab\x39\xa0\xb0\x7b\x08\x9a\xce\x12\x5e\x0d\x02\x02\x0f\x84\x55\x17\x70\x41\xc1\xcd\x6c\x42\x06\x21\x7c\x94\x57\xb1\xa5\x25\xe3\xc8\x82\xaa\x67\x3f\xc7\x96\x61\x14\x8e\x88\xb5\x95\x90\x7b\x12\x33\x4d\xb9\xc9\xea\x9d\x98\x75\x36\x4c\xab\x3e\xd2\xa4\xc3\x37\x19\xed\xfc\xc8\x7e\xe4\x7f\x28\x3c\x89\x33\x2c\xff\xda\x39\xb0\xd3\x21\xe6\xae\x23\x0e\x25\xb5\xb9\xd9\x54\xa8\x65\x31\xf4\x0a\xed\xf9\xfb\x80\xab\x80\xc9\x8d\x0a\xaa\x96\x7d\x26\x59\xf0\x3b\x3d\xd5\x56\x4c\xd6\x7e\xa7\xd5\xea\xb7\x50\x91\x26\x80\xf9\x98\x4d\x2c\xe7\x62\xc7\xe4\xd8\x5b\x81\x13\xea\x3b\xed\xbe\xe3\xe4\x83\x9b\x14\xbb\x81\x7b\xef\xbe\xf5\x91\xd6\xe7\x5e\x3d\xf7\xea\x07\xee\xa2\x05\xcc\x0f\x37\x66\xa6\xdd\x26\x5f\x7f\xff\xdf\xb7\xa2\x7f\x0b\x3e\xe1\x90\xe6\x8b\xf3\xce\xd3\xf2\x2e\xe3\xdc\xf1\x07\x21\xe6\x28\x74\xa1\xab\x46\x2a\x1c\xac\xe3\x79\x0d\x0b\xc4\x1b\x7a\xa9\xbc\xb4\x54\x74\xc4\x1d\x07\xf3\x57\x7a\x78\xd8\xce\x10\x0e\x5e\x7c\xb7\x5f\x37\xb7\xdf\x1e\x77\xc1\xfb\x8e\xec\xef\x0e\x68\xb1\x65\xae\x37\xa1\x95\x96\xc6\x6f\xc0\x02\xb7\xe2\x48\xd3\x9c\x44\x6a\xbf\x35\x8d\xd8\xa6\x88\xda\x95\xdc\x15\xeb\x2c\x15\x92\x45\xe6\xc4\xf3\x70\x0b\x0b\xc2\x7b\x44\x80\xde\xaf\x64\x42\xb4\x28\x0c\xb3\x71\xae\xde\xd8\x79\x8f\x78\xb8\xe3\x39\xb6\x1d\xae\xc4\xba\x0a\xd5\x60\x74\x17\x99\x8d\xad\xc0\x09\x1b\xcf\x8d\x08\xbf\xe6\x44\x87\x23\x83\x61\xb5\xee\x8f\x9f\x62\x3e\x4e\x27\xb8\xd0\x96\xc6\x56\xe7\x31\xf7\x53\x47\x92\x8a\x4a\x84\xaa\x27\xae\xf9\xa4\x2e\xf3\xbe\x61\x2c\xcd\x57\x36\x90\x57\x6a\xce\x39\xc4\x73\x43\x3a\x10\x42\xe6\x86\x23\xcb\xab\x12\x36\xdf\x1d\xca\x70\x7f\x0a\x6c\xcc\x5b\xa6\x90\x96\x08\x61\x3b\x68\xee\x0e\x7a\xb3\x87\x87\xf5\xcb\x13\x85\x91\x18\x2c\x47\x2f\x95\xd8\x4c\x5b\x99\x79\x7f\x02\xbf\xb8\x10\xe9\x8b\x56\xb3\x48\x9c\x59\x24\x6e\xdd\xa5\xa9\xab\x9f\x02\x34\x75\x68\x37\xb4\xdb\xf5\xbd\x45\x96\x4f\xe3\xcc\x3b\x22\x84\x03\xbb\xdf\xed\xd6\x92\xac\xa5\x28\xd4\x84\x12\xbb\x9d\xcf\x02\x55\x46\xe2\x72\x84\xcd\xaf\x6e\xd7\x67\x95\x2d\x2d\x55\xe6\xfd\xd5\x9c\x85\xdc\x28\xcd\x3b\x80\x91\xaa\xea\xce\x97\xc0\x84\x63\x08\x73\xdd\x66\xc2\x41\x1b\xef\xad\xe2\x13\x1f\x16\x8b\x7f\x03\x65\xcd\xec\xff\xe0\x3d\xed\x6a\x2e\xc0\x46\x81\xff\x93\xe3\x87\xf0\xa0\xfb\x27\x0d\x8b\x38\xb1\xdf\x1d\xcf\xf5\x1b\x7d\x67\x35\x0e\xd3\xd0\x21\x35\xcc\xbc\xa9\x86\x39\x0b\x24\xb8\x3d\x4b\x0b\xe1\xc3\xc9\xce\x0f\xea\x61\xa6\xad\x7a\x98\x12\x2b\xa4\x93\x3a\x3a\xb8\x51\x29\x33\xfb\x65\x94\x32\xff\x35\x4a\x95\x9f\xab\x0a\x7a\x83\x52\xe6\x7e\xfd\x8a\x0b\xb4\x17\x32\x3e\x24\x0a\x6f\x87\x09\x06\x1e\x07\x1a\x10\xa0\x9d\x3e\x09\x83\x59\x2d\x5e\xad\xb6\x8d\xe4\xb0\x20\x95\xb3\x07\xb9\xcd\xb8\x05\x3e\x70\xed\x16\x68\xd9\xe2\xdb\xf5\x7f\xaa\x19\xbb\x2a\xa4\xd5\x8c\x57\xe4\xfe\x8f\xc5\x3d\xfc\x63\x71\xef\xfe\xe2\xee\x34\x48\x1d\xaf\xd8\xbe\xdc\xf3\x6b\x1f\xf8\x02\x0d\x87\xbe\xa3\xd4\x30\xaa\x7c\x2a\x44\xfe\xbe\x27\x43\xcd\x3f\x43\xe4\x53\x78\x15\x4a\x59\x02\xaf\x1f\xdc\x44\x43\xd4\xfc\xf3\x1f\x0a\x79\x6a\xfe\x50\x04\x1e\x66\xb8\xb2\x70\x5e\x51\x11\xef\x76\x14\x9c\xda\xd7\xae\x8e\x3a\x06\x14\x9a\xb8\xd9\x20\x08\x52\x60\x7f\xe4\x92\xd2\x89\x49\x38\x8c\x2b\x4a\x27\xee\xf5\xac\x0e\x42\x46\xc0\xf0\x62\x46\xc2\xe1\xec\x0b\x23\x38\x18\xce\x0c\x0a\x9d\x13\x3e\x9e\x4d\x86\x79\xb7\xeb\xe7\x9a\xfa\xc1\x79\x8f\xa4\xfe\x1c\x8d\xe6\x36\x9c\x52\x81\x33\x14\x65\x40\x38\xcd\x2d\x07\x51\x0d\xd6\x55\x24\xb1\x0f\x7f\xa0\xca\xcd\xf0\x56\x3b\x2e\x31\x8e\x57\xac\xf3\xe4\x6a\x05\x18\x2d\x44\xca\x16\xcf\xe8\x05\xcd\xec\xaa\x57\x11\x9d\xf9\x68\x10\xf1\xde\x40\xd9\x8e\x54\x04\xcf\xd6\xad\x66\x63\x99\x0a\xe7\xa8\xc9\xce\x4a\x07\x10\x38\x8e\x95\xae\x8b\xba\x91\x41\x9c\x2c\x51\xa5\x7d\x07\xd5\xa2\xe1\xb8\x41\x03\x60\x13\x1e\x00\xcf\xcc\xd3\x89\x59\xdd\xb9\x22\xf1\x60\x29\x13\x58\x35\xbc\x26\x8a\x68\x99\x8f\x43\x20\x08\x93\xdd\x6e\x0d\xdd\x16\x84\xf9\x31\xde\xe0\x02\xe1\x44\xd5\x58\x12\xe1\xcf\x71\xec\x10\x5a\xb3\xdd\xce\x9f\x11\xea\x6f\x90\x3c\xdf\x4b\xbb\x01\x19\x9e\x21\xbc\xb1\xf4\xd7\x12\xf3\xf1\x5c\x5b\xd3\x14\x0e\xc2\x5d\xca\x93\x07\x7e\x8f\xd7\xdd\x6e\x55\x7c\xae\x22\x90\x14\xc8\xa6\xc4\xea\x36\x93\x8d\x54\xb5\xab\x81\x94\x96\xf4\xe4\x40\x7a\x5a\x7a\x58\xe1\x8b\xfd\x93\x0b\x12\x19\xe7\x55\xa6\xeb\xd9\x27\x99\x6d\x43\x17\x88\x7f\xb2\x9a\xd4\x6f\x9e\x9a\x69\x75\xe8\x78\x32\x08\x3f\x43\x7b\xb3\x42\x78\xb8\x20\xf7\xbb\xf7\x17\x38\x23\xf7\x7f\xfc\xbd\x3f\xfe\xf1\xb2\x3f\xe9\xa1\x5b\xf1\xa0\x3a\x6b\x2e\xef\x37\xac\x82\x50\x7d\x8c\xd7\x66\xc3\x71\x38\x6a\x5b\xda\x81\xb7\x18\xd7\x91\x22\x43\xca\xb1\x7c\xf5\x6e\x37\x8f\xb3\x6c\x1a\xcf\x3e\x14\xdd\x6e\x43\x31\xc7\xc9\x43\x23\x51\xfd\x20\x4e\x86\xf6\x60\x1a\xb9\xd9\xbc\x56\x53\xd2\x55\x0e\x5b\xd8\x44\xf8\x7b\xea\x40\x75\x9d\xed\x70\x28\x2a\x85\x14\x09\x29\xe0\xe3\x9f\x2b\x43\x7c\x3b\x09\x7b\x06\xe4\x8d\x54\x47\xd3\xd5\xfd\xd1\x50\x60\xad\xe8\x0b\x40\x63\x14\xfc\x05\xf3\x7c\xed\x73\xac\x79\x05\x87\x01\xa8\x1d\x12\xda\x70\x08\xf2\x09\x2c\x80\xe3\xd1\x32\x77\x80\xf1\xf8\x53\x81\xf1\x93\x94\xcd\x24\x84\xc4\xa3\x78\x4c\x27\x91\xfc\x87\x50\x8b\xd1\x72\xec\xf5\x7f\xdf\xf5\x50\x20\xf2\x67\xf9\x25\xe5\x4f\xe2\x82\xc2\x0b\x9a\xca\x4e\xb1\xd7\x5f\x15\x7d\xcf\x04\x7a\xb9\x3f\x7e\xdc\xff\x9f\xc9\xfd\x05\x4e\xc9\xfd\xff\x5d\x15\xfd\xfb\x38\x26\x9f\x0d\xcb\xf7\xfd\xfe\x38\xee\xff\x0c\x41\x01\x59\xeb\xa2\x8c\x07\x93\x40\xe4\xdf\xad\xd7\x66\x80\x25\xe6\xee\x11\xc8\xd5\x11\xe0\xe3\x5c\xc2\x7c\x3e\xc1\x7c\x9c\xdb\x39\xc8\x41\xa8\xe4\x16\x81\x42\xee\xaa\xf7\x5a\xd5\x20\xab\x10\x88\xd3\x76\x47\xc1\xf5\x40\x88\xb1\x84\xb1\xe2\x32\x15\xb3\xa5\xeb\xe6\x3e\xed\x76\x1b\xd6\x0a\x12\x63\xa5\xc4\x8b\xe5\x2f\x0f\xe1\x14\x6d\x67\x71\x41\x4d\x95\x08\x14\x40\xcd\x71\x02\x56\xb5\x3a\x20\x1b\xd0\xe6\x40\x62\xbc\x99\x90\xdc\xdf\x60\xf9\x21\x49\xe7\x29\xa7\xf1\x87\xd2\x94\x2a\x4c\xa9\x42\x96\xa2\x3d\xaf\xef\xf5\x0a\x2c\x7f\xda\xb2\x43\xe8\x52\x0d\x21\x32\xf5\x14\x5d\x22\x5c\xba\x44\x8c\x67\xd0\x06\x96\x1f\x8d\xda\x5a\xd3\x25\x0a\x8f\x08\x11\xa0\xd3\x27\x7a\x3e\x1b\xd3\xc9\x6e\x97\xc1\xbf\x9e\xf3\x9a\x5e\x13\xdf\xec\x73\x97\x35\x4a\x40\xd4\x28\x01\xda\xc4\x71\xe0\x25\x36\xf7\x19\x86\x30\x05\xa9\x83\x16\x9a\x14\x9b\xa5\x7e\x04\xa6\x38\x55\xe0\xdb\xe2\xcb\xec\xae\x6e\x0c\x41\x2b\xd8\x12\xa3\xbf\x02\x9a\x18\xaa\xe7\xf6\xff\x24\xbf\xaf\xae\xa8\x52\x93\x74\x12\xf3\x9d\xd6\xcc\x1c\xef\x8c\xf9\x36\x5a\xf7\xda\xe2\xf5\x5f\x38\x96\x88\x83\xa7\xb7\x5e\xcc\x52\x15\xe2\xb8\x9f\xd0\x4c\x9e\x13\x6f\x55\x78\xd8\x4d\xde\xa8\xd0\x7d\x26\xa7\x0a\xfa\xd3\xb7\x71\xc2\x22\x6f\x7d\xd5\x9e\xd5\xbf\xba\x29\xf3\xba\x25\x13\xbc\xa6\xab\x64\x15\x1b\xca\x14\x31\x81\xa2\x84\xc8\x57\x5e\x5b\x62\x3f\xa3\x73\xd1\xe7\x71\x92\x6e\x8a\xf6\x02\x10\x8b\xe9\xc6\x12\x10\xa6\xaa\x91\x25\x9b\x6d\x49\x6a\x2d\xdb\xda\x36\x74\xdb\x96\xd6\xda\x44\xb1\x8e\x67\x92\x69\xad\xa7\x8a\x7c\xbd\x9f\x72\xc3\x8c\x65\xee\x0d\xd3\x95\xd9\x6d\x9d\xb7\xa5\xc5\x73\x71\x20\x67\x0a\xca\x75\xad\x59\x94\x25\xad\xe9\xcb\x9c\xa7\x3f\xe7\x4c\xc4\xd9\x81\x89\x16\x22\xe6\xed\x0b\x73\x41\xb9\x48\x67\x7b\x15\xd5\xce\xd9\xa2\x57\xfd\x62\x19\x27\xf9\xa5\xa9\xac\x02\x90\xf5\x17\xf1\xba\x91\x22\x59\xe4\x96\xa4\x7a\xd7\x3a\xa3\x96\x36\xcf\xe8\x55\x7f\x1a\x17\xa9\x5d\x54\x30\x10\x74\x00\xb7\x4a\x90\xa7\x4a\xc4\x3a\x79\x49\x21\x16\x18\x7c\xab\x10\x61\x50\x18\x62\x62\xed\xed\x7b\x96\x2f\x60\xb2\xaa\x52\x33\xd5\x1d\xd0\x2a\xe6\x8b\x94\xe9\x02\xea\x87\xda\x33\xaf\x9e\xa6\x76\xab\x99\x58\x3b\x4f\x3a\xd1\x85\x78\x9d\x54\x83\x61\x9d\xe6\xc0\xe4\x2a\xbe\x6a\x8c\x54\xa6\xd4\x96\x4d\x57\xa2\x2c\x69\xa4\xc0\x8e\x57\x69\xc5\x87\x16\xec\x51\x4f\xbe\xae\x25\xbb\x0b\x2f\x7b\x6d\x5f\x39\x37\xa7\x3e\xae\x94\x35\x8b\xa6\x6c\xbf\xc8\x81\x56\x9d\x9c\xda\x9e\xe4\x02\x62\x91\xa9\x42\xf0\xa3\x9f\xcf\xe7\xe0\x41\x0a\x12\xf3\x8d\xc8\x52\x46\x75\x09\xfd\xab\x5e\xc4\xa6\xba\x0d\xaf\xe3\x24\x81\xc0\x79\x50\x42\xff\x6a\xec\xa2\x49\x75\xb7\xd1\xa4\xd5\xf6\xd1\x24\x3a\x1b\x69\x92\x6a\x00\x64\xbb\xa9\x41\x90\x49\x75\x76\xd4\x24\xd5\xb6\x74\x4d\x79\xb1\xa6\x10\xb6\xb8\x9f\xf3\x54\x6e\xb9\xdc\xd7\x3f\xb4\x67\x5d\xab\x2c\x27\x47\x35\xc3\xab\xb3\xe3\x41\x0c\xa9\xbe\x02\x1f\xdd\x8b\x04\x02\x9d\x2b\xe8\x95\xe8\x2b\x43\x71\xcf\x4d\x2a\x04\xcf\x3f\xd0\x96\xa4\xda\x02\x8b\x7c\x6d\x4a\xf0\x98\x15\xf3\x9c\xaf\xf4\xd0\xf4\x98\x9b\xc9\x76\x32\x7b\x19\xd7\x87\x32\x7e\x76\x33\xd2\xfd\xdb\xd7\x4d\x6f\x5c\xbf\x16\x09\xc6\x59\xba\x30\x93\xd7\xc1\x15\x61\xd4\x97\x39\x4f\xf6\x51\xab\xc1\x8a\xce\x7d\x5c\xa5\x5d\xb7\xa4\x4d\xb3\x0d\x6f\x49\x2e\xd6\x9c\xc6\x49\x0d\xcd\x01\x88\xd6\x4f\x85\x5a\xdb\x46\x87\x6e\xe2\x75\x5b\x62\xd5\xe5\x47\xd8\x19\x35\x59\x6f\x47\xcb\xd5\x7d\x00\xa3\xf0\x1e\xe1\xfd\xc9\xeb\xa5\xc1\x9a\xd3\x79\x7a\x15\xcc\x8a\xa2\x07\xc9\x46\x16\x3d\x40\x4d\x3e\xfb\xe3\x48\x76\xc7\x66\x03\xe7\xe4\x68\x00\x0a\xf0\x56\xa5\xc9\x12\x66\x0c\x0d\xe3\x6e\x37\xd6\x0a\x45\x39\x39\xd2\x6e\x7f\x37\xb2\x4a\xe1\x56\x51\xf6\x48\x31\xe6\x68\x58\x74\xbb\xc5\x11\x21\xbc\xdb\xf5\x37\xf0\x6a\xe4\xe7\xbb\xdd\x46\x32\x59\x79\xb7\x6b\x4d\xd4\xd8\x04\xd3\x71\xbc\xdb\xb1\x09\x29\x76\x3b\xee\x08\x8a\xea\x92\x53\x4b\x89\xee\x75\x26\x2a\x8d\x8d\x6d\xfd\x4d\x90\x36\x4d\xec\x44\x83\x15\x60\x9f\x25\x31\xe0\x95\x65\xe2\xe0\x41\x4d\xb1\xe4\x37\x16\xa5\xf0\xd6\xd0\x7e\xff\x04\x2b\x4e\x2c\x1a\xfb\x46\xc4\x3e\xa0\x11\xa1\x21\xdd\x0d\x35\x2b\x17\xf8\x3c\xac\xbb\x46\x1c\xd4\x6d\x3f\x4f\x06\xad\x16\xc3\xaa\x2d\xc7\xa7\xe1\x5e\x87\x8e\x63\xc3\xfa\xe8\x2a\x47\x86\x25\xb6\x83\xaa\x1a\x6a\x1b\xfb\xa6\x2d\x57\x4d\xd5\x69\xec\xd7\x34\x46\xac\x9e\x6d\x46\x0a\xac\x92\x31\x9d\x8c\xe4\x3f\xf0\x26\x33\x73\xe3\x1a\xa5\xac\x33\x57\xba\x10\x50\x80\xd0\xa8\x70\xc2\x4d\xf6\xea\xc5\xbd\xbe\xd7\xdb\xaf\xe2\x84\x32\x96\x78\x29\x82\xc4\xa3\x01\x96\x7f\x51\xf4\xf1\xd1\x3f\x5b\x85\x71\xa7\x10\xe9\x87\x9b\x58\xf1\x12\x10\x0a\xc2\x15\xc3\x29\x37\xfe\x1c\xe1\x19\xe1\x7e\x86\xf0\xdc\x3c\x40\x24\xfa\x68\x55\x52\xc6\xed\xfc\xa0\x4e\xfe\xda\x53\xa8\x6c\x4d\x2e\x53\x96\xe4\x97\x2a\x40\xed\x6a\xbd\x11\x34\x51\xfe\x6e\x6d\x4d\xf3\xa1\xeb\x62\xcf\xab\x1e\x7b\x97\xf2\xd8\xae\x51\x5a\xbc\x88\x5f\xf8\x4b\xb4\xdb\xf9\xc9\x78\x3d\x5e\x4e\x26\x44\xfe\xfb\x91\x71\x20\xad\x4c\xb8\x12\xf4\xe5\xfb\x3a\x3d\x95\xd3\x98\xba\xf4\x2d\xf2\xbc\xcf\xc7\x6a\x29\xb9\x3f\xee\xff\x58\x4c\x7a\x7e\x80\x46\x1f\xf3\x90\xf8\x39\x46\xb4\xb3\x4a\xc2\xe7\x04\xf6\x72\x6c\xad\x77\xbb\x23\xb5\xc2\xeb\x98\x17\xf4\x5b\x26\x7c\x81\x07\x21\x42\x75\xc9\x20\x23\xb4\x27\x2a\xdc\x9a\x39\x8a\xa8\xf2\x1b\x74\x80\x67\xda\x71\x08\x9d\x10\xd1\x34\x3c\x85\x52\x12\x90\xad\x06\xaf\x07\x21\xbf\x6d\x95\x11\x14\x10\x91\x2f\x1a\x67\x40\x28\x81\x2c\x44\x95\x26\x4a\xf8\x26\x88\x4d\x9a\xe6\x57\x1e\xc2\x6e\xcf\xb8\xd1\x70\xb7\xeb\xab\xa6\x11\xc2\xf2\x63\xb7\xf3\xf5\x58\x6a\xf5\x3c\x0f\x72\x7f\xfd\x03\xb6\x2d\xab\xd7\xbc\xd8\xf1\x8d\x3f\xbb\xe9\x38\x7d\xc4\x65\xb3\x2f\x6f\xb4\xa0\xaf\xed\x4b\x8d\xd0\xd3\xa5\x72\xac\x39\xbe\xa5\x72\x58\x8d\xca\x31\xf2\xe1\x6d\x89\xf3\x9a\xf3\x58\x81\x82\x22\xe7\xc2\x35\x1b\x4f\x95\xd9\x38\x1f\xe7\xe3\x74\x32\x21\x42\xfd\x1d\x36\x8c\x3e\x9b\x22\xc5\xcf\x7b\x69\xf8\x38\x29\xbc\x51\x71\x24\x84\x48\x14\xdf\xed\x7a\x63\x25\x91\xee\xa8\x21\x4c\x24\xa4\xed\x91\x0b\x46\x35\x40\x13\x0a\x55\x28\xf8\x93\xe3\x63\xe4\xbc\x08\xec\xa9\x98\x63\xa3\xab\x7d\x34\x90\xc4\x1b\xf4\xe8\xb7\xc8\x21\x7d\x41\x6a\x12\x48\x1d\x1b\xc2\xd1\xe9\xd1\x0d\x48\x12\x05\x3e\x59\x83\x86\xf1\x3d\x70\x9a\xa2\x4a\xbf\x9c\x7b\x08\xdd\x8a\x26\xdb\xc7\xed\xd8\x95\x1e\x11\xda\xed\x3a\x42\x7e\x23\xee\x94\x43\x20\x84\x34\x5f\xb8\x3e\x0e\x2d\xd7\x55\xd6\x8c\xcd\x1a\x98\xa9\x74\x7c\xcb\x80\x47\x9e\x89\x78\xb4\x6f\x72\x3a\x93\xc8\x43\xfe\x13\x51\x64\x4a\x25\xd8\x43\xae\xc6\xa6\xdd\x0a\x46\x36\xb5\x77\x7a\xcc\xc9\x6c\xbc\x19\xb3\x0a\x3c\x19\x21\x64\xa3\x0f\xc8\x48\xf8\xde\x55\xe1\xa1\xa8\x1a\x91\x91\x66\x54\x23\x6a\x19\x12\xef\x76\xd9\x97\xe1\x88\x47\x14\xf5\x97\xf7\x07\x61\x78\x70\x60\x1c\xe8\x4d\xcd\x31\x54\x43\x63\xa8\x37\xa8\x14\x12\x6a\x03\xa2\xee\x68\xf6\xd7\x47\x2e\x44\xad\xb7\x4e\xcc\x92\x8e\x87\x7a\x5e\xdb\xd8\xe5\xdc\xf9\x64\x72\xcb\x20\x5d\x2a\x48\x0e\xd8\x7d\x87\x2c\x9c\x3c\xd9\x77\xa9\x54\x3f\xa8\x72\x6d\x5b\x58\x54\x47\x08\xc9\x46\xdb\xab\x22\x0a\x71\xb1\x8a\x1e\x84\x21\x5e\x25\xd1\xa3\x07\x21\xce\x16\xd1\xe0\xf8\x3c\xc4\x57\x59\x34\x78\x74\x1c\x96\x51\x86\xe7\x84\x06\x1b\x96\x0a\x9c\x54\x95\xe7\x23\xc9\x10\x46\x73\xbc\x06\x75\x53\xba\xc6\xcb\x2a\x73\x3d\x3a\x8b\xd6\x78\xd5\x78\x05\xa5\x78\xac\x14\xee\x24\xbf\x2c\xdb\xf3\xb0\x27\x6b\x7a\x96\xa6\xf7\x43\x5c\x39\xe0\xf0\xb7\x12\x9f\x45\x1b\xa5\x24\x54\x44\x33\xbc\x59\x47\x02\x27\xf9\x25\x8b\x18\x9e\x52\x71\x49\x29\x8b\x38\xce\x59\x76\x1d\xe5\x9a\xd7\x2e\x4a\xbc\xaa\xf0\x40\x88\x3e\x47\x08\xcf\xb1\x42\xa9\x2e\x9d\x9e\x92\xdc\x67\xfe\xe0\x04\xc9\xfb\x44\x7e\xca\xaf\x0d\x19\x4b\xb0\xc4\x5e\xb1\xf2\xb0\xb7\x4a\x3c\xec\x65\x0b\x0f\x7b\x57\x99\x37\x19\xea\x36\x3e\xce\xcb\x96\x85\xc1\x6a\x61\x9c\x85\xdc\x2e\x36\x42\x50\x5e\x34\xdd\xf7\x7d\xc6\xeb\x52\x7b\x3f\x5a\x6c\xf4\x8c\xce\x45\x74\x7c\x4f\x28\x20\xd0\x89\xaf\x41\xee\x63\x52\x4b\xcc\x70\x63\xf7\x4a\x4c\x83\xcd\xda\x97\x8b\x82\xf0\x0d\x0d\x9f\xb4\x36\x7c\x52\x35\x3c\xae\xda\x99\x48\xfc\x89\x45\x9e\x67\xd3\x98\x47\x3e\x27\xdb\x55\xca\xfe\xa2\xc4\xb7\x67\x0f\xca\xc6\x10\x38\xf6\xec\xc9\x52\x6d\x48\xe4\x81\x3d\x38\x82\x7e\xce\x53\xca\x04\x08\x71\xa2\x4e\x16\xb3\x04\x4c\x12\x91\x87\xb0\xd3\xe8\xe9\x79\x89\xf6\x5a\x75\xe6\xe5\x14\x7d\x70\x5a\x22\xcc\x51\x89\xd9\x2f\x06\x80\x2e\xc8\x0d\x2c\xc8\x49\xe8\xfb\x48\x68\xc2\x1c\x6d\x29\x84\xfb\xf5\x9b\x5c\xb6\xcf\xd0\x08\xf4\x1c\x24\x73\x1d\x79\x19\xc8\x8b\x24\xea\x1c\xd1\x00\x7e\xc8\x53\xbc\x54\x9f\x94\x21\x9f\x06\xab\x38\x95\x0d\x46\x5e\x12\xf3\x0f\x86\x04\xa4\x81\xfc\xa5\xca\xca\x2f\xa7\xe8\x20\x38\xbb\xc7\x11\x6a\x22\xb0\xfa\x4d\xa3\xc4\x05\x50\x1d\x98\x13\x26\x78\x5c\x88\xd7\x72\x7b\x24\xe6\xb8\x06\xeb\xbb\x60\xcd\xd3\x55\xcc\xaf\xd1\x97\xe4\x6a\x54\x4f\x8a\x56\xb5\x9f\x95\x73\xbc\xb6\x3b\xe7\x13\x0d\xd0\xcf\xc2\x10\xe7\x9f\x1a\x8d\xea\x24\x0c\x71\xba\x5f\xf9\xa4\xb5\xf2\x89\x5b\xf9\x64\x12\x3d\x0c\xc3\xe1\x91\x5a\xce\x6e\xd7\xc4\x2b\x85\x9f\x4a\x26\x82\xe5\x3e\xeb\xbd\xc3\x39\x7e\xa5\x13\x60\x83\x70\x2a\x7f\x03\x1d\x03\x6b\xfa\x96\x5e\x09\x80\x03\x37\x81\x08\xdd\x1e\x32\xc0\x4b\xcd\x52\xe2\xb4\x42\xec\xf9\x68\x0b\x9d\x54\x92\x83\xf1\x49\x18\x4e\xb0\xac\xe9\xa4\x9d\xc9\x34\xd9\xb9\x93\xf6\x30\x0c\x27\x65\x94\xe3\x0b\x79\x5f\xd0\x59\xce\x12\xd9\xf6\xb4\x6a\xfb\xc2\xb4\x6d\x79\xf2\xe0\xf1\xb1\xbc\x97\x64\xdb\x4e\xda\x69\x18\xaa\xb6\x9d\xb4\x87\x61\x58\x46\x17\x78\x41\x68\x40\x39\xcf\x39\xbe\xac\xda\x5d\x98\x76\x93\x96\x31\x27\x2d\x63\x4e\x1a\x63\x5e\xe0\x77\x5a\x60\x89\x5f\x56\xcd\xbe\x1b\xe9\xf5\x8e\xde\xe1\xa7\xc4\x59\xcd\x25\xa7\xc5\x32\xcf\x12\x7c\x55\x15\x7e\x3a\x3a\x89\x9e\xe2\x0f\x60\xc5\xc9\xe2\xec\x25\x3c\x27\xe0\x57\x55\x81\x0f\xa3\xe0\x38\xfa\x80\xdf\xec\x39\x6e\x1b\x7b\x7a\x1b\xe4\xf5\x62\x96\xcd\xc3\x1e\x4c\xd3\xc3\x9e\x1c\x16\xbc\x87\x35\x7a\x97\x59\x55\x57\xf2\x8a\x65\x92\xfb\x61\xfe\x14\x7b\x72\x09\x3d\xec\xc9\xd5\x95\x7f\x1e\x86\xa1\x27\x73\x2e\x95\x90\xe0\x2d\xd9\xc2\x32\x5c\x63\xb5\x6c\x2b\xe7\x72\xa8\xde\xbe\x1b\xfa\xaf\xdb\x59\xbe\x5a\xe5\xcc\x89\x76\x21\x07\x16\xbd\xc4\xe6\x78\xa6\xd8\x8e\x3e\x9a\x62\x18\x7d\x74\x89\x17\x9c\x5e\x3b\x71\x33\xf6\x66\x11\x5d\x61\x07\x1b\x48\x40\x8d\x04\x8e\x37\x0b\x79\x30\x9e\xe4\x59\xce\x23\x86\x9d\x69\x46\xaf\x4a\xfc\x76\xfc\x72\x82\xf0\x1b\xbc\x9d\x65\x39\xa3\xd1\xd1\xa0\x44\xa5\x61\x03\x3f\x0f\x1d\xe7\xf2\x5b\x22\x39\xa1\x11\xa3\x43\x17\xc4\x24\x35\x74\xc1\x06\x3e\xe5\x57\x41\x7c\x48\x0d\x11\xc2\xf2\xe3\x4c\x72\xf1\x38\xd3\x45\xcf\x10\xc2\x33\xfd\xfd\x00\x21\x3c\xd7\xdf\x0f\x11\xc2\x89\xfe\x3e\x47\x08\xaf\xf5\xf7\x23\xa4\xe2\x9f\x9e\x0d\x10\x5e\x91\xad\xc4\x76\xd1\xd6\x2c\xaf\xc7\x17\xd3\xd8\x0f\x71\x47\xff\x3f\x38\x7f\x88\x3c\x67\xc9\xf7\xf2\xcf\x4e\x91\x87\x93\xb4\x88\xa7\x19\x4d\xf6\xb3\x4f\xce\x91\x87\x97\x29\x13\xed\x59\x25\x4e\xd2\x8b\x14\x94\x00\x9a\xd9\x83\x63\xe4\xe1\x4a\x6f\x20\xda\xae\xe3\x35\xe5\x15\x60\x04\x97\xcb\x54\x50\x6c\xa4\x24\x73\xe7\x00\x4e\x4a\x1c\x03\xae\x8e\xb6\xb1\x7e\x61\x6a\x1d\xf6\x32\xbf\x68\xeb\x39\x3c\x37\x79\x2f\xd7\xf1\x2c\x15\xd7\x51\x10\x9e\x6b\x65\xf4\xb6\x39\x0e\x6e\x5e\x82\xe3\x07\x4e\xf6\x57\xd5\x84\x5a\x67\x5c\x96\x43\x03\x15\x2b\x00\x88\xeb\xe6\x0e\x35\x17\xa0\xb9\x37\xc7\x67\x67\xb8\x53\xfd\x13\x06\x0f\xf7\x47\xb7\x57\xe6\xac\xbe\x4b\xad\xf9\xe9\x2c\x67\x37\xe4\x37\xb7\x72\xaf\xcc\x81\x0d\xad\x36\xee\x1c\x30\xa7\xde\x4f\xef\x77\x27\xa1\xfc\x9f\xb7\xb7\x97\xcd\x05\x70\x77\x71\xbf\xd3\xbd\xad\x1c\x34\x77\x72\xaf\xce\xf1\x1d\x16\xec\xe4\xa6\x3d\x6d\x9d\x3a\xec\x2c\x1c\xfb\xdb\xc2\xa8\xb7\x0a\x08\x9f\xc7\x62\x19\x40\x27\xfe\x80\x9e\xdd\xa3\xe8\xfe\x80\x9e\xed\x9b\x2e\xd6\x88\x14\x23\x8f\xb3\xb4\xeb\xfd\xc5\xbd\x97\xd8\xe3\x74\x65\xb5\x20\xdb\x94\xa6\x84\xe2\x46\x05\x4e\x49\x1e\xcc\x73\x26\xbe\x89\x57\x69\x76\x8d\xb3\xea\x9a\x49\x47\x7f\xf4\x5e\xe7\xd3\x5c\xe4\x1e\xee\x78\x7f\xa1\xd9\x05\x15\xe9\x2c\x96\x3f\x1e\xf3\x34\xce\x3c\xdc\x29\x62\x56\xf4\x0b\xca\xd3\xf9\x1f\xa3\x14\xcf\x74\x53\x6f\xd2\x9f\xa9\x15\x3e\x13\x42\x66\xa3\xc1\x69\x34\xc3\x89\xce\xfe\x1e\x48\xe0\x67\xf2\x1f\xbc\xae\x4a\x25\xa3\x93\x30\x8c\x12\xbc\xac\x15\x7b\x4d\x17\x9b\x2c\xe6\x78\x55\x15\x5c\x8e\x4e\xc3\x30\x5a\xe2\xeb\x5a\xc1\xe7\x34\x49\x37\x2b\x7c\x51\x95\xbb\x1e\x9d\x85\x61\x24\xc9\x86\x3c\x58\x8a\x55\xf6\x8d\x19\xda\xa2\x2a\x33\x1d\x0d\x1e\x44\x53\x7c\x49\xf2\x20\xce\xb2\xbf\xc7\x3c\x8d\x99\x28\xf0\xbb\xc6\xd5\x9a\xe3\xb1\x57\x2d\x92\x7e\x34\x95\x6d\xe9\x4f\x67\x4a\xb5\x14\x3d\xfa\x5a\x9a\x1a\xa8\x87\x3d\x77\x4c\x1e\xf6\x9c\xfe\xbd\x09\xc2\x2f\xc9\xfc\xfe\xe0\xb4\xf5\x36\xdd\xae\xaf\xde\xe6\xaf\xe9\x2a\x62\x58\x41\x24\xc7\xd5\xe0\x24\x0b\xae\x1b\x8d\xe6\xb8\x31\xb8\x68\x8d\xf7\x06\x17\xad\x70\x73\x70\xd1\x85\x84\xfb\x75\x16\x5f\x9f\x36\x42\x8a\x6d\x6d\xdb\x92\xcb\x38\x46\x4e\x55\xdd\xb6\x1d\x85\xd2\x88\x79\xa3\x1e\xb1\x23\xaf\x1f\x84\xa7\x74\xe5\xe1\x2c\x65\x54\x33\x41\x15\xd0\x72\x7f\x70\x7c\x7e\x1f\x1a\xf4\x24\xe0\x6a\x75\x18\x60\xf9\x6c\xcd\x19\xdc\xe1\xca\x3b\x4f\x45\x15\x96\xf8\x12\x99\xd1\x9e\xdc\x30\xda\xb3\x07\xb5\xc1\xae\x6e\x1b\xec\xf1\x0d\x83\x7d\x78\x72\x5f\x36\xd7\x3a\xd4\xe3\xbb\x0d\xf5\xf8\x86\xa1\x9e\x9e\xdd\x38\xd4\xf6\x31\x9d\x0d\xee\xcb\x7a\x9f\x33\xa6\xc1\x0d\x63\x3a\x39\xfd\x84\x31\x9d\x0e\xee\xcb\x7a\x6a\x4c\x37\xf4\xbf\xa4\x71\x02\x8a\x34\x87\xfb\x3f\xfe\x94\xfe\x4f\x8e\x83\xb3\xfb\xc7\xed\x23\xd0\x57\x2d\xf4\x2f\x52\x91\xdd\xd8\xf9\xa0\xd6\xf9\xc5\x9d\x3a\x3f\x3e\x95\x9d\x0f\x6e\xed\xbc\xd8\x4c\xe5\xfc\x25\xdc\xdd\x70\xd6\x6e\x86\xde\x03\x67\x2a\x38\xbb\xb5\xf7\x69\x9e\xdc\x08\x8b\x83\xd3\x4f\x9a\xfa\xfd\xc1\xed\xab\x2e\xbb\xbe\x09\xe4\x06\x9f\xb2\xe5\xc7\x61\x70\x76\x97\xce\x67\x31\x18\x6b\xdd\xd4\xfd\xf1\x27\x2d\xf9\xc9\xc3\xf6\x45\xaf\x43\xfc\x74\x23\xc4\xcd\xbd\x9f\x22\x2c\xeb\xbd\x35\x6a\x47\x91\xb7\x59\xaf\x29\x07\x7d\xf6\x1b\x76\xe4\xd0\x84\x4b\xfc\xee\xd7\xe0\x72\x6e\xe2\x67\x0c\x17\xf3\x31\xaf\x5f\xea\xba\x1b\x57\x4b\xda\x94\x81\x7c\x41\xc2\x91\xba\xbd\x23\x57\x2a\x89\xbd\xf5\x55\xc7\x43\x87\x6b\x0d\xf6\x6b\x0d\x6e\xaf\x75\xbc\x5f\xeb\xf8\xf6\x5a\x27\xfb\xb5\x4e\x54\xad\x3a\x37\x50\xb5\x91\x83\xd0\x1e\xdf\x34\xed\xd3\xfd\x46\x4f\x6f\x1f\xca\xd9\x7e\xad\xb3\xdb\x6b\x3d\xd8\xaf\xf5\xe0\xf6\x5a\x0f\xf7\x6b\x3d\xbc\x79\xda\xe9\xed\xd3\x3e\xdf\x6f\xf4\xfc\xf6\xa1\x3c\xda\xaf\xf5\xe8\x0e\x30\xd2\x02\x5a\x83\xbb\xc0\x56\x1b\x70\x0d\x6e\x9e\x7a\x0c\x53\x9f\x04\xef\xf3\x94\xf9\x1e\xfe\x04\x87\x45\xce\x31\xac\xe9\x06\x05\xc7\x38\x25\xc1\xe0\x14\xc7\x24\x18\x1c\xc3\x7b\x03\xcb\x19\xf5\x30\xf7\x43\x3c\xc0\x27\x38\xc4\xf2\xef\x00\xfe\x1e\xe3\x01\xee\x0f\x90\xce\x3b\xd3\x69\xc7\xf0\xf7\x44\xe6\x1d\x9b\xbc\x73\x9d\x76\xaa\xff\x9e\xd8\xbc\x63\x7c\x8a\xfb\xb2\xb9\x53\xdd\xc0\x00\x0f\x42\x1c\xaa\xcc\x13\x7c\xa6\x32\xcf\x74\x0b\x03\x3c\x38\xdd\xcb\x7c\x00\x35\x54\xee\xb9\xc9\x95\xcd\xf5\xe5\x50\x1e\xca\xdc\x81\x1a\xed\x03\xac\x47\x7b\x26\x73\xe5\x64\xce\x4d\xee\x89\x6c\xf9\xd8\xe4\x3e\x50\xb9\x8f\xf0\xe0\xd8\xe4\x3e\x30\xb9\x0f\x4c\xae\xac\x79\x8a\xd5\xd8\x07\xe7\xf8\xc4\x64\x3f\xc4\x7d\x39\xcf\xc1\x00\x0f\xce\x74\xf6\x71\x68\xb2\x1f\xe2\x73\x9d\x7d\x8c\x07\x0f\x61\xb1\xce\xf0\xf1\x31\x3e\x6d\x66\x9f\xe0\xc1\x23\x93\x7d\x5a\x65\x3f\xd2\xd9\xa7\xf8\x78\x60\xb2\x1f\x98\xec\x73\x99\x2d\x97\x71\x00\x6d\x1e\xc3\xe2\x1c\x9f\xe3\x33\x93\x3d\x08\x75\xfe\x03\xd9\xa8\xca\x3f\x09\x9d\xfc\x81\xce\x7f\x28\x5b\xd5\xf9\xc7\x26\xff\x51\x95\x7f\x2e\x9b\x55\xcb\x7b\x72\x8a\x1f\xd8\xfc\x63\xdc\x7f\x20\xf3\x1f\xe1\xe3\x47\x26\xff\x81\xc9\x1f\xc0\xb4\xa0\x80\x5c\x10\x05\x4e\xe7\xf8\xe4\x1c\x3f\xdc\x2f\x30\xc0\x27\x27\xba\xc0\x69\xe8\x16\x38\xd5\x05\x8e\xf1\xc9\x99\x29\x70\x6c\x0b\x00\x84\xf4\x1f\xca\x02\x27\xb2\x6b\xb5\x8d\xa7\xa7\xf8\xbc\x2a\x70\xa6\x0b\x9c\xca\xae\x75\x81\x07\xf8\x1c\x4d\x70\x41\x36\x1f\x11\x10\xea\x97\x39\x74\x9c\x6c\x95\x79\xc3\x6b\x30\xd3\x88\x4e\x4b\x9c\x13\xee\x0c\x23\xff\x67\x0d\x63\xc3\x52\x11\x9d\xff\xcb\xba\x5f\xe5\xd3\x34\xa3\x6f\x04\x95\xa4\x4a\x34\xa0\x27\x38\x5e\xaf\xbf\x8a\x79\x34\x18\x84\x21\x4e\x78\x7c\x29\x93\x41\x50\x9f\x27\x71\x16\x0d\x4e\xc2\x10\x17\x2c\x9e\x7d\x98\xca\x42\xa7\x61\x08\xef\x75\x22\x5d\x47\x83\xb3\x30\xfc\xd8\x79\x34\x5d\x48\xed\xbf\xeb\x34\x1f\x93\x04\xce\xad\x83\xd9\x11\xf5\x05\x8a\xc0\x4d\xef\x51\xbe\xdb\x1d\x89\x20\xbf\xa0\x9c\xa7\x09\x2d\xea\xbf\xc6\xb9\x55\x9f\x4a\xb5\xcb\x9c\x7a\x2e\xce\x1a\xaf\xd9\xdb\xd2\xb1\xfe\x73\x15\x70\x0a\x14\xcc\x73\xfe\x34\x9e\x2d\x6b\x51\x4d\xb2\x31\x9d\x34\x44\x10\x32\x09\x17\xf2\x9f\x2d\x18\x43\x3e\xa7\x7c\x41\x23\x5e\xa2\x12\xe1\x4c\xdb\x0b\xb6\x09\x7a\x8c\xcf\xee\xad\xd2\x4b\x8a\x04\x76\xfc\x9c\x8a\x25\x5d\xa5\x6c\xf1\x94\x29\x39\x18\x2b\x7f\x21\xba\xf0\x90\xb0\x1b\x44\xdc\xa7\x67\x5a\xc4\xdd\x90\x75\x17\x24\xff\xc4\x50\x6e\x95\x5f\x2b\x39\x21\x0a\x5e\xad\xc0\xe3\x72\xe5\x5d\x47\x85\xc1\x28\xec\xc7\x98\x4d\x46\xd5\x67\xb4\xfd\x2c\xfd\xa5\xda\xfd\xfb\xa9\x00\x5b\x4d\x02\x3c\x98\x51\xe5\x9c\x0b\xbe\x5f\xc4\x2b\x0a\xfe\x3b\x66\xf9\x6a\x9d\x33\xca\x04\x38\xf9\x2c\x7e\xda\xc4\x9c\xe2\x82\xd0\x80\x66\xf4\x02\x5e\xa7\xf1\xbc\xe5\x55\x48\x37\xe8\x61\xcf\x36\x07\xcf\x40\xba\x31\x0f\x7b\xaa\x29\x0f\x7b\xb6\x21\x6f\x82\x70\x42\xea\x5a\xaf\x22\xe0\x79\x2e\xb0\x18\x3b\xc5\x0c\x41\x53\xa0\x49\xf3\xe1\xbe\xc4\x42\x49\x33\x69\x82\x8f\x72\xe4\x78\xce\xc9\x2a\x25\xc1\x9a\xb6\x1c\x6f\xea\x05\xd8\xf1\x46\x49\x89\xe7\xe8\x97\x7a\x2c\xd7\xa1\x85\x5a\xb4\x35\x4e\xab\x97\xf3\x01\x80\x6c\x6e\xf9\x19\xab\xcc\x91\xa9\x4f\x78\x92\xf1\xe5\xe7\x31\x42\x18\x92\x8e\x11\xbc\xcd\x40\x22\x40\xb7\xfc\x78\x88\xe0\x91\x66\x4f\xb1\x8c\x58\x4d\x8a\x0e\x0d\x94\xf9\x44\xd1\x82\x0d\x20\x4c\x49\xdb\x8a\x33\x34\x91\xf7\xce\xd5\x1b\xa8\x1a\xd1\x52\x69\x1f\xb8\x82\x42\xb9\x5d\xd1\xb6\x92\xc7\x3f\xd1\xdc\xe1\x3a\x06\x81\x57\x50\xe5\x04\x20\xa8\x2f\xb1\xde\xaf\xa8\x7e\xa1\xc1\xf8\xd6\x34\x70\x13\xcb\x12\x0b\x54\x0e\xed\x52\x26\x98\xc3\x79\x7a\x7b\xbd\xa6\x05\xd9\x96\x98\x9b\x81\xc8\xbd\x29\xc8\xd6\xc2\x5b\xe4\x25\xe9\x85\x87\xed\x8c\xa2\x63\xac\xe0\x4f\xb2\xa6\x5a\xf7\x18\x9c\xce\xd9\x89\x24\x78\x2b\xcf\x73\xe4\x3d\xdf\xa4\xaf\xe4\x40\x3d\x08\xc7\xe4\x9c\xb4\xf5\x9d\x3c\x5a\x7c\x1a\xdc\x1c\xac\xa0\x3b\xf7\xf0\xb6\xf2\x1e\x16\x1d\x85\x78\x41\x45\x8b\x63\xa6\xdc\xea\xbc\x5b\xdf\x24\x5c\x02\xd7\xc9\xd9\xad\x3c\xf2\xe7\x8c\xfe\x10\x9a\x92\x78\x17\x29\x23\x02\xe6\x3f\x40\x4a\xe7\x95\xf9\xe7\x48\x19\x12\x30\xff\x11\x52\x8a\xaf\x0a\xd4\x33\xe2\x73\x0d\xea\x20\x8e\x02\xe0\x87\xf1\xcb\x56\xf6\xb5\x0f\xb7\xd6\x27\x59\xb4\x5d\x8a\x55\x16\x6d\xbf\xa7\xd3\x0f\xa9\x00\x89\xf7\x2a\xcf\xc5\x12\x24\xad\x31\x13\x69\x9c\xa5\x71\x41\x13\x0f\x3f\xcf\x7f\x7e\x59\x5c\x35\x4a\x2c\x78\x7c\x5d\xcc\x62\x39\x2d\x09\xec\xe9\xcf\x90\x6a\x2d\x7e\xaf\xbc\x12\x7b\xf7\x70\xe7\x5e\x14\x29\xcb\x36\xf8\xd4\x96\x6f\x5b\xa7\x46\xca\x96\x94\xa7\xc2\x2b\x41\xf0\x14\x6d\xb5\xc5\x65\x88\xef\x74\x3c\xcc\xab\xb3\x51\xdf\x5b\xf3\x94\x09\xef\xa6\xb3\xa5\x1e\xb9\xd5\xfb\x15\x84\x5d\x92\x98\xa1\xe6\x7d\xa6\x22\x43\x1c\x3f\xcb\xb9\x83\x6e\x97\x69\x81\x45\x53\x1f\x0a\x52\x7d\x11\xbc\x7b\x07\x9a\xa5\xef\xde\xed\x76\x1a\x26\x94\x8f\x55\xa3\x3e\xea\x0b\x04\x0e\xee\x33\x15\x76\x12\x5b\xde\xd4\xba\x3a\xa8\x5f\x14\x02\xd3\xa6\xf6\x92\x30\x4e\xb8\x54\x98\x95\x5b\x7c\x8e\xc1\x65\xaa\xa2\xca\x70\xca\xc0\xff\x96\x28\x2b\x0b\xf8\xe0\x89\x39\xff\x68\x38\xaf\x63\x8a\xbd\x9f\x0d\xc4\xa1\x9b\x54\x0e\xea\x87\xca\x6b\x12\x84\x14\xbb\x4c\xc5\x12\x14\x90\x0b\xe4\xcf\x1c\x1c\xf1\xa4\x28\xbe\x8a\x0b\x9a\xa5\x8c\x4a\x4c\x31\x77\x31\x45\x72\xc7\xb3\x36\x38\x3e\x43\xf8\xf3\xaf\x9a\x9b\xf4\x01\x9d\x2b\xe6\xcc\x5e\x31\x0f\xec\x0d\x73\x0e\x87\x2c\xd7\x47\x71\x6e\x6f\x9d\x84\x98\x4b\x67\xdd\xb8\x6a\x4e\x4e\xe0\xb2\x59\xaa\x93\x2c\x4b\xac\x54\x89\xbd\x43\x5a\xb3\x91\xdb\x57\x20\xdc\xec\x43\x61\x33\x8a\xdb\x47\xc1\x21\x28\x5d\xcb\x1a\x08\x61\x1e\x4c\x79\x1e\x27\xb3\xb8\x00\x1d\xae\x75\xd5\xa4\xcc\xdb\x30\x1b\x93\xef\xdb\x84\x80\x07\x2a\x1e\xe4\x1b\x41\xf9\x5b\x49\xdb\xb5\xa4\x2c\x2d\x84\xa5\x2c\x95\xd8\x04\xfc\x5a\x57\x9d\x40\x94\x01\x11\x0b\xea\xf3\x60\x25\xa9\xe6\x97\xb2\xee\xb3\x7c\x16\x67\xd0\x80\xaf\xc9\x46\x39\xb4\xea\x64\xcc\xf6\x4f\x46\xd1\x72\x32\x16\x54\x80\xe7\x78\xf0\xf5\x7e\x25\x0e\xc5\x4a\x36\x91\x8e\xe1\x8c\xa8\xd8\x86\x4b\x4a\x45\xf1\x3c\x66\xf1\x82\x72\xcc\x89\x08\xf4\x53\xb3\x82\xe7\x3f\x53\x46\x95\xd1\x28\xce\x55\xd5\x99\xea\x21\x58\x6d\x52\x18\xf6\x2b\x9e\xc3\x53\xfc\x4b\x45\xce\xef\x76\x15\x39\x61\x95\xc4\xc0\x38\xb1\xde\x15\x61\x08\xdb\x7c\x0e\xf9\x07\x3a\x26\x1c\x61\x2a\xcf\x63\x53\x33\x77\x19\x3c\xf9\xcb\xe3\x17\x2f\x9e\x3e\x53\x7e\x01\xed\x42\x37\x31\x15\xc5\xde\x81\xc1\x7a\x38\x47\x98\x5a\xa7\x86\x96\x32\xf8\x3a\x4d\x9e\xe7\x1b\x76\x70\x19\x61\x25\x94\x97\xc1\x3a\x9c\x54\x30\x50\x45\x74\x74\x57\xad\x82\x7d\x81\xb6\xd4\x85\x1e\x81\x69\x1b\xa8\xd0\x43\xa0\xa2\xb0\x9c\x06\x98\x12\xb5\xce\x41\xc5\x10\x6c\xf3\x58\xe8\x20\x4a\x68\x02\xfc\x9f\xc1\x97\x8e\x98\xd0\x32\x14\x48\x6f\x1d\x4d\xb3\x35\xd4\x32\x9c\xef\xd3\x2c\xfb\x8e\xad\x0e\xac\xaa\x32\x11\x20\xfb\x2b\xda\xed\x56\x4b\xea\x64\xd4\x17\x75\xbf\x5a\x35\x80\xb6\x01\x1f\xf6\xe1\xd8\xca\xb9\x8e\x74\x77\xd5\x6e\xa1\xa8\x91\x30\xda\xd3\x23\x6e\x14\xc0\x14\x45\xd4\x71\x86\xfd\xc9\xf7\xd8\xbc\xe5\x1e\x43\xc3\x55\xfd\xe6\xda\xfb\x39\x73\x70\x83\x4a\xde\x1b\x70\xb5\xce\x33\xa7\x1c\xde\x1e\x38\x3a\x95\xc6\x61\xa0\xac\x3a\x4a\x24\xfb\xf9\x95\xbb\xd0\x6a\x4a\x2b\xe7\x1e\xfd\x38\x0d\x97\x16\x62\xa7\xb3\x69\xe8\xdb\x6e\x48\x65\x8e\x2d\x6a\x76\x4a\x29\x04\xb5\x03\x2c\x69\xbc\xf9\x7e\xc1\x55\x6c\x85\xb1\x18\xb3\xc9\xa4\xdb\xd5\x1f\x35\x3f\x6b\x5c\xdb\x1d\xb7\x85\x29\xa5\x8e\x2f\x71\xed\x47\x3c\x4b\x0b\x21\xb1\x5f\x67\xb5\x29\x44\x67\x4a\x1d\x0f\xe2\x81\x36\x8a\x14\x24\x36\x48\x36\x05\x3d\x68\x1c\xf7\xc8\x00\x37\x25\x4c\xe9\x98\x4e\xf4\xcd\xaf\x25\x2a\xdb\x12\xc7\x64\x80\xe5\x14\x35\x7d\xbc\xd0\xe7\x3b\x12\xd8\x1c\xf5\x88\x61\x7b\x96\x22\x8e\x9d\x93\x15\xe5\xff\x74\x03\xab\xce\x67\xd9\xab\x7e\x8a\x63\x35\x6a\x0f\x5d\x25\xfa\xa0\x85\x12\x7c\x58\x31\x48\x4e\xa8\xb9\xb0\xfe\xac\x2c\x1b\xf0\x0c\x2c\x56\x40\x75\xa6\x5d\xfc\xa1\x5b\x35\xf2\x8f\x3d\x49\x48\xbd\x3d\x0f\x7b\xba\x35\x2b\x03\x71\xc8\x1e\xa6\x64\x20\x6c\x3c\x6b\x91\x77\xb0\x40\x5b\x5b\x80\xbc\x83\x5b\x79\x47\x71\x40\xde\xa1\x18\xe1\x9b\x65\x1e\x92\xcb\xfe\x57\x4b\x3d\x14\xff\xb7\x2f\xea\x50\xd4\xe9\x43\xd4\x64\x6d\x34\x88\x2b\xf1\x83\xf1\xf8\x22\xd1\x6f\x16\x8b\xf4\x82\x7a\x46\xe3\x24\x02\x3f\x3c\x1e\x06\x3f\x18\xdf\x0a\xba\x2a\x22\x6f\x46\x99\xe4\xdd\x4a\x6c\x0c\x57\x68\xb0\x4a\xaf\x52\x56\x98\xb5\x95\x64\xa2\x56\x5d\xb2\x59\xda\xca\x03\x27\x94\x15\x34\xaa\xdb\x64\x94\x8e\x90\x62\x7e\x9b\x90\xa2\x0e\x0a\xd1\xd1\x00\x6b\x58\x90\xa3\x57\xca\x5c\x0e\x07\xe2\x10\x89\x73\x87\xfd\x78\xab\x46\xb3\x27\xa4\xb8\x1b\xeb\x01\xbb\xf0\x10\xd8\xec\xe3\x50\xfd\x19\xc8\x3f\x0f\xcf\x10\x1a\xb2\x20\x91\x9b\x1d\x7b\x78\xff\xf6\xe2\x41\x6c\x25\x0b\x72\x53\x4f\x54\xe5\x63\xf5\xe7\xa4\xaa\x3d\x6d\xab\x9d\xdb\xda\xa9\xac\xfd\xf0\x81\xac\x76\x7a\xaa\x2a\x9f\x56\x95\x67\x6d\x95\x53\x59\xf9\x8e\x8c\xd5\xf9\x09\xf0\x55\x01\xf3\xb9\x0a\x54\x3f\x80\x40\xf5\x32\x41\x9b\xdc\x0e\xc0\x89\x41\xc0\x8c\x51\xfb\x69\x08\xd2\x06\x99\x92\xc9\xf1\x9c\x9c\x9e\x34\x40\xce\x91\xf6\xeb\x03\x32\xe7\x94\xfe\x4c\xfd\xb6\xe3\x92\xd2\xc2\xa7\x78\xcb\xe3\xcb\x48\x1f\x94\x7a\x1d\x81\xca\x12\xa1\xd2\x1f\x7b\x3f\xb2\x4e\x07\x82\xac\x75\xfe\x4c\xc5\x57\x9b\x85\xff\xfb\x34\x89\x3a\xca\x90\xf4\x08\x75\xb6\x32\xbf\xd3\xd1\xdb\xfb\x9a\x02\xa4\xe7\xfc\xda\x64\x74\x3a\xd3\xcd\xc2\xd7\x4e\x17\x3a\xbf\x4f\x13\x54\xe5\x74\x3a\x41\x10\x7c\xb5\x59\x98\xdf\xa5\xfa\x80\x3f\xe5\x8f\x4c\xfe\xf1\xb0\xf7\x23\xf3\x26\xf8\x37\x32\x0e\x89\x0b\x63\x5f\x42\xfa\x2c\x88\x83\x39\x8f\x41\xb3\x1e\xb9\x5e\xe6\x1d\x54\xbe\x8a\xc5\x6c\x59\xe1\xbf\xb8\x81\xf9\xb2\xe0\x6f\x72\x3e\x78\x0b\xd3\x8a\x12\x75\xcc\xa6\x19\x2d\xa2\x6d\x9a\x44\x10\xa0\x2b\x5e\x15\x41\x9a\xd4\x4c\x52\xab\xf6\xb3\x1c\x74\xa6\xe0\xa6\x50\x66\x1c\xf2\x9e\x48\x62\x61\x2f\x68\x31\xda\xef\x36\x0f\x62\xe5\x41\x35\x62\x2d\xb9\xde\xda\x53\x3e\x8f\x3d\xa0\x08\xa2\x8e\x87\x19\x8a\xf6\xcb\xcd\x82\x18\x6f\xa7\x9b\x45\x64\xb1\x47\xb5\xe6\xc1\x74\xb3\x28\x25\x63\x30\x14\x41\x7c\xab\x58\x72\xdf\x92\x4f\x33\xa0\xa0\x0a\xbc\x4a\xcd\x47\x7c\xa5\xb8\x50\x86\xfa\x02\xdd\xf7\x59\x5f\x1c\x30\xf1\xa4\x44\xb6\x14\xe2\x81\xe4\xdd\x7c\xda\x27\x03\x74\x8f\xde\xa3\xbd\x41\x23\x28\x89\x29\x7e\x8f\xb6\x45\x08\xc1\xac\xba\x75\x69\x81\xe3\xda\x0d\xbc\x81\x87\x88\x2c\xe7\x78\x49\x68\x50\xa4\x3f\x53\x65\xa7\x03\x21\x4d\xa6\xc0\xcf\xa4\xb3\x0f\x8c\x16\x05\xd8\xd8\xc0\x09\xc3\x97\xce\x1d\xfd\xae\x21\xdd\xbd\xe9\x89\x22\x03\xc3\x95\x42\xa9\xc8\x2a\xf3\x76\xec\xd9\x0e\x3c\x13\x95\xa1\x76\x65\xbf\x94\x88\xfd\xa9\xfc\xe7\x4a\x3b\xbe\xf0\x12\x2a\x28\x5f\xa5\x4c\xb2\x65\x84\x90\xcb\xdd\xce\x2b\x44\x2c\xd2\x19\xfc\x52\xb3\xfe\x40\x8e\xef\xc1\x6a\xbf\xfa\xf6\x9e\xef\x5f\xf7\xa7\xe8\xfe\x31\x1a\xbe\x0c\x94\x7f\xa9\xaf\xe3\x62\x09\x0f\x6f\xe4\x43\x20\xf2\x6f\xd2\x2b\x9a\xf8\x27\x08\x5f\x8d\x3d\xd9\x71\x1f\x86\xc1\xf2\x4b\x6f\x42\x1c\x2d\xee\x05\xc2\x6e\x3f\x23\xdf\x6d\x4d\xf9\x09\x23\x95\xf6\x8b\xef\x0f\xc2\xb0\xbf\x40\xf7\x07\x61\x78\xef\x03\x72\xbb\xf1\xd6\x57\x1e\xc2\x4f\x03\xeb\x85\x8a\x78\x3c\x07\xee\xb0\xff\x28\x4c\xe8\x02\x79\x28\xba\xa5\xf1\xd4\x6d\x1e\xdd\xb9\xfd\xaa\x81\xe3\x87\xe1\xbd\xdc\x5f\xdc\x7f\x18\xa2\x7a\x5d\xd5\xbf\x75\x54\x94\xdc\x46\xec\x14\xad\xc4\x4e\x5d\x14\xc4\x15\x99\xe5\x0b\x2d\x80\xa8\x89\x63\xf8\x58\x43\x86\x1d\x5b\x28\x79\xa0\x78\x9d\x8a\x38\x4b\x7f\xa6\xc8\xdf\x20\x34\xc1\x56\xe4\x7b\x44\xc8\x06\xed\xb7\x02\x16\xdb\x16\x2e\xb0\x57\xfb\xa9\x00\xa3\xa5\x92\xda\xcf\xda\xbe\x4a\x1a\x0d\xc7\x08\x03\x7c\x46\x75\x7a\x71\xab\x6c\x8d\x97\xc6\x71\xe0\xb2\xc4\x4f\xf1\x05\xc2\x3c\xcf\x68\xe4\xad\x79\xbe\xe0\xb4\x28\x80\x5a\xc0\x57\xf8\x1d\xc2\x07\x97\xaf\xb8\x58\x78\xd8\x59\x30\x1e\x14\x17\x0b\x7c\x91\xd2\xcb\xaf\xf2\x2b\x47\x0b\xf1\xfa\xfe\x31\xf6\x1c\x55\xa3\xbd\xdf\xf5\x5f\xa8\x3c\xdc\xe5\x2c\xe5\x33\xa0\x27\x0f\x6f\x93\x2a\x82\x7d\xb6\xbf\x51\x0c\x9b\xec\x6f\x3f\x76\xa1\xab\xaa\x6f\xda\x96\x9b\x21\xb3\xd8\x2f\xf1\xec\x2a\xba\xc6\xb3\xeb\xe8\x1a\xf3\x48\x9f\x5a\x3c\x4f\xb3\x2c\xd2\x6a\x4f\xea\x4c\x7c\x0f\xbb\x30\x2d\x91\x7e\x43\xdc\xfc\x2a\xd4\x74\x41\x36\x9a\x9a\xce\xe0\x0b\x64\xbd\x33\xf5\x39\x00\x92\x65\xa3\x09\xeb\x44\x25\x2a\x19\xee\x46\x13\xd6\x1b\x4b\x58\x2f\x21\xfb\x21\xd2\x51\x9c\x43\x84\xaf\xc9\xe9\x29\xbe\x38\x4c\x65\x5b\x8a\x3a\x65\xe0\xcc\x6d\x9a\xe5\xb3\x0f\x35\x0d\xf6\x41\x89\xd5\x22\x46\xdb\xca\x37\x5d\x44\x83\xea\x87\x09\xd8\xe1\x57\xde\xee\x3c\x54\xe2\xda\x76\x45\x5b\xeb\x56\x36\xf2\x56\x9b\xb4\x6f\x40\xb8\x2f\xf7\x4b\x12\xc8\x7d\x85\x39\x3a\x83\xe0\xb4\xe8\xc8\xfe\x25\x49\xc9\xe6\x29\x4b\x05\xf5\x4a\xa5\xa1\xfa\x4a\x1b\x3a\x6d\x67\x8d\x57\x13\xad\xb2\x0a\xe6\xa5\xba\xec\x1b\x6b\xfc\xb4\x57\xda\x2a\xd5\xea\xf2\xc5\xc5\x22\xda\x96\x58\x41\x4e\xb4\x55\x5b\x1f\x79\xb3\x0d\xe7\xc6\x08\xd0\x33\xd9\x6f\xee\xba\x16\xda\xbf\x60\x62\xb1\xaa\x5c\x93\x16\xb8\xbe\xc3\xca\xc8\x36\xd4\xba\xd0\xb8\xa0\xfd\x94\xf5\xf3\x8d\xa8\x16\x07\x37\xae\x9a\xc8\x3b\x0f\xd7\x57\xb8\x73\x1c\x86\xe0\x1e\xb1\x81\xdd\x23\x4f\x26\x97\xd8\x0d\x26\x7d\xd3\x8e\x78\xd1\xd6\x1b\x84\xe1\x1f\x3c\x3d\x69\xa5\x56\xac\xf1\xfc\xc9\x03\x75\x8f\x94\x77\x69\x4f\xce\x43\xb6\x06\x6d\xed\x0d\x7a\x70\x97\x31\x9f\x1d\xa8\x1b\xde\x3c\xe3\xfe\xe0\x4c\xd5\xd7\x13\xf9\x84\x06\x8e\x61\x04\x35\xb6\xf0\x02\xc7\x75\xb6\x30\xde\x7b\xbb\x96\x80\x57\x99\xd7\x82\xa7\xca\xd3\x10\x5b\x4a\x24\x3a\x09\x1e\x68\xb1\x62\x58\xb1\x8c\x75\x44\xa7\x18\xc7\xa9\xb6\x7b\x37\xa8\xee\xc2\x7d\xb7\xd2\x0b\xfc\x4a\xaf\xb8\x87\xe7\x59\xba\x06\x8d\x6d\x3f\x76\x39\xc9\xe9\x5d\x1f\xb1\x1e\x48\x5e\xcb\xd7\xcc\x16\xf3\x07\xa7\xa7\xf0\xe6\x2b\x13\xb4\xeb\x38\xc9\x7d\x6d\x20\x41\xfb\x8e\x1b\x00\xd3\x15\x30\xbf\x90\xb8\x8b\xf9\x27\x10\x62\x8a\xf9\xc7\xe7\x12\x6d\x31\xff\xe4\xec\x44\x62\x2d\xe6\x9f\x3f\xa8\x85\x13\xfa\x35\x99\x30\xc3\x6d\x74\xbe\xda\x2c\x3a\x39\x83\x3f\x9a\x85\x49\x13\xf5\x77\xb9\x59\xc5\xec\x5b\xfd\x43\x22\xba\x4d\xa1\xbe\xc1\xba\x43\x7d\x66\xf1\x94\x66\x3a\x59\x1d\xef\xe4\xb1\x50\x3f\xe3\x8d\x58\xe6\xbc\xe2\x8b\xe8\x2a\x4e\x33\xf3\x43\x6e\x90\xf9\xd6\x88\xf6\x85\x4d\x32\xac\x92\xe5\xd4\xfe\x3d\x06\x2b\xaf\x96\x96\xdb\x04\x2c\xdd\xb7\xab\xf8\x4a\xdd\x98\xe0\xec\x45\xfb\x26\x8e\x37\x22\x37\x9e\x8a\xdf\xe6\xeb\xe8\xf4\x1e\x0d\xb4\x93\x52\xed\x7e\x63\x49\xe3\x84\x72\xd0\x2c\x03\x93\x9a\x5a\xec\x15\xe5\xe5\x43\x5c\xaf\xf3\x05\x8f\xd7\xcb\xeb\xc0\x98\xfd\x20\x9c\x26\xb7\x14\xad\x8c\x64\xf0\xd6\x31\x6e\x1a\x9c\x95\x08\x0c\xc1\xe3\x94\xc9\x7e\x1b\x62\x25\x55\xf2\x2b\xe5\x5b\xfa\x24\x94\xa3\x5a\xc1\xa3\x70\xa4\xa9\x32\xef\x61\xf8\x07\x77\x46\xc7\x66\xb2\xda\x61\x49\x58\xe2\x22\x4d\xe8\x34\xe6\xb6\xc6\x49\xf8\x07\xaf\xc4\xb0\x37\xcf\xd2\x42\x44\xdb\x2c\x2d\x84\x72\x82\xa5\x09\x0e\xe3\xdd\xd7\x2e\x5c\xa8\xcb\x5b\x9d\x03\xef\x74\x7d\xd5\x09\x3d\xec\x75\x3b\x5f\x76\xee\x79\xce\xb8\xd5\xad\x2d\x91\x13\xbe\x6e\x65\xab\xa7\x9b\x85\x2b\x1c\xad\x14\xaa\xf6\x78\x59\xb9\x91\x35\xca\x8d\xe9\x4b\xb2\xa5\x2c\x50\xe6\xb5\xa2\x6a\x27\x5b\x0b\x17\xeb\xb8\xd9\x30\xec\x76\x89\x85\xfa\x40\x77\xac\x95\x26\xb2\x8a\x3e\x0a\x6d\x95\x52\xc9\x67\x6b\xd4\x2b\xe8\x95\xb0\x94\x80\xd7\x36\x30\xe0\xca\xd5\xc9\x88\x44\xa0\x3e\xca\x1b\xc6\xa2\x38\xfd\x4e\xbe\xa6\x8c\x26\xf0\xf4\xd3\x99\x6e\x16\x1d\xaf\xad\xca\x5c\xb6\x9d\x80\xb4\x3e\xb0\x67\xb1\x04\x0b\xfd\xbb\xac\xa6\x05\xd1\x3b\xae\xbe\x81\xd3\xb6\xe2\x89\x1c\x0a\x88\x48\xd2\xa4\xbc\xeb\x00\x34\x14\xb7\xb5\x07\x8b\x6c\x6f\xac\xea\xa0\xc9\x4b\xf6\x19\xa0\xa0\xd6\x15\xf1\x36\x59\xa3\x0f\x7b\x26\xe4\xae\x2a\xe4\x05\x41\x78\x5a\x3c\x93\xb5\x34\x97\xa5\x6d\xcd\xb5\x0d\x78\x2d\x07\xac\x0e\x14\xc5\x1f\xe8\x75\x44\xe5\x45\x81\xe4\x7f\xe5\xf0\xda\x0a\xa6\xc8\xc6\x47\xfe\x52\x52\xec\xb1\x7e\x4b\xf2\x79\x4d\x61\x64\x85\x80\xf9\xf9\x28\x8d\xe2\x83\xef\x94\x28\x52\x1e\x8a\x35\xa9\x49\x7e\x31\xa1\xfd\x9e\xac\xfe\xcc\xca\xea\x1f\x58\x51\xfd\xb9\x15\xd5\x3f\x6a\xe8\x27\xc2\xd7\xc3\x4a\x2b\xd1\xc8\xef\x6f\x52\x08\x71\xb4\x91\xd2\x56\x6d\xa4\xa6\x76\xc8\x2f\xa5\x8d\x54\xec\xeb\x5c\xc4\x2d\x3a\x17\x77\x51\x17\xe0\xee\xe3\xb8\xe4\x90\x5e\xd3\x79\xc5\x60\x06\xf3\x94\x25\x5f\xbf\x7c\xfe\x22\x4f\xa8\x56\x4b\xf9\xc8\x87\x7c\x6a\x1a\x35\xaf\xe7\xb5\x9e\xba\x5d\x9f\xfb\xb6\x88\x92\x38\xe2\x8f\x1e\xd2\x47\xbf\xe6\xb7\xf6\xa0\x02\x46\xfd\x02\x2f\xe0\x59\xeb\x0b\xf8\x8d\xaa\x5c\xfa\xa5\x64\xfe\x11\x6f\x20\x6d\x4f\x91\x1e\xe8\xff\x55\xa2\x28\x8a\x3d\xd7\x96\x0a\x04\x6e\xeb\xfc\xd2\xa7\xf8\x18\x29\xf7\x77\xbf\xd2\xd9\x3b\xad\xf9\xd5\xda\x7b\x27\x3b\xb3\x87\xef\x81\x3d\x7c\xe7\x56\x75\xeb\x91\x55\xdd\x1a\x54\xaa\x5b\xe6\x3c\x9e\x9f\x29\xb6\x1f\x1a\x7c\xa0\xf9\xfe\xc1\xe9\xb9\x64\xfc\xb7\xf0\x22\x26\x49\x8a\x6d\xae\x3d\x5c\x0c\x70\xc5\xc1\x71\x7f\x80\x4a\x0c\x65\x68\xd2\x5e\xa4\x66\xa2\x8a\xb0\xd7\x81\xac\x2c\x16\xf4\x7f\xfc\x50\xae\x57\xd9\x10\x2d\xd4\xb0\x81\xd2\x60\x62\x38\x1f\x36\xce\xa8\xc2\x08\x95\xeb\xd0\x3d\x8f\x55\x92\xc1\xa0\x97\x1d\xe5\x5d\x12\x1e\x77\xc2\xe1\xe6\x8b\x74\xb8\xe9\xf5\x50\x3c\xde\x4c\x1c\x2f\x56\x9b\xc9\xb0\x4d\xf7\x2a\xc7\x3e\x23\x79\x53\x0f\x1d\x90\x0e\x25\x1f\xa1\x7c\xa6\x71\x0f\xc5\x63\x59\x79\x62\xcd\xf0\xe4\xaa\xe7\x92\x58\xc8\xdf\xa6\x2b\x9a\x6f\x84\x52\x30\xcb\xe1\x0a\xe6\xe6\xc7\x32\x66\x49\x46\x9f\xca\x25\x6e\xa1\xca\x72\x47\xad\x4b\x19\x20\x70\xf9\xa5\xda\x1b\x82\x6c\x92\xd3\x79\x96\x5f\x22\x9f\xda\x17\x36\x99\xba\xa0\xca\xbe\x17\x04\x0e\xc0\x69\x22\xdf\x34\xb6\x5d\xe5\x09\x8d\x3c\xfd\x18\x8a\xc0\x0f\xbd\x89\x23\x80\x37\xe0\x79\x3b\x8b\xaf\x71\x41\xc2\xa1\x22\xcc\x21\x58\x9c\x5f\x10\x56\x13\x62\x2c\xa8\x78\xbc\x11\xb9\x12\x01\x7d\xad\xeb\xcb\x7b\x2a\x4b\x29\x13\x2a\xb9\xb9\x02\x05\x8a\x0a\x12\x63\x2d\xd2\x77\x9a\x23\x63\xd6\x2a\x21\xd1\x20\xe7\xe1\xad\x19\x61\x54\x60\x18\x5f\xb4\x29\x11\x6e\xaf\x54\x89\x98\x9c\x6a\xc1\x83\x07\x0f\xee\x39\x75\x1d\x03\x49\xac\x57\x26\xc8\x19\x6c\x44\xb7\xdb\x48\xf0\x29\x2a\xab\xbd\xba\x4a\xc5\x9d\xb6\x2a\xad\xb6\x0a\xc7\x24\xc4\x9b\xbb\x6f\xcd\x55\x2a\xe4\xce\x14\x64\x53\xed\x4c\x06\x5e\xcf\xb3\xf8\xba\xda\x95\x74\xe4\xc7\xbf\xc0\xae\xc4\x28\x8a\x49\xf1\x79\xbb\x12\xeb\x95\xcd\x3e\x61\x57\x6c\xdd\xdd\x2e\x38\x39\x39\xb9\x17\xd7\x77\xc7\x8c\x4b\xf7\x4a\xbc\xd0\xab\x8f\x15\x5e\x15\xb8\x1f\x3c\x3c\xab\x6d\xe5\x55\x2a\x6a\x3b\x79\x95\x0a\xbd\x91\x71\x92\x3c\x65\xc9\x33\xad\x94\xd3\x90\x33\xd8\xd5\x35\x55\xf5\x1e\x82\x42\xa3\x3a\xbb\x05\x15\x7a\xed\x7c\x51\x5f\xcb\xdd\x0e\xcc\xd2\x99\x4b\x7b\xcc\xf7\x69\x8f\xec\x26\xda\xe3\xe6\x9b\x78\x96\xd1\x98\xdb\xde\x21\xba\xb6\x1c\xd3\x1d\xee\xe1\x4a\xcf\x51\x43\x5b\x43\x2f\xc6\xa7\x06\xde\x31\xd5\xeb\x65\xd6\x19\x44\x3d\xc6\x06\x8a\x9a\x15\x01\xd7\x62\x37\xe9\xc4\xe8\xe6\xd4\xd7\x95\xf6\xb4\x6a\x1e\xda\x40\x6b\xcf\xd3\x4d\x79\x13\xd4\x66\xda\xc6\x9c\x07\x84\xb4\xf8\x7b\x9c\xa5\x89\xa1\xd5\x05\x32\x56\x56\x6a\x88\xd1\xb6\xb4\x4a\x31\x87\x5e\x1d\x2a\xb7\x70\x0d\xc5\x98\x78\xbd\xa6\x31\x8f\x8e\x42\xac\x87\xac\xb4\x01\x1d\xe4\x8c\xd5\x0c\x6a\xe9\x72\x81\xea\xa0\xa4\xb2\xeb\x69\x58\x4f\x31\xaa\x00\x0b\x42\x06\x44\x79\x89\x0b\x97\x52\xae\xde\x68\xdd\x09\x64\x39\xb3\xe3\x17\x4d\xbd\x20\xfb\x2c\xe4\x26\x9a\x6b\x3a\xac\xdd\xe4\xf2\x74\x94\xf8\x7a\x4c\x27\x38\xd3\x10\x8a\x0c\xfd\x95\xb4\x69\xd2\x5f\xd4\xc9\xaf\x8b\x86\xdc\xb2\x3e\x2b\x99\xbf\xda\xa4\x6f\x54\x2c\x06\x89\x81\xc8\x51\xd8\x2a\x94\x44\xfe\xc5\xc7\x88\x1b\xdb\xb4\xb9\x9c\x00\x38\x5e\x8f\xf6\x3c\x7d\x1a\x3c\xcc\x1a\x59\xc3\x66\x68\x6d\x1d\x2c\x64\xcc\x26\x2a\x36\xf4\x26\xcb\x08\x81\xb8\xaa\xc6\x9e\xcf\xea\xec\x89\x9e\xd7\xb9\x8c\x0b\xf6\x47\xd1\x29\x36\xeb\x75\x96\x4a\x4e\x3e\xef\x3c\x79\xf3\xa6\xc2\xde\x7f\xe6\xf9\x66\x1d\x29\x06\x7f\x16\xb3\xce\x2c\x96\x43\xdf\x30\x4e\x33\xd0\x38\xe8\x58\xb1\x7d\x01\xce\x5e\x2f\x73\xd9\xdc\x94\x76\x6c\xcc\x0a\x88\x47\xda\x99\x6f\xc4\x86\xd3\xce\x05\xe5\x05\xbc\xba\xcf\x3b\xaf\x69\x3c\x13\x41\xe7\x0d\xa5\x9d\xa5\x10\xeb\x22\xba\x7f\x7f\x3e\x0d\x56\xf4\x3e\x97\x19\xfd\x2a\xfe\x9e\x13\x0b\x68\x21\x47\xd3\xd7\xfb\xd2\x99\xe7\xbc\xb3\xca\x39\xed\xa4\x4c\x42\x40\x6c\x74\x0d\xd3\xb9\xf5\x4c\xed\xa8\x2c\x1e\x5c\x82\x4a\x61\x51\x55\xea\xf8\x29\xeb\xac\xd2\x2c\x4b\xd5\x0b\x49\x21\x69\x3c\xc7\x2b\x78\x59\x0a\x27\x10\x01\x39\x0a\xb1\xa8\x1e\xf8\x8b\x37\xcb\x78\x4d\xab\x6b\x51\xff\xd6\xb1\x24\x84\x73\x6d\x98\xab\xa9\x8a\xfb\x72\xdc\x8c\xfa\x72\xb7\x68\x89\xb9\x04\xb6\x7a\x77\x69\xa5\x83\xca\xe8\xcb\xb9\x84\x70\x7f\x5c\x25\xaa\x79\x56\xe8\x41\x19\xa8\xf9\x8a\x54\x8e\xf6\xca\xc9\xbb\x7a\x2f\xb5\x44\x41\x5a\xbc\xa6\x3f\x6d\x52\x4e\x13\x79\xc6\xf6\xd6\xe0\x96\x41\xa8\x78\x0c\xb7\x0f\x42\x97\x6b\x0c\x42\xa7\x6a\x8f\x77\xcd\xf4\x12\xdd\xbd\x5d\x99\xfc\x75\xce\xf6\x1b\x51\x59\x8f\xdb\x7b\x38\x30\x1e\x99\x7a\xa0\xb1\xab\x54\x1c\x68\xab\x44\x93\x5f\xd3\x86\xed\x57\xb6\xc0\x3b\x3d\xff\x48\x27\xc9\x4a\xab\x98\x8b\xcc\x03\x05\xfe\x24\xe5\x14\x72\xab\x80\x0b\x3a\xbc\xae\xd0\x21\x73\x75\x64\x4a\x88\xb2\xa6\x79\x5a\x9d\xa4\xa2\xac\x0d\xdd\x52\x3a\xf0\x5a\xbd\x9c\xac\xaa\x4a\x89\x7c\x5d\x6b\x48\xfe\x76\x5b\xa9\x7e\xbb\x25\xa0\xbe\x39\x73\xd6\x30\xbe\x55\x89\xe8\x90\x90\x0b\x45\xf4\xd7\xb2\x0f\x3f\x6d\xf1\x1d\xa4\x6d\x6d\x53\xcd\x58\x2b\xf7\xa7\x95\xf3\xd3\x73\xeb\xfa\xf4\x91\x75\x7c\x7a\x72\x0c\x4c\x74\xaa\x79\xec\x95\xfa\x7a\x88\x24\x17\x0d\xb6\xe7\xc7\xda\xe2\xfc\xe4\xf4\x91\xe4\xfc\x2e\x54\x2d\xd9\xe8\x54\x95\x95\xe9\x78\x71\x88\x17\x36\x4e\xa1\x2b\x56\xb5\x69\x10\x25\x90\xa4\xd1\xea\xe4\xe4\xa7\x1a\x4a\xb1\x60\x9d\xaf\xd7\x86\x0b\x65\x9a\xa0\x79\xb9\xa6\x8c\xec\x11\x8c\xcc\xa1\x16\x63\x36\x5b\xe6\xfc\x69\x86\x53\x42\x83\x55\x9e\xa4\xf3\x94\x72\xa5\xc5\x95\xaf\x29\x03\x05\x2e\x08\xa3\x03\x41\x7b\x32\xf9\x0b\xfa\xd1\xea\xff\x0d\xb7\xff\xc6\xa9\xbf\x22\x2b\x93\x4a\xfd\xfa\x55\xce\x45\x9c\xe1\x25\x59\xb5\xca\xb0\xea\x8a\x22\x0c\xa1\xe1\xb2\xdb\x15\xdd\x6e\xdc\xed\xfa\x66\x66\xce\x67\x90\xd0\x42\xf0\xfc\xda\x6f\xcc\xdb\xfd\x49\x2f\x3b\xd7\xa6\x49\x3f\xf7\x05\xc2\xcb\xa6\x3e\x91\x9d\x57\xc4\xfd\x39\xde\xa0\x12\xcf\x80\x5f\x53\x6b\x10\x35\x4a\x97\x38\x91\x13\xdc\xae\x39\xbd\xa0\x4c\xbc\xbc\xa0\x5c\xf2\xe9\xd1\x76\x9a\x6f\x58\x12\xf3\x94\x16\x9a\xaa\x8b\x3c\x15\x0d\xc9\x2b\x4b\x9c\xe2\x59\xb5\xac\x08\xe7\xec\x89\x72\xad\x60\x76\xe8\x15\x0c\x57\xc9\x0e\x71\xce\xd4\x47\x6b\x2e\xa8\xa3\xe0\xb6\x1c\x52\x17\x36\xda\x69\x41\xd8\x90\x42\xc4\xc2\x49\xeb\x76\x59\x65\x2d\xe4\xac\x80\x53\xa4\x74\xba\x91\x14\x31\x4d\x5c\x10\x72\xab\x53\xc8\x55\x07\xd6\xd4\x78\x92\xe5\x2a\x8a\x79\x2d\xa1\xde\xc2\xdd\x37\x54\x36\x03\x33\x20\xb6\x33\x05\x98\x25\x66\x15\x3f\x96\xec\xf3\x63\xb3\x5b\x64\xc1\x37\x49\x6b\x65\xfb\xa4\x26\xaa\x95\x29\xbb\xdd\x4d\x09\x15\xa1\xa3\x93\x6b\xab\x81\x0f\x35\x2a\x49\x1d\x73\x04\xeb\xb9\x26\x55\x96\xa8\x1d\xb9\x7a\xb1\x5a\x96\x2c\x6b\x81\xad\x5e\xce\x26\xcb\x32\xb5\x43\x59\x2f\x57\xcb\x82\xbe\x0d\x58\x34\xfa\x35\xc9\xb5\xe9\x4a\x7c\xe3\x7f\xb4\x28\x7a\x7f\xbd\x3e\x89\xf5\xf5\x1d\x6c\x56\xb1\xc1\x48\x3d\x81\x9a\x47\x35\xd7\x26\x44\x23\x25\x89\xf9\x3e\x50\xba\x86\xe7\x01\x9a\x48\x16\xd8\x45\x85\x6a\xeb\x90\xc2\x7d\x16\x13\xce\x64\xa1\x3a\x2a\x34\xa6\xa1\x0a\x03\x5a\x78\x50\x56\x21\x0d\x96\xda\x0c\xd4\xc3\x35\x8b\x13\x33\xca\xca\xce\x44\x8d\xd1\xc3\x9e\x33\x42\x88\x30\xab\x87\x27\x39\xf1\x35\x54\xb6\x63\x93\xdf\xee\xc0\x5c\xde\xbc\xe2\xa5\x26\xf2\x1e\x84\xf5\x83\xf3\x85\x57\x64\x1d\xa8\x23\x86\xaf\xc9\xba\x9a\x29\xb8\xb8\x49\xbb\xdd\xa3\xa2\xdb\xf5\x8f\xe6\xbb\xdd\xca\x06\x0c\x93\x27\x14\xee\xe5\x0b\xe2\x60\x92\xeb\xdd\x8e\xfb\x33\xc9\x92\x5a\x66\xad\xdb\xf5\x2f\x82\x86\x88\x8c\x6c\x53\x16\x15\x9a\x09\xa7\x49\x93\x0d\xa7\x49\x89\x5c\x5b\xb4\x1a\xd7\x3f\xb5\x5c\xff\x36\x67\xaf\x01\x44\xea\x2d\x48\x38\xc4\xb5\x15\x8c\x72\xe7\xed\x9f\x95\x07\x9b\xb6\x8a\xa7\x2e\xff\xad\xf4\x2f\xb5\xb7\x21\x4f\x6b\x13\x3a\xb6\x2a\xf1\xb4\xc8\xb3\x8d\xa0\x12\xe1\x27\x08\x1f\xf2\xa1\x7c\x81\x22\x81\x24\x8b\xee\x18\x04\x7f\x4d\x79\x7a\x41\x13\x40\xa8\xdf\xf0\x7c\x05\x6b\x73\xd8\xf6\xb1\xa3\xa0\x71\x64\xb1\xe1\xa0\xac\x69\xa2\x29\x39\x84\x83\x98\x8d\x40\x60\xd9\x26\x10\x58\xd4\x05\x02\x8b\x76\xfb\x16\xbd\x80\x47\x03\x5c\x6d\xb2\xa6\x34\x3d\xec\x68\xc4\x19\x87\x1c\x97\x12\xde\x2f\x5c\xf9\xc0\xc2\x95\x0f\x5c\xfe\xd2\x0e\xa6\x5a\xe9\x2f\x47\x8e\x7b\x34\xd8\x93\x1a\xa0\xad\xd8\xed\x7c\x21\x99\x59\x1d\xb8\xf0\x15\xcf\x57\x69\x41\x03\x4e\x8b\x3c\xbb\xa0\x3e\x92\x87\x99\xf9\x6e\x0d\x72\x34\xc0\x12\x37\xc9\x2d\x6c\x13\x62\xdc\xdc\x8f\x23\x61\x6c\x6b\x14\xcf\x69\xad\xdd\xbc\xd5\xf5\x8b\x13\xbf\xec\x1b\x5d\x12\x22\x98\x89\xfd\x90\x65\xae\x0a\xbf\x66\x42\x06\xc0\x80\xb0\x3c\xa1\x6f\xab\x80\x6f\xe3\x89\x0e\xfb\xb7\x17\xba\x91\xaa\xe7\xc0\xca\x44\x82\x8d\xc5\x24\x62\x0d\x1b\x00\xcd\x06\xfc\xe5\xed\xf3\x67\x2a\x00\xaf\x6c\x5f\xb2\xc5\x23\x0a\xca\x97\x9c\x32\x21\x69\xbc\xdd\x8e\x06\xcb\xbc\x70\xac\x1f\x37\x5a\x78\x73\x64\x63\xcf\xd9\xb8\x78\xd3\x3c\xb9\x36\x6c\x51\xd5\xa2\xe6\x8f\xa0\xab\x08\x3e\xbf\x7a\xf9\xf5\x0f\x86\x73\x91\x47\xe3\x92\x49\xe6\xd6\x6d\x04\x8a\xfd\xce\x34\xec\x94\x95\xb9\xa5\x5a\xe0\xd4\xa7\x08\xa4\xfc\xb9\xa6\xe9\xe0\x4d\xc6\xfc\xf8\x7f\x7a\x01\xee\xfb\xf1\x46\xe4\xbb\x62\xc6\xf3\x2c\xdb\xc9\xdc\x2c\xbe\x46\xf7\x03\x41\x0b\xe1\xb3\x5e\x55\xe1\x87\x1e\x47\x23\x1a\x6d\x7c\xb9\x3e\x07\x22\x68\x0d\x06\x72\xad\x46\x2b\x1a\x0d\x42\xf8\xba\xa6\xd1\x8a\xee\x76\xd7\x8e\x89\x45\x76\x78\x7d\x1a\xc1\x34\x1d\x4b\xd8\xc2\x1f\x84\x68\x54\x5b\xc8\x48\xb1\x04\x92\xa2\x07\xbd\xc6\x57\xb0\x27\x43\xa6\x02\xec\xd0\x80\xd1\x2b\xd3\xd0\x9b\x74\x9a\xa5\x6c\x31\x44\x8c\xf8\x94\xb4\x65\xa1\x7a\x23\x9a\x51\x97\x54\xa5\xd9\x25\x1b\xce\xac\xdb\x55\xfb\xa3\x7c\x07\xa8\x6d\x93\xdf\xa3\xbe\x04\xc4\xb1\xf7\xf6\x6b\x0f\x7b\x6f\x1f\x7f\xf5\xec\xa9\x37\xa9\x02\xa2\x55\xbb\xdd\xed\x3a\x8a\xdc\xa9\xcf\xe4\xb5\xa6\x2f\x2f\x34\xca\x7c\x86\x22\x16\xd1\x51\x73\xd7\x1b\x4b\x13\x1d\x5a\xb3\x6a\x9d\x67\xae\xce\x54\x63\x16\x76\x06\xa2\xdb\xf5\x2d\x90\x8b\xdd\x2e\xf3\x69\x30\x4f\x79\x61\x9a\x03\xc7\x0e\x48\x6e\xa5\xb3\xe3\xf3\xbd\x00\x7b\xc4\x3d\x12\xa3\xb9\xef\xfe\x94\x2c\xb3\xad\x9a\x54\x81\x3d\xe9\x6e\x77\x54\x1d\xdb\xdd\xee\x48\x80\x8b\xb9\xc6\x39\x3e\x0c\x1c\x3a\xaa\x27\x38\x04\x8b\x39\x35\x2b\xf5\x4a\x2f\xa6\x2f\x50\x57\x76\x1f\x7c\xfd\xf2\xc9\x77\xcf\x9f\xbe\x78\xfb\xee\xd5\xcb\x37\xdf\xbe\xfd\xf6\xe5\x8b\x77\xdf\xbc\x7c\xf6\xec\xe5\xf7\xdf\xbe\xf8\x33\xe6\x84\x8d\xc0\x1f\x1c\x61\x23\x11\x51\x9c\x36\x63\x58\xbe\x8e\xd9\x82\xfa\x68\x98\x6a\xf6\x80\x0b\x9f\xe3\x10\x61\xf8\xfd\x94\x25\x7e\x8e\x75\xd8\xeb\x98\xa4\xda\xdf\xcd\x63\x36\xa3\x85\xc8\xf9\x13\x73\x31\x4b\x5a\x83\x1e\x11\x12\x77\xbb\x92\x79\x89\x77\x3b\x6e\x28\xb7\xc2\xcf\x2d\xdd\x31\xf3\x63\x34\x8a\xa3\xcc\x8f\x4d\x20\x6d\xb9\xd0\x06\xee\x36\x80\x66\x46\x89\xaf\x3e\xb0\x40\x91\x5c\x4c\xc9\x32\x43\x82\xb3\x3f\xeb\x6a\xe7\x3f\x31\x72\x93\x27\xf2\xb5\x92\x52\xe7\x6b\x15\xdc\xca\x53\x08\xe2\x2d\x44\xd8\x57\xdf\xcf\xe8\x5c\x78\x60\x24\x65\xa1\x2b\x9d\xfb\x0a\xb4\x08\x21\x7c\xb7\xb3\x90\xc5\xd5\x78\x24\x91\x7a\x23\x58\x1b\xa1\x42\xb3\x98\xea\x30\x65\x0b\x5d\x6e\xb7\xcb\xd1\x98\x4d\x6c\x5c\x70\xf9\x6d\xa7\xbf\x54\x30\x76\x20\x74\xd5\xa1\xe8\x53\xdd\x6e\xcd\xc1\x31\x27\x6b\x79\x39\xcb\xf9\x23\x9c\xab\x1f\x99\x9c\x30\xa8\x0e\x8f\xfa\x83\x68\x50\x79\x2e\x13\xf9\xba\x47\xf8\xbd\x14\x4b\xfc\x2b\x09\x08\xf3\x4b\xd6\xe8\x91\x1c\xbe\x21\xf0\xbf\xfe\x51\x0d\x76\xe5\x0e\xd6\xbb\xd2\x8b\x0d\x4b\x1b\x79\x72\xb5\x31\x27\xea\x27\x21\x84\x8d\xbc\xd7\x3a\x3e\xbd\xd2\xe8\xf4\xcc\x18\x20\xf6\xed\x37\x59\x1e\x0b\x9f\x8e\xb5\x67\x28\xaf\xc7\x7a\x1e\xa8\xb0\x7a\x13\x3c\x08\x51\xaf\xbd\x10\xaf\x15\xaa\x46\x76\x5d\x85\x42\x73\x63\x73\x80\x1d\xde\xd8\xd3\x66\x00\x3d\x3a\xc1\x62\xac\x01\x02\x7e\xb1\xb1\xa7\x9e\x70\xcd\x2f\xa7\x24\xab\x95\x54\x38\xdd\x46\xed\xad\x15\xd5\x83\x95\xe9\x7c\xec\x29\x9d\x51\xaf\xe7\x7b\xea\x5d\x18\x6e\xe4\x91\xa7\x80\x11\x16\x07\xdd\xad\x86\x5e\xb5\x48\x2f\x23\x9a\xa0\xc8\x9d\xf2\x45\x4d\xcd\x34\x4f\xae\xe1\x7a\x69\x86\x78\xe6\xea\x36\xea\x76\xf7\x48\x0b\xeb\xdd\x6f\xab\x2d\x9d\xae\x6d\xff\x7a\x29\x75\xd8\xc5\x6b\x5f\xaf\xb9\x4e\x76\x28\xa4\xa9\x83\x5c\x2f\x29\x68\x01\xe3\x2d\xc0\x4e\xa4\xe1\x89\x06\xd0\x08\x56\xa0\x16\x29\xf0\xa3\x81\xea\xb2\x74\xa6\xb3\xa8\x11\x5b\x82\x5f\x4b\xbc\x0b\x63\x97\x14\x1a\x0d\x16\x54\x7c\x95\x6f\x58\x92\xb2\xc5\x13\xd8\xb2\xd7\x74\x26\x7c\xa4\x31\xeb\xda\xa7\x06\xfe\xb9\xfa\xa1\xe0\x7f\x28\x14\xbc\x33\x2c\x34\x7c\x73\x2c\x2c\xdc\xcb\x54\x0d\xe9\xbc\xa4\x59\x41\x3b\x37\xf4\x54\x05\x59\xd6\xda\x4a\x5b\xd9\x60\xa4\xda\xc5\x22\x5f\x47\xd0\x97\x5e\x34\xdd\x70\x5f\x67\xeb\x25\x36\x5d\xf7\xa1\x68\x89\x63\xd2\x46\xb4\x5d\x34\x51\x0a\x8a\xb6\x25\xde\x90\x58\xad\xa5\xa4\xe2\x14\xd4\x7e\xaf\x7e\xe6\xba\xaf\x5c\xf5\x95\x91\x58\xaf\x6f\x55\xf2\x2f\xfa\x77\x6e\x06\x90\xc3\x58\x67\x96\x20\x81\xa6\xfa\x1b\xe0\x9b\x55\x8a\xaa\xd2\xcf\x24\x9e\x9c\xed\x76\x73\xb5\x3b\x09\x50\x6a\xc3\x59\x9f\xac\xfc\x04\x7b\x57\x1e\xc2\x73\xfd\x7d\x0d\x3a\x1f\x30\xc4\x3e\x99\xe1\x5c\x0f\xa2\x4f\xe6\x06\xf5\x4d\x7d\x37\x0a\xf8\xe5\x2f\x83\xfa\x00\x46\x70\x5e\xad\xa4\xb0\x2b\x89\x63\x22\xc1\x0a\x67\x64\xe1\x0b\x65\xd8\x45\x95\x38\x5a\x20\x9c\x10\x07\xc5\xcc\xb5\xab\xc4\xb7\xf9\x1a\x56\x42\x62\x17\xbc\x6e\x2b\x21\x4f\xb0\x2d\x32\x64\xdd\x6e\xde\xed\xfa\x99\x5c\x4d\x62\x51\x0e\xfc\x94\x37\x6f\x06\x3b\xe2\x66\xc0\x0e\x85\x48\xc1\xed\x8a\x4c\xfd\xad\x84\x9c\x58\x56\xe8\x43\xb5\x7e\x82\x01\xae\x62\x28\xda\x57\x35\xfa\x06\xac\x34\x08\x18\x78\x8a\xed\x41\x92\xbb\xb4\x0a\xac\x66\x3c\x09\xb1\xf9\x25\x07\x4c\x42\x7c\xc4\xbb\x5d\xed\x3b\xf7\xba\x3e\x2f\x5b\x09\x26\x7d\xd1\x96\x29\xdb\x80\xf9\xae\x60\x88\x24\xe9\x5f\xe3\x95\x01\x25\xfd\x0b\xc6\x49\xd6\xfd\x0b\xbc\xd2\xf0\xa8\x7f\x54\x83\xba\xae\x0f\xea\xc2\x48\x0f\x79\xb7\x7b\xc4\x46\xa2\xa2\x33\x66\x28\x12\x84\x90\x99\x43\xbe\xce\x5c\xa2\xd4\x5f\x91\xa5\xbf\xc2\x02\x21\xbc\xaa\x00\xea\xdd\x27\x90\x12\x2e\x38\x0d\x26\x8a\x42\xbf\xe9\xd2\xc7\x9c\x5c\x82\x52\x01\xce\xab\x6d\x65\xee\x79\x34\xdc\x6c\xca\x18\xe5\xfa\x84\x4a\x22\x6c\xbf\xb8\x3a\x61\xb5\xf2\xe6\x9c\x86\x08\xc7\x44\x8c\xc2\x68\xed\x33\x84\x37\xe6\xd3\xa2\x35\x7b\xa0\x14\xf8\xf4\x39\xa0\x39\xee\xec\x25\x00\xd1\xa6\xcf\x15\xda\xe3\xee\x46\x2a\x50\xca\x0d\x10\xa5\x2e\x1a\x7e\x79\x47\x42\xdc\xb2\x12\x40\x94\xcf\xd3\x2b\x9a\x28\x16\x81\xba\x2c\xc2\x6e\xf7\x52\x71\x60\x4e\x0f\x4f\x2d\x4b\x05\x34\xb5\xa2\xbd\x2d\xa9\x54\xf8\xe8\x23\x38\xad\x46\xf5\xa1\x1c\x18\x18\x75\xc0\x50\x04\x76\xed\x22\x87\x48\x10\xd1\x28\x6f\xd8\xea\xdd\xee\x76\x16\xe5\xaa\x22\x31\x14\xfe\xdf\x83\xb1\xd3\x56\x18\x3b\xad\xc1\xd8\xe9\x04\xa7\x04\x36\x2d\x54\x5b\x14\x96\xb8\x20\xf9\x48\xae\x4a\xa4\x18\x0e\x20\x4c\x2f\x52\x7a\xb9\xce\xb9\x50\x04\x69\x4a\xde\xf9\x05\xce\xd1\x50\x5e\x52\x5b\x15\xf5\x59\xbf\xc9\x69\x22\x45\xf1\x82\x5a\xa9\x30\x23\x92\xf1\x95\xa7\xc3\x12\xb8\x99\xdd\x4c\x89\xae\x6e\x83\x72\x84\xa2\x8c\x98\x17\x14\x68\xf3\x36\x16\x4f\xa9\x14\xcc\xc8\xa5\x9f\x61\x18\xa9\x9c\x84\x81\x91\xaa\x73\x09\x10\x05\x42\x29\x99\x55\x53\x99\x93\xfd\x0b\x0f\xaf\xc9\x5c\xe3\x36\xbc\x24\x73\x85\xf5\x86\xa9\xba\xcc\x67\x80\x84\x66\x0e\xb0\xa7\x1a\x17\x91\x75\x0f\x32\x71\xaa\x6f\xfb\x99\x42\x4b\x33\x17\xfc\x53\x85\x9e\xc8\xb2\xa7\x72\xcb\x92\x11\xb6\xdb\x85\x1a\x25\xef\x47\x18\x67\xd6\x85\x94\x6e\x75\x35\x62\x11\x83\xef\xdd\x2e\xc4\x7a\x54\x2a\x51\xe4\x6b\x95\xa6\x51\xa0\x4a\xe5\xfa\x54\xdb\x81\x9a\x0c\xf5\x0b\x72\x2a\x48\xfb\x50\x93\x35\xc2\xd4\xef\x59\x92\xc9\x96\x7a\x65\xe0\xb1\x72\x89\xbe\x07\x91\x67\xad\x10\x79\xe6\x32\x50\x67\x93\x28\x94\x9b\xd5\x07\x69\x88\x95\x01\x28\x05\x24\x7b\x16\xa9\x66\x1b\xaf\x7c\xd9\x61\x8a\x73\x89\x94\x00\x8c\xb7\xad\x17\x13\xd0\x37\xfd\x58\x51\x39\x8a\x20\xb4\x05\x0d\x61\xc4\xd5\xee\x36\x6e\x32\x43\x29\xb6\xb7\x1b\x57\x04\x94\xfa\x28\xd5\x29\xda\x1a\xaa\x0b\xb6\x3b\xae\x11\x5d\xb6\x69\x79\xd2\x5c\x2f\x65\x1b\x74\xc8\xde\x45\xd2\xb2\xca\x52\x05\x6f\xb4\x0b\x77\x1a\x47\x1f\x7c\xf9\x03\x95\xa8\x44\x41\x91\x73\xe1\xb7\x9a\x52\x8a\x40\x16\xee\x53\xf8\x53\x4a\xe2\xa3\x08\xe6\x69\x26\x28\xf7\xdb\x0c\xc4\xd4\xf4\x24\x63\xaa\x46\x69\x71\xd2\x97\xa4\x76\xad\x74\xbb\xbc\x4a\xf9\x8b\xbe\xf5\xf1\x8c\x64\x36\x1a\xf8\x28\x1b\x87\x13\x39\xb3\xa8\xd0\x1f\x40\xcd\x15\xeb\x2c\x15\xbe\xd7\xf7\xd0\x78\x60\x03\xef\xcf\x7a\xfe\x7c\xe4\xf5\xbd\xde\x3c\xf2\xdc\xe8\xf3\x6f\x6a\x01\xca\x3f\x35\xa2\x31\x3c\x4a\x98\xa5\x94\x10\x33\x7a\xea\x83\x08\x40\x36\x2d\x39\x08\xdb\xdf\xdb\x6a\x29\xf6\x65\x9f\x08\x33\x97\x18\x11\xd5\x81\xaf\xb1\x87\x26\x5d\xf1\x4b\xc0\x00\xec\x67\xca\x93\xdf\x5a\x0b\x98\x2b\xcb\x0a\x29\x30\xaa\x11\xc5\x3d\x6e\x00\xa9\x4e\x19\xf7\x98\xc3\x08\xbd\x77\xb8\x17\x00\x48\x8f\x2b\x4e\x4a\xc1\xbe\xba\xb6\x0d\x68\x2b\x81\x85\x3c\x3c\x46\x84\xef\x38\x16\xe7\x14\x24\xfc\xfe\x7d\x40\x2f\x0a\x71\x68\x2c\x21\xf2\xf5\xfd\x45\x8b\xeb\xe6\x8e\x18\xd3\x89\x7b\x89\x3f\x31\xbb\xc8\x08\x73\xf7\x3f\x9c\x68\x61\xa1\x5c\x76\x9c\x13\x3d\x5d\x5e\x3f\x63\xdc\x1e\xc5\x94\x68\x31\xa1\x9e\x8c\x9a\x86\x23\x28\x04\x35\xf7\x11\xcc\xc7\xcc\x71\x23\x13\x32\x25\x12\x80\x79\x16\x32\x41\xb5\xe8\x45\xde\xa5\xe2\x24\x33\x99\xa8\xbe\x23\x93\x69\xd6\x20\x1f\xc7\x13\x22\xc6\xf1\xa4\x27\xc6\xc5\xe4\xfe\x71\x9f\xc3\x1f\x9c\x8f\x37\x13\xc2\x08\x21\x9b\x91\x18\x6f\x26\x7d\x3e\xce\x26\x91\x18\xbf\xf7\x37\x68\x82\xf3\x6a\xf6\xcf\x6b\xc7\x11\x6c\x19\x82\xb5\x51\xdb\x00\x95\x87\x91\xfa\x03\x56\x60\xe6\x6c\x0a\xb9\x3c\x55\x23\xaf\xcd\x12\xa6\x73\xbf\xad\x89\x6f\xe5\x12\x58\xec\x58\x25\xb5\x61\x13\x88\xc0\x4e\x08\xd3\x4a\x4c\x9c\xc8\x11\xde\x5c\xce\x36\x6c\x96\xda\x3d\x34\x2f\x1a\xbe\x87\xac\xf6\x07\x03\x79\x7f\x91\xa5\x33\xea\x87\x58\x4e\xc1\x63\xe0\x98\x87\x21\xd4\x1e\xb8\x82\x06\xe6\x57\xb7\x3b\xcb\x59\x91\x67\x34\xb8\x8c\x39\xf3\xbd\x7f\x98\xe7\x4d\x5b\xe2\x1f\x9d\xb4\xe8\x24\x74\xcd\xe9\x2c\x16\x34\xc1\x9d\x4d\x41\x3b\x4e\x31\xf6\x8f\x23\x0f\x59\x49\xa7\xa9\x25\x79\xd0\x39\x1b\xd2\x80\xaa\xa0\x15\xdd\x6e\xee\x33\x49\xc2\x0b\x7d\x9a\xcc\xfb\x39\x99\xee\x25\x21\x5c\xa5\x70\x3a\xa7\x9c\xb2\x19\xad\x95\xb3\xa9\x08\x0b\xc2\x40\xf3\x00\x95\xc8\xf5\xef\xf8\xb5\xaf\xa8\xcd\xea\x99\x35\x48\x8b\xaf\x95\xaa\x03\x4d\xcc\x23\xf6\x36\x65\x85\x88\xd9\x8c\xc2\x0b\xa6\x7a\x5d\x84\x88\x1b\x31\xe7\xf9\xe5\x9b\xea\xa7\x10\x3c\x9d\x6e\x84\xfa\x35\xcf\xd2\xf5\x1a\x5e\x00\xb1\x1e\x50\xb4\x2d\xcb\x21\x6d\x19\xf4\x1b\xdf\x79\xe7\x55\x4f\xe6\x30\x45\xf5\x6d\xcb\x69\x77\xa8\xea\xd1\x38\x30\x84\x34\xb8\xee\x41\xd8\x55\x04\x78\xe5\xd7\x4b\xda\x47\xf1\x96\xce\xef\xdc\x9f\x7d\xd1\x0e\xe4\xcc\x82\x3d\xa5\x9a\x1b\x4b\x6b\x33\x6a\xd0\xb3\xe0\xe9\x22\x65\x71\xf6\xca\x0e\x97\xd6\x46\x58\x9b\x17\x39\x3c\x65\x67\x32\x1a\x46\x9e\xf8\xee\x5c\xda\xe6\xea\xf4\x84\xf6\xea\xdb\xe6\x6f\xe8\x74\xa4\xb9\x19\xe7\x49\x19\x53\xf2\x42\xbb\xf5\xad\x54\x12\x10\xae\x81\x94\xd2\x29\x4a\x46\xb5\x86\x8d\x32\x91\x24\xee\xfd\xb6\xe2\xa0\xca\x5b\xaf\xa1\x72\xfc\xfa\x53\xe4\xb7\x35\x9c\x46\x83\x22\x5f\xd1\x3d\x72\xa2\x19\x46\xc5\x39\x73\xf0\xd0\xe4\x5e\x11\x8f\xe1\xa5\xd6\x32\x52\xe3\xa3\x01\xf6\x56\x85\x87\x3d\xe5\xf5\xdf\xc3\xde\xf3\xfc\x67\x0f\x7b\x2f\x3d\xc5\x14\xcf\x96\x31\x7f\x2c\xfc\x10\x05\x22\xff\x4e\x2e\xe5\x93\xb8\xa0\x3e\xea\x19\x74\x33\x90\xf7\x6e\x38\xe4\x5f\x58\x8f\xaf\xbc\xd7\x33\x9c\x92\x18\x73\xc9\xf6\xe4\x23\xcf\xeb\xe5\x3d\xa6\x62\xf6\x78\x1b\xa6\xde\x97\x13\x47\x65\xba\xf6\x68\xa6\x4c\x10\xc6\x69\x15\xbd\xa7\xa6\x13\x6d\xe7\xf2\x4d\xc3\x1c\x72\xef\x94\xcb\x55\xfe\xb6\xb9\x81\x1e\x58\x98\xc1\xd1\xf6\x00\x1f\x55\x80\x15\x70\xba\xca\x2f\xe8\x63\x73\xd8\x7d\xef\xaa\x5f\xa9\x76\x20\xf7\x3c\x69\x8b\x19\x0b\x57\x9e\xd7\x92\x2b\xf2\x75\x7b\x06\x48\x87\x5a\x73\x14\x8b\xd2\x9a\xa5\x59\x9d\xd6\xbc\xcb\x34\xcb\x9e\x2c\x63\xb6\xa0\xad\xf9\xe3\xc7\x35\x57\x41\x13\xe2\x99\xd9\x68\x3d\x83\xa7\x17\x94\x09\x63\x63\x51\xf8\xa8\x0e\x9c\x6a\x59\x5e\x32\xbd\xb0\xda\x05\xb6\x39\x5a\xf6\x11\x4d\x97\x83\xe7\x38\x77\x59\x55\x6b\xd5\xbe\x3d\x73\xe9\xe0\x1a\xff\x57\xbd\x77\x5b\x9d\x85\xbf\xa7\xf4\x32\x52\x1c\x69\xd5\xc2\x77\x4d\x9e\xdc\xf2\xbb\x95\xf0\x02\x00\x6f\x8f\x7d\x75\x1a\xa5\xc3\x14\x8c\x4b\xdc\xa9\x4b\x4a\x15\x6f\xd7\x71\x51\xa4\x17\x5a\xc5\x21\xdf\xed\xbe\xf3\x37\x7e\xea\xbe\x16\x1a\x41\x39\x0f\xd6\x9b\x62\xe9\xa7\xce\x01\xfb\xa9\x1a\x1a\x0b\x36\x80\x05\x40\xaa\x4c\x38\x96\xf3\xde\xef\xd1\xe3\x54\xb9\xcd\xab\x15\xaf\x0f\x42\x2b\x41\x6f\x9c\xa7\xb6\xef\xfc\x1c\x9b\x87\x8a\x46\x55\x16\xb8\xb2\x81\x02\xd9\x04\x8d\xce\x49\x8e\x59\x00\x8a\x94\x85\x8e\x28\x25\x0f\x8a\xa3\x5c\xf0\x37\xa3\x18\xa6\x4e\x54\xad\xe8\x6e\xe7\x20\x34\xf2\x93\x7f\xc3\xbd\x82\x9b\x57\x5f\x31\x5b\xd2\x64\x93\x51\x85\x1c\x5d\xe1\xd0\x57\x35\x3c\x07\x0b\xa5\x80\xe9\xc0\x5a\x09\x77\xc2\x92\x5c\xa8\xcd\xf8\x00\xc9\xd3\xda\xa2\x59\xc2\x7a\x8b\xa0\x05\xed\xee\x1e\xbc\xe3\x37\xba\x21\xe3\x89\x4d\x32\x4b\xab\xcb\x35\x56\xb7\xe6\x79\xfa\xef\x37\xac\x6e\xb7\xeb\xcf\x24\x39\x92\x3d\x36\x36\x29\xdf\xf0\xd8\x78\x90\x6f\x2c\x9f\xb3\xbc\xe4\xab\xd6\x7d\x80\x3c\x77\x99\xbf\x77\x23\xd1\x1f\x11\x42\xbb\xdd\xa3\xb4\x78\x11\xbf\xf0\xdd\x67\x37\x84\xba\xdd\xb4\xf8\x06\x7c\x5d\xd5\xd4\x59\x7e\x50\xbb\xe4\xf2\xd2\xa2\x85\xbe\xb4\x6c\xa4\xe7\x0d\x35\x23\xa1\xc9\x7f\x43\xf2\xab\x37\x1b\x6c\xf9\x0b\xa3\xd1\xb4\xcf\x68\x74\xbb\xdf\xfb\x62\xcc\x26\x12\x53\x73\xa2\xdc\x1f\x6a\x33\xba\x31\x93\xec\x02\x9b\xf4\xb8\x7b\xc1\xfd\x7c\xe7\x31\x1e\xc9\xa1\xc9\x06\x46\x34\x28\xa8\xa8\xb0\x3e\xc3\xd0\x63\x44\xf7\xee\x03\x86\xdc\xae\xfe\xe2\xd0\xf0\x3f\xf8\x92\x66\x57\xb4\x64\x45\xa6\x28\x7a\x12\xe1\x9f\x5b\x73\x2b\xa2\x52\xce\x09\x28\x4e\x0d\x46\xdd\xae\x3b\x7e\x9d\xa7\xfd\x61\xe8\x7b\xb6\xdb\xfd\xc1\xaf\x57\xc2\xf5\x72\xee\x03\xee\x9f\xf7\x65\x46\x6f\xfc\x1c\x0b\x4c\x41\xe7\xb7\x46\x6d\xc6\xe4\x95\xcf\x1c\xb2\x2d\xd5\xc5\x6e\x25\x12\xf7\x8a\x18\xca\xd0\x62\xf5\xfa\x32\xd7\x2e\x57\x1c\x23\xfc\x83\x2f\x70\xa5\xd9\xc7\x6e\x25\xcf\x4a\xe4\x22\xad\xdf\xbb\xcf\x4a\x22\xb8\x02\x45\xa2\x6b\xd0\x39\xad\x13\x83\x38\x95\x8c\x58\xb5\x1f\x15\x69\xb0\xcf\x9b\xb9\xc4\x82\xba\x5d\xe2\x15\x2d\x51\xb0\x58\x6f\x1e\xcf\x66\x34\xd3\x21\x38\x86\x56\x38\x92\x36\xf9\xa9\xef\x1f\xbf\x7e\xf1\xed\x8b\x3f\x47\x9d\x7f\x34\xea\xfc\xa3\xa3\xd0\x64\x47\x82\x18\x58\xc3\xfd\x63\xa6\xe4\x20\xd0\xdd\x3f\x3a\x66\x5c\xca\xd8\x2d\xcd\xb2\x0e\xcb\xf7\xed\xdd\xea\xd6\x6e\x45\x27\x9f\x77\x94\x7e\x7a\xf0\xbe\x30\x7c\x59\x4c\xaa\xf1\x8d\xd2\x48\x34\x87\x8f\x37\x24\xdb\x87\x50\x84\x0b\xb2\xf0\x37\x08\xcf\x48\xb5\x2b\xb9\xdd\x95\x12\xcf\xb5\xcc\x03\x1e\x38\xe6\x59\x9e\x73\x5f\x3d\x45\x22\x10\x72\x38\xfe\x55\xe1\xd5\x11\x19\x39\x48\x2d\x63\x6a\xa4\x37\x20\x83\xa8\x35\x05\x49\xa8\xc4\x09\x31\x08\x42\xa9\x17\x28\xb1\x83\xc1\x19\x6b\xa2\xd1\x08\xc8\xab\x8d\x08\x42\x63\x96\x25\xa9\x53\x3e\x78\x65\xec\xe3\xae\x8d\x20\x3d\x9d\xfb\xd7\x6e\x07\xc9\xc8\xbe\x28\x6e\xaa\xb7\xd9\xfe\xa6\x26\x82\xeb\xcd\xf5\xc0\xa3\x7e\xa1\xc5\x26\x55\xd2\x1c\x44\xd1\x2b\x67\x5c\xeb\x9b\xdb\x54\xf2\xa6\xb9\x9a\xb0\x6c\xf1\xb2\x96\x30\x57\x62\xcd\xb8\xdb\x5d\xa2\xd9\x78\x39\xd1\x76\x99\x59\x2c\xe8\x49\xe2\x7b\xbd\x55\xcf\x5b\x5f\xe1\x8e\xd7\xbb\x56\x1f\x21\xf2\xf0\x6c\x9c\x4c\x48\x88\x67\xe3\x35\xfc\xa9\x11\x88\xd5\x7a\x54\xc2\xf8\x8b\xfa\x12\xf4\x07\xd1\x00\x4f\x6b\x33\x00\x6d\x12\x68\xf6\xfa\xde\x85\x6a\x78\x75\x6f\x5a\x6f\x3a\xe9\x79\x72\x1c\xeb\x52\xe9\xa2\x6e\x6b\x47\xbc\x66\xe7\x50\xf1\x2a\x15\x16\x24\x4a\x95\xe0\x72\x0f\x35\x6a\xef\x7f\x2a\x7b\xe6\xe0\xd5\x1a\xc6\xd3\xf9\xd5\x71\x87\xbc\x1b\xb0\xe2\x5f\xeb\x42\xcf\x43\xd2\x19\x38\xf3\x8a\x8f\xc2\x39\x39\x3a\xe2\xdd\x6e\x0b\x23\xd6\x2c\x0d\xe6\x05\x96\x0f\x93\xbc\x71\x42\xf9\x17\x5c\xfd\x55\xef\xb6\x47\x16\x19\x7b\xff\xf0\x7a\xa2\xe7\xfd\xc3\xc3\x31\x7c\x33\xf9\x3d\xac\x21\x92\xb8\xe7\x55\x18\x21\x2d\x3a\x5c\xdb\x43\x76\xa6\xd7\x1d\xaf\x97\xd6\x72\x59\x07\x7a\x91\x38\xe5\x32\xe7\x1f\xb0\x42\x1a\x9c\xca\x84\x94\xcd\xb2\x4d\x42\x3b\xa9\x44\x25\xf3\x9c\x53\x55\xfb\xa8\x32\x3c\x75\x44\x6a\xff\x9f\x83\x53\x61\xc4\x7f\x6d\x47\x9c\x1e\x2c\xb1\xd6\x94\x7f\x9b\x2f\xa8\x58\x52\xde\x7c\x45\x90\xf8\x98\x66\x56\xb1\xdd\x53\x16\x89\xce\x7b\x0b\x57\x12\x1b\x9f\x93\x3d\x5c\x14\x80\xfb\xf1\x37\x34\xa3\x33\x91\x73\x9f\xa3\xaa\x6d\xa5\xc0\x01\x0f\x8b\x7b\xb5\xec\xc3\x32\xaf\x14\xd8\x0e\x60\x67\x98\x81\x19\xdf\x3f\xac\xa5\x2e\x58\x08\x48\xa4\x9a\x8a\xa2\xa3\x5a\xed\xe8\x42\x47\x92\x14\x19\x1a\x95\x31\x0b\xda\x75\xc1\xab\xb2\xe6\x52\x00\x09\xaa\x1c\xfa\x0e\x2a\x48\xec\x50\x6b\x99\x11\xb8\x2a\x59\xaa\x3e\x76\x15\x1d\x94\x83\xc4\x7f\x5f\x9c\x3a\x97\x89\x8e\x86\x11\x4e\x88\x44\x3e\xcf\xf2\x4b\xc3\xa8\xe3\xb5\x2c\xe2\xca\x65\x97\x32\x61\x6a\x74\x8c\x34\x9e\x5c\x91\xb7\x3e\x47\xe3\xd9\x64\x58\x8c\x97\x93\xfe\xea\x8b\xcd\x38\x99\x80\xa3\xac\xfa\xdd\x39\x4e\x26\x7d\x22\xf3\xfa\xbe\x2a\x88\x10\x2e\xc6\xc9\xa4\xb7\xfa\x72\x33\x5e\x1e\xa8\xd1\x23\xaa\x48\x5f\x16\xd9\x17\xce\x90\xe9\x5e\x25\x13\xc7\x06\xea\x15\xe3\xd9\xe4\xfe\x71\x7f\x75\xff\x18\xec\x00\x5b\xee\xa9\x85\x2b\xf9\xbf\xa8\x14\xab\xe6\xa0\x2d\x86\x2f\x1b\xd9\x46\xa9\x6c\x5e\x53\x2a\xc3\xef\xc8\x75\xbf\x6d\xbe\x8b\xfe\xa5\xc1\x56\xef\xaa\xc7\x7c\xeb\xf8\x7d\x33\x9e\x4d\xfa\x2b\xfc\x0e\xe1\xb0\x49\xc6\x11\xde\xc4\x46\x44\xf9\x5f\x5e\x48\x22\x33\xc1\xce\x45\xf8\x0e\x21\x95\xba\xc6\x92\x37\x67\x35\x44\xf5\xff\x1c\x82\x84\xb2\x44\xeb\x89\x69\xdb\x51\xfd\x57\xa5\x81\xbd\xa9\x53\xf3\x7f\x7e\x09\xd5\x88\x97\x95\x38\x9a\x22\xcc\xe5\x6f\x25\xfc\x61\xbd\x81\x75\xee\xf4\xb2\x12\x40\x33\xe4\x28\xae\xf3\x80\x53\x49\x9c\x50\x1f\x45\xbc\x1a\x18\xa5\x56\xc9\xf6\xdb\x03\x38\x05\x14\x23\x5c\x24\x92\xce\x7d\x1a\x68\xd9\x6b\xd3\x3c\xaa\x45\xf8\x58\xc7\x3e\x8c\x5c\xb5\x12\xe1\x36\xc5\xe1\x9d\x0c\xe5\x0a\x2a\x63\x4d\x32\x97\x36\x09\x66\x7e\xc3\xe9\xcf\xc9\x7b\x15\x3d\xe3\x40\x91\xc1\x64\xb7\xf3\x24\xd6\x1f\x4f\xac\x29\x72\x30\xa5\xcb\xf8\x22\xcd\xb9\xd2\xb9\xef\x3c\xa5\xc1\x37\xcf\xbe\x7d\x15\xc5\x64\xcc\x71\x3e\x19\x4e\x39\x8d\x3f\x0c\x4d\xd6\x93\x67\x2f\x9f\xfc\xf5\xfb\x6f\xdf\x3c\x8d\x62\xf2\x3f\x3e\x47\xcd\xec\x97\xdf\xbd\x78\xfb\xf4\x75\xa3\x14\x3e\x0a\x4d\x41\x63\x6a\x1c\x93\xaa\x63\x73\x13\xc4\xfb\x7c\xd3\x06\x17\xb0\x69\xfc\x88\x90\xcd\x6e\x17\x6b\x60\x22\x84\x14\xbd\x41\xb5\xe2\xb7\xaf\xc9\x50\x69\x33\xec\x11\xe7\x33\xd2\x26\xdd\x9d\x93\x8a\x32\x94\xf4\x60\xa6\x95\x4d\x79\xb7\x3b\xf7\x33\x4d\x29\x7e\x39\xf7\xd5\xcb\x3e\xda\xed\x1c\x9a\x50\x15\x81\xf4\x2f\x64\x09\x55\x78\xb7\x33\x7a\xc3\xba\x80\x26\x44\xa1\x11\x49\xad\xee\x76\x0e\x45\xa4\xcb\xc8\x74\x68\xc3\x50\xad\x6b\xe2\xb6\xcd\x34\xf5\xbb\xfc\xff\xd9\xfb\x17\xe6\xb6\x6d\x66\x61\x1c\xff\x2a\x32\xdf\x44\x0f\x61\x41\x32\x29\xcb\x92\x4d\x07\xd1\xa4\x71\x6e\x6d\x94\xa4\xb5\xf3\xa4\x89\xac\xc7\x43\x89\x90\xcd\x46\x22\x5d\x12\x8a\xe3\x98\x3a\x9f\xfd\x3f\x58\x5c\x08\x50\x94\x93\xf6\x9c\xf3\xf6\x9d\xff\xfc\x92\x19\x99\xb8\x2d\x80\xc5\x6d\xb1\xd8\x0b\xb1\x1a\x25\xe5\x00\xc0\x90\x6b\x09\x24\x11\x34\xf1\x2d\xb1\x2b\x4f\x34\xec\x2f\x56\x37\xaf\x2b\x7d\xba\xb2\x3a\xb0\xac\xb6\xf6\x16\x4f\xd5\x99\x22\xae\xda\x32\x75\x62\xbc\x2c\xe1\x4b\xb2\xb3\xc3\x60\x45\xfd\x3b\xcc\xe2\x50\xea\x31\xba\x53\x21\xfd\x2f\x36\x95\x18\xaa\xe6\x51\x72\xe7\x89\xa1\xee\x9d\x6a\xa6\xa5\x8c\x2b\x73\xdd\xa2\x63\x37\x2a\x8a\x2f\x45\x71\x89\xe0\x60\x90\x4b\x97\xec\x78\x18\x12\xc4\x9d\x3e\x1c\xe7\x2d\x7f\x82\xf0\x65\xb3\xe9\xc6\xe4\x77\x37\x46\xf6\x8b\x47\xd6\x72\x63\x78\xb2\x8e\x03\xc7\xa9\x39\x3d\xaa\x54\x9f\x9c\x47\x4f\x6b\x57\xfb\xfd\xef\x06\x08\x18\xfe\xb5\xbb\x11\xc5\x0e\x6f\xbe\x03\xcf\x4c\xc6\x06\x0b\x1c\x92\x92\x99\x29\x0f\x7a\x7e\x01\x95\x75\x72\xaa\xa7\xac\xed\x3e\x4a\x21\x36\xe7\x78\xf8\x9d\xd1\x03\x41\x8c\x70\x28\xa7\x44\x79\x1b\xca\x79\xa4\x79\xdc\x2f\x78\xc4\x96\x17\xd7\x64\xbc\x9a\x3c\x8a\xdd\x6c\x9c\x4f\x50\xdd\xd1\x9d\x4f\x88\x4c\x6d\x27\xe3\xc5\x04\xe1\x64\x9c\x4f\x1e\xf3\xa8\xd5\xbd\x05\x56\x13\x64\x21\x29\xa1\x55\x7e\xad\xf4\x3b\xe3\xee\xb9\xee\x30\x38\x6f\x17\xe7\x2d\x34\x3c\x8f\x76\xcf\x3b\xfc\x17\xb9\x9d\x5d\xb4\xc7\x77\xcd\x56\xca\x4f\xa0\x90\xa4\xe3\xee\x44\x28\x43\x5a\xa7\x81\x47\x08\x09\x4b\xd1\x95\x87\x0e\x12\xf0\x57\xea\x6e\x27\xb7\xd4\x50\x6a\x2f\x3d\xbc\x76\x82\x15\x49\x8c\x2d\xd2\x79\x28\xb5\x99\x1e\x66\x4e\xa0\xb6\xc2\x15\xc9\x4a\xc9\xd5\x15\x1a\xb3\x09\x78\xfa\x88\xd7\x20\xa0\x75\xc5\xa7\x77\x58\x14\xce\x17\x10\x91\x0a\xf5\x73\xac\x4a\x1a\x6a\x1a\x61\x9b\x70\xd9\x8f\xc8\x01\x06\x3f\x0a\xe5\x1e\xe1\x43\x24\xdb\xad\x9f\x51\x4a\xd5\xb9\x8d\x11\x19\x7b\x18\xe6\xe0\xfd\x2f\xff\x19\x02\x82\x56\x4c\xdc\x3d\xf7\xbc\x55\x9c\xb7\xd1\xde\x56\x79\x1a\xda\x61\x59\xbc\x74\xf9\x9a\x59\x19\x23\x35\x72\xc3\x9a\x9b\x56\x5b\xe8\xc8\xe5\x34\xcc\xf8\xcc\xc0\xc5\x79\xbe\x87\xd6\x08\x1d\x87\xe3\xd5\xa4\xd9\x04\x41\x25\xfe\x59\x0e\x38\x76\x50\x95\xdd\xf2\x56\x4c\xc8\x46\x4e\xaf\xc3\x2c\x64\xe2\x7e\x04\xbe\x9d\x1b\xf9\x75\x38\xa3\x6e\x8e\x1a\x61\x46\x37\xde\xb3\xc3\xc6\x2c\x5d\x2e\xc3\x86\x8b\x51\x83\x2f\x7f\x1a\x46\xca\x97\x60\x4e\xf6\xce\xf3\x5d\x7c\x9e\xef\x16\xe7\x79\x6b\x4f\x11\xeb\xab\xe1\x38\xd4\x24\xcf\x4a\xd3\x41\x63\x68\xa2\x40\x50\xce\xd7\xf5\x04\xe1\x4a\x9c\x3f\x29\xed\x1a\x4a\x08\xab\x96\x8f\xd0\x24\x18\x87\x5a\x52\x67\x41\x16\x15\xac\x96\x63\xe5\xfa\xc0\xeb\xd8\x89\x83\x18\x6d\x5e\x0a\x42\x43\x1b\x92\x93\x35\xd1\x6a\x46\x6b\x45\x96\x1c\x20\x1a\xc7\x54\x9e\xe1\x6d\x1f\xb0\x0c\xc3\xdf\x72\xb0\xd3\x36\xc6\x9d\xa1\xa1\x6b\xe5\x24\x8c\xd7\xe3\x61\x8a\x82\xb0\x92\xd4\x12\x69\x3e\xb8\xf4\x54\x1d\x65\x68\x8d\xc7\x93\xad\x13\x05\x76\x88\x14\x6e\xe3\x6b\x04\xc6\xa0\x6b\x1c\xec\x83\x4b\xd8\x4d\x4e\x2e\xc7\xcb\x07\x21\x5b\x90\x8e\xd9\xa4\x45\x92\x5d\xbe\xa7\x42\xdf\xb2\xb6\x3f\x01\xce\x05\x12\x70\x8d\xbb\x6d\x4a\x6d\x86\xa1\xd8\xca\x6c\x6a\xce\xe4\x1e\xe2\x98\xa4\x6a\x53\x0f\x49\x6a\x6c\xea\x2b\x92\x55\xb6\x72\xed\x6c\x44\xf9\xd5\x22\x1f\xdc\x56\x82\x86\xe3\x56\x82\xbd\x49\x90\x71\x42\x3f\xc6\x21\x5e\x21\xac\xcf\xf8\xd5\xd0\x95\x12\x85\x39\x9c\x06\x52\xb0\x9a\xd3\xe0\x28\x28\x8f\xfe\xda\x6c\x2d\x95\x4d\x52\x04\x90\x49\x25\x40\x2e\x10\xdf\x96\x99\x4a\x42\x61\xc5\xcf\xdc\x8d\x8c\x12\x1a\x56\xe7\x26\xb1\x94\x81\xe2\x0a\xde\x36\x28\x64\xa1\xa0\x57\xbd\xa4\x1d\xd7\x91\xda\x82\x4f\xe2\x26\x64\x01\x86\x47\x04\x97\xa0\xc2\xb1\x4b\x6b\xb8\x01\xc2\x87\x15\x1f\x10\x96\x5e\xc3\x68\x00\x87\x6c\x45\xd2\x71\x36\x39\x4e\xd5\xc3\x6b\xaa\x1f\x5a\x79\x3c\x71\x1c\xb9\x9e\xff\xc6\x4d\x20\xd9\xa0\xfb\x65\x35\xb1\xaa\x25\x14\x95\xac\xac\x4b\x03\xc9\xa5\x7c\x2c\xeb\x5c\x67\x71\x9a\xc5\xec\xd6\x50\xb5\xd0\xc4\x4a\x44\xee\xa4\xcb\x8a\x60\xf3\x71\x7f\x3e\xa6\x7a\x57\xe0\xdf\x8f\xf2\x31\x9d\x34\x9b\x3b\xac\x43\xf3\x59\x78\x4d\x3f\xc4\xec\xea\x37\xd5\x64\xc0\xa6\x3e\x3a\x78\x76\xcc\xb3\x8b\xdb\x25\xe8\xe9\x24\x68\x8d\xb5\x3f\x96\x9a\xea\xca\xa9\x46\x6d\x4a\x22\x23\xf3\x71\x62\xb5\xe4\xf1\x77\x5a\x92\x11\x7d\x4b\xe6\x45\xa1\x25\x6d\xd7\xac\x40\x4a\xf8\x06\x4a\xe8\x17\xe9\x86\x0a\x8d\x23\x2d\xb7\x58\xfb\xa4\x27\xc8\x2e\x9b\x75\xc2\x9b\x3a\x31\xee\xab\x43\xed\x0c\x24\x70\x74\xb7\x9d\xe3\xb9\xa4\x1b\xe7\x38\x1a\xb3\x89\x2b\xc4\x87\x36\x68\xcb\xb9\x39\xf1\x43\x8b\xd4\x2b\xf7\x08\xf0\x12\x6e\x2d\xff\x8c\x54\x2e\x79\x9c\x58\x31\xd5\x0b\x8d\x1d\xa5\x9c\x6c\x61\xb9\xbf\xac\x54\xa7\xf4\xc3\x98\xdd\xad\x04\xac\x99\x56\x09\xbd\xd5\x06\xa1\x87\x67\xe4\x0e\x88\xf4\x40\x20\x35\xc7\x31\xa7\xe6\x30\x4d\x22\x2b\xa6\x15\x8f\x17\x93\x76\xc8\x69\x3c\x53\x8c\xc9\xa2\xb0\x43\x3c\x1b\x67\x13\xcd\x25\x34\x10\xb3\xa2\x4a\xb4\x7f\x1b\x7b\xf0\x2a\x8e\xa8\x83\x9d\x8a\xf9\x9e\x2a\x83\x90\xd5\x5e\xfd\x92\xbf\xf0\x5a\x53\xad\xc0\x7c\xb2\x29\x17\x25\x1f\x0d\x25\x47\xfc\x48\x8a\x6e\x0b\x09\xe2\xc7\x5a\x64\x1b\x04\x99\x1f\x97\x82\xda\x52\x6c\xf9\x91\xbc\xe2\x41\x6f\x41\x7b\xbc\xc3\xfb\x56\xf6\x43\x84\xe1\x64\x34\x98\xd8\x63\xe7\x6b\x3b\x5d\xb1\x76\x3a\x6f\x97\xcd\x70\xf8\x8e\x04\xdc\x4b\x80\xe6\xdf\x03\xcd\xff\x21\x68\x3b\x7e\xcd\xe0\xe4\x7f\x61\xd6\x96\x33\x33\x25\x59\xf9\x5a\x96\x59\x93\xf4\x7e\x4e\x25\x68\xad\x00\xa9\xa6\xae\x2e\x1b\x4f\xba\x86\xbc\xa7\x35\x83\x27\x24\x1e\x27\x93\xb6\xbb\x1a\x42\x4a\x65\x2a\x4f\x02\xcf\xbe\x17\xfe\xe1\xd6\x08\x7a\x91\xa9\x0b\x1e\xeb\x95\x84\xd3\x82\x92\x5a\x79\x23\x41\x2e\x37\x9b\xf7\x0a\x23\xe1\x19\x25\x63\xe7\x59\x74\xc9\xe7\xee\x59\x16\x47\xc2\xc0\xcb\xf3\x38\xa3\xf3\xf4\xab\x33\xc1\x73\x4a\x3c\x1c\x51\xe2\x1d\x47\xf4\xd1\x4c\x91\x40\xc7\x11\x6d\x11\x1f\xc5\x73\x77\x41\x9b\xcd\x24\xfc\x12\x5f\x86\x2c\xcd\x3a\xab\x9c\x66\x4f\x2e\x39\xe1\xae\x70\x31\xa3\xe3\x88\x4e\xd0\x63\xe2\xa1\xbb\x39\x25\xbe\xb8\x98\xc0\xe3\xc9\x35\x25\xbc\xb4\x6d\x21\x03\x5f\x51\x72\x4d\x87\x49\x90\xe1\xa5\x48\xdf\x71\x77\x64\x96\xd1\xe9\xab\xe4\x7a\xc5\x46\x94\x5d\xa5\xca\x93\x79\x51\xec\x6c\x5c\x1e\x46\x20\xbf\x72\x2b\x8a\xef\x8d\x4e\x5f\x3d\x6b\xf8\x9e\xb2\xa4\xb0\xd9\x56\x84\xbf\xd0\x8a\x49\x5f\xe0\xd1\xd3\x86\x5a\x91\xe9\xbc\xc1\x90\xe1\xa4\xfb\xec\xf6\x9a\x4a\x47\xdd\x4f\xc3\x24\x49\x59\x63\x16\x2e\x16\x9c\xc0\x5e\x84\x79\xde\x08\x73\xc3\x5d\xb7\x83\xd6\x78\x6a\x19\xa8\x2a\x19\x84\xa2\x32\x35\x90\x09\xf1\x8e\x93\x52\xc8\x2c\x51\x42\x66\x19\xbc\xe0\x1f\x67\x9d\xd2\xae\x20\x31\x03\x45\xb1\xe3\x63\x78\x08\x98\xc7\x97\x2b\x91\xbe\xe3\x29\x77\x94\x31\x98\x4a\x70\xb3\xce\x4d\x16\x33\x99\xb6\xcd\x8a\x21\xc5\x19\xc8\xd6\xf3\x63\xa9\x6a\x6b\xc4\x56\x41\x4e\x9a\x4d\xea\xb2\x52\x70\x18\x84\xdf\x21\x0e\x67\x08\xb3\xf5\xda\xe5\x87\x1c\xa9\x5a\x62\x51\x2c\xd3\x46\x9c\x34\xe8\x70\x5b\x23\x98\xb2\xbf\x92\x60\xdb\x94\xa2\xd9\x45\x1e\x56\x5d\x02\x01\xa2\x00\x64\x8c\x13\x4c\xd7\xf8\x86\x12\xcb\x87\x4f\x51\x58\x46\x5c\xb4\x68\xa0\x7f\xcc\x1e\x55\x79\xc6\xc7\x4c\xe1\xdd\xd0\xdc\x1c\xb3\x89\x56\xcd\x82\xc7\xa7\x04\xc9\x0a\x4a\xd1\xe9\xab\x30\x7f\x7b\x93\xa8\x6e\x08\x43\x29\x1c\x65\xcd\xa6\x4b\x39\xd5\x94\xd8\x47\x0b\xbe\xe0\x2b\x2f\x5c\xb1\x54\x5a\x48\xc4\xd2\xa9\x91\x88\xa3\x49\x24\x8e\x44\x9d\x2a\xb6\x1a\x65\x3f\x51\x6e\x4b\x3a\x55\x5d\x66\x45\xac\xc8\x61\x98\x6b\x34\xe4\x4f\x2c\xcb\x8e\x62\xef\x92\x59\xe4\x7e\x07\x31\x22\x79\x82\xdf\x52\x72\xa1\xd8\xde\xfb\x08\x3f\xa3\xe4\x0e\x38\xb5\x82\x55\x84\x4b\xa6\xab\x33\x5b\xa4\xb3\xcf\x37\x71\x4e\x1d\xbc\xc1\x91\x75\x66\x60\x5a\x2a\x2b\xf3\xac\xf1\x57\x4a\xee\xf2\xab\x78\xce\x82\x3b\x78\xac\x08\x7c\xcf\xc3\xf2\x35\x91\x0f\xee\x3c\x09\x42\xba\x96\xd2\xc7\x2a\x4f\x77\x23\x4f\x4a\x55\x16\x6f\x8d\x37\x8c\xe7\x89\x52\xfb\x1b\xa5\x62\x8a\x15\xb1\x1a\x54\x36\x7a\x5c\xe1\x47\x69\x27\x4a\x07\xb8\xc6\x14\x9f\xa5\xa2\xb6\xc6\xe6\xe3\xa0\xaa\xbd\xb7\x51\x3b\xa3\x52\xfa\x5a\x65\x39\xd8\xc8\xf2\x33\xa6\xaa\x8a\xf1\xd7\x36\x64\x9e\x38\x42\x2c\x5b\x15\xea\x6f\x14\xa2\x14\x2b\xfe\xb6\x1a\xa0\x7b\x1b\xaf\x35\xf1\xd6\x18\xb8\x2a\x0a\xf2\xc0\x84\xec\x73\xc8\x39\x5d\x63\x7e\x4e\xab\x1c\x87\x1b\x75\xaf\xe8\x1a\x9b\xc2\x1d\x3a\xe7\x41\x35\xe7\x03\x5c\x91\xcd\xe0\xf1\x5f\x4b\xfe\xde\xad\xba\x0a\xae\x71\x29\x9a\xa2\xc0\x1d\x6d\x54\xfc\x12\xa7\xc9\xeb\x34\x8c\x82\x17\x1b\x70\xc5\x0d\x75\xcd\x87\xc5\x34\x21\x56\xca\x55\x98\xb7\x1d\xde\x53\x4b\x50\x8d\xc3\xaf\x88\x85\x82\x38\xbc\xb2\xb1\x68\x6c\xe9\xeb\xd2\xb6\xa2\x15\x5b\x5a\x7b\xfc\x4a\xd7\xf8\xdd\xb6\x63\xc0\x78\xa1\x07\x19\xfd\x1a\x75\xb7\x6d\x3a\xe3\x43\x33\x10\xdc\xad\x8f\xbf\x08\x49\xba\x52\x88\xdb\x92\xa8\x23\x9b\x96\x68\x33\xfa\xe7\x8a\xe6\xac\x22\x8d\x97\x49\xd1\x40\xb4\x16\x60\x44\x88\x5c\x49\x39\x3d\x11\xec\x4c\x41\xd5\x44\x98\x08\x35\xc5\x22\x35\xc7\xfa\x44\xf0\x1b\x73\x1c\x5b\xb2\x7c\x77\x86\x04\x33\xc7\xa9\x16\x1a\xe7\x01\x4b\x00\x31\x18\x4f\xd6\x15\xc1\x7e\xc2\x9a\x4d\xd6\xf9\x03\x9e\xcb\x87\x6c\xec\x4d\x02\x66\x8a\x03\x0b\x73\x41\x32\x39\xe1\xc9\xc9\x16\xe1\x7e\x72\xb7\xc6\xa6\x10\x5a\xb5\xd1\x06\x21\x1e\x1b\x56\x36\x6b\x44\xed\x18\xba\xcb\x36\xe1\xf3\xf3\x68\x3b\xcc\x31\x9b\x14\xc5\xdd\xda\x04\x3d\x8c\xad\xe4\xe0\x0e\x18\x3a\xb6\x70\xb7\xa5\xe6\x57\xdf\xaf\x7b\x75\xff\xc0\xc1\x23\x5d\xe3\xba\xf6\x82\x06\xe0\x3d\xfa\x7f\x52\xc4\xa3\xcd\x94\x88\x47\xa5\x6d\x5b\x84\x52\x0d\xf5\x18\xda\x11\x8b\x15\x81\xbc\x08\x7c\xba\x26\xed\xad\x49\x72\xdd\x3c\x4c\xa5\xa3\x63\xaa\x71\x21\x26\x9f\xab\x04\xbf\x2c\x24\x58\x2b\xf8\x38\x94\x72\xdc\xa2\x05\xf5\x12\xe0\x35\x22\xaa\x24\xd4\xcc\x71\x4e\xa3\x49\x73\x7a\xab\x7a\x9b\x9e\x1a\x3b\x27\x86\xc5\x5c\x6d\x61\x52\x5a\x1e\xdd\x5e\xea\x79\x5d\xa9\xba\xf6\x6e\x07\xf1\x6b\x6d\xc5\x75\x52\xef\xdb\x61\xfc\xdb\x82\xc1\xef\xcf\x6b\x17\x1d\xbf\xa3\x9d\xf7\x2c\x5e\xe4\xa4\x5e\xa5\x41\xd0\xe5\x43\xf1\x27\xa0\xa8\x23\xcd\xc6\xf2\x22\xf8\x9d\x71\x93\xc9\xc9\x05\xe5\x11\x6a\x15\x90\xcf\xd4\x30\xc1\xfc\x8e\xae\x65\xed\x38\x71\xbb\xdd\xbf\x6c\x00\x5b\xcd\x4e\x72\x8f\xb5\xe8\xd2\x0a\xb2\x65\x19\x98\xa2\xa2\x60\xb5\x96\xa7\x6d\xbb\xaf\xdb\x4a\xa3\xff\x2d\x2b\xd4\x07\xda\x0a\x75\x5f\x5b\xa1\x3e\xd4\x46\xa8\x8f\xb4\x11\x6a\x5f\x1b\xa1\x06\xdb\xd2\x91\x6d\x5b\xba\xeb\x23\xe1\xdf\x29\xfe\xae\x9f\x35\xe5\x59\x29\x3b\xae\xb8\x3a\xab\x78\x56\xda\x34\x0e\x80\x63\xc3\xb3\x52\xaa\x3c\x2b\xa5\xe0\x59\x29\xde\xee\x59\xc9\x30\x7e\x9c\x61\x37\x21\x19\xa9\x71\xe9\xf4\x3f\xe2\x59\x29\xe6\x48\xc8\x78\x21\xb0\x70\xca\x87\xae\xee\x1c\xec\x2c\x55\x6a\xc5\x1f\xcb\x62\xd3\xfe\xef\xea\x6f\xfa\x82\x13\x3b\x8e\xd1\x10\xd3\x4d\x9a\xb6\x20\xaa\xd4\x70\x36\x4d\xe6\x4a\x73\xb8\xf3\x34\x9b\xc9\x13\xdd\x04\x50\x5a\x2b\xfd\xeb\x3e\xe4\x74\xe5\xb6\x21\x5e\x1d\xfd\x57\x0c\xfb\x6a\x05\x8a\xff\x0b\x1d\xfd\x7b\xe6\x80\xf5\x50\x13\xe1\x83\x42\x82\x30\x1b\x5c\x87\xa6\x78\xee\x6e\x6b\xb0\xe2\x68\xf1\x95\xec\x56\xea\xa8\xdf\x3d\x60\xaf\xb5\xad\x76\xa0\xe3\x4a\x49\xbe\xc3\xa5\x32\xe7\x34\x8d\x6e\xff\xbb\x5e\x7b\xca\x47\x33\xab\xf1\x43\xe9\xa7\x46\x57\x3c\x9c\x57\x0c\xd8\x8a\x7c\x2e\xc3\x76\x3e\x14\x08\xfc\x09\x2b\xb0\xb3\x5a\xb7\x7c\xd7\xb6\x19\xd8\xeb\xef\x98\x81\xe5\x39\x36\x1c\xf7\x5d\x91\x6b\xc3\xc6\xeb\xd5\xe6\x01\x61\x91\x1c\x3b\x26\xd7\x02\x28\x90\xaf\xfc\x9a\x93\x93\xc4\x45\x6b\xd7\xc3\x06\xb6\xea\x0f\x96\xd2\xf1\x64\xe3\x34\x93\xbb\x0a\xa8\xbd\x94\xbe\x22\x8d\xa7\x7f\xf3\x35\xd8\xe4\x19\xc1\x8e\x58\x14\xda\xa6\x2a\x84\xc1\xa0\xea\x06\xf3\x60\xbb\x7d\xd5\x6c\xc3\xc8\xa3\x69\xa6\x55\x00\xfa\xab\x30\x53\x39\x97\xcb\xdd\xd4\xe0\x5c\x80\xcf\x11\x35\x9b\xbd\x12\x70\x4d\x2e\x97\x2a\x55\x0d\xc1\xdc\x86\x43\x42\x30\x77\x10\x48\xb2\xd9\x3c\x11\xbe\x4f\x0b\xb8\xfa\xf5\x76\xc7\xb3\x2c\xc9\xea\x9e\x6a\xbd\x6f\x5a\x6f\x0f\x76\xc3\x90\x09\x35\xf0\xfc\x06\x12\xff\x2a\x52\x56\xdb\x86\xf1\x24\x64\x26\x74\x1e\xfc\xab\xb0\x73\xe3\x3d\x11\x67\x64\x2c\xb8\x49\x82\xe1\xa7\x79\xaa\xad\x56\x82\xa4\xb6\x1d\x03\x97\x43\xa6\x94\x61\x66\x19\x6e\xdd\x74\x6f\x7e\x3f\x1f\x8a\x17\xb0\x2c\x92\x5a\x7c\x47\x3e\x60\x0c\x01\xf9\x25\xb8\x55\x52\xeb\x48\x57\xbe\x10\x26\x18\x45\xef\x1c\x21\x16\xa3\x82\x86\x71\x60\x84\x21\x23\xec\x48\x6f\xe7\x32\x9f\x0c\x11\xa6\xbe\x2c\xb1\x99\xf9\x86\x71\xc3\xaf\x4c\x2b\xf2\xec\x78\xa8\xb3\x62\x33\x17\x99\x76\x4b\xb5\x77\x70\xba\xbc\x66\x70\x21\x5f\x25\xab\x9c\x46\x67\xe9\x67\x9a\xf0\xeb\xa2\x0c\x03\xab\x98\x07\x95\xdd\xdc\xa0\xdd\xc5\xb3\xab\x30\xcb\x5f\xd3\x39\x70\x88\x02\x0f\x2c\x10\x8b\x8c\xfc\x12\x9a\x7c\x09\x17\xfc\xe8\x4e\xd8\x95\x30\x6a\x2b\x63\x9e\x83\x3b\x24\xa8\x2a\xa7\xd9\x2b\x11\xa9\x6e\xab\x71\x9e\x82\xed\xea\x30\xcb\x69\xc4\xe7\xc6\xbb\x30\x83\x6b\x2b\x5e\xd2\x2c\x8e\x62\xba\x14\xb0\xb2\xf9\xac\x7b\xd8\xed\xf2\xbc\x37\x94\x7e\x8e\xc2\xdb\x51\x9c\x83\x84\x10\xdf\xf3\x2a\x46\x43\x8d\xf5\x4e\x08\xed\x5c\x5c\xcf\x01\x97\x17\xd7\x73\x12\xb9\x20\x3c\x76\x71\x3d\xb7\x2c\x6d\x9a\xee\xa9\x3a\x17\xd2\xf5\x99\x7a\x14\xb9\x16\x06\x47\xce\x32\x49\x66\x77\x2a\xad\xad\xd3\x09\x90\x7b\xcd\x1a\xe1\x8c\x48\x05\x3a\xda\xb9\x88\xc0\x1b\x61\xbc\xa4\x2e\x42\xfc\x16\xae\x90\xfb\xc8\x13\x6f\xa4\x7c\x4c\xe0\xcb\x44\xa6\x19\xf1\x41\xf4\x1d\xa2\x2a\x78\x80\x38\x3d\x22\x66\x21\x31\x00\x10\x53\x19\x81\x66\xd3\xdd\x61\x1d\x85\xe9\xa2\x28\xbf\x9b\xcd\x04\x09\x71\xda\x0b\xb1\xbd\xc3\x63\x6d\xd6\x6c\x7a\x60\x47\xcf\x9a\x09\x2a\xd2\x9c\x49\x5a\x07\x4d\x6f\x45\xac\x33\x8d\x2f\x5f\xa6\xab\x0c\x61\x81\x1c\xb9\xf4\xe2\xfc\x79\x96\x7e\xa3\x89\xd6\x68\x53\x11\xfc\x7e\xa0\x96\xef\x71\x39\x2a\xa5\xe8\x55\x19\x67\x19\x22\x55\xc3\x36\x77\xdf\x84\x6f\xf4\x22\x94\x03\x32\x9c\xb9\xd7\xf0\x2c\x84\x02\xfe\xb7\x8a\x10\xd0\xba\xaf\x18\x0f\xd5\x1b\x0f\x4e\x39\x46\x62\x97\xf1\x7a\x9f\x8c\x52\x7e\x92\x89\x36\xa3\xa2\x70\xe9\x46\x2c\xa9\xc9\x88\x45\x71\x55\x00\xb2\xc8\xc8\xb9\x8c\xe4\x8b\xfd\x62\x2e\x23\x17\x32\x72\x41\x20\x20\x22\xc5\x88\xc8\x14\x11\x20\x65\xb4\xc8\xc3\xbe\x2d\x65\x06\xf6\x6d\x49\x64\x84\xac\x3d\x7f\x7f\xf6\x54\x37\xf9\xfd\xd9\x53\xa2\x23\x45\x06\xc1\x11\x96\x39\x44\x80\x94\xd1\x22\xcf\xb5\x6a\xee\xf5\x9c\x5c\x83\x45\x31\xd1\xde\x74\x16\x2e\xa8\x6a\x34\x04\x48\x19\x8d\xff\xc8\xb4\x51\x22\x54\xee\xe1\x3a\x16\x5e\x6d\x32\xf2\x47\xc6\xb7\x6f\x65\x1d\xc0\x4d\x01\xdc\x38\x9b\x90\xb4\xb4\x7f\x52\x31\x77\x7a\x6b\xb3\xed\x2e\x22\xb8\x54\xf1\x25\xea\xca\x91\xef\x5c\x44\x43\x7b\x09\x06\x7c\x7e\x88\xfc\x72\x1e\xb9\x48\xd1\xde\x26\x00\x9e\x0d\x61\x78\x7e\x7d\x9a\x35\x9b\xee\xd3\x4c\xf8\x59\x13\x1c\x0d\x21\x4f\x26\x88\x4c\xcc\x93\x7c\x54\x6f\x06\xd5\x3a\x15\xbf\x14\x85\x26\x47\x74\x03\x2b\x93\xa5\x62\x02\x55\x81\x79\xe4\x09\xf9\xc1\x19\x8d\x17\x70\x03\xf7\x4c\xa5\x38\x6a\xdb\xd1\x54\x8b\xa1\x45\x31\xc7\xb5\xa2\x4b\x84\x79\x3e\xad\xc2\xcb\x10\x48\x85\x5c\xc2\x38\x26\x96\xdd\x44\x43\xff\x49\x1b\x36\x8c\x13\x57\x1d\xbb\x58\x3d\xb8\x69\x3b\x86\xe1\x34\xd7\xa9\xed\x32\x35\x24\x1e\x9c\xda\xc2\x16\x44\x0a\x46\x20\xdc\xa4\xd9\xe4\xe3\x0a\x5a\xb6\xd9\xa4\x28\x76\x92\x66\xf3\x06\x86\x1a\xed\x10\x72\xe3\xf2\x58\xbe\x53\x86\xad\x96\x6a\x7a\xd8\x8a\x2b\x36\x09\x61\x60\x58\x27\x5f\x5d\x5f\x67\x34\xcf\x4f\xa4\xdc\x5e\x9c\x26\x1f\xc2\x2c\x89\x93\xcb\x7c\xcb\x2b\xae\x94\x0b\xb4\x05\x04\xab\xe2\x82\x06\xb8\xc6\x8d\x80\x17\x34\x9c\x16\xb5\xed\x16\x96\x1c\xe8\x1d\x8d\xe4\x99\xe9\x4a\x40\x1e\x2f\x3b\x84\x93\xe1\x1a\xe2\x4b\xf0\x87\x91\xf1\xa3\x60\x33\x56\x90\xcc\x14\xf1\xd3\x5d\xb3\x0f\x70\x4c\xc6\x13\x40\x66\xb8\xf9\xf6\x16\xb6\x5a\x50\x53\x4a\x1c\x07\x3b\x82\xe0\x32\x88\xbc\x92\x91\x10\x4e\xd0\x5d\xda\x22\xce\x79\x32\x76\x5a\x61\xcb\x99\x34\x1c\xcd\xa1\x58\x81\x8f\x44\x9d\xd5\x9b\xa0\xb4\x45\x56\x2d\x87\xf7\xda\x8c\x1e\xaf\x26\xa0\xcb\x77\x9c\x92\x54\x4b\x39\xb6\xbb\x48\x68\x5b\x19\x7c\x8e\x71\x38\x39\x8e\x05\x61\x96\xa2\xf5\x5b\x97\xb6\x9c\xf3\xe4\x89\x4a\xe5\x60\xab\x66\x94\x00\x9a\x38\x6c\x63\x24\x3d\xd3\x3a\x88\x17\x73\x5a\xae\xf6\x97\x88\x3a\x39\x0b\x67\x9f\xe1\x84\xd5\x72\x0d\x49\xbd\x6b\xfa\x35\x4e\x90\x6d\xb0\x31\x41\x77\x7f\x79\x40\xe0\x9d\x76\x94\x8d\xe9\xa4\x28\xdc\xb7\xae\x0a\x90\x1d\xd3\xfa\xf2\xe7\x6d\x4b\xfe\xb9\xb6\x7b\x54\xef\x26\xe2\x2f\x10\xc4\xef\xf4\xc2\xc6\x89\xa0\x85\xc5\xad\x81\x11\x20\x7c\x3f\x83\xb7\xd6\xab\x38\x07\x52\x14\xee\xa6\x63\xe7\xc2\x69\xf1\x90\xb8\x22\x5f\x88\xb7\x60\x42\xd5\x76\x19\xde\xbe\x9d\x03\xb5\xf1\x36\x8b\x40\x47\x86\x93\x38\xaf\x69\x12\x83\xc9\x02\x7a\xd3\xf8\x8d\x5e\x3e\xfb\x7a\xed\xba\xf7\xe5\xef\xe4\xe9\x2a\x9b\x51\xc9\x7c\xb8\x48\x37\x93\x50\xcb\x29\x9c\xd6\xde\x79\x74\xe7\xe3\xee\x7a\x4f\xc5\x56\xcc\xcc\xa9\x13\x37\x25\x33\x60\xff\xa3\xb2\x8f\x06\xa1\x9d\x09\xc7\xa2\xcd\x66\x26\xf4\xff\x87\x6e\xca\xfb\x7b\xb7\xc6\x33\xf8\xc2\x90\xac\x02\x90\x45\xdc\xb7\x77\x84\x4e\x7f\xaa\x08\xf5\x20\xa2\x0b\xca\x68\x23\x05\xa2\xdd\x40\xe7\x02\x46\xbc\xd9\xdc\x51\x75\xea\x2a\x45\x55\xd0\x3a\x28\x55\x8a\xac\x54\x2c\xd8\xe9\x4d\x5e\x71\x74\xac\x71\xfc\xc3\xd6\x2f\x95\x43\x13\x2e\x68\x12\x85\x62\x9a\xd9\x51\x9d\x3c\x5c\xd2\x67\x8b\x5c\x1b\xf2\xf9\xec\x66\x68\x98\x69\xf6\xaf\xa5\x40\xf5\xb4\xdc\xfd\x05\x94\x45\x9a\x5c\xf2\x03\x4d\xd0\x83\x63\x3a\xc1\xc9\x96\x14\xdb\x94\xcf\xc4\xb0\x86\xba\x93\x0c\x99\x34\x58\xb4\x09\x8f\x24\xa5\x91\xba\xd1\x68\x34\x2a\x46\xa3\xe2\xe4\xa4\x88\xa2\x28\xaa\x37\x4f\x57\xda\x08\x52\x8f\x13\x9b\x40\x91\x69\xbf\xcd\x36\xe7\x73\x21\x09\x5c\x9e\xdf\x32\xd0\x56\xc9\x26\x27\xa2\x6e\x9c\xf3\x30\x72\x30\xdd\xb4\x9b\x56\xca\x4f\x8b\x72\x19\x5d\x84\x2c\xfe\x42\x39\xb9\x60\x08\x36\x7e\x76\x53\x34\x4c\x75\x91\x20\x2d\x7b\xfd\x30\xda\x8b\x2d\xc8\x27\x96\x28\xec\x26\x54\xfa\xd8\x1b\x3a\x42\x43\xdf\x09\x9c\xeb\x30\x67\x8e\x51\x4f\x82\x86\x89\xcb\x50\x60\xe0\xf5\x61\xbe\x17\x5b\xd7\xd1\x57\x66\x0d\xd4\xd6\xed\x3c\x7e\xce\x29\x29\xc2\x7f\x5b\x4e\xee\xc0\x17\x9b\x98\x5c\x81\x27\x06\x57\x60\x43\xdd\x96\x0e\x9f\x8b\x59\xc8\xff\xd8\x90\x27\xea\x75\xd8\xb0\xb5\x54\xee\x49\x38\x23\x77\xeb\xba\x95\xe4\x32\xf2\xc4\x4d\x10\x2c\x5f\x68\x89\x79\x4f\xce\x2c\x03\x40\xbc\x53\xaf\x61\x7b\x65\x96\x59\x1f\x35\xa7\xc7\xa5\x4c\x89\xda\xfd\xc4\x21\x73\xb7\x4a\x62\x16\x24\xa5\x84\xc2\x6b\x8e\x84\xb5\x69\x64\xe2\x9e\x27\x3a\x55\xaa\x5d\xca\xe3\xda\x66\xe3\xfe\xb4\xd7\xac\xe3\xb4\x4a\xb2\x07\x71\xa2\xb5\xad\xa9\x59\xc9\x02\xa7\x8f\x89\x37\x4c\x86\x4e\xcb\x09\x1c\x27\x70\xda\x0e\x12\x45\xae\xd3\x1b\xd7\xf7\xb0\x96\xc5\xf5\x70\x8a\x90\xde\xf5\x5d\xd4\xc9\x57\xd3\x9c\x65\xae\x8f\x5a\x99\x69\x7a\xa7\x32\x57\xb3\xe3\x1a\x45\x69\xbe\x45\xd5\x70\xe9\xe1\x28\xc8\x26\xa0\x6f\x41\x9b\x4d\xf7\x27\x40\x70\x8a\x30\x13\x01\x36\xf6\x26\x93\x9a\x72\x7f\xba\x69\xfd\xc1\x8a\xd9\xd8\xe7\x9b\x6b\x77\xc2\x41\x26\x02\x4a\x52\x07\x02\x26\xbf\xb8\x07\x9c\x84\x2c\x74\x51\x47\x2e\xcb\xad\xa0\xa9\x65\x4b\xe5\x27\x6b\xdf\x90\xca\x41\xe7\xe3\xf1\x79\x7e\x7e\x3a\xd9\x43\x43\xc3\x40\xe6\x7f\xce\xc7\xc5\xf9\xe4\xc1\xde\x25\x76\x1c\x61\xa4\x45\x26\x9c\x9f\x8b\x38\xd3\xd4\x8e\x35\x6b\x15\xe0\xf7\x99\x38\x08\x18\xf1\x70\x42\xf4\x80\xb2\x47\x09\x08\x38\xfd\x94\x8d\xf9\xf4\x9d\x0c\x61\x12\xab\x50\x20\x42\x30\xb3\xd1\x86\xb7\x29\xb9\x46\x39\x05\xe7\x08\x6a\x2b\x25\xde\x71\xfa\x28\x39\x4e\x5b\x2d\x14\xb7\xc8\x67\x37\x1b\xa7\x13\x34\xe4\xbf\x6a\x47\xa7\x28\xe0\x41\x6d\x66\x78\x6d\x59\xea\xb1\x26\xae\xbe\xc2\x0c\x5d\x46\x3e\xf2\xb2\x16\xb6\x11\xfe\x15\x9a\x07\xbf\x45\xf1\x6f\x7e\x09\x86\x6f\x7e\xcd\x0e\xec\xbc\x1d\x63\x5f\x75\x37\xad\xfb\xd4\xb2\x6e\x59\xc7\xde\xb9\xe1\x66\x22\xbc\xcc\x66\xe4\x00\xfa\xfb\x67\xd6\x59\x84\x39\x03\x6b\x98\xfc\x16\xf0\x98\x78\xcd\xe6\x9f\x99\x90\x2c\xa4\xe8\x18\x51\x52\x8e\xd5\x9f\x19\x27\xb6\xec\x22\x38\x6b\x13\xbf\xe6\x06\xf8\x4d\x2d\xc9\x30\xe5\xd3\x59\x90\x3f\x81\xad\x17\xa3\x4a\x35\x9b\xc9\x30\x09\x4c\x7f\xb9\x2f\x2d\x44\x2e\xdc\x30\xc5\x14\x0d\x01\x54\x79\xd9\xc6\xe5\x25\x36\x30\xc8\xa1\x17\xb6\x13\xa9\x17\x06\x42\x1e\xb8\x65\x67\x9c\xf3\x73\x87\xcf\x3b\x73\x26\xba\xe7\x63\x54\xf0\x3f\x13\x54\x9c\x8f\xdd\xf1\x7f\xce\x27\xe7\xe3\xc9\x2e\x3a\x9f\xf0\xd8\x0e\xb2\x4e\xcc\xd2\x36\x4f\x79\x14\x27\x45\x91\x15\x45\xba\x36\x1b\xf0\xc0\x5a\x24\xba\xb6\x71\xfb\x7c\xef\xfc\xfc\x3f\x0f\x76\x5b\xc3\x8e\x8b\x8a\xf1\xf9\xe4\x6e\x3d\xe1\x4b\xe1\xfc\xfc\x41\xd3\x5c\x0e\xbf\xd8\x9c\x56\xc1\x92\xae\x39\x18\x9a\x4d\x97\x12\x7e\x38\xe3\x50\x5c\x1e\x33\x53\x58\x91\xd3\xd6\x20\xbd\xe1\x82\xd4\x41\x85\x51\xcb\xef\xf8\xab\x74\xcc\xb7\xfe\x09\xc9\x36\x4c\x49\xfc\x62\x19\xd9\xd0\xdd\xee\x5c\xdc\x10\xfe\x03\x42\x1f\x0c\x64\x2d\x2f\x6e\x20\xcd\xdc\x24\x7e\xd7\xf6\x6d\x05\x9d\xd7\x6c\x2e\xdc\x15\x1f\xcf\x66\x73\x25\x06\x14\x27\x9d\x8b\x10\x27\xd6\x21\xfd\xc9\xc4\x1a\x75\x29\x1a\xee\xf7\xfb\xc1\x7e\xff\xc0\xd6\x46\x2f\xf3\x3c\xec\x11\xc2\x27\x2f\x7d\xe8\x7b\xfc\x2e\xed\x15\x05\x7d\xd8\xf3\x3c\x1e\x6b\x69\x7e\x9a\x60\x61\x03\xbc\xa5\x61\xe6\x9a\x23\x06\x7a\x4d\xa5\x6c\xa7\xee\x79\x56\x61\x25\x66\x43\x37\x55\xb2\x49\x20\x24\xba\xc9\x7e\xe0\x0b\x06\xd8\x10\x41\xa6\xa5\x98\xd6\x55\x8d\xbe\xda\x1d\x83\x76\x2e\xa2\xb1\x73\x49\x99\xd3\xd2\x4c\xa1\xa1\xf3\xfe\xec\x29\x3f\xb1\x50\x8b\x4d\x04\xb3\xa4\xaa\x1a\x25\x5e\x87\x34\x18\x6d\x2a\x0c\x4e\x7a\xe7\xf9\x6a\xb1\xf8\x48\x43\xf1\xcc\xd0\x6c\x72\x0c\xaa\xee\x37\x9b\x42\x96\x7d\xc9\x6f\x10\xbc\x60\xf7\x08\xc2\x42\x30\x45\x36\x27\xbf\xa7\x39\x09\xd6\x85\x71\x4e\xcd\x20\x6c\x66\xdf\x2d\x6e\x8e\x40\x6c\x0d\x2d\xe1\x14\x11\xbf\x41\xf1\x93\x92\x4e\xe4\x3d\x8a\x72\x0c\xd8\x36\x0a\xc3\xd2\x3e\xc1\xe6\x55\x9b\xa2\x3b\x4a\x38\x45\x54\xd2\x28\xe4\xbd\xb0\x8d\xe0\x1d\x67\xa0\x23\xa0\x4d\x61\x8a\x8b\xda\x38\x9b\x74\x38\xe1\x32\xe1\x57\x0c\x1d\x40\xda\x76\xc9\x46\xc3\x90\x79\xa4\xf3\x99\x5d\x12\x38\x56\x3b\x57\xd6\xb0\xbb\xf4\x21\x6b\x31\xf4\x90\xd9\xf2\xff\xb2\x23\x92\x51\x8d\x8a\x42\x7c\xe9\x17\xa7\xc6\x9b\xf0\x8d\x34\x92\xb0\xa2\x2e\xc3\x7e\xb7\xe4\xc4\xb5\x88\xcb\xda\x09\xda\xf3\xbb\xd8\x17\xa6\x86\x61\x09\x75\x8f\x82\xee\x61\xb0\xef\xb7\x93\x87\x83\x87\x5d\xe3\xfd\xa5\x32\x0d\x39\x85\x0b\x74\x31\x0c\x60\x2e\x10\xae\x42\x63\x3d\xae\x93\xc0\x8a\xb7\xca\x74\xe2\x5c\x1c\x3a\x45\x71\x93\x22\x71\x9e\x30\x34\x74\xe6\x10\x29\x0c\x60\x24\x51\xb8\x48\x13\xea\x4c\x4c\x90\xf7\x55\x6d\xd5\xd7\x29\x21\x18\x0f\x41\xf7\xf7\xe4\xf4\x2a\xcd\x98\x0d\x13\xa2\xb6\xf5\x49\x24\xde\xa4\x7f\xbb\xfd\xdb\x2a\xdc\xac\xa5\xb6\x3b\x73\x5a\xe1\xf6\xe1\x18\x54\x79\x39\xdd\xcf\x0f\x3e\xf3\x5e\xa1\xed\x26\x4b\xa8\x70\xc7\x07\x8e\xee\x46\x2c\xd8\x40\xd4\x57\xbb\x51\x5d\x42\xce\xdb\x54\x49\x11\x0b\xc5\xef\x1e\xb7\x5a\x19\x8a\xc9\xdc\x1d\x77\xe9\x3e\xce\x26\x68\x4b\x99\x71\x36\x21\xf2\x71\x5d\x77\xd3\x8d\xe1\xd0\xad\xe9\x40\x7d\x8b\x2a\x30\xb6\x17\xd7\x8f\x0a\x43\x67\x34\x1a\x09\x6f\x67\x6e\x4a\xa6\x69\x29\x06\xb6\xd9\x42\x1c\x22\x0c\xaa\x31\xe9\x30\x05\x3e\x04\x0a\x36\xca\x54\x1a\x54\x53\xa4\xac\x10\x12\x7e\xa4\x56\x34\x4c\xff\x4e\x4d\xf5\xf0\x37\xcb\xd5\x82\xff\x7e\xe7\x8d\x57\xc9\xcd\x89\x77\xac\x44\x45\xcc\x99\xf4\xec\x6b\x38\xd3\x36\x5b\xe6\xb4\xac\x0e\x8b\xe2\xc7\xb5\xf3\x4f\x73\xf4\xff\xdb\x73\x12\x95\x93\x32\xd3\x9c\x56\x63\x62\x26\xcd\xe6\xce\xb6\x79\xa5\xcc\x08\xd7\x4d\x39\x83\x9e\x74\xfe\xe3\xb4\xcc\x19\x98\x5a\x54\xa3\xd3\x01\x2a\xb2\xe5\x3c\x70\xb0\x13\x3b\xf7\x2d\x85\xed\x30\xc5\xca\xb8\x1f\x30\xc2\xca\x51\xba\x89\x35\x60\xd1\xbb\x31\xa9\x6d\x64\xcb\x29\xb6\xd6\x83\xeb\x40\x99\x4d\x8c\xab\x2d\x51\xad\x68\x36\xf9\x7c\x1f\x49\x12\x62\x1b\x06\xd5\x0d\xa2\x7c\x2e\x8c\xe7\xae\x2c\x6b\x15\xad\xc1\x54\x6d\xd9\x9d\x44\x95\x58\xde\x9f\xd9\x7c\x79\xa6\x55\x53\x68\x06\x69\x64\x19\xa5\xd8\xa4\xa7\x19\x8a\xe7\xfc\xda\x1a\xb5\x1e\xec\xa9\xed\x1f\x31\x72\xc3\x0f\x75\x45\x00\x30\x52\xb9\xa4\x19\x4d\xe3\x97\xb9\x9d\xd0\x38\xae\x35\x83\x30\x31\x9f\x6c\x04\x79\xc5\x09\x26\x45\x89\x81\xa3\xac\xef\xd0\x4b\x0e\x20\xcc\x99\x08\x1f\x1d\xc6\x81\x71\x45\x37\x1f\xbc\x87\xee\xb5\x21\x41\x5f\x43\xa3\xee\x78\x55\x22\x55\xc2\x37\x36\x84\xa5\x41\x38\xe7\x16\xe1\x8c\xcb\x09\x66\x51\xd1\xb7\x74\x83\xe9\x57\xdd\x38\x86\xae\xdc\x2c\x1c\x99\xf4\x1b\xbd\xa4\x5f\x1d\x54\x14\x53\x63\x2b\x41\x98\x6e\x1e\xa0\xa7\x70\x05\x84\xfc\x9b\x67\x29\x44\xa3\xa0\x0a\xbd\x4c\x73\x50\x65\x0b\x2a\x93\xc8\xb3\xd4\x5e\x1c\xd5\xea\x9a\xcd\xbf\xd7\x1c\xe3\x75\xf4\x7f\x0d\x33\x5b\x5a\xb1\x05\x1f\xf5\xa8\x10\x58\xf8\x5a\xc5\xc2\x3d\x08\xb8\xb7\x56\xe3\xe1\x95\xd6\xa8\x0a\x96\xac\x0a\xf1\x3a\xa9\xae\xa4\xeb\x92\x01\x34\x9e\xe0\x94\xff\xc4\x8a\xbf\xc8\x88\x77\xcc\xf8\x96\xcf\x5a\x2d\x94\xa8\xed\x9e\x4d\xb4\x69\xef\x8d\x2d\x2f\xe1\x1b\x18\xc2\xe9\x46\xb2\x4a\x89\xff\x42\x8a\x09\x52\xbc\x9f\x0a\xee\x25\xe5\x15\xa8\xaf\x58\x7f\x59\xad\x05\x7e\xcf\x03\xc1\x8e\xc2\xa9\x08\xa4\xc0\x9b\x2a\x3b\xd6\xed\x41\xd6\x58\xa4\xc6\x90\xba\x39\x40\xd6\x69\xe2\x3a\xad\x58\x3e\xca\x15\x7c\x7b\x40\xd6\x61\xb4\x31\xc5\x37\xa0\x6d\x1b\xea\x8d\x5a\xd2\x1f\xaa\xe5\x3e\x08\x59\x0d\x04\xe3\x55\x9d\x96\x8c\x15\x4e\xeb\x2a\xd3\x40\xfa\xe1\xdf\x4e\xd5\x17\x9e\x47\xbe\xc7\xef\xfe\xc0\xbe\xd2\x4f\xe8\xab\xce\x25\x65\xea\xca\x0b\x57\xdc\x55\x27\x37\x62\x28\xc2\x2b\xe3\x65\xde\xd0\xb9\xd6\xd5\xf1\x9f\xce\xfb\xb3\xa7\xf5\x12\x93\xdf\xa9\x1f\x24\x0c\xdf\x9f\x3d\xb5\x9a\x00\xf6\x94\xcd\x48\x6a\xb1\xb2\x2f\x6c\xc2\x8b\x0c\x5a\xac\xad\x64\x5c\xdb\xee\xa0\xc5\x5b\x89\x3d\x9c\x21\x09\xfb\x24\xbc\x75\x51\x9b\xa1\x87\x83\x56\xd6\xf6\x8d\x67\x78\xba\x61\x3d\x1a\x87\x78\x45\xdc\x41\x2b\x69\x67\xe8\xe1\x00\xe7\x04\xea\xe2\xe9\x78\x41\xfc\xd6\x60\xd7\x65\x6d\x1f\xb5\x56\xad\x5c\x4b\xc9\x3d\x22\xde\xd0\x8d\x09\x6d\xfb\x38\x24\x9f\xdc\x18\xb5\x16\x28\x58\x3c\xfe\xc4\x2f\x93\x3c\xbe\xc5\xe3\x17\xed\x4f\xc0\xb0\xe4\x11\x3c\x88\xf0\x1d\x3f\x19\x82\x18\xc3\x93\x24\xef\x64\x10\x1a\xa7\xf2\xb3\x4d\xda\x12\x9a\xa2\xcf\x13\x0c\xae\x8a\x0c\x01\x0a\x38\x27\x25\x28\x17\xb5\xe3\xb6\x8f\xf6\x06\xa8\xa5\xf9\x8e\xe1\x23\x9f\xd3\xfa\x0a\x42\xdb\xc7\x19\x09\x5b\x5f\xa9\x2b\x8c\xd3\xa0\x20\x7c\xfc\xb5\x52\xc1\xd0\xcd\x48\xd8\xae\xc6\xe2\x12\x48\xcb\x87\xbb\x80\x4e\xce\x48\x88\xf0\xdd\x0d\xa5\x9f\x83\x0c\x43\xff\x52\xa3\x4f\x5f\x2b\xc3\xa6\x87\x11\xa7\xf0\xdd\xf2\x05\x39\x2c\x6f\xfc\x1c\x61\xed\xac\x95\xa2\xbd\x81\xf1\x4a\x6d\x1e\x0b\x02\x49\xb0\xb0\x78\x9d\x9d\x28\xbd\xb1\x83\xb7\x08\xa4\xcd\x8c\x07\x68\x5a\x7d\x8a\x53\x05\x8d\xa7\xdc\x6d\x79\x6e\x8d\x37\x52\x5a\x79\xa4\xb4\x28\x1c\x9e\x5f\x9c\x3d\xc7\xb6\x48\x9f\x12\xb8\x0e\xa3\xc8\x1d\xec\xba\xb4\xcd\x10\x76\x22\x73\x6d\xff\x61\x00\x7e\x26\x09\x0d\x1f\xf7\x04\xcc\xbf\x0c\xed\xa9\x75\x80\x28\xfa\x6d\xc7\xd4\x92\x09\x14\xef\x64\x08\x4a\x17\x52\x38\x4f\x92\x67\x14\xe1\x1a\x99\xdb\x21\x95\x37\x2d\xed\xf2\x99\xda\xbe\xab\x47\xb5\xd5\x9a\x10\x36\x2b\x7a\x38\x28\x8a\x41\xd9\x18\x5e\x81\x69\xee\xf3\xb7\x6d\x3c\x0b\x05\x47\xf1\x0f\x54\x78\x0c\xcb\xa1\xe4\x55\xe8\x78\x3b\xa8\x59\x30\xdf\xe7\x5e\x48\x70\xdf\xab\xb8\x52\x5f\x2d\xcb\xe2\x8d\xc5\xba\xab\x00\x50\xcc\x96\xda\xe6\x43\xa2\xf1\x4c\x7b\x1f\xa0\x51\x9c\x6c\x03\x33\x8a\x0d\x69\xa9\x57\x7f\x8b\x81\x62\x0d\xa0\xc1\x42\xb1\xe2\x2b\xf7\xd2\x0f\xf5\x69\xcb\x38\xd9\x48\x11\x57\xd6\x81\xcd\x46\xf1\x27\x08\xfa\x93\xa1\x2d\x25\x35\x27\xc4\xe8\xe8\x77\xb9\x29\x9b\x4d\xdb\x00\xf3\x63\x6c\x99\x9b\x7b\x61\xfc\x10\x5b\x26\x8a\xa2\x68\x0b\x5f\xc6\x82\x5e\xc7\x61\xd9\x5e\x74\xb3\x87\x3f\xc2\xd4\xa9\x22\x77\x4b\x9d\xd1\x7d\x6c\x9d\x6a\xa3\xd1\x30\xdd\xc2\xa0\xa9\x6d\x63\x2d\x8f\xe6\x07\xdb\xf5\x5d\x6e\x53\x5d\x65\x3f\xde\x8b\xbf\xd3\xac\x7a\xe8\x35\x05\xff\x9b\x4d\xf9\x91\xf1\x36\x64\x29\xee\xe3\x63\x59\xf5\x59\x9c\xac\x57\xf7\x72\xb2\xac\x72\xfa\xf6\xb4\x65\x73\xa8\xdb\x00\xbe\xbf\x6d\xcc\x57\x8b\x45\x35\x09\xe9\x8d\x63\x83\xd5\x65\x6c\x1e\x25\xc7\x6b\x03\x86\xc9\xf3\xaa\x4b\xac\xe5\x50\xe9\x25\x5e\xc3\x9e\x3a\x3f\xef\x0c\xb7\xf0\xbe\xfe\x12\xec\xad\xfc\xaf\xfa\x0a\xea\x76\xc6\xfb\xc0\xf3\x8d\xf2\xfb\xc0\xb7\xed\x74\x36\x7f\xcd\x46\x87\xc1\x61\xab\xe9\x4b\x4d\xaa\x6e\xca\xb6\x6d\xf5\x07\x39\x70\x7a\x6f\x52\x4c\xb1\xba\xf1\xdc\xca\x83\xab\x16\xae\x1d\xb1\x7b\x4a\x5b\x85\x6b\x46\xe3\x3b\x0c\xbc\x6a\xa7\xef\x63\xe1\x3d\xd7\x66\xca\xa0\xec\x06\xf7\x4e\xf1\xb8\x78\x6a\xa0\x5e\xc4\x94\x74\x9d\x60\x9b\x89\xef\xc8\xbc\x30\x05\x46\x1c\x44\x54\x55\x12\x5c\x4a\x9e\x6a\x0a\xdc\x96\xd9\xd0\x74\x29\x6d\x33\xa0\x49\x51\x60\x50\x2d\xaf\xff\x5e\x7b\xc5\xaa\x04\x7a\xa6\x35\x68\x6f\x92\xdd\x9a\x96\x47\x0f\x07\xf7\x90\xca\xaa\x49\x86\x74\xd6\x5f\x6d\x8f\x96\x8a\xd6\xb4\xfa\xa8\x1e\x11\xe6\xd3\x26\xb4\xbc\xec\xc2\xc3\x01\x6f\x54\x7b\xa0\x8d\x03\x95\x49\x45\x61\xdc\x78\xfe\xdc\x64\x84\x6d\xee\xc9\x06\x2b\x4c\x25\x6a\xc6\xd5\xbf\x6b\x99\x61\x7a\x29\x6e\x30\xa6\x2c\x00\x26\x43\x6c\x03\xb2\x5b\x53\x80\xfc\x91\x56\xd7\x6d\x2d\x5b\xec\x47\xeb\x37\x04\xc8\xfe\x97\x11\x51\xcf\xa2\xb4\x92\xb7\xa2\xa4\x96\x6b\xba\x99\x48\x9e\x6e\x22\x67\x2b\xe7\xf4\xaf\x37\xcc\x10\x3a\xfb\xdf\xc5\xd5\x28\x4e\xb6\x37\x68\x14\x27\x5b\xf1\xa4\xd2\x6a\xb0\xa4\x92\xc8\x68\x03\x47\x76\x75\x9b\x18\xfa\xb1\xe6\x18\xc2\x73\x7f\x8f\xc9\x2a\x2f\x46\xe3\x09\x5e\xf1\x1f\xf0\x92\xb7\xb0\xf9\xad\x03\x9b\xdd\xaa\x48\x0e\xc6\xc9\x92\x8d\x33\x0e\xb8\xa3\x38\xad\xbb\x69\x88\xa4\xb8\x72\x81\x10\xb1\xa1\x60\xb6\x66\x08\xaf\x94\x76\x02\xce\x95\xbb\x46\xbc\xd0\xa9\x0b\x9d\xba\x50\xa9\xd0\xd2\x50\x73\x5d\x57\xfa\x2b\xd7\x5f\x8b\x0a\x4f\x56\xf4\x68\x25\xf8\xac\x2b\x60\xc9\xe6\x22\x90\x43\x60\x21\x02\x0b\x83\x03\x6b\xef\x07\x55\xde\xe6\x62\x3b\x77\xb4\x66\xc1\xd4\x40\xdc\x9c\x1c\x3f\x9a\xf5\x3e\x96\x6b\xfe\x83\xcd\xba\x0f\xc6\xea\xfb\x30\xec\xa9\xba\x01\x21\xbc\x97\xf1\xfb\xa1\xca\x99\xba\x4a\x57\x59\xee\xa2\x87\x7e\xb7\x28\x7c\x43\x56\xe5\xe3\x96\x8c\x45\xd1\xed\x19\xe2\x87\x72\xe6\xff\x0a\xdc\x52\x4b\x3f\x7e\xab\xec\xab\xd2\xb3\x74\x4d\xb0\xf2\x75\x2b\x4e\x56\x8c\x42\xd0\x76\x26\x58\x5d\x60\x17\x0a\x08\x6c\x45\x86\x14\x22\x35\x0d\x9e\x72\xfa\xc9\xa5\x2d\x75\x65\xd6\x97\xe5\xd2\x71\xaf\x21\x3e\x48\x2b\xa6\x06\xe9\x63\xdf\x1f\x26\x43\xe7\x7a\xe9\x04\xce\xbb\x91\x13\x24\x43\x27\xe4\xdf\x4f\x46\x8e\x21\x35\x68\x73\x4f\x2a\xa2\xe2\x25\x65\x79\x01\x36\xc3\x91\xc9\x8f\xfa\x99\x5a\x36\x05\xd5\xf6\x40\xbc\xe3\xb8\x94\x18\x14\x19\x52\xc2\xeb\x19\xc7\x13\x64\x98\x25\xc5\x0c\x4c\x3b\x83\x2a\x5a\x22\x33\x80\xb3\x88\x84\x24\x43\xd3\xc5\x3d\x5c\xd6\x8e\xd9\x63\xef\x58\x78\x27\x21\xbf\x53\xb7\xd4\x5b\x62\x4a\xcd\xa8\xed\xa0\x0d\x22\x54\x49\x6b\x3d\xe6\x74\xe8\x85\x9b\xe2\x04\xef\x78\xe8\x31\x61\x6d\x1f\x09\x47\x01\xac\xdd\x5e\xc7\xad\x96\xa2\x40\x7e\x33\xb4\x40\x7e\xa7\xae\x96\xce\x87\x26\x70\xf2\xe8\x49\x3a\x66\x93\x2d\x5a\x69\xb4\xd9\xa4\xe0\x19\x4c\x18\x5d\x40\x2c\xbb\xbd\x4b\xc8\x6f\x69\xe7\x22\x9c\x4e\xb3\xe3\x9d\x0d\x5b\x15\x5a\x21\xca\xfd\x97\x34\xa7\x39\x8f\x93\xa8\xb1\x04\x8b\x39\x0d\xa7\xb3\x27\x26\x9e\xf3\x2f\xbe\xaf\x64\xe9\x4d\x83\x76\x66\x69\x44\x89\x33\x7a\x7b\xf2\xfe\xf5\xb3\x8b\x37\x6f\xcf\x2e\x9e\xbf\x7d\xff\xe6\xc4\x01\xab\x45\xf8\x13\x78\xb1\x9c\x81\x1c\x34\x45\x77\xaa\x53\xd0\x66\x43\x66\xd2\x7a\xee\x2e\xa5\x6b\xdd\x84\xc4\x2e\x43\xc3\x84\xef\x7d\x01\x05\x75\x74\x84\x93\xe1\x6f\x29\x49\x82\xbf\xaf\x86\x27\x78\x3d\x0d\xa7\x45\x5b\x0e\x78\x39\x9c\xa7\xab\x24\xea\x34\x4e\xe2\xa8\x71\x9b\xae\x1a\xf3\x34\xbb\xa4\xac\xc1\xd2\xc6\x22\x0d\xa3\x46\xcc\x86\xfc\xf6\xa2\xb0\x66\xc8\x71\x32\x2d\xec\x26\x28\x4f\x62\x88\xbb\xbe\x4a\x85\xe1\x5f\x5e\x84\x50\xa9\xa6\xfc\x24\x1d\xd3\x09\xfa\xea\x3a\xa2\xe5\xa2\x21\x6f\xbf\xd0\x2c\x13\x26\x8b\x57\x39\x6d\x2c\x41\x6b\x53\xbe\x76\x8b\x1c\xae\xc0\x3a\xf8\x19\x6e\x08\x6d\x2b\xc4\x9b\x37\x03\x3f\x78\x8d\x30\x69\xd0\xaf\x71\xce\xe2\xe4\xb2\x21\x72\x76\x14\x14\xb3\x9e\x5a\x28\xf9\x55\xba\x5a\x44\x8d\x34\x59\xdc\x36\xa6\xb4\xb1\xca\x69\xc4\xfb\xdf\x00\x53\x23\x1c\x60\x08\x66\x56\x45\xd1\xc6\x29\xa5\x8d\x2b\xc6\xae\x83\xbd\x3d\x51\xc1\x1f\x79\x67\x96\x2e\xf7\x2e\x57\x71\x44\xf3\xbd\xff\xb3\x27\xb5\x1a\xf3\x3d\x51\x71\x5b\x94\xdb\x03\x90\xcb\x34\xa3\x8d\x38\x99\xa7\x1d\x87\x1f\xbd\x80\x0b\xa5\x3c\xa6\x25\x13\x94\x1e\x9d\xb0\xc5\x22\x1a\x8e\x74\x3c\x9f\x37\x56\xd2\x04\x65\x35\x91\x16\xd4\x52\x1b\xdf\x4d\xf8\x42\xad\xc0\xd6\x2b\xf4\xf9\x06\x98\xa2\x70\x37\x23\x81\x9f\xb1\x19\x2d\xd5\x45\x84\x49\x37\x69\x1d\x35\x60\x6b\xa1\x9f\x7e\x9c\x91\x44\xb5\xc9\x58\x02\x54\xdc\x9a\xcf\xdc\x53\x37\x03\xe1\x89\xe7\x29\x58\x38\x87\x3f\xf5\x06\xdc\x98\x2b\x2c\x4c\x63\x2a\x8d\xcc\xa2\x35\x2c\x32\x8a\x30\x00\x54\xd0\xa5\x16\x1a\xc4\x61\xdb\x8f\x39\xab\xce\x5a\x53\x29\x9d\x4f\x5b\xd8\xce\xa8\xd2\xac\x17\xda\x1f\x99\x6a\x3e\xdf\x24\xc1\x99\x2b\xec\x8a\xd0\x7a\xfe\x69\x21\x43\x0c\x2d\x96\x3d\x14\xcd\x13\xb2\xa7\xc6\x2a\xe0\xab\xbb\x0c\x59\xe5\x87\xa2\xe4\x66\x42\x60\x95\x37\xfb\xa8\x2f\x75\x02\x0b\xa5\x44\x34\xd3\x4f\x37\x60\x81\x80\x6f\x86\x52\xf6\xde\xf8\x14\x0b\x1b\xe4\xd0\x2b\x71\x08\xef\x68\x03\xd9\xbf\xa5\x82\x1b\xc0\x2f\xfc\x60\x7e\x48\xe0\x49\xcb\xce\x1e\x83\x14\xbb\x1a\x81\x9f\x6d\x67\xc6\x99\x61\xc7\xe6\xb7\xcc\x7d\x92\x9a\x36\x60\x98\xa1\x38\xc2\x5b\x10\xea\x9b\x72\xb3\xd9\xee\x12\x02\x56\x23\xb4\x81\x07\xd0\x7c\x4a\xc6\x8b\x74\xf2\xc8\x2b\x0a\xf8\xe0\x27\xeb\x22\x0d\x92\xf1\x2c\x9d\x3c\xf2\x79\xe4\x2c\x9d\x3c\xce\xa9\x9b\x8c\xf3\x74\x82\x21\x0f\x1a\xce\x78\x8e\xb9\x2a\x36\x4f\x27\x8f\xbb\x3d\x4e\x7d\x10\x42\x20\xd8\x6c\xba\xde\x0e\xff\xbe\x4e\x27\x45\x21\x3e\xaf\xca\xcf\x25\x87\x31\xe7\x30\xae\x15\x8c\xeb\x74\xf2\xf8\xe0\x68\x78\xcd\x23\xaf\x54\xe4\x95\x88\xbc\xe2\x91\x4b\x15\xb9\x4c\x27\x8f\x8f\x8e\x8e\x86\xcb\x34\x68\xfb\x18\xfa\x73\xa1\x3a\x74\xa2\x9e\x48\x79\xcf\x1e\xe5\x69\x51\xb0\xc7\xb3\x54\x68\x78\xcd\x52\x54\xc9\xfd\x81\xd2\xcf\xb9\x74\xd0\xc2\x20\xcf\x6d\x6d\x1e\x30\x6d\x61\xe4\xfa\xa2\x72\xa9\x4c\x84\x59\x12\x48\x31\xab\xd0\x2b\x8a\xc3\xa0\xa6\x1d\x1b\xb2\xc0\x78\xa1\x09\x59\xe9\xc5\x40\x3f\xbb\xb3\x4e\x92\xde\x18\x3c\x06\xda\xb9\x58\xe5\xf4\xfd\xd9\xd3\xe1\x38\xd9\x78\x54\xc7\x2a\x6a\x24\xa5\xcf\x13\xcd\xea\x61\xa0\x16\x27\xca\x54\x0b\x58\xb9\x65\x56\x43\x44\x9b\x59\x5a\x48\xfa\x7e\x24\xa5\xc8\x2e\x22\x41\x00\x65\x04\xda\x8f\x69\xe7\xe2\x46\x58\x0d\x00\x6b\x25\x21\x9f\x38\x56\x78\xc1\xc3\xc0\xe5\xc2\xa5\xf1\x03\x63\xc0\x62\xc2\x11\xc7\x73\xf2\x99\x96\xf1\x5f\x84\x5d\x33\xd3\xe3\x4f\x6e\x8c\x8a\x42\xd8\xaf\x2f\xa3\xf9\xf8\x6e\x99\x07\x60\x17\x3b\x21\x37\xd4\x8d\xb1\x87\xad\x42\x58\x35\x8a\x54\x91\xa7\x5a\x4f\x6c\x2c\xaa\x3b\xd3\xbe\xd5\x2b\x36\x39\x6e\xb5\x18\x92\xdf\x04\x7e\x32\x65\x5a\x5a\xdf\xb0\xac\x64\xab\xf4\xb0\x0b\x0f\x19\x7e\xe0\x05\x0a\x1e\xac\x23\x08\xc0\x52\xf2\x54\xe8\xda\x0a\x5d\x59\xa1\x65\x2a\x9c\x58\x5e\x24\xf4\x2b\x3b\x09\x6f\x85\x25\x7f\x01\x82\x78\x42\x9a\x8e\xb8\xe5\x24\xba\xa1\xc1\x25\x45\x96\x4c\x87\x78\xfa\x57\x19\x68\x95\x5f\x48\x4d\x66\x61\x39\x82\xec\xdb\x12\xf6\xbf\x48\x0a\x75\x8c\xe4\x3d\xc1\x28\xaf\xa2\x50\x9b\x4a\x83\x1f\x65\x3b\x45\xa3\x45\x33\xbb\x3d\x35\x8b\xea\x49\xd0\xce\xc5\x4d\x07\x1c\x28\xf2\xbf\x3b\x84\xa4\x6a\xdc\x2b\x36\x67\x40\xf3\xdd\xd0\x24\xa8\x9b\xc7\x78\x85\x85\x3f\x05\xde\x87\x1b\xac\x88\x85\x17\x2f\x94\x05\x0c\xd6\xf9\x50\x7e\x3e\x43\x31\xf1\x71\x48\x7a\x38\xe1\x93\x94\xe7\xc3\x7a\xa6\x3e\xa3\xee\x67\xe6\x22\xf1\x90\x7f\x0b\x53\x2b\x13\xb9\x3e\x60\x1f\x61\xd7\x4d\x45\xe8\x19\xf6\x11\xe2\x7b\x6a\xfa\x78\xc0\xa7\x6c\xce\xdb\x29\x09\x0b\xf3\xb4\xd0\xc2\x0e\x61\x4d\xec\xad\xf4\x3f\xa8\x2a\x05\x11\x20\xd9\xa8\xcb\xcb\xb2\x51\x0b\xbb\x25\x37\x78\x01\x58\x42\xba\xa7\xd1\x90\x37\x8c\x75\x22\xc4\xb7\xd5\xf4\x71\x5f\x37\x49\x6d\x52\x1d\x3a\x84\x1c\xb4\x15\x63\x97\x75\x28\xcf\xc7\x3a\xd4\xc8\x89\x82\x94\xc4\xeb\x8c\xf7\x29\x7b\xfc\x55\x3a\x07\x42\xc3\x9a\x5d\x96\xec\x78\x12\x6c\x5e\x93\x1c\xc1\x7c\x0d\xdc\x15\x79\xcb\x81\x28\xd1\x26\xdd\x1b\xb2\x82\xde\x58\xeb\x97\xac\x4a\x81\x18\xe3\x04\x5c\xd4\x0f\x36\xd8\x31\xc1\x39\x79\x9d\x76\xe8\x57\x3a\x73\x57\xa8\x28\xde\xeb\x6f\x3e\x11\x72\xb1\x9b\x41\xe3\xe2\x3c\x05\x5b\x2a\xa0\x66\xf9\x6b\x5a\xd5\xb3\x8c\xe7\xee\xaf\xfc\xda\x31\xf6\x27\x02\x02\xb8\x1d\x42\x77\x29\x11\xd1\xe0\x93\x02\xbc\xf4\x8b\x70\x57\xfa\xbe\x5c\x6b\xfa\x31\xb5\x0c\x0b\x1a\x56\x84\x76\x7c\xd1\x98\xf1\xfe\x44\xb4\x47\xb4\xe1\xa7\xba\x36\xfc\x54\x69\xc3\x3e\x6f\x43\x4c\xdc\x7c\xdc\x9d\x14\x85\xd3\x70\x50\xeb\x27\xd9\x9e\x6a\xfd\xf1\x3d\xf5\xf3\x5c\x3b\x99\xb2\xff\x72\x5f\x4e\xd1\xd2\xde\x44\x30\xd7\xff\x4c\x55\x43\x7a\xa5\x1a\x50\x5d\xa9\x90\x38\x9f\x9c\x35\x98\x14\x4a\x5b\x6e\x5c\x14\x8e\x83\x5a\x6e\x08\x7f\xf1\x17\xa6\x49\x3c\xab\x98\xa1\xdf\xc2\x4c\x09\x38\x31\xd6\x21\x19\xcf\xe1\x60\x79\x9b\x1a\xae\xbf\xb0\x96\x60\x49\xc0\x51\xae\x0e\x66\x76\x30\xe5\xc1\x52\x9b\xb5\xd9\x94\x3c\x38\x9d\x21\xe6\x19\x10\x0e\x0d\xad\x94\x72\x9a\x11\x5b\x4e\x46\xbf\x09\x3c\x22\xbd\xa3\x61\x97\xee\xb7\x58\xc0\x1e\x11\x4e\xb1\xf8\x47\x9e\xc7\x43\x86\x8e\x01\xab\xd7\x8c\x3c\x77\xc7\xff\x41\x93\xdd\x73\x54\x8c\xcf\x93\x73\x06\x4a\x91\x0d\x53\x51\xd3\x3d\xcf\xcf\xf3\x16\xda\x88\xff\x0f\x8f\xdf\xdd\xab\x68\x75\xf2\xb8\x07\x7b\xb6\x8a\xf1\xb5\x26\x52\x38\x35\x0b\xbf\xa7\xa9\xe1\x7f\x88\x13\x6a\x9a\x16\xe1\x53\xba\x54\xa9\xd6\xa7\x80\x1a\xe5\x6b\x37\xa9\xdb\x84\x71\x62\x8e\x20\xd6\xe6\x50\x4c\xfb\x80\x57\x76\x33\x24\xc0\x8f\x9c\xf6\x86\xed\x59\xdb\x2c\x94\x4e\xb6\x2a\x43\x9a\x92\xec\xa1\xef\x29\xe3\x36\x6e\xd6\x4e\x85\xef\xc0\xbe\xd7\x32\xb8\x1d\x4b\x63\xb4\x3e\xc8\x69\x1a\x01\xad\x11\x23\x24\xaa\x91\xe4\xd7\x8c\xb9\x6c\xdc\xe3\xfd\xdc\x17\x9d\xc5\x6c\x7c\xc0\x7f\xfa\xfc\x67\x30\x11\x22\x32\xd7\x3c\x97\x3f\x01\x7d\x4d\xd9\xc0\x63\xbe\x57\x91\x04\x4b\xcb\x56\x57\x3c\xc7\x21\x2f\x73\x04\x98\xf3\x26\xf2\x08\xbe\xa1\xe6\x99\xcb\x0b\x89\x84\xbf\x72\x7a\xc2\x1e\x25\x4d\xcf\x91\x1d\xef\xde\xd5\x72\x6b\xd0\x96\xff\x96\x5d\x87\x7e\x97\xaf\x5c\x24\xa9\xae\x56\xc3\xca\x54\x2b\x81\xbd\xed\x18\xf6\x55\x2c\x9d\xfd\xa8\x9a\x9a\x4d\x57\x5e\x9d\xca\x38\xbc\xfc\xe1\x9c\xca\x0c\xe9\xf3\x2c\x5d\x82\x79\xb8\xe7\xe1\x62\x31\x0d\x67\x9f\xf9\x5d\xc8\x14\x16\x67\x72\x82\xc2\x9e\x41\x08\xeb\xbc\x3a\x7d\x7b\x71\xd8\xf7\x7c\xb3\xe1\x62\xeb\x3f\x36\xb3\xfd\xf6\xfc\xe9\x05\x47\x92\x95\x0d\xda\x27\x86\x6b\x3c\x11\xb8\x04\x0b\x77\x64\x47\xcc\x31\xf3\xd4\x70\x9c\x96\x3c\x38\x56\x8a\x9d\xb7\x90\x16\xa3\x52\xf2\x11\x2a\xc2\xfa\x8c\x46\xa5\x96\x7e\x51\x8c\x27\x52\xc1\x38\x35\x15\x8c\x63\x02\x56\x5f\x32\xe2\xae\x64\xe6\x97\x6e\xcc\x27\x11\x2f\x20\x9c\x19\x35\x9b\x6e\x48\x56\xca\xc8\x82\x87\x57\x86\x0f\x4b\x84\x43\x6d\xa8\xac\xd9\x84\xa6\x1b\x76\x11\xc5\xa6\x15\x22\xbc\xe2\xe5\x85\x7b\x46\xa3\x70\x2b\xd3\x56\xaf\x16\x2d\x52\x06\x7e\xca\xc6\xf1\x64\xe8\x66\x43\x13\x15\x7e\x60\x40\x97\xb6\xf3\xd4\x1b\xc4\xef\x6e\x8c\x33\x2c\xf4\xf3\xb5\x19\x3e\x7e\x62\x6c\x2d\x72\x0c\x29\x96\x75\x3e\x92\xb7\x17\x78\xf5\xdd\xde\xac\x90\xa6\x62\x1f\x11\xbf\xdb\x6c\x82\xf3\x2a\xc8\x2b\xed\xf6\x01\x3d\x08\x19\x38\x14\xd7\x4c\x92\x06\xb8\xe5\x82\xa9\x98\x47\x04\xb2\x59\x71\x5a\x65\x16\xc5\xb9\xe6\x69\xea\xbb\xa4\xa2\xa7\xac\xb4\x1e\xa7\x63\xb1\x91\x15\xe1\x95\x10\x81\xb7\xcd\xe9\x4c\x99\x25\x80\x63\xbf\x5d\x27\xfc\x2a\x28\x69\x69\x05\x87\xb7\x7d\x68\x07\x85\x19\x1d\x95\x31\xce\xdf\x8d\x86\x6e\x26\xbf\x5c\xe1\xa6\x87\x3d\xe2\xf8\x71\x59\x8b\xf8\x5d\x84\xb3\xa2\xf0\xbb\x9c\x76\x2e\x0a\x4e\x43\x20\xcc\xac\x37\xfa\xcb\x4d\x32\x49\x39\xa6\xe5\x93\x5a\x4d\x0e\xbd\xbf\x53\x64\x9b\x6d\xe4\xbb\x7b\xcd\x6e\x01\x36\xe9\x0c\x2b\x12\x06\x2c\x61\x4f\x82\x70\xaa\xea\x56\x98\x4f\x2a\xef\x10\xe2\xca\xc1\x1b\xaf\xbe\xcb\x58\x84\x19\x5f\xce\x1c\xd2\x38\x9d\x70\xfa\x80\x21\x7c\x25\xd4\xfb\xe3\x16\x18\xf9\xb3\x67\x16\x8e\x5b\xc4\xf7\x76\x85\x1d\xc5\x4d\xdb\x8f\x18\x12\xf2\x59\x9a\x51\x12\x63\x49\x0f\x65\x45\x11\x3f\xca\x84\xc5\x80\x18\x27\x84\x21\x74\x3c\x73\x29\xe8\x9b\x99\x96\xeb\xd4\x46\x24\xaf\xbf\xe2\x44\x79\x2e\x37\x54\xd8\x52\x72\x77\xcc\x04\xb1\xca\x84\xae\x04\x66\x9c\x4e\xe5\x94\x73\x14\x32\x8a\x19\xbc\xaa\xf0\x44\xd8\xd6\x31\xeb\x08\xe7\x7e\x10\xb3\x58\xc4\x22\x34\xa9\x35\x4b\xd4\x6c\x56\x44\x72\xe5\x84\x33\xee\x3a\x17\xcc\x96\xe0\xff\xe2\xa6\xcc\x7d\x0b\x92\x25\x86\xa5\x19\xe3\xf2\xc5\x40\x68\xc2\x07\x91\x09\x5c\xa6\xe8\xa5\x63\xcc\x99\xb7\xcc\xf4\xc8\x76\x11\x83\x61\x92\x8b\xb9\xc1\xa0\x90\x96\x15\xf5\x57\x51\x24\x62\xcd\x88\xb1\x26\x30\x1d\xb5\xe9\xcd\xac\xd9\x74\x84\x14\xdf\xd2\xbd\x33\x8c\xb6\x7a\x6b\x14\xd4\x69\xa3\x89\xab\x62\x4c\x98\x71\x2d\xba\xce\xe8\xb5\x54\x35\x43\x78\x0a\x1c\x7e\xd5\x6b\x86\x50\xe0\xae\x78\x14\xcc\x51\x16\x24\x6e\x86\x86\x30\xf1\x83\x6c\x08\x67\x4a\xf0\x0c\xd6\xeb\x95\xab\x4c\x43\x46\x70\x37\x47\xd8\x32\x9f\xf1\x4c\xf7\x1b\xee\xc7\xf1\x71\xec\xa6\x12\xe8\x06\xb7\x26\x58\x6d\xa6\xa5\xca\x48\x2e\x4f\xdf\xec\x57\x3a\x84\x33\x3a\x48\x78\x49\x57\x4e\xa2\xb4\xdc\x99\x6a\x66\x42\xfd\x34\x40\x41\xc6\x41\xc0\x24\x0d\xc2\x9a\x76\xa0\xe0\xbe\x13\xd7\x90\xe4\x17\x1b\x96\x70\xf4\x7a\x27\x5c\x8f\xde\xad\xb5\x71\xe7\x1d\xf0\x92\x0e\xf7\x9b\xb8\x28\xdc\x90\xc4\x38\xd6\xf3\xc5\xcd\x5c\x8a\xc0\x29\x08\x2a\x8a\x04\xbe\xc5\xa6\x22\x77\x14\x60\x8d\xaa\xcc\xf9\xa6\x71\xd2\x1d\x8f\xc7\xca\x4d\x40\xc9\x2f\x91\x15\x8f\x5c\x90\x18\x4a\x10\xca\xff\xcc\x09\xe3\x7f\xa4\x9d\xd1\x10\x5f\x30\xd7\xb4\xdf\xfd\x99\xdd\x6b\x84\xd8\xb4\x86\xf9\x8e\x95\x6f\x46\xd2\x9a\xaa\xb0\xdd\xa8\x8c\xc5\x26\x40\x00\x0b\x2e\x22\x7c\xe1\x1d\x56\xd9\x21\xf9\x5d\x5c\x1a\x92\x04\x62\x39\x25\xfe\x71\x5a\xba\x7d\x6b\xb5\x52\xc4\xc6\xe9\xc4\xb2\x4a\xc1\x23\xc6\x74\xe2\x72\x72\x01\xca\xa5\xb5\x46\xa7\x4e\x0d\x7e\xef\x3b\xe6\x3a\x71\xfe\x13\x9d\xa7\x19\x75\xf0\x78\x62\xda\x24\xd4\x3a\x39\xd8\x33\x67\xef\xd9\x46\xf1\x27\x73\x46\xb3\x1f\x2c\xfd\x07\xb3\x1e\x42\xb5\x15\x70\xe0\x86\x2a\xa9\xd4\x07\x29\x66\x48\x5b\x0e\x85\x37\x44\x29\xe9\x3f\x66\x13\xc3\x3a\x78\x69\x74\x62\xc7\x97\x82\x9c\x0f\xd2\x12\x45\x19\x98\x17\x1f\x3f\x48\xc7\xd9\x44\xdc\x29\x93\xb2\x2c\x4c\xf9\xe7\x8b\x34\x64\x65\x16\x30\xc6\xa9\x43\xf0\xc8\xb7\xe3\xa1\x9a\x4b\xc6\x53\xb6\x61\xa2\xad\x6a\xa1\x77\x64\x64\xf9\x85\xc1\x41\x66\xa8\x27\x18\x3b\xdf\x73\x61\x76\x59\x6c\xf2\x45\xe1\x81\xd3\xd4\x3f\x57\x61\xc6\x28\x04\x53\x22\x37\x7e\x1e\x88\xa5\xce\x05\xff\x0e\x89\x3c\x09\x3c\xbc\x22\xe2\x18\xe0\xdf\x39\x51\x67\x01\x0f\x2d\x88\x3a\x10\x78\x68\x46\xac\x53\xa1\x28\xbc\x63\xab\xf9\xe4\x0f\x38\x0d\x95\x10\xa2\xce\x98\x93\xd6\xac\xe5\xd3\xfd\xdd\x45\xab\x4f\x7b\xbb\x39\x7c\xaf\x76\xfb\xfc\x5e\x54\x9a\x56\xcc\x49\x2b\x6c\x0d\x76\x63\x4b\x79\x8d\xb4\xd2\xd6\xfe\x6e\xd6\xf2\xbb\xbb\x89\xce\xca\x42\x72\xb7\xd6\xaa\xe9\xb0\xc7\x27\x4c\xcb\xc5\x4f\x57\xd3\xe9\xc2\xb2\xc8\xf4\x86\x6d\xb3\x36\xf9\x9b\xa9\xdd\xc0\x2a\xf6\x63\xdb\xfe\x2e\x68\x3c\x65\xe9\x2a\x89\xdc\xb6\xbf\x4b\xa5\x37\x79\x11\x61\x6e\x51\xaf\xd8\x56\xe1\x06\xc3\x55\xc2\x8a\xcd\xa4\x92\x2f\x1f\x32\xa7\xe5\x94\xca\x6a\x1e\x6c\x44\x6d\xca\xe3\xdb\x0e\xc2\x49\xeb\x4f\xf7\xbf\xfe\xcb\xa5\x7b\x7d\x0f\xe1\x2e\x6a\x31\x08\xd3\x87\x7d\x0f\x77\x2d\x79\x87\x27\xcc\xb4\x6c\xe7\x32\x60\x5b\x48\x62\x9e\xea\x5b\x15\x31\x6e\x55\xf0\x6e\x27\x6e\xaf\xc9\x38\x29\xfd\x8d\xc3\x25\x21\x25\x6e\xd6\x2a\x21\xfc\x92\xf2\xab\x80\xd3\x76\xb0\x74\x6b\xdf\xf7\x76\xd3\xb1\x3f\x69\xdd\xb8\x29\xbf\x7a\x6b\x53\xb9\x84\x90\x78\xe8\x05\x4e\x8b\x9f\x24\xe9\xd8\x9b\x0c\xe3\xa0\x6d\xd8\xa0\x7d\xce\x0c\xf3\xaf\x38\xd5\x44\xa7\x92\x08\x75\x33\x92\x74\x66\x8b\x34\xa1\x2e\xbf\x45\xbb\x53\xd8\xb0\x57\x2e\xe5\xa7\x86\x3e\xaf\x02\xbe\x8d\x22\xe3\xfc\x6a\x67\x65\x00\x67\xf2\xde\x0a\x76\x8b\x21\xa0\xd3\x5a\xe9\x86\x9e\x35\xec\xba\x38\x53\x30\x61\x1e\x99\x93\xe6\xb5\x39\x1d\xfc\x83\xdd\xb6\x39\xf4\x86\x85\xe4\x6f\x69\xa2\x40\xa2\x3d\xff\xc0\x14\xf4\x64\xc2\x32\x53\x69\xd2\x4c\x4c\x50\x61\x21\x9a\xaf\x9e\xbf\x29\x04\x5a\xab\x1d\x6f\x5a\x67\x27\x2e\x25\x4f\x98\x9b\xa5\xd8\x78\x06\xe6\xa0\xc4\xdd\xdc\x30\xc5\xf7\xc8\xef\x8b\xcb\x92\x4b\x77\x49\x5f\xb3\x8b\x76\x0c\x69\xdd\x66\x33\x81\x97\xd2\xd7\xcc\xf2\xc2\xa6\x4c\x5e\x2b\x9d\x38\x71\x32\xee\x78\x92\x8c\x4e\xa5\x68\x31\x27\xe7\x52\xec\x2c\x1d\x84\xe3\x1d\x42\x68\xb3\xe9\xee\x68\xb3\x09\xe2\x99\xff\x55\xf2\x2e\x4b\x2f\x33\x9a\xe7\x43\x26\xf4\x9d\xf0\x2f\xcc\xa5\xed\x58\x14\xf3\xf9\x40\x05\xf5\x05\xb4\x5c\x5f\x35\x61\x8b\xed\x69\xad\x58\x5f\x53\x02\x48\x2d\x91\xba\xae\x6c\xce\x7c\x86\xc6\x81\x42\x80\x21\x2d\xcb\x2c\x61\x23\x2d\xaa\x5c\xa3\xfb\x26\xd7\xb7\xf2\x2e\xa6\x77\x02\x10\xfc\x00\xb0\x41\xbb\xba\x49\x18\xd2\xa8\xac\x2a\x61\x59\x66\xf3\x2c\x2b\x5d\x3f\x6d\xe4\x54\xa3\xe8\xd6\x94\xb3\xc7\xce\xc7\xda\x04\xeb\x6a\xca\xb2\x70\xc6\x5c\xd5\x67\x18\x0a\x89\x9c\x52\xb2\x91\x59\x36\x9b\x01\x14\xfb\xb6\x44\x95\x8a\x74\x02\xde\xf1\xb1\x7a\x63\x68\xd4\x9b\x78\x10\xcd\x51\xbb\xe6\x13\xe6\x26\xa9\x6a\x23\x3a\x36\x17\x85\x89\x42\x39\x3b\xcc\xae\x95\x07\x6f\xc5\xd0\xd3\x07\x03\x3f\x3b\x95\xc5\x27\xde\xc9\x87\x62\x43\x30\xc6\x21\xf0\x70\x15\x79\xa8\x4d\xd1\xc3\x3e\x98\x32\x33\x4d\xff\x55\x0f\x76\xa3\xc0\x63\x88\x90\x5b\x9c\x34\xce\xe0\x59\xd5\xc8\x55\xf1\x9d\x32\x07\xa8\x7e\x8a\x7c\x93\x83\xb1\x13\xbb\x6a\x50\x4f\x4e\xcf\x4e\xaf\xe2\x39\xa3\x91\xb5\x09\xd8\x49\xc7\x02\xd5\x77\x6b\xbe\xc5\xdc\x4a\xb9\x72\x84\x29\x79\xab\x9e\x51\x43\xf3\x96\x05\x6b\x01\x78\x5a\xa1\xd8\x3a\xf9\xc7\xf1\x26\x58\x52\x45\xed\x05\x64\xc5\xac\xc3\x52\xe1\xc5\x0b\xa1\xc7\x92\x57\x58\x53\x5a\x3b\x6f\xa9\x49\x34\x84\xfd\x4a\x7c\x6f\x8e\xa5\xb9\x87\x19\x62\x7f\xf7\x15\xa9\x2d\xf1\xe0\xbe\x12\xae\xb5\xc4\x3c\xe5\xaf\x4a\x79\x01\x30\xa4\xff\x58\xc5\x4b\x02\xe6\x17\x87\x95\x90\x76\x53\xe6\xc3\x38\xc6\x87\x31\xb9\x5b\xe6\x01\xb5\x29\x28\x1c\x05\xe2\xb5\x29\xc7\x23\x48\x03\xea\x68\x1d\x84\x52\xef\x9b\xd3\x43\x43\xb0\x4f\x40\x83\xb8\x63\xd1\x5e\x94\xdf\x3b\xc9\xcf\x8a\xd9\x8a\xd0\xd0\x05\x22\x83\x10\xb2\x1a\xfb\x93\x61\xdb\x0f\x7c\x1c\x93\xbb\xdb\xc0\xc3\x51\x70\xe3\xae\xc6\xb3\x74\x82\x76\x13\x7c\x05\x81\xb9\x08\x2c\x21\x70\x2d\x02\x39\x04\xae\x64\x0a\x0f\x9d\x30\x17\x88\x3a\x90\xa5\x40\xbb\xc9\x1a\x2a\xfd\xfd\xbe\x4a\x5d\xfe\x81\x7d\x24\xea\xfe\x99\xb9\xab\x71\x77\x02\xb6\xc3\x45\x60\x1f\x02\x37\x22\xd0\x83\x40\x24\x02\x07\x10\xb8\x12\x81\x3e\x04\x96\x22\x30\x80\x40\x2e\x02\x87\x3c\xb0\x16\x6c\x2a\x4e\x9e\x70\x2c\x05\x9b\x56\xe8\xe2\x66\xd3\x75\xe6\x59\xba\x74\xe2\xa4\x11\x17\x85\xc3\x52\xf8\x02\x03\xd6\xe4\x13\x73\x3f\x33\x37\xee\xf0\x0c\x08\xc3\x27\x4b\x11\x34\x1a\xdc\x6a\xe6\x24\xb5\xd0\x8d\xe3\xce\x88\x47\x09\x5b\x69\x38\x13\x42\xb7\xcc\x8d\x11\x86\xe1\x6d\x36\x17\x2e\xc5\x8e\xa4\x5b\xc1\x7f\x4d\xb6\xc9\xa9\x40\xd8\x34\xf9\x68\x91\x78\x8a\xed\x22\x2f\x1f\xa5\xdc\x28\x76\xb0\xd3\x71\x34\x5f\xc5\x55\x56\x06\x87\x5e\x90\xa0\x5d\x83\xd0\xfd\xdd\x82\x77\x67\xb6\x3e\xf0\xb0\xb4\xeb\xe6\xad\x4b\x1a\x4d\x92\xe2\x4c\x99\x94\x69\x6b\xe3\x6a\x9c\x2e\x77\x99\x52\xf2\xd7\x96\x0b\x31\xd5\x9b\x16\x3f\xff\x15\x04\xec\x8c\x1c\xd4\x91\x37\x3e\x60\x99\xb5\xdb\x3a\x2d\xb1\x67\x6d\x8b\xb5\x5b\xf7\x40\x31\xfd\x2f\x7c\x62\x75\x42\x96\xd6\xba\xb6\xed\xbe\x3e\x67\xc2\xc7\x1e\xcf\x23\x2e\xaf\xc0\xa9\x21\x12\x31\x81\x0b\x9f\x90\xa5\xd2\xaa\xb6\x1d\xc6\x1a\x37\xba\x1f\x08\x27\x28\xd8\x8a\x53\x43\xc4\xd2\x36\xa9\xac\x2f\x0c\x26\xbd\x68\xb3\x66\x81\x2b\x08\x63\xda\x82\x2b\xfa\x57\x97\x61\x47\x08\x2b\xba\xa8\xe3\xb4\x58\xcb\x71\xaf\x69\x16\xa7\x11\x6e\x08\x35\x7a\xd4\x88\xf3\x86\xb2\xd0\x4f\xa3\x4e\xe3\xdd\x82\x86\x39\xc8\x42\x36\x2a\x05\x45\x01\xdc\x10\x00\x50\xe7\x2f\x08\x44\x86\x51\xd4\x8e\x93\x2f\x34\x63\x34\x6a\x5f\x87\x59\xb8\xac\x91\x8a\x8c\x49\x82\x13\x92\xe1\x8c\xc4\x70\xf7\xd9\x38\xf9\x93\x61\x2b\x09\x12\x9c\x92\x5f\x18\xe0\x00\x2b\x52\x30\x55\x64\x8a\x81\x3c\x66\xd8\x3c\x95\xbe\x31\x2b\xdb\x65\x48\x4e\x98\x9b\x88\x1d\x13\xe1\x95\x0c\xc9\x21\x3a\xb6\x26\x87\x9b\x4a\x09\x98\xb4\x28\x52\xbc\x6a\x36\xc1\x46\x15\xd8\x01\x55\x46\x97\x5a\xab\xdd\x0c\xe1\xb0\xd9\x04\x8b\x9e\xce\x09\x38\x38\xcc\xca\x6f\xd4\x0a\x79\x86\xb8\x94\x3c\x81\x3b\x08\xb5\xef\x20\x31\xcf\xc3\xe9\x62\x9b\x2e\xa5\x38\x2c\x8a\x95\x65\xed\x34\xb1\xad\x95\x47\xf1\x7c\xce\x07\x9b\x77\xc6\x01\x0a\x4a\x4d\x8c\x47\xed\xfe\xd0\x51\xe6\xee\x9d\x20\x79\xd4\xf6\x87\xce\x22\xcc\x41\x75\x90\x87\x3d\x11\x3c\x09\x6f\x79\xc8\x17\x99\x65\xa8\x3b\x74\x24\x7b\x95\x87\x06\x22\x24\x0a\x96\x30\x0d\x41\xbf\xc4\xf4\xe0\x41\x8b\x02\x04\x3e\x52\xbe\x9a\x32\x41\x34\x74\xc0\xa1\xfb\xdb\xb9\xcb\x5b\x2a\x34\x4a\x3a\xca\x28\xbf\xb4\x77\x2c\x86\x14\x15\x45\x59\x03\x0e\x09\xbf\x60\x7c\x76\x93\x71\x3c\x41\x43\xfe\x6b\xa8\xfa\x66\x28\x80\x78\x8b\x1c\x10\x46\x13\xdc\x50\x52\x4c\x96\xce\x80\xaa\xd0\x15\x8c\x04\xbe\x65\x67\xd6\xf3\x9d\xa9\x72\x20\xb8\xb3\x15\xaa\x3e\xb4\xd0\x3f\x85\x3b\xa8\xb8\x25\xaa\xdb\x51\xf5\xd6\x56\x14\x3b\x89\x71\x87\x93\x16\xdc\x41\xc2\xdb\x31\xa6\xa5\x13\x30\x4e\x48\x1b\x11\xc0\x6e\x06\x58\x7a\x9a\x3c\x4e\x8c\xfb\xae\xf1\xfd\xc8\xa2\x05\x15\xa6\x99\x79\x1b\x36\x64\xe5\xfe\xd1\x2e\x3c\x32\xbb\x60\x35\x9b\x26\x51\xa5\xd1\x66\x5e\xd3\x99\x5d\xb2\xc1\x2f\xcd\xf8\x06\xe8\xb8\xc8\xc1\xae\xe3\xf2\x6a\xb3\xb1\x37\x19\xca\x5e\x88\x23\x85\xcf\xcf\x40\x75\x4c\xee\xec\x3c\x0e\x2c\xed\x22\x51\xc6\xd7\x65\xd4\xd6\x6f\x16\x92\x47\x13\xb6\x6c\xdf\x2e\x12\xdb\xe0\xf3\x0f\xe2\x33\xdb\xc4\x27\x2b\x0a\x0b\x79\xdf\xc7\x25\x6f\xb3\x81\x4d\x37\x31\x83\xf8\xbb\x73\xe2\x11\x78\x2a\x7f\x44\xbe\x33\x0a\x66\x6f\x67\xf6\xc9\x24\xbb\x75\x1a\x2e\x85\x2e\x83\x5c\x73\x25\xca\x4d\x2a\x77\xfe\x83\x65\xf5\xd8\x98\x85\xa3\xa4\xd6\x32\xc0\x16\x0e\x89\x64\x8a\x64\x04\x58\x4b\xe2\xd2\x62\xa1\xdc\xc8\x97\xdf\xc4\x6c\x76\xe5\xa6\xa4\x4f\x7b\xbb\x6e\x66\xdd\xe3\xaa\x77\x2e\x84\x61\xa0\x10\xba\x9b\x85\x39\x75\x38\x45\xe3\x04\x31\xb9\x4e\xd4\x7e\xb4\xe7\x77\x85\xfc\xd2\x31\x64\x80\x33\xc5\xce\x61\x26\x4b\x56\x6c\x05\xc4\xbe\x99\x45\xad\xac\x58\xe8\x1c\xb7\x79\x15\xd4\xca\x21\x18\xb2\x56\x8e\x3e\xed\x99\x39\xae\xd2\x55\x66\xa5\xef\xf7\xe9\x81\x99\x81\xef\xc8\x65\x7a\x3b\x45\x7b\x87\xfd\x9e\x9d\xe5\x06\xb6\x7e\x2b\x4f\xdf\xeb\x1d\xea\x4c\xd2\x33\x6a\x20\xf8\x58\x6d\xed\x61\x2e\x19\xc6\xc1\xa5\x1b\x9b\xc2\x3c\x49\xe5\xb2\x43\xea\xe9\xc4\x96\x5b\x43\x53\xf2\x73\xc3\xa6\xfc\x52\x2c\xb0\x9c\x3b\xe5\x31\xd0\x8e\x1f\x79\xfc\x4e\x51\xc9\xd9\xf6\xcb\xbc\x38\x23\x2e\x6b\xc7\x68\xcf\x8d\xdb\x09\x82\xb5\x53\xc9\xdd\xaa\xcd\x9d\xb4\x63\x84\x70\xdb\x4d\x81\xce\x32\x85\x83\xaa\xca\x6a\x0a\x98\x38\x80\x5c\x87\x26\x0e\x52\x87\x93\x13\x45\x51\x63\x34\x1a\x35\x4e\x4e\x1a\x1f\x3f\x7e\xfc\xd8\x78\xf9\x32\x58\x2e\x83\x3c\x6f\x8c\x5f\x8c\xce\x26\x9f\x3e\x59\xb6\x1c\x93\xef\xeb\x84\x4b\xbd\x74\x78\xf0\xa2\x38\x51\x3b\x85\x6a\x03\x38\xb1\x84\xdd\xb6\x24\xdc\x05\x9a\x41\x4e\x5d\x7e\x3f\x3e\x3a\x3a\x3a\x1a\x7e\x70\x13\xcc\x86\xce\x47\xf8\xd7\x1e\x8d\xda\x27\x27\xe3\xb3\x89\x6a\x60\xe7\xf4\xf4\x74\xfc\x69\xe2\x04\xf7\x65\xf8\xe4\xa0\xe0\xb3\x30\xc6\x66\xfa\x62\x7a\x75\xfa\x56\xfa\xe9\x1c\xca\xf6\xb1\x54\x88\x2b\x9b\x89\xae\x70\x0f\x70\xa2\x3d\x2e\x97\x44\x52\xdf\xdb\xad\xae\xc8\x5d\x9f\xee\x57\x8a\x97\xb7\x9e\x4f\x0e\xe6\xbd\x71\x3e\x39\x08\x05\x46\xbf\xbe\xd3\xab\x6d\x7d\x32\x24\x95\xa4\x43\xb2\xfa\x11\x91\x84\xb7\x92\x42\x70\xf7\x76\x1b\xd2\xae\xc4\x45\xdc\x72\x1a\xbb\x7b\xc8\x91\x8c\x15\x99\xd3\xc1\x8c\x38\xce\xb1\x04\xf6\x5a\x70\x9b\x8b\xc2\xa5\x44\x33\x0d\x8c\x2e\x0f\x15\xfc\x15\x9b\x39\x81\x0a\xc0\xbd\xef\x53\x9a\x50\x00\xf6\xc9\x41\xd2\xd8\xb8\x33\x76\x5a\xb4\xf5\x2f\xd7\x99\xfc\x0b\x67\xc4\x93\xbb\xbd\x18\x70\xc9\xd4\x90\x33\x81\xc0\xf0\x03\x06\xf4\xf0\x3a\x38\x25\xac\xf5\xaf\xb1\x83\x26\xff\xaa\xa3\xb2\x92\x56\xd6\x72\x6a\xf1\xe5\xb4\x4c\x65\x8f\x2f\x42\x91\x07\xfa\x24\xbb\xf9\x9e\xcf\xc9\xa1\xf6\xa9\x2c\x68\xc0\xf7\x6c\x16\x54\xa2\x54\x47\x3e\x28\xa3\xa8\xc7\x5b\x55\x42\xaf\xd3\x9c\xa9\x86\x99\x42\x2d\xb5\x07\x4f\x49\xe3\x4f\xe1\xea\x4d\xcd\xf3\x59\xb0\xf9\xca\x81\x1d\xfe\xc2\xdc\x3b\x96\xc2\x12\xc2\xfc\xba\x1f\xd0\xb5\x5e\xda\x46\x43\x5c\x84\x3a\x57\xab\x65\x98\xc4\xdf\xa8\xbb\xc3\x24\x85\xf3\x23\x9e\x41\x2e\x93\x2a\x6f\x96\x57\x23\x04\xa7\x2d\x8f\x84\xff\x43\x9d\x81\x4e\x40\x77\x58\xfa\x3f\xde\x99\x8b\x8d\xce\xb0\x74\xb3\x2b\x6f\x93\x52\x4d\xc9\x94\x7a\x83\x47\xf8\xa1\xf9\x84\x27\xd4\x92\x02\x97\x91\xc4\xd0\xc9\x60\x86\x49\x68\xe1\x26\x53\x72\xcb\x0d\x79\x88\xea\xae\x2c\xb3\x1a\x02\x04\xd0\x08\x49\x04\x08\x17\x01\xd6\xe9\x0e\xa5\x14\x47\xb6\x72\x6c\x9b\x67\x3c\xe4\x03\xf3\xc0\x3e\x32\x8f\x4c\xf8\x8c\xf3\xf4\x43\x19\x82\xe3\x56\x7e\xf1\x93\x9b\x95\x0a\xcc\xaa\x0a\x71\x64\x33\x53\x99\x59\x25\xa9\xf3\x5e\xf0\xe2\xc5\x95\x56\x27\x6a\x42\x5c\x94\x2c\x2f\xbd\xae\xe6\x79\x8b\x76\x11\xa2\x5d\xaa\x49\x61\x58\xd7\x43\x58\x37\xd4\x48\x96\x51\x3c\x87\x8f\xb0\xee\xbc\x91\x43\x60\x67\x7f\xd7\x30\x01\x69\xc4\xa3\xbd\xfd\x8d\xc7\x81\xcf\x49\x9d\xab\x6d\x85\xfe\x0a\x1d\xac\x67\x43\xe0\x0a\x84\x89\xaa\x5d\x4a\xe4\x55\x52\x60\x42\x12\xb8\x14\x29\x29\x21\xb3\x2f\x43\x39\x1a\x14\x95\xcf\x17\xfc\x7c\xcf\x1d\x93\xba\x7d\xb7\x31\x5b\x8c\x2b\x7a\x1b\xe8\x43\x66\xbf\xd2\x99\x7e\xf7\x8c\xc2\x55\x4c\x68\x20\x9c\x78\x33\x05\x1e\x2a\xd7\xcd\x9a\x43\xcf\x14\x70\xb0\x9f\x8c\xe5\x9a\x19\x6b\x9b\x97\xa5\x43\x0f\x6d\xa8\x9a\xc2\xbc\x12\x69\x30\x6f\xe0\x53\x20\x56\xc6\x6a\x44\x5b\x0a\x55\x4f\x6b\xeb\x02\x4b\xa1\x79\xa0\x6b\x94\xbc\xab\xb2\x62\x5e\x6d\xa0\x6b\x87\x39\x1d\x50\xad\x9c\x2f\xa7\x72\x40\x0d\x0d\x7d\xc5\x08\xa3\x7a\x2e\xf3\x7c\x06\x87\x8c\xda\xf3\xd8\x94\x20\x1b\x55\xc7\xab\xe4\xe4\xc9\x4d\xc7\xa2\x2a\x2c\x85\xd0\xdf\x8c\xb2\x57\xd5\x5b\xfe\x1b\x23\x11\x5c\x14\x5e\xcb\xe7\x4d\x43\x22\xc0\xc8\x22\x53\xb5\x8e\x9d\xf1\xf6\x5f\xe6\xba\x8b\x41\x64\x4c\xd2\x01\x58\x9c\x53\x32\x38\xc7\x62\x5b\x0a\xcc\x3d\x0a\xc3\xc3\x41\x60\x3c\x22\x60\x21\x41\x24\xa3\x44\xc0\x40\xc7\x93\x44\x09\x1a\x78\x78\x4c\xb1\x92\x63\x9a\x60\xcf\xba\x4a\x3d\x37\x17\xdf\xaf\x89\x6d\x3a\x4d\x6d\x08\xea\xfe\xa8\x36\x07\xb4\x69\x52\xa8\x6a\xea\xb4\x36\xed\xd6\x7c\x35\xff\x5e\xc5\x72\xc5\xba\x08\x57\x77\x1e\xa1\xb1\x64\x3c\x9f\x1b\xd8\xff\x6a\xdb\x37\xb7\x33\xfe\x59\x11\xb3\xd8\x6c\xe4\x71\x3d\x18\x0a\x1d\xa3\x95\x2e\xfc\x9a\x6c\xd8\xe9\xad\xda\x77\x52\xb6\x52\x79\x0e\x00\x16\xb8\x31\xf9\xaa\x6d\xf7\xb2\xc7\x31\xdc\xf7\x63\x84\x7f\x4a\xaa\x66\xeb\x20\x8b\xf9\x60\xbb\x59\x1d\xb1\x4c\x05\xe3\x10\xf4\x05\x85\x14\xa7\x87\x63\x43\xcf\xc8\x22\x93\xa0\x53\xe1\xa6\x81\x63\xd3\x1a\x7c\x68\xab\x16\xca\x34\x58\xca\x61\x55\xb9\xd0\x7e\xea\xad\xba\x6d\xe7\x68\x28\x1d\x2c\x5b\x87\x41\xcb\xe7\xe7\x41\x60\x9d\x1b\x2e\x6d\xfb\xa8\x65\xe6\x7a\x68\x6e\x92\x1f\x4a\x32\x81\x18\x72\x16\x6e\x2d\x7f\x43\x1c\x09\xed\xfa\x34\x38\xd1\x91\xbc\xdd\x1a\x06\x89\x7f\xc8\x34\xd7\x47\xb9\xba\xd8\x78\x99\x4e\xc8\x0d\x3c\x69\xb9\x8e\xd7\x71\x5a\x96\x04\xe6\xb7\x8d\x33\xc4\xf6\x06\x60\x3c\x50\x6e\xcb\xf9\x34\x15\x7e\xfd\x18\x8d\x1a\xef\x93\xf8\x0b\xcd\xf2\x70\xd1\x38\x8b\x97\xd4\x06\xf0\xc2\xc4\xfb\x67\xf1\xc8\x66\xd2\x57\x0f\x8c\x0a\x3e\xb3\x7a\x9b\xd8\xe5\xbd\xc1\xa4\xdf\x7e\xb1\x64\x79\x8d\xd7\xa6\xa4\xea\x3a\x11\x64\xab\x62\x32\xe7\x68\x06\xc1\x99\xd2\x89\x52\x3a\x4e\x26\xae\xed\xcb\xf3\xf7\xc4\xd0\xa0\x09\x81\x52\x75\x19\xa1\xb8\x14\xb3\xa4\x84\x16\x85\xe3\x28\x0a\x4f\xdd\x71\x75\xc5\x92\xdc\x12\x97\x82\x0c\x2c\xcd\x1b\x4e\xb1\xa5\x5f\x91\x74\x9c\x4d\x08\x14\xc9\xcc\x22\xaa\x5d\xc6\xeb\x90\xd1\x1f\x67\x9a\xa6\x0b\x1a\x26\x96\x75\x60\x37\x54\x9e\xbd\x19\x66\xa5\xa0\x31\x11\xa2\x54\x01\x34\x9e\xa7\x51\xb2\xe3\xe3\x7b\xf3\x1e\x5b\xf8\xa2\xc3\xb4\xdc\x3e\x03\xaf\x94\xe0\x49\x8c\x1e\x33\xec\x26\xad\x18\x3d\x1c\xe0\x0c\x8b\x79\x0d\x40\x56\x60\xef\x09\x7a\xbd\x22\xde\xf1\xea\xd1\xe0\x78\xd5\x6a\xa1\x7c\xbc\x82\x4e\x33\xec\xae\x2a\xa5\x24\x48\x63\xc9\x4a\xe6\x9c\x1a\x62\x39\x2e\x9a\xdf\x61\xbc\xa6\xdc\x97\x11\xcc\x10\x99\xb9\x93\xac\xa2\x4d\xae\x11\xec\x28\xb3\x43\x66\xf6\xec\xfb\xd9\x37\xaa\x48\xbf\x5f\x66\x14\x27\x66\x89\x38\xb3\x8f\x00\x10\x12\xb4\x25\x08\xac\x77\xbc\x45\xec\x6e\xc6\x22\x53\x16\x51\xe7\x10\x2f\x48\x32\xb7\x78\xec\x2b\x4b\xcb\x27\x3f\x9b\x7e\xe1\xe9\x76\x4c\x49\x90\xc9\x44\x23\x5e\x92\x49\xaa\x10\x04\x14\x51\x27\x63\xe1\x53\xd3\x7e\x2a\xab\xae\x1b\x08\x36\x11\x09\x9f\xd5\xbd\x3b\xcc\xaa\x2b\xfa\x17\xe6\x1a\xb6\xcf\x1b\x15\x59\x83\x16\xc9\x76\xd3\xca\x7b\x9a\x14\x3e\x90\x49\x20\x87\xa0\xa5\x10\x54\x7e\xf1\x3a\x4b\xeb\x24\x30\x57\xf6\x14\x0b\xb3\xf2\x40\x34\x45\x9f\xf3\xed\xd9\xda\x66\xbe\x45\x56\xe7\xea\x5f\xb9\xf6\x0f\x4c\xc7\xff\x06\x5f\x5b\xcf\x91\x52\x5d\x93\x6c\xce\x02\x1c\x92\x72\xe0\xf1\xca\xf2\xcc\x80\xf3\x9a\xe9\x15\x83\x8b\x81\x10\x7e\x57\x8f\x89\x57\x14\xf1\x23\x88\x81\xdf\xd5\x23\x1e\xe3\xc6\x2d\x02\x27\xd2\xee\x22\x73\xa3\xcc\x5d\xa1\x56\x08\xde\xfe\xf1\x8a\x80\xe0\xb9\x35\x7f\xe2\x87\x3e\xdd\xc7\x94\x5c\xba\x31\x5c\x26\xb0\xbe\x04\x12\x90\x00\x65\xe4\x52\x4a\x86\xea\xab\x23\x61\x3c\x21\x21\x97\x2e\x93\x09\x62\xfe\x24\x0f\xbb\x3d\x1c\xb6\xc8\xa5\x9b\xec\x75\x7b\x08\xa7\xe4\xd2\x9d\x67\x6e\x88\x10\x5e\xb5\x48\x8a\xc3\x36\x11\x2d\x4a\x11\xc2\x19\xb9\x74\x57\x7b\x7e\x17\xe1\xd5\x43\xe2\x77\x31\x18\x88\xcc\x49\x88\x95\x9f\x0d\x10\x7c\x17\xd3\x2d\xab\x4c\xb2\xb9\x39\x24\xbd\x43\xcf\xdb\xa5\x7b\x7e\xaf\xef\x1d\x19\xc6\x25\x23\x33\x8f\x48\xdc\xa5\x7b\x3c\xb3\xc1\x3a\xce\xee\xe7\x84\x6a\x03\x9d\xe0\x88\x64\x73\xf8\xc0\x75\x90\x38\x0d\xec\xeb\xe6\xad\x74\xb2\xa8\x95\x3a\x99\x31\xce\xad\x4c\x10\x0c\xda\xd7\xb7\x9c\xd9\xf3\xcc\x85\xf7\x2e\x05\x8f\x0e\x93\x20\xd9\xf3\xbb\xea\x45\xc1\x82\x61\x10\x2e\x91\xed\x62\x0b\x21\x4c\x25\xc7\x41\xdc\x51\x55\x13\xf6\x06\xad\x4c\x31\xd9\x4b\xbe\x81\x4a\x55\xad\x32\xf9\x05\x32\xad\xdb\xdb\xe5\xc9\xc0\xe5\xb7\x58\x06\x1a\xbb\x3d\x0f\x72\xf4\x69\xcf\x66\x1b\xc8\x0c\x87\xfd\x9e\x27\x72\xf8\x74\x5f\x81\x30\x9e\xf9\x36\x6f\xb9\x62\xfe\x32\xd4\xca\xf4\x4b\x80\xb0\x94\x55\x9a\xd6\x72\xde\x27\x9f\x93\xf4\x26\x69\xac\x92\x98\x35\x38\xd5\x64\x5c\x5d\xae\xb2\xfb\x6f\x72\xf6\x1e\x24\x6b\x2b\xb1\x6b\xe2\xf3\xa1\xdf\xdd\xed\x1e\x1c\x75\x69\xbf\xb5\xef\x1f\xec\xf7\x69\x7f\xf7\xc6\x42\x38\x9f\xc4\xb6\x2f\xce\xa5\x39\xf7\x0c\xf1\x6c\xb3\x41\x61\x6e\x6b\x2f\xdd\x66\x96\x10\x7e\xe5\x02\xf9\x25\xdb\xf4\x88\x59\xd3\xaf\x31\x05\xa7\xe2\x55\xdf\xa0\xd3\x1f\x68\x4f\x15\x41\x7c\xd7\x19\xd3\x09\x00\x32\xb8\x8a\x46\x2b\x2f\xb5\xc9\xd7\xdc\x45\x7b\x03\x93\xa7\x98\xd5\xf8\xc7\x4d\x3b\xa6\x9b\x75\x97\x15\x85\x8f\x77\x76\x12\xf0\x9d\x6a\x70\xfa\x32\xdb\x93\xc6\x2f\xc0\x6b\x0c\xa7\x39\x3c\xff\x7f\x8e\xdd\x8c\x63\xce\xc9\xc1\x37\x4f\x19\x06\x81\xd1\xb0\x0c\x5f\xf1\xf0\xaa\x0c\x47\x3c\x9c\x97\xe1\x11\x0f\x2f\xca\xf0\x2d\x0f\xcf\x48\xfa\x88\xbc\x8b\x3b\x79\xde\x6c\x8e\x9d\xdc\xc1\xe9\xa4\x28\xd2\x47\x3c\x06\x22\x64\x4c\xfc\x88\xf8\x3c\xbc\x74\x20\xf0\x2e\xee\x2c\x21\xb8\x74\x70\x3c\x29\x8a\x50\x26\x5f\x39\x10\x78\x17\x77\xae\x20\x78\xe5\xe0\x70\x52\x14\x2b\x99\x1c\x39\x10\x78\x17\x77\x22\x08\x46\x0e\x5e\x4d\x8a\x22\x97\xc9\x23\x07\x02\xef\xe2\xce\x08\x82\x23\x07\xe7\x93\xa2\x58\xc8\xe4\x5b\x9e\x3c\x76\x6e\x6f\x1d\xbc\xd0\xda\xfb\xb3\x71\x77\x42\x18\x9e\x8d\xf7\x27\xa4\x45\x1f\x7b\x78\x36\xee\x4d\x48\x82\x6f\x32\x93\x56\x9f\x99\x1c\xd3\xac\x8e\x6f\x46\x87\x9f\xe3\xc0\x51\x99\x2a\x4e\x86\x3f\xc7\x84\x82\xc4\x6b\xc9\x13\xb5\x0f\x52\x01\x66\x87\x90\x77\xb1\x30\x50\xa5\xe1\xb2\x21\x44\x05\x2e\xfc\x21\x0c\x3b\xb9\xe2\xbd\x01\xd6\xc1\x7c\x1f\x87\x6d\xea\x63\x7d\x67\x8b\xfe\x0e\x0b\xf9\x78\x8b\x23\x13\x9c\x90\x0b\x79\xe0\xef\x50\xe3\x8e\x21\xcc\xe5\xb1\xce\x75\x98\xb3\xe7\x2b\xb6\xca\xa8\x0b\x9b\x01\x4e\xf8\x2d\x75\xdb\x83\xc0\x67\x03\x8d\x2e\x7d\xec\xa1\xb6\x4b\x1f\x79\xa8\x28\x5a\xc6\x5d\xe7\x5d\x76\xdf\x1b\xcf\x0f\x75\x44\x2e\x2a\x72\x5a\x4b\x51\xf2\xcd\x15\xa7\x65\xa2\x20\x26\x63\x23\xb7\x92\x48\x22\x97\x6e\x06\x27\x77\x79\xb8\x67\x0f\x49\xdf\xc3\x14\x7e\x13\x41\x0c\x74\x11\x8e\xf9\xd1\x7c\x2c\xac\x4c\x24\x78\x45\x62\x9c\x93\x14\x2f\xf8\x24\x23\x14\xcf\x49\x36\xcc\x3a\x2c\x7d\x1e\x7f\xa5\x91\xbb\x6f\x5a\x5d\xe8\x0c\xbd\x96\xb0\xba\x10\x38\x0e\x96\x02\xba\x61\x7e\xaa\x98\x6e\xf0\xd6\x1e\xa9\xf7\xad\x77\xde\x89\x78\xc1\xba\x26\xd1\x23\x6f\xe8\xb4\xf9\xbd\x14\x5f\x91\xcf\x95\x93\x6d\x87\xf0\xa8\x08\xa9\x1c\xcb\x32\x07\x74\xb6\x9a\x7e\x6b\x40\x30\x31\x55\xc9\xa7\x06\xff\xba\xe5\xbc\x73\x5a\x6e\x38\xbc\x6a\x85\x2d\xe7\xa3\xf0\xb5\xe7\xae\x86\x57\xad\x55\xcb\x19\xc9\x60\x3e\x5c\xb6\xf2\x96\x73\x22\x83\x8b\xa2\x98\x15\xc5\x7c\xe8\x9c\xa9\x88\xe1\x6d\x6b\xd1\x72\x5e\xca\xe0\x6c\x78\xdb\x9a\x95\xa5\xe7\xc3\xdb\xd6\xbc\xe5\x9c\x42\x10\xec\xef\x9e\x66\xf8\x2c\x3b\x3e\xcb\x08\x08\x2a\x1b\xef\x9b\x79\xba\xa4\xc3\xba\xc8\xc0\xd4\x8a\xd4\xea\x69\x44\x28\x11\x4a\x09\xfa\x44\xab\xf0\x3d\x7e\xfc\xd8\x53\x3e\x8e\xe1\x32\x1b\xcf\xdd\xac\x11\x27\x0d\xd6\x6c\x9a\x6e\x0e\xd8\x38\x9b\x60\x30\xa0\xa7\x74\xc8\x94\xb4\x89\xbf\x86\xb1\xf9\x23\x03\xa1\x4c\x7e\xcd\x7f\x97\xa5\xd7\x34\x63\x31\x05\x43\xc1\x4f\x33\x7e\x59\x1d\x65\xe4\x6e\x7d\xcc\x3a\xf9\xea\xfa\x3a\xa3\x79\x7e\x22\x45\x01\xe3\x34\xf9\x20\xa5\xf7\x78\x36\xd6\x89\xca\x84\x97\x61\x12\x2d\x68\x46\xf4\x8b\xf3\x6f\xd9\xf1\x6f\x99\xec\x49\xe7\x33\xbd\xcd\x87\xc6\xb7\xd5\x6f\x65\xe7\x4d\xd9\x28\x16\xda\x79\x0b\xd8\x89\x9a\xcd\x44\x7a\x6d\x2b\x85\xd7\x44\x1f\xde\x64\xe4\x4e\x0a\xa5\x05\xce\xf8\x2c\x8d\xc2\xdb\x46\xc8\x26\x8d\xd7\x67\x0e\x96\xe2\x69\x10\xbf\x4c\x33\x4e\x6c\x98\x49\x1f\x28\xfd\x2c\x9c\x82\x34\xc6\x2a\x5e\x4a\xbb\x05\xce\xf8\x23\xcd\x19\xcd\x4c\x70\x4a\x30\x2e\x70\xc6\xaf\xc3\x9c\x4d\x1a\x76\x51\x25\x91\x16\x38\xaf\x9d\x35\x3e\xc9\xc8\xdd\xeb\xb3\xd3\xc0\xb9\x92\xcf\xf6\x4f\x1c\xfc\xfa\x4c\x04\xe1\x3b\x70\x46\xa3\xbd\x93\x93\x3d\xf1\x86\xfa\x1a\xc2\xa3\x51\xe3\x04\x37\x54\x4c\x25\xaa\xa1\x8b\x42\x12\xaf\x1c\x37\xea\x32\xac\xf1\xab\x8c\xec\x9d\x47\x77\x3e\xee\xae\xf7\xf0\x93\x8c\xdc\xcd\x61\xe3\x0b\x9c\x38\x69\x3c\xcc\x1d\xcc\xf7\xc2\xc0\x79\x98\x37\xc2\xcb\xd4\xc1\x79\xe0\x84\x8d\x39\xbd\x69\xc8\xc5\xe4\xe0\x3c\x0f\x9c\x87\x51\x19\x5e\xf2\x1c\x92\x44\xc4\xcb\x25\x24\xca\x9b\x83\x83\xaf\x02\x27\x4c\x1a\x40\x5e\xe2\xab\x2b\x48\x83\xcb\x83\x83\x23\x5e\x8c\x93\xa4\x38\x8a\x20\x5e\x48\x20\x8e\x00\x1a\xd0\xc4\x78\x34\x12\xc0\x04\x57\x01\xdf\xf2\x24\x20\xb5\xf1\xed\x2d\xa4\xc0\x75\xc1\x59\xe3\xe7\x7c\x32\xe2\xd7\xf0\xfb\x3e\x23\x7b\xee\xf9\x78\xfc\x9f\xf3\xf1\x64\xf7\x7c\x82\x0a\xf7\xfc\x1c\x0d\xdd\xf1\xcb\xab\xc9\x72\xe9\xe6\x39\x1a\x16\xa3\xb4\x18\x8d\x86\xfc\x7f\x71\x92\x16\x27\x27\xf0\x33\xe4\xff\x8b\x28\x8a\x86\xd1\xb0\x88\xd2\x61\x71\x33\x4e\x8b\x9b\xc9\xb0\xf8\x30\x4e\x8b\x0f\x93\x61\xf1\x6b\x3a\x2c\xc4\xab\x76\x51\xfe\x16\x1f\x3f\x16\x97\x97\xee\xe5\xe5\xe5\x10\x0d\x8b\x17\x2f\xdc\x17\x2f\x5e\xf0\x2f\x5a\x3c\x2b\xc2\xe2\x49\x71\x75\x35\x2c\x5e\xbe\x1c\x16\x9f\x3f\x0f\x8b\xe5\x72\x58\xe4\xf9\xb0\x38\xbd\xf3\xf1\xd1\xba\xf8\x5a\xfc\x5e\x7c\xfb\x36\x2c\x3e\x7d\x1a\x16\x1d\xb4\x77\x89\xff\xac\x6f\xf9\xeb\xb3\xd3\xe2\xf5\x59\xf1\xfa\xf5\x90\xff\x2f\x16\x77\x3e\xee\xad\x79\xfe\x5f\xa1\xbf\x3f\xc1\xef\xbf\x61\x50\xf7\xf0\x07\xf8\xcb\xbf\x3e\x8a\x61\xde\x5f\xef\xe1\x6f\xe2\xb3\xb7\xde\xc3\x2f\x33\xb2\x37\x6e\xb5\x27\xc3\xf3\xe8\xae\xbf\xde\xc3\x2f\x64\xfe\xe1\x1e\x7e\x20\x3f\x65\xf0\x17\x23\x28\xa3\x7e\x56\x33\x87\x03\xfd\x5d\x05\x38\xd8\x4f\x06\x58\x1f\x73\xc0\x34\xe5\xc9\xad\x3d\xcc\x52\x9d\xd4\xda\xc3\x49\x4a\xf6\x3e\x15\x3c\xcc\x61\x06\x43\x68\xeb\x65\x8c\x33\x2b\xde\x1d\x06\x22\x09\x0d\x79\x62\x6a\x80\x70\xcf\x3b\xb2\x09\x68\xb8\x87\x63\x9e\xe2\xb5\x8f\x26\x77\x1e\xee\x1e\xf4\xd7\xe3\x7f\x85\xed\x6f\xe7\x2b\xcf\x7b\xe2\xb5\xcf\x57\xde\xc1\xf3\xe7\xe7\x2b\x6f\xe0\xf1\xc0\xc9\x80\x07\x9e\x1f\x41\xe0\xf9\xc9\x53\x1e\x38\x79\x0e\x81\xe7\xde\x80\xff\xfa\x22\xf0\xec\xf9\x84\x2f\x8e\x83\xfe\xba\x18\x9f\xaf\xbc\x3e\x14\xf0\xfa\xcf\x9f\x9f\xef\xa9\x04\xf7\x3c\xdf\x1d\xda\x89\x2a\x09\x89\x85\x15\xe3\x30\xe5\xe3\xb2\x82\xdf\x3c\x25\x1e\x5e\xa4\xc4\xc7\xb3\x94\x74\xf1\x3c\x25\xfb\xf8\x3a\x25\x3d\x7c\x95\x92\x03\xbc\x4c\x49\x1f\xdf\xa6\x64\x80\xbf\xa4\xe4\xf0\xf8\x57\xd7\xf9\xe8\xdc\xa3\xe9\x29\x1e\x18\x4a\xf5\x4e\x29\x77\xe1\xb4\x68\xe0\xb4\x9c\x16\x5d\x23\x0c\x2f\x38\x0e\xdf\x28\xba\x93\xed\xe6\xb0\x05\xa0\x87\xbe\xe7\x19\x45\x78\xa1\x1e\x2f\x24\xb9\xdd\x46\xc2\x47\x07\x1f\x6c\x49\xf9\xe8\xe0\x3e\xde\xf1\xcc\xd4\x57\x92\x5f\x8e\x39\xb1\x8d\x5f\xab\x90\x8f\xf0\x37\xe8\x20\x4b\xc5\xd7\x47\x07\xbf\xc8\xf0\x87\x4c\x86\x78\xf8\xf7\x0c\x7f\x2b\xc3\x1f\x1d\xfc\x29\xc3\x2f\x8d\x88\x32\xe6\x17\x57\x37\x4d\x25\x4d\x70\x9e\xf2\x04\x09\xab\x3c\x44\xf8\x25\x03\x2c\x7b\x92\xae\xa1\xa5\x3f\x94\xa2\x2f\x67\x37\xe9\x49\x7c\x19\x33\xe9\xa4\x31\xb8\xe1\xd7\x35\x09\xa7\x1e\x4a\x7d\x41\x59\xc6\x2a\x02\x5c\x7f\x5e\x64\xc3\x98\x41\x0d\x0c\x52\x63\x04\x81\x37\xa6\xe5\xf2\xdf\xc7\xfd\x43\xb0\xad\x15\x74\xe9\x3e\x12\x87\xdc\x34\xc5\x97\x29\x49\xa8\xeb\xa8\x87\x19\x21\xc7\x3d\x4d\x37\x68\x0c\x69\x21\x67\x83\xcc\x90\xf1\x9b\x27\xae\xe1\x10\x40\x10\xac\x4a\x81\x1d\xfc\x25\xc3\x15\x94\x4d\x2c\xc6\x87\x72\x5e\xe9\xaf\xf1\xaf\xfc\xde\x85\xc5\x65\xa6\x3b\xc1\xce\x28\x75\xb6\x4d\x45\xfd\xba\x03\x33\x11\xbc\x46\xdb\x2b\x80\xde\x67\xc9\xdd\xf0\xd3\x2a\x65\x7c\x34\x98\xbf\x0e\xc7\x00\xf1\x4a\x71\x7b\x84\x5a\xc8\x6b\x1d\x3c\x84\xb9\x38\xe2\x33\x57\x7c\x8d\xcc\x49\x0c\xb5\xda\xc3\xaf\xea\xec\x54\x9d\xb3\x8a\x19\xf3\x4d\xb5\xf5\xde\x52\x46\x01\x3e\xef\x47\xbc\x59\x23\x67\xb2\x31\xd3\x16\xf0\xbe\x44\x51\xdb\x57\x39\x47\x22\xef\x46\x6e\xeb\x25\x46\x0b\xcb\x98\x6e\xad\xe1\x09\x44\xbd\x15\x2b\x2d\xc9\x74\x28\x2a\x49\x03\xb0\x86\x26\x2f\x2e\xf0\xee\x47\xe8\x5a\xdc\x5d\x6e\x52\xb2\x77\x32\x4e\x4f\x26\x43\x79\xa4\x9d\x4f\xf8\xa1\x56\x9c\xe7\xa8\xc5\x5b\x32\xdc\xc3\x17\x29\x71\x7e\x0e\x93\x55\x98\xdd\x5e\x3c\xa7\xd3\x0c\x3e\x46\x61\x36\xbb\xba\x78\x72\x9d\xc5\x8b\x8b\x51\x78\x7b\xf1\xf3\x2a\xa1\x17\x3f\xaf\x16\xb7\x17\x4f\x56\x97\xab\x9c\x5d\x9c\xd2\x6b\x46\x97\x53\x9a\x5d\xbc\x9d\xb1\x94\xff\x7d\x93\x7e\x11\x11\x27\x74\x06\x1f\x8e\xb2\x3a\x7f\xe1\x20\xfc\x56\xd4\xc2\x6b\xe0\xc0\x39\x68\x05\x98\xc3\xe5\x60\x39\x4c\x0e\x8d\x43\xe2\x40\xac\xf2\xcf\x52\x12\xa7\xf8\x2b\xff\xe5\x5b\xf3\x0d\x9f\xd1\x37\x37\x62\x46\xdf\xa4\x8e\x78\x36\x80\xdd\xd0\xf9\xc0\xd3\x3e\x7c\x10\x69\x1f\x78\x9a\x92\x21\x81\xb9\x04\x19\xb1\x73\x23\x42\x2a\x09\x3b\x1f\xc4\xdc\x12\xc9\x07\xf0\xad\x13\x0f\x60\x72\xdc\xe8\x99\x76\x73\x63\xce\xb4\x0f\x3a\xfe\xc3\x07\x1d\xff\xb3\x3b\xe6\x05\x20\x2b\xcf\xc1\xd3\xea\x86\x9d\x8d\xb3\xd2\xf4\x96\x8f\xc4\x9c\x91\xa3\xf7\x39\x25\x77\xf0\xb2\x84\xa3\xf4\x36\xe8\xaf\x79\xcf\x23\xbe\x94\x9c\x88\x77\x4b\xc8\xcd\xf0\xb8\xe8\x2f\xac\x2f\xd3\x63\x88\xb5\x4e\xa3\xbf\x05\xa6\x66\xc1\x47\x7f\x0f\x92\x0d\x84\x0a\x08\xea\x39\x48\x74\xf4\x99\x8c\x2c\x65\x0a\xc4\x28\x02\x01\x0b\x06\x85\xe4\x00\x8b\x08\x6a\x8d\xb1\x88\x7b\x26\x86\x19\x02\xbe\xaf\x87\xdc\x0c\x9b\xf9\x7d\x71\x52\x46\x7a\x88\xa9\xfe\x7a\xa6\xbf\x78\x77\xb7\xec\x19\x55\xaf\x22\x7a\xa7\x89\x7e\xa0\x50\xcd\x06\x15\xfd\x48\x39\xa3\x08\x9f\x86\xbc\x84\xa8\x4f\x14\xff\x91\xdd\xa7\xe2\x4e\x75\xcb\xfe\xd3\x89\x2a\xbb\x8f\xb2\xad\x4a\x55\xd5\x30\x0a\x1c\xeb\x5b\xe6\xbe\x35\xdf\xdf\xa5\xc4\x39\x5d\x25\x51\x78\x7b\x31\x4a\xe1\xcf\xd9\x8a\xe6\xfc\xef\x07\x1a\x25\xe2\xeb\xec\x6a\x95\xc1\xc7\xf3\x2c\xe6\x7f\x4e\x43\xb6\xe2\x57\x40\x6b\xb7\x38\x15\x80\x38\x14\x0e\x82\x17\xe7\x05\x79\x19\x5e\xc0\xca\x7b\x06\x79\x2f\x46\xe9\xc5\xd9\xea\xe2\x03\xbd\x38\xbb\xba\x78\x9e\x5d\x9c\x86\x56\xa6\x3f\x60\xfb\x79\x0a\xbf\x23\xb5\x09\xbd\xe4\x1b\xcd\xcb\x97\x92\xbc\x13\xdc\x7b\x98\xa6\x57\x3c\xe1\xea\x4a\x26\x7c\xa0\x10\xf9\x99\x47\x7e\xfe\x2c\x23\x3f\x8a\xc8\xab\xe5\x72\x83\xc8\x94\xec\x19\xa7\xf5\x41\x59\x6e\x04\xee\x42\xeb\x4f\xd7\x92\x24\x44\x60\x26\x44\x02\xc9\xf3\xff\x0e\x18\x15\x57\xca\x6e\x29\xd0\x2f\xef\x6b\x9f\x21\xf1\x78\x4f\xeb\x5e\xde\xdf\xba\xef\x01\xd9\xd2\xb6\x6f\xd4\x75\x42\xa0\xb0\xe0\xf3\x89\x03\xb6\x3e\x5e\xb9\x62\x14\xb0\x73\x25\x96\xb9\x08\xf9\xfb\xb0\x76\x42\x07\xbf\xa4\xf0\xf5\x44\x7f\xbd\xd4\x8b\xf8\x4a\x7f\x7d\xd6\x5f\x2f\x5f\x9a\xfb\xfc\xd5\x95\x19\xfa\xfc\xd9\x4a\xe3\x88\x7a\xa0\xbf\x79\x8f\x7f\x91\x30\x8c\x94\x97\x65\x0a\xa7\x08\x5e\x3a\x98\x57\x31\xc1\xf3\x54\x44\xf0\x73\xe8\xf3\xe7\x8d\xb5\xa2\xd8\xf2\x7c\xa9\x1c\x33\x69\xb9\x9a\x10\x92\x0d\xbd\x20\x93\xd4\x45\xe8\x60\xe7\x49\x4d\x49\xb0\xbf\xf2\x6e\x69\x2c\x6d\xb0\xe0\x07\x8a\xaf\x17\xa5\xf9\x41\x09\x85\x13\x59\x57\x57\x35\x60\x44\xad\xbc\x01\x18\xd6\xbb\x32\x78\xb8\xe3\x09\x52\x1b\xfa\x5f\xdf\x6a\x45\xe3\xb7\xbb\xc7\x1a\x4a\x79\xe4\x65\x08\x61\x36\xbe\xb6\xa3\x79\xe4\xb6\x6a\x38\x02\xbf\x53\x51\x0f\xec\x8a\xff\xf5\x5a\x71\x17\xa2\xaf\xec\xe8\x74\x5b\x63\x5e\xfe\x4f\xf7\x59\x83\xfd\x27\xfa\x28\xf7\xe0\xdf\x52\xfc\x86\x5f\xe7\xc3\xeb\xc9\x79\x67\xb8\x1c\x9e\x77\x86\x7b\x31\x3e\x11\x57\x9b\x97\x82\x69\xc4\x57\xdd\xab\x94\xdc\x29\x45\xcc\xe0\x4d\x86\x17\x69\x72\x79\x12\x32\x2a\xc4\xfd\x83\x93\x0c\x1b\x9c\xf4\xc0\x79\x25\x02\x0d\x10\xfd\xc5\x42\x32\x6a\x11\x38\x0f\x23\x47\x38\xac\x07\xb2\xf5\xad\x88\x86\x33\x27\x78\x95\x61\xf3\xe9\x2a\x78\x92\x29\x41\xd5\x8b\x14\x1b\x04\x7c\xf0\x36\xc5\xe0\x21\xfe\xb3\xf8\x0b\x3e\xb3\xdf\x95\xdf\xa3\x38\x09\xce\xca\xa0\x28\x73\x9a\x62\xcb\x69\x54\xf0\x26\x5d\xe3\x27\xc0\x25\x78\x0e\xbf\xaf\x53\xb2\xf7\x9f\xf3\x7c\xd7\x75\x87\x81\xe0\x87\xdc\xf5\xd7\x05\xb0\x6f\x50\xdb\x1d\x06\xe7\xd1\x79\xd4\xe6\x3f\xc5\x07\xf9\x29\x3e\x0a\xc1\xa6\x81\x3f\x08\xb9\xc3\xc0\x3d\x2b\x1a\xc8\x55\xec\x94\xca\xdf\x71\x07\x4f\xce\xa3\x16\x1a\xc2\x7f\x77\x7c\xde\x3a\xdf\x60\xbd\x14\xe7\xf9\xee\x27\x9e\xfe\x60\x0f\xbf\xbf\xa7\x55\xb2\x51\x65\x9b\x7e\xac\x49\xf6\x9f\xbf\xda\xa0\x3f\xb7\x32\x8c\xf0\xaf\x29\x19\x8f\x2d\xfd\x22\x07\xef\xe9\x46\xb7\x35\x02\xf7\x26\x92\x7d\xa1\x33\x41\x7f\x2a\x19\x5e\xbc\x78\xf1\xa2\x3d\xfe\x30\xf9\xf0\xa1\xfd\x4c\x67\x51\xa8\xaf\xe4\xb0\xd3\xf7\xf0\x8e\xaf\xab\x38\xb1\x2a\xb8\xdb\x5f\x9b\xb5\x5b\x55\x9b\xc5\x3e\x7e\x1c\x8d\xcc\xe6\xfb\x5e\x59\x4e\xa6\x9c\x47\x77\x87\x6b\xdd\x0e\x68\x86\x6e\xe7\x87\xb2\x26\x9d\x68\xa6\x75\xd7\x66\x65\xba\x89\x83\xf5\xde\x64\x82\x7f\x02\x34\x9a\x3a\x39\xa7\x90\x7c\x1e\x05\xfa\xe7\xbc\x73\x1e\xb5\x00\xbe\xca\x87\x6b\xf3\xe1\x6a\xb6\x8d\x1c\x65\xaa\x99\x24\x63\xf9\xbe\x64\x36\x40\xff\x37\xaa\xe7\x79\x70\x4d\x1e\x6c\x67\xa9\xa4\xea\x14\x23\x5e\xc6\xc9\x18\x8e\x8a\x7f\xc3\xec\xdf\x1b\xf2\x1d\xe5\xdc\x75\xcf\xdb\x43\x3e\x55\xf7\x62\xfc\x81\x27\xf0\x89\x3d\x4a\x93\xe2\x6c\x45\x8b\x0f\x34\x2a\xce\xae\x56\xc5\xf3\x2c\x2e\x4e\x43\x56\x9c\xae\x12\x84\x87\xe7\x39\x1a\xba\x92\xe7\x8e\xce\x73\xf7\xe7\x30\x29\x9e\xd3\x69\x31\x0a\xb3\xe2\xc9\x75\x56\x8c\xc2\xdb\xe2\xe7\x55\x52\xfc\xbc\x5a\x14\x4f\x56\x97\xc5\x29\xbd\x2e\xde\xce\x58\xf1\x26\xfd\x52\x9c\xd0\x19\x2f\xc2\x47\x0b\xf7\xd6\xe2\xf3\x3c\x42\x81\xf8\xc3\x27\xbe\xf8\x42\xc3\xf3\x9c\xb7\xe4\xfd\x59\xf1\x62\x74\x56\x8c\x9f\x3d\x1d\xbd\x9b\x8c\x4f\x4f\x26\x67\xa8\x70\xc7\x9f\xbe\x4d\xf8\x1f\x31\x8b\x7a\x6b\x84\x1e\xec\xe1\x8f\x29\xb9\x7b\x7f\x16\x78\xf8\xc5\x88\xff\x3e\x3b\x39\x0b\xda\xdd\x9e\x87\x9f\x9d\x9e\x05\xed\x7d\xcf\xc3\x4f\x4f\xd4\x07\xc4\xf4\x3d\x3c\x3a\x51\x1f\x3c\xa6\xd7\xf5\xf0\xbb\x13\xf5\x01\x31\x87\xde\xfa\x78\xab\xe5\x4d\xf2\xcc\x75\x40\x31\xa1\x71\x9d\xa5\x5f\xe2\x88\x46\x8d\x38\x07\x5f\x62\x71\xd2\x08\x1b\x19\x9d\xa5\x97\x49\xfc\x8d\x46\x8d\xdf\x9e\x3f\xed\x1e\x76\xbb\x8d\x34\x6b\xbc\x3a\x7d\xdb\x10\x6f\xb0\xca\x3f\x17\xf8\x2b\x63\xd9\x4a\x0a\x07\x85\x8b\x45\xde\xe0\xe0\x1b\x2c\x6d\xfc\x91\x0b\x25\x08\x84\x1b\x37\x57\xf1\xec\x4a\x55\x90\xd1\x45\x1c\x4e\x17\xb4\x11\xce\xb2\x34\xcf\x1b\xe1\x62\xd1\x98\x66\xe9\x4d\x4e\xb3\xbc\x11\x26\x51\xe3\x0b\xcd\xf2\x38\x4d\xf2\x4e\xe3\x4d\x9a\xa8\xfa\xf7\x78\xe5\xfc\xe0\x90\x2d\xc8\x1b\x61\x46\x1b\x51\x9c\xcf\xd2\x55\x16\x5e\xd2\x08\x8a\xde\xc4\x1c\x18\x6d\x64\x74\x99\x7e\xe1\x7d\x4a\x1a\x61\xd2\x58\x5d\xcf\xd2\x65\x9c\x5c\x36\x96\xe1\x1f\x69\xc6\x1b\x40\xc3\x9c\x6a\x3b\x19\x19\x9d\xd3\x8c\xb7\xf8\xc7\x0c\x61\xfc\x91\xb7\x79\x3b\x36\xac\x5f\x58\x17\x5d\xdb\x06\x2a\xed\x5c\xc4\x2d\xc3\x0d\x8a\xd3\x90\x22\xc4\x48\x70\x1e\x95\x61\x71\x62\x10\xc7\x6b\x5c\x5a\x12\xb7\xe2\xe1\x84\xfe\x96\xf2\x11\xd4\xd6\x3d\x96\x71\x62\x1b\x01\xc1\x86\xf5\x8f\xce\x32\xfc\x0a\xd6\x10\x69\x18\x75\x7e\xb0\x93\xcb\x38\x69\x2f\xc3\xaf\x7b\xce\x26\xe7\x7b\x9b\xfc\xf1\xf1\x16\x3d\x36\x43\x81\x6d\x48\x81\x77\x29\x54\x80\x68\xb0\x74\x79\xf7\x5f\x56\xba\xc2\x1b\xbb\xbd\x2b\xbc\xa3\xff\x6f\x74\xe5\xf1\x66\x57\x5e\xa4\x64\x93\xab\x0a\xca\xb3\x49\x7a\x33\x54\x1f\x2e\x0a\x5a\x6a\x6a\xac\xf1\x83\x94\x8c\x15\x7b\x5e\x69\x64\x61\xcd\xec\x94\x8c\x2a\xc1\xb6\x90\xd7\x1a\xf5\xc0\xa7\x64\xbd\x6c\xe3\x02\x93\xe3\x57\x0c\xf4\x65\x9d\xc0\x41\x18\xbe\x3f\x09\x27\xe6\xdf\x20\x3a\x13\xcc\xfe\x4f\xf2\x93\x13\xfc\x3c\xfd\xd3\xa7\xfa\x7b\x83\xb4\x89\x2b\xdc\x2a\xb0\x6f\x4b\x6d\x70\x50\x92\x8a\xbf\xa4\x64\x4f\x92\x08\x82\xb8\xd8\xbb\x8c\x8f\x6d\xd3\x27\x9b\xb3\xf7\x67\xd8\xab\xcf\xdb\xc5\x79\x0b\x0d\xf9\x4e\x79\x1e\xed\xa2\x71\xa7\x31\x81\xbd\xb9\x85\xce\x03\xf8\xc3\x49\x12\xf9\xc5\x8f\x97\x5d\x49\x6f\xfc\x0e\xa5\x45\xe1\x77\xbc\xf4\xb8\xdd\x9a\x0c\xc7\x5e\xfb\x08\x77\x26\xbb\xe8\xa3\x00\x69\x47\x8e\xea\x22\x3f\xd4\x45\x9e\x40\xe4\xd9\x66\xc2\xcb\x1f\x86\x7b\x2a\x1a\x7a\xfc\x0b\xeb\xcc\x13\xf2\x1b\x2b\xd9\xfb\xf8\x17\xad\x4b\x4c\x46\x0c\x70\xf1\x29\x25\x34\x71\x7d\xec\x84\x51\xe4\x20\x4c\x63\x1e\x6c\xfb\xd8\x51\xda\x6d\x0e\x3a\xae\xe8\xd1\x12\x83\x54\x3a\x53\xc7\xf8\x27\x07\x6f\x6a\xe0\xd6\xe6\x1c\x7f\x9a\x08\x99\x0f\x16\x5b\x2b\x6f\x11\x26\x97\xee\x86\x31\xa1\x57\x62\xb5\x61\xdb\x9c\x90\xc9\xbc\xe3\x5b\x27\xf8\x9b\xbc\xa2\x0d\x0e\x63\x15\x5e\x52\xe9\x9f\x71\x95\x81\xb4\x41\xa7\xf1\x7e\xb3\xb0\x6b\xba\x80\x54\xe5\xf2\xca\x3e\xba\x45\x99\xd4\xac\xde\xd4\x65\x15\x6c\x24\xf1\x1a\x76\x79\x79\xff\x9b\x1b\x5f\x5a\x1f\x37\xdf\xdd\x5e\xbc\xb8\xbf\x98\x64\x0c\x5a\x25\x9f\x24\xae\x73\x79\xc9\x2b\x74\x14\x54\xa7\x8c\xad\x89\xe6\x24\x60\xc9\x93\xae\x24\x6c\xa6\x48\x86\xa6\x78\x50\xe2\x1d\x33\x59\x9a\x32\xf6\xc5\x8b\x92\x77\xfd\x51\xbd\xef\xbd\xae\xe4\x12\x8c\xcc\x17\xfa\xc9\xef\x52\x7f\xf1\x5a\x4b\x4e\x06\x6f\x73\x19\x12\x6d\x2a\x9f\x02\x45\x9f\xca\xb0\x6c\x74\xf9\x34\x28\x7b\x2d\x23\x7e\x76\xc7\x0a\x3b\x0a\x1d\xb2\x97\xa2\xe0\x77\x39\xe2\x5d\xcd\x11\x97\xb0\x44\x77\xad\x72\x52\xe2\x31\x19\xdf\xf7\x1c\xf8\xab\xeb\xfc\x0a\xac\xf3\x5f\x53\x63\xb7\x05\x64\x96\x5b\xef\xaf\x02\x8f\x3a\x62\x00\x5d\xfa\xd5\xc1\xff\x06\x8e\x0d\xff\xaa\x7b\xe6\xd9\xdf\x75\xc5\x4b\x8f\xac\xe8\xc4\xc1\x63\x87\x93\xf1\xdd\x09\x76\x4e\x04\xab\x9e\x51\xc5\xaa\x86\xfd\xfb\x44\xb1\xa1\x79\xe8\x08\xaa\x39\xd1\x6c\xa7\x93\x13\x73\x08\x4e\xd2\x2d\x0c\x5f\x3a\x64\xd2\x3d\xd5\xc6\xed\xb9\x28\x58\xe7\x22\x35\xaf\xd3\x5b\xb3\xbe\xa6\x49\x4c\x13\x26\x19\x40\x27\xbc\x6d\x27\xce\x04\xcf\xc4\xf3\xed\x66\xe5\x0c\x1c\xd5\xdd\xb8\x54\x1a\x10\x7e\x91\xa1\xb1\x37\x51\x67\x42\x12\x03\xa3\x40\xd8\xcf\xda\xf1\xf8\x82\x74\xe0\x46\xc3\x11\xc2\xff\xee\x73\x94\x9c\x48\xa4\x48\x2d\x37\xcd\xc4\x97\x41\xc8\xa1\xf9\xf4\x2a\xb2\x27\x71\x73\xe2\xe0\x9f\x15\x9e\x78\xe0\xa3\xe4\xa6\x41\x40\xc4\xd5\x1e\x67\xa5\x23\xaf\x1b\x3d\x25\x96\xbc\x61\xfc\xda\x21\x58\xb8\xf2\x78\x15\x6f\x8e\xea\xa8\x5d\xca\x47\x47\x19\xf6\x45\x3b\x96\x7a\xb4\x96\x4b\x3d\x5a\xbc\x19\x4b\x5e\x64\xe9\x4c\xf0\x75\x2a\xf5\x9b\x04\x4a\x46\x4a\x18\x67\xc7\x07\xac\xe4\xbc\x6a\x7e\x13\x12\x55\x6b\x73\x41\xaf\xdc\xf2\x70\xcf\x45\xd5\x2a\xec\x8b\x77\xa8\x5c\x57\x9d\xe7\x56\xd5\x39\x2f\x92\x3b\x13\x7c\x25\xab\x4e\x45\xd5\xa7\x4a\x48\x48\x56\x7d\xba\x85\x1d\xfb\x5f\xff\xa5\xf8\xaf\x86\x3a\xf1\x9e\xef\x79\x48\x6f\x91\xfc\x62\x57\xbf\x45\x6e\x2b\x6c\x96\x3d\x85\xf1\xf7\x70\xc5\x42\x92\x4e\x3e\x95\x52\x0f\x9b\xfb\xaf\x2f\x8d\x86\x58\xd0\x4d\xc8\xbc\xec\xc1\xb6\xb2\xdf\x2f\x7c\xea\xe0\xfe\x96\xd2\x74\xff\xfb\xa5\x4f\x1d\x3c\xd8\x56\xbc\xf7\x03\xc5\x4f\x1d\x7c\xb8\xad\xfc\xc1\x8f\x94\x3f\x75\xf0\xd1\x36\x00\xfd\x7a\x00\x30\xc7\xcb\x61\x10\x7a\xf4\x62\xa6\x1b\xb1\x7e\x1f\x66\xda\x29\x5f\x74\xb0\x0d\xf2\x80\x08\x7d\x50\x21\x11\xfc\x98\x89\x49\x17\xc7\x20\xaf\x10\xc7\x44\x0c\xe9\x71\x1c\x4b\x3e\xe5\x23\x72\x74\x1c\xc7\x2d\xe2\x9c\x3a\xe8\x9b\x1b\xc7\x98\xa6\xa8\xcc\xbb\x25\xe3\x2f\x3c\xe3\xc7\x44\xc0\x0e\xd5\x5a\x2a\xe5\x4a\xf5\xac\xfe\x26\x1f\x07\xbf\xa5\x09\x7d\x32\x9d\xca\xb7\x98\x6f\x66\xf4\x9b\x70\x49\x95\xfe\x5d\x4c\xbe\x94\xc4\xd9\xf1\x2a\xee\x84\x51\x44\x3e\xa5\x78\x15\x6b\x03\x73\x24\x4b\x20\xb8\x48\x13\x4a\x52\xf8\x8e\xe2\xf9\x9c\x44\xf0\x09\x36\xb6\xc8\x67\xf8\x16\x17\x53\xf2\x45\x04\xb2\x74\x49\xa6\xfa\xf3\x4d\x7a\x43\x2e\x21\xc4\x52\x72\x23\x3f\x78\xe4\x05\x7c\x5f\x52\x46\x62\xca\xbf\x24\x75\xf8\x84\x91\x13\x48\x91\x06\xb8\x48\x28\x43\xc2\xa4\x16\x59\xe9\x20\xbb\xa1\x34\x21\xb9\x0c\x9f\x86\x4b\x4a\x16\x46\xe0\x6d\x26\xca\xcf\xac\x38\x09\x65\x2e\x23\x85\x59\xff\xdf\x20\xc4\x29\x31\xc2\x62\xf8\x14\xb6\x38\xde\x26\x65\x80\x93\x5c\xe4\x19\x44\x2c\xc3\xaf\xe4\x25\xa0\x6a\x19\x27\xe4\x1b\x7c\xf1\x73\x37\x4e\x2e\x9f\x2f\xc2\xcb\x9c\xbc\x81\x6c\xfc\x02\x10\x42\xd7\xa4\xf2\x2e\xf9\x2a\xe2\x25\x79\x4b\x68\x2c\xb0\x01\x92\x30\xe4\x0f\x89\x1b\xe9\x98\xe3\xa9\x0c\xf2\xb3\x84\x9c\xc9\x80\x36\x05\x40\x96\xa2\x03\x49\x7e\xcd\x33\xdf\xca\xf4\x9f\x4f\xdf\xbe\x21\x23\x19\x90\x39\xaf\x20\xb8\x4a\xe2\xaf\xe4\x14\x3e\xa5\x59\x06\xf2\x4e\x0c\x2f\xb8\x0b\x4f\x13\xe8\xdf\x2b\x88\xe2\x77\x32\x72\x99\x0a\x0c\xbd\xa6\xe1\x35\x1c\x1b\x0c\xba\xa2\x88\x2c\xf2\x5c\x62\x50\xd3\x58\xe4\x35\xc4\x48\xea\x81\x94\x9f\x39\xf9\xb7\x40\x1b\xc8\x66\x5c\x01\x98\x28\xbc\xcd\x5f\x25\x42\x5a\x63\xa9\x01\x13\xf9\x37\x27\x67\xd4\x80\x4e\xca\xcf\x9c\xfc\xa1\x73\xe7\xaf\x12\xa8\xf7\x4f\xb3\x25\x2a\xf2\xbd\x98\xaf\x1c\x79\x49\x2c\x6b\x24\xb2\x62\xf2\x5c\xc3\xe0\xb1\xaf\xcd\xba\x78\xc4\x7b\xd5\x44\x79\x60\x7e\x00\x58\xfc\x0e\x4a\xe4\xdf\x9c\x9c\xa8\xf1\x5f\x31\x4a\xf4\x57\x4e\xb2\x58\x0c\x3d\x5f\x9c\x44\x7f\xe5\x24\x8d\x45\x7e\xbd\x72\xc9\xaa\x62\xc6\x38\x84\x1c\xda\x46\x12\x79\xcf\x64\x98\xfc\xca\xf4\x34\x24\x3f\x31\x35\xdb\x40\xe1\x99\xfc\x1b\xc2\x57\x61\xfe\x64\x11\x5f\x26\x34\x7a\x99\xae\x32\x09\xe0\x03\x13\xfd\x3a\x39\x3d\x23\x1f\xe5\x37\xd8\x65\x22\x2f\x65\xe8\xbd\xae\xec\x45\x19\x43\x1e\xa8\xef\xb3\xa7\xf2\x5b\xed\x29\xe4\x5b\xa2\x82\x7c\x2f\x21\x2f\x35\x92\x73\x7e\x9f\x82\x8f\x46\x38\x9b\xd1\x3c\x4f\xb3\xea\x75\x8a\x5f\x84\x80\x8d\xa5\xb8\x18\x0e\x4e\x62\xa4\x27\x46\x2e\x6e\x64\xfc\xeb\x5e\x10\x90\x45\xc1\x70\xf0\x15\x45\x6a\xca\x02\x04\xf8\xb8\x17\x00\xcf\x51\x96\xbf\x4c\x91\xea\x92\x75\x25\xe4\x11\xdb\xb9\x31\xae\x61\xa3\xfc\xaf\x72\x65\x38\xe4\x3d\x07\xff\xc9\x90\x1e\x1e\x65\x14\xfc\x19\xbf\xb4\x94\xe1\x6a\xeb\xff\x82\x0f\xff\x9c\xb5\x73\x01\xa4\xc2\xad\xe3\x1b\x75\x9c\x26\x0e\xfe\x26\x8d\x52\xe5\x31\x39\x33\x4e\x82\xdc\xd8\xff\xff\xc0\x39\x9f\x76\xe6\xcb\x16\x79\xca\xe3\x8c\xb7\x2d\x32\xe2\x11\x92\xd6\x26\xbf\xf1\x80\xf2\x11\x45\x7e\x49\x20\xa8\xf5\x57\x64\x84\xf9\xae\x45\xde\x40\x16\xad\xf9\x42\x4e\x78\x98\xcf\xc8\x77\xfc\x43\xe9\x03\xd3\x32\x00\x2f\x58\x64\x66\xc4\x00\x1d\x4f\x22\x23\x06\x24\x40\xc8\x97\x6a\x29\x11\x7d\x0b\xd1\xb0\xdd\x7c\x86\xcf\x79\x9c\x81\x48\xbd\x5c\xed\xa7\x95\x48\xd8\x81\xde\xe9\x42\xb0\x81\xfc\x66\x05\x47\x71\x42\x4e\xac\x18\xd1\xc8\x37\x56\x9c\x68\xe6\x13\x2b\x4e\xb4\xe8\xcf\xcd\xb2\x22\xe1\xd7\x6a\x35\x22\xfa\x27\x88\x8e\xf3\x77\x23\xf2\x42\xf4\x51\x3d\x64\x3f\xa0\xf8\x93\x30\xd3\x87\xef\xb6\x3c\x2c\x2a\xb1\x7b\x97\x5d\x15\x39\x2b\x92\xa8\xc8\x22\xb4\xa7\xdf\x24\x37\xa4\x2f\x09\x7d\xe8\x7b\x5a\xd0\xb7\x05\xae\x9a\x6e\x5c\x1e\xe9\x71\xf2\x76\xe8\xb0\x2b\x27\x00\xff\x4d\x43\x27\x67\x4e\x20\xdc\x6b\x3b\x49\xe4\x04\xfb\xe2\x33\x8b\x9c\x80\xe7\x42\x6b\x60\xf9\xc2\x31\xab\x97\x1a\x04\xeb\xd7\xb9\x48\x86\xc3\xd7\xd8\x33\x3e\x51\x05\x44\x9c\xc8\x16\x20\x1e\xf5\x5d\x60\x22\x53\xb9\x09\xc9\x85\xb0\x88\x89\xf2\x1b\x82\x67\x31\x59\x66\xae\x20\x09\xe7\xe2\x9b\x7f\x46\x32\xda\x41\xf8\x5a\x7c\x5e\x39\x08\x5f\x89\x4f\x4e\xca\x2f\xc5\xe7\x8d\x83\xf0\xad\xf8\x1c\x39\x08\x7f\x11\x9f\xb7\x0e\xc2\xd3\x98\x4c\x33\x8b\xc6\xe4\x70\x2f\x45\x6c\x19\x71\xa3\xb2\x89\x4b\x13\xc2\x17\x22\x42\xa8\x2d\x20\xfc\x56\x04\x85\x2d\x02\xfc\x4c\xe6\x56\x86\x1e\xbf\x8a\xb0\x50\x4c\x40\xf8\x73\x6c\x98\x1c\xc1\xef\x62\x72\x97\xe7\x41\xaf\x87\xf3\xa0\x77\x80\x97\xfc\xe7\x2a\xe8\x76\x71\x14\x74\xfb\x78\x14\xf8\xfe\x1a\x9f\x1a\xa8\x38\x8b\x2d\x3e\x9e\x9a\x09\x67\x25\xf5\xf4\x94\xe1\xb3\x98\xe7\x25\x71\x06\x5f\x51\x44\x56\xf0\xa5\x29\x9d\x5c\x24\xe4\xe4\x5a\x7e\x98\x24\x2c\x99\xc5\x22\x52\x5e\xd4\xc8\x3c\x56\x99\xc4\x99\x1a\xc9\x30\xbc\xbf\x93\x6b\x19\x3a\xe1\x0b\xf1\x4a\x06\x04\x6d\xb0\x54\x05\xc5\xb6\x71\x2b\x83\x1f\xe1\x70\xf8\x02\x21\x45\xfc\x5c\x41\x43\xa4\x26\x3f\x99\x41\x48\x50\xba\xb7\xf0\xcd\xe9\xd2\x2f\xf0\x65\x1d\xd2\x53\x00\xa2\x42\x97\xb1\xc8\x20\x9a\x79\x03\x21\x41\x1e\x5c\xc0\x37\xec\x15\x6f\xe1\x53\x90\x35\x97\x02\xa2\x3c\xef\x20\x41\x9c\x5c\x5f\x45\x59\x69\xa8\x8e\x7c\x85\x7c\x26\xbd\xf7\x4e\xc6\x54\x82\x40\xf0\x89\x40\x49\xb3\x9e\x55\x69\x56\x01\x2b\x57\x85\x9f\xb9\x8e\x11\xdc\x64\x7c\x1a\x56\xd4\x2d\xeb\x53\x6a\xd1\x34\xdc\x24\x65\xf1\x8c\x02\xdf\x73\x16\x5e\xc7\x2c\x5c\xe4\xc8\xc1\xef\x32\x04\x75\x4b\x3a\xfa\x57\xd7\xf9\x5d\xde\x3e\x38\xf5\x29\x2e\x24\x5f\x65\x8c\x1c\x07\xc1\x9c\xff\xaa\x99\x71\xbf\x3b\x38\x15\xac\x97\xdf\x37\x65\x40\x12\xeb\x69\x89\xdf\x4c\x4d\x47\x01\xe0\x33\x5a\xc8\x90\x7c\xfd\x5e\xd9\x1b\x97\xca\x07\x28\xf9\xe4\x46\x9c\x6e\xa7\xdb\xed\x74\x6d\x1e\xec\x69\x46\xe8\xda\xfd\xcc\x78\xc6\x79\x42\x56\xb1\xf0\x23\x49\x4e\x19\x86\xb7\x25\x72\xc6\x3f\x92\xf4\x86\xbc\x48\x31\xd8\xb2\x24\x73\xfe\x97\xd3\xda\x2f\x12\xe5\x91\x32\x27\x34\xc3\x8c\x9f\xf4\xfc\xbc\x5c\x61\xb5\x0f\x91\x4f\x14\x97\x4c\xf1\x25\x66\x9d\x48\x72\x8d\xc9\x2f\x0c\x0a\x08\x4f\x7d\x64\x8a\x4b\xe1\x46\x92\x64\xd8\x30\x94\x49\x1e\x24\xd8\xdc\xd7\x48\x22\x4a\x9e\x28\x48\x6f\x18\xb6\x04\xbe\x09\xcb\xb0\x25\x97\x49\xd2\x4c\xb0\xcf\xe3\x84\xbe\x96\x5e\x1a\x98\x76\x2d\x24\x63\x18\xd3\xb5\xe4\x24\x63\xb8\x22\xa4\x49\xb2\x0c\xf0\x90\x2d\xc3\x45\xfc\x8d\xbe\x4f\x62\x96\x93\x27\x98\x59\x47\xfd\x6f\x7c\xfb\xe1\xd3\xef\x6d\x56\x49\x39\xbb\xca\x68\x7e\x95\x2e\x22\xf2\x8c\x27\xd9\x16\xd5\x49\xc2\x7b\xa8\xf7\x1f\x31\x08\x2f\xcf\x46\xaf\x0f\x2e\x9e\x8f\xce\xc8\xdd\xc9\x93\xb3\x67\x67\xaf\x46\xcf\x2e\x5e\xbf\x7d\xfa\xe4\x75\xb0\xc1\xf6\x77\xb0\x9d\xe3\xe2\xf4\xd9\xd3\xb7\x6f\x4e\x4e\x37\x73\x82\x44\x40\x25\xf3\xa8\x3e\x1f\x18\x07\x85\xbc\x81\x25\xbc\xc1\x4b\x06\x4a\x82\x00\xc0\xe8\xda\xca\x2a\x20\x7e\x64\x44\x09\x68\x1f\x9e\x3d\xfb\x45\x42\x93\x32\x12\xa3\xb7\x6f\xce\x5e\xea\x0a\x9c\x35\x66\x6b\xb4\x46\x52\x7f\x12\x27\xee\xfe\x41\x17\xc1\x44\xae\xf0\x28\x69\x87\x7e\xbd\x4e\x33\x96\xd7\xa9\x71\xd0\xce\x0d\x9d\x5e\x87\xb3\xcf\xef\xd2\xc5\xed\x3c\x5e\x2c\xc0\x13\xa7\x5e\xfe\xf6\x43\x2c\xed\x5c\x87\x7c\x02\x8f\x27\x98\x76\x66\x57\xf1\x22\xca\x68\x02\x05\x54\x80\x8c\x27\x08\x4b\x85\x49\x31\x89\xa4\xa2\xe6\xad\x4b\xb1\xb3\x48\xc3\x88\x46\x0e\xbe\xa3\xc9\x6a\x49\xb3\x70\xba\xa0\xc1\x8e\x87\x2f\x29\x0b\x36\x59\x35\xb4\xb3\xe0\x14\xc2\x56\x60\xf1\x8f\x03\x8a\x39\xa0\x8d\x9e\x12\x1f\x61\xba\x5e\x6f\xec\x0d\x0e\xdf\xe9\x84\x74\xaf\xa3\x1c\xc7\xb9\x87\xfb\x08\xa7\x24\xe9\x24\x6e\x06\xde\x1d\x5c\xff\x10\xe1\x10\x22\xf8\xad\x85\x47\x20\x9c\x43\x78\x85\xf0\x82\x24\x6e\xcf\x43\x78\x46\x5c\x1e\xb3\x40\x38\x71\xfd\x03\x0f\x21\x3c\xe7\x39\x0f\xba\x08\x47\xf0\xb1\x8f\xf0\x35\x49\xdc\xfd\xfe\x11\xc2\x57\x10\xd3\x43\x78\x49\x6a\x39\xdc\x12\x13\xf3\x8c\xd2\x6f\xd4\xad\xc3\x4b\x4c\x73\x97\xe2\xbb\x2c\xbc\x09\xee\x60\x47\x0d\xec\x32\x8c\xd3\x5c\x68\xed\x8e\x9d\xf3\xa4\xd1\xf8\x73\x45\xb3\x5b\xf7\x41\x1c\x05\x0d\xb1\xa5\xef\xe0\xc6\x03\x20\x74\x83\xc6\xab\x84\x35\x48\xc3\xf7\x70\xe3\x41\x38\x67\x34\x53\x59\x50\xe3\x8e\x17\x6d\x34\xe4\x03\xdb\x6f\xf4\x3a\xcd\x63\x96\x66\xb7\x2a\xa1\xd1\x98\xae\x2e\xdd\xeb\x8c\xce\xe3\xaf\x41\xe3\x41\x1c\xa1\x32\xa5\xd1\xe0\xcd\x84\x9d\x28\x77\x65\x4d\xa2\x46\xdc\x90\xd5\x88\xea\xac\x32\x8d\x46\x92\x46\x34\xb7\xa3\x1a\x8d\x4e\xa7\xf3\x14\x64\x3a\x36\xa3\xd3\x25\xdf\x28\x37\xe2\x5f\x87\x53\xba\x78\x0a\xef\x6c\x1b\x69\xa7\x94\x9d\xc5\x6c\x51\x9b\x70\xca\x42\xb6\xca\xcd\x94\xb5\x19\xb8\x0e\x2f\xe9\xab\x64\x9e\x56\x1b\x78\x15\xe6\x6f\xe8\x57\xf6\x2e\xac\x56\x47\x93\xe8\xe9\x2a\xcb\xd3\x6c\x0b\x48\xfd\x29\x3f\xe0\x0f\xfc\x38\xd8\xb9\xff\x8f\x33\xc1\xff\xdf\xe0\xfe\xff\xef\xe0\x22\x7c\x4b\x42\x17\xb9\x4b\x7c\xd5\x09\xb5\x48\x53\x78\xc9\x31\x22\xa2\x04\x76\x74\xdc\xac\x13\x76\xe6\x2a\x10\x99\x81\xb9\x11\x40\xf8\x0b\xa9\xb9\xe9\x75\xe2\x48\xdb\x59\xd3\xd5\x3d\x5b\x50\x60\x79\x2c\x3a\xbf\xf2\x29\x86\xef\x60\xa6\x05\xb7\xf8\x4b\x98\x81\x38\x53\x1e\xdc\xc5\x51\xc0\xb0\x98\x02\xbe\xe7\x59\x5b\x6c\x09\x9c\x1f\x06\x71\x72\x89\x13\x42\x3b\x34\xcb\xd2\x0c\x1c\x5a\x47\x21\x0b\xc1\x20\xfe\x9c\xb2\xd9\xd5\x28\xcd\xf4\x15\x83\x0d\x37\x1b\x91\x76\x42\x30\xab\x87\x82\xa4\x26\xd5\xb9\x16\x46\xf7\xb0\x03\xe6\x7a\x82\x86\x83\x13\x14\x6c\xe6\xbb\xee\x84\xf8\x2e\xbd\xce\x83\xac\xb3\x31\xf3\x3b\xd3\xd5\x65\xa7\x9c\xd8\x1d\x98\xad\x58\x37\x2e\x88\xf9\x19\xbc\x3e\x66\x9d\x90\x7c\xf9\xce\x51\x52\x7f\x92\x31\xec\x5c\x5c\xd0\x7c\x94\x46\xab\x05\x75\xb0\xdc\xb7\x41\xaa\x5a\x8b\x31\x48\xcb\x7b\xf2\x30\xba\x3b\xf0\x02\xe7\xff\xcc\xf7\xe9\xc1\xfc\xc0\xc1\xbe\xc7\x43\xd4\x9f\x52\x3a\x70\x70\x17\x42\x33\x7a\xb4\x1f\x1d\x3a\x78\x1f\x42\xd3\xb0\x7f\x38\x3b\x74\x70\x0f\x42\xe1\xb4\x37\x98\xce\x1c\x7c\x00\xa1\xa3\x59\x77\x30\xf5\x1c\xdc\x87\xd0\x21\xed\xf6\xc2\xd0\xc1\x03\x08\x0d\xa6\xfe\x3c\xec\x3a\xf8\x10\x42\xfd\xd0\x9f\x1e\x85\x0e\x3e\x82\x50\x2f\xf4\x7b\x87\x33\x07\x3f\x91\xd5\x87\x87\xde\x9c\x07\x45\xfd\xd4\xeb\x79\xf3\xa9\x83\x9f\x88\x2a\xa3\x03\xcf\x9b\x1f\x39\xf8\x89\x80\x1b\x86\x9e\x37\x9f\x3b\x6b\x9c\x92\xac\x94\xe8\x20\xe9\xff\x55\xf4\xd1\x88\x0e\xe6\x7d\x85\xbe\xc8\x9f\xf5\xe8\x91\x42\xdf\x74\xff\x28\x8a\xa6\x0a\x7d\x47\x07\x83\x83\x59\xa4\xd0\x37\xa0\x07\x83\x59\x57\xa1\xaf\x3f\xd8\x0f\xa7\x03\x85\xbe\x03\xba\x7f\x30\xf5\x15\xfa\x0e\xfc\x6e\x14\x1e\x2a\xf4\xf5\x0e\xba\x83\xd0\x53\xe8\xdb\xf7\xfd\xe9\x51\x57\xa3\x6f\xba\x7f\x78\x38\x9f\x6b\xf4\x0d\x66\xbd\x08\x82\xa2\xca\xfe\x81\x3f\x87\xa0\x80\xdb\xef\x7a\x1e\x0d\xff\x69\xf4\xed\xcf\xbb\xf3\x48\xa1\x6f\x3a\x8d\x28\x1f\x6f\xd1\xfc\x23\x6f\x16\xf2\xe1\x16\xe8\xeb\xf7\xa6\x07\x1c\xd1\xa2\x2f\xbd\x6e\x08\xb3\x56\xa0\xaf\xeb\x1f\xf5\xe7\xfb\x0a\x7d\x3e\x3d\x3c\xa4\x07\x0a\x7d\xfe\xd1\xa0\x1f\xe9\xd9\xe7\x1f\xf4\x0f\x66\x1a\x7d\x5e\xd4\x1b\x84\xbe\x46\xdf\x61\x77\xea\x1b\xe8\xeb\xf5\x0e\x43\x03\x7d\xdd\xa3\xc1\x91\x81\xbe\xee\x51\xbf\xfb\xcf\xcf\x3e\x7f\x7e\x30\xa7\x1a\x7d\x7c\x29\xcf\x14\xfa\x0e\xfd\xa8\x37\x0f\x15\xfa\x7a\xf3\xd9\xfe\x7c\xa0\xd0\xd7\x3d\x9a\xf6\x39\x32\x05\xfa\xbc\xfd\xf0\x68\xde\x53\xe8\xf3\xf6\x8f\xa6\x25\xfa\xbc\xee\xe1\x61\xe4\x2b\xf4\x79\xdd\xc1\x60\x1a\x69\xf4\xf9\x07\x83\xa3\x69\x89\x3e\x2f\x32\x67\x5f\xcf\x9b\xf5\x0c\xf4\x79\xde\xd4\x33\xd0\xe7\x79\x47\xfe\x3f\x3f\xfb\xbc\xf9\x80\xa3\x48\xa2\xaf\x4b\xa7\xf3\xae\x46\x9f\x17\x51\x5a\xa2\x2f\x8a\x3c\xea\x6b\xf4\xf5\x67\xfd\x28\xd4\xe8\xf3\xa6\xb3\xa8\x44\x9f\x17\xce\x66\x7a\xf1\x7a\xde\xd1\x20\x1c\x68\xf4\x79\x87\xfb\x87\x73\x8d\x3e\xaf\xef\xf5\x7b\x25\xfa\x7a\xf3\xb9\x81\x3e\xff\x50\x06\x15\xfa\xe8\x81\x85\xbe\xe9\x61\xd4\xfb\xe7\xd1\xd7\x9d\xfb\x25\xfa\xa2\x79\x34\x2d\xd1\x37\x9b\xce\x7a\x25\xfa\xa6\xfd\x70\x56\xa2\x2f\xec\x1f\x19\xe8\x3b\xea\x1f\x1e\x96\xe8\x3b\x3c\x1a\x4c\x4b\xf4\x0d\x8e\xfa\xd3\x12\x7d\xfd\xa3\x83\x59\x89\xbe\x5e\xd4\xf3\x34\xfa\xc2\xc1\x7c\x4e\xa7\x1a\x7d\xfd\xde\x7c\xce\x87\x48\xa2\xcf\x8f\xe8\xd1\xb4\x6f\xa2\x6f\x1e\x1e\xfc\xd3\xe8\x3b\x9c\x1f\xf0\xc3\x42\xb4\x7f\x76\x48\xfb\x33\x7d\x74\x84\x07\x51\x9f\xcf\x9b\x7d\xb9\x94\x67\x83\xc3\x9e\x42\x5f\xbf\x3f\x9d\xf6\x35\xfa\x7a\xb3\x70\x7e\xa0\x4f\xde\xde\x7e\xe8\xf5\x06\x0a\x7d\xfb\x87\x87\x74\x7f\xa6\xd0\xd7\xa5\x83\x68\xbf\xab\xd0\xe7\x4f\x0f\x68\xb7\x44\xdf\xf4\x68\xde\x9f\x85\x25\xfa\x8e\xe6\x5e\x48\xcd\xd9\xd7\x1f\x98\xe8\x9b\x1d\x1e\xec\xff\xc3\xe8\x9b\xfb\xf3\xc3\x12\x7d\xd1\x8c\x46\x9c\x38\x91\x84\xcb\x01\xf5\xc3\x03\x85\xbe\x90\x46\x07\x87\x7a\xf1\x1e\xcd\x66\xb3\xbe\x3e\x3a\x0e\xa7\xb3\xfd\x5e\xa8\xd0\x37\x98\x4d\xf7\x7b\x5d\x85\xbe\xfe\xe1\xd1\x7c\x5f\x9f\xbc\x07\x07\x87\xd3\xae\x5e\xbc\xfb\xfb\xfd\x23\x9f\x6a\xf4\xcd\x66\xf3\xf9\x91\xa7\xd1\x37\xed\xce\xe7\x07\x47\x1a\x7d\x83\xfe\x7c\xee\xed\x97\x27\x6f\x2f\x8a\xfc\xc1\x3f\x8d\xbe\xa3\xf9\x94\x53\x7a\xa2\xfd\x73\x6f\xde\x9b\xed\x2b\xf4\xd1\x3e\xa5\x47\x33\x85\xbe\x68\x46\x07\x83\x03\x85\xbe\xa8\x47\xfd\x83\x81\x42\xdf\x2c\x8a\x66\xfb\x47\x0a\x7d\x33\x6f\x16\xee\xef\x2b\xf4\x85\xf3\x69\xaf\xab\x17\xef\x11\x3d\x8a\xba\x3d\x85\xbe\xc3\xee\x60\xe0\x0f\x34\xfa\xe6\xbd\xf9\x9c\x8f\x90\xa2\xfb\xe8\x7c\xde\xf3\x35\xfa\x66\x1c\x7d\x5e\x49\xf7\x51\x1a\x7a\xde\x3f\x8d\xbe\xf9\x3c\x32\xd0\x37\x9f\x1f\xf1\xdd\xae\xab\x42\x07\x47\x91\x42\xdf\x7c\x3e\xf7\x07\x9a\x70\x99\xcf\x29\x3d\x38\x54\xe8\xe3\x5b\xd6\xfe\x54\xa1\x6f\x1e\x45\x87\xfb\xfa\xe4\x9d\x4f\x67\x5e\x37\x52\xe8\x9b\x1f\x85\x87\xdd\x03\x85\xbe\xf9\xc1\x60\x6e\xa2\x6f\x3e\x9f\x1f\x46\x1a\x7d\x3c\x08\xf8\xd2\x55\x86\x06\xfa\xe6\xf3\xa8\xff\xff\x02\xfa\x0e\xa9\x5f\xa2\x8f\xce\xa6\xfb\x25\xfa\xa8\x77\xd8\x2d\xd1\x17\x1d\xf4\xe6\x25\xfa\x66\x61\xd7\x40\xdf\xcc\xf7\x34\xd9\x3c\x9f\x4f\xf7\x79\x3f\x55\x37\x43\x8f\x87\x24\xfa\xe6\x87\x80\x12\x89\xbe\x79\x5f\x20\x48\x57\x7f\x30\x98\x1b\xe8\x8b\x06\x3d\x13\x7d\xb3\x9e\x85\xbe\x70\xfa\xff\x02\xfa\xf6\xa9\x67\xa0\xcf\x9b\x76\x4b\xf4\xcd\x66\x87\x5e\x89\xbe\xe9\xa0\x17\x95\xe8\x0b\x07\xdd\x7e\x89\xbe\xa3\x43\x4f\x1f\x1d\xf3\xe9\xe1\xcc\x40\xdf\xc1\x60\x56\xa2\x8f\xce\xfb\xb3\x12\x7d\xb4\x7f\xe0\x5b\xe8\x8b\xfc\x43\xcf\x40\x5f\x38\xb5\xd0\x77\xe4\x5b\xe8\xeb\x47\xff\x3c\xfa\xa6\xf4\xc8\x5c\xbc\xb3\xd9\x74\x56\xa2\x2f\x9c\x1e\xf9\x25\xfa\x0e\xc3\xfe\x41\x89\xbe\x81\xd7\xdb\x2f\xd1\x77\x30\xe8\x76\x35\xfa\x7a\x07\x3e\x3f\x10\x06\x12\x45\xbd\xd0\x3f\x52\xe8\x8b\x0e\x7b\xfb\xbe\x5e\xbc\xd3\xf9\x7e\xdf\x9b\x19\xe8\x3b\xa2\x16\xfa\xfa\xd4\x42\xdf\x7e\x64\xa0\x2f\x8a\xba\xb3\x7f\x1c\x7d\x74\x4e\xa7\xc6\xc9\x3b\x98\xcd\xca\x93\x77\x3a\x0b\xc3\x50\xd3\x7d\xa1\x7f\x78\x38\xd0\x8b\xf7\x30\xea\xd3\xbe\x46\xdf\xe0\xe8\xe0\xa0\xa7\xe9\xbe\x7e\xd4\x9b\xf5\xca\x3b\x6f\xd4\xf3\xf6\x35\xd9\xdc\xa3\xfb\xbd\x2e\xd5\x27\x2f\xed\x0e\xba\xfb\x1a\x7d\xaa\xfa\x27\x76\xfd\x4f\xec\x2a\x9f\x58\x70\xff\x61\xf4\xcd\xe8\xbc\x24\x9b\x67\xf3\xe8\x30\xd2\xb3\x6f\xea\x4d\xe9\x4c\x13\x2e\x47\x5e\xd8\xe3\x54\x98\xa4\x22\x0e\x8f\xbc\x23\xcd\x71\xe9\x7b\x83\xe8\x50\x1f\x1d\x07\xbd\x3e\x1d\x68\x8e\x4b\xef\xe0\x20\xe4\x37\x0b\x81\xbe\xfd\x41\x6f\xd0\xd3\x84\x4b\xb7\xbf\xdf\xe5\x44\xcd\x13\xbb\xfa\x27\x76\xfd\x4f\xec\x2a\x9f\x58\x70\xff\x2a\xfa\x4a\xa7\x06\xe2\x1d\x22\x9e\xbb\x3b\xae\x10\xbe\x08\x93\x19\x4d\xe7\x0d\x86\x50\x69\x13\xfb\xff\xc7\xde\x9b\x77\x37\x6e\x63\x89\xe2\xff\xff\x3e\x85\x8c\xe9\xd6\x8f\x68\x43\x8c\xe4\x2d\x2e\x2a\x8c\x26\xa9\x38\xd3\x75\x26\x15\xd7\xa9\xaa\xf4\xf2\x3c\x7e\xd5\x94\x08\x49\x4c\x51\x20\x87\x84\x6c\x2b\x12\xbf\xfb\x3b\xb8\x58\xb9\xc8\x4b\x2d\xe9\x4e\x77\x4f\x67\xca\x14\x08\x62\xb9\x00\x2e\xee\x7e\xdf\x6e\x72\xaa\xe2\x62\x3f\x8f\x18\xcb\x78\x6f\x16\xa5\x69\x2f\xea\xcd\xd2\xa8\x2c\x7b\x51\xd9\x8b\x4c\xe4\xe7\x5a\xfa\x03\xdb\x3a\x75\x9a\x7b\x4d\xe7\xb4\xa0\x6c\xa6\xdb\xe4\xcb\xa4\xec\x2d\xa3\x92\xfd\xff\xbc\x37\xa5\x94\xf5\x12\x96\xf0\x24\x4a\x93\x92\xc6\xbd\x41\xaf\x5c\xe7\xb4\xf0\x70\xad\x86\xe8\x9f\xc6\x26\x5b\xc4\x01\xdf\xed\x74\x3e\xfc\x03\x13\x51\x98\xf7\xfb\x36\xd0\xb0\x53\x3c\xa1\x81\x93\x44\x3e\x31\x83\xec\xac\xdc\xef\xcb\x30\x30\x21\xef\x06\xc8\x1b\x31\xba\x1e\xbd\x83\xb8\xa4\x10\x9f\x7b\x5d\xf2\x1e\x4d\xf8\x92\x16\xbd\x29\x85\x74\x2d\xbd\xac\x70\x20\x44\xc0\x47\x14\x1d\xea\x1e\xf0\xd8\xc9\x3c\xa9\xe3\x93\x4a\x39\xa6\xc7\xfb\x7d\xd7\xb7\x6a\x6b\x9c\x51\xb3\x42\x2b\x82\x28\x71\x55\x65\x23\x72\x5b\x24\x5c\xab\xcd\x8c\x8b\x92\xfc\x0d\x76\x39\xfd\xbe\xd6\x30\x95\x94\xbf\xd2\x4d\x5f\xce\x27\x9d\xa5\x32\x8f\x3c\xf5\xdf\xbd\x83\x51\xbc\x7b\x17\x72\x19\x5a\x36\x0a\x99\x37\x3a\xc3\x64\x2d\x15\x61\x11\x28\xc2\x70\x43\x53\x36\x3a\x05\x55\x99\xd2\x7e\x75\x69\xc8\x1c\xa5\x9e\xcd\xf7\x21\x57\x44\x47\x9f\x65\xe1\x70\xcc\xbe\xd2\x21\x67\xc7\xec\xf0\x50\x47\x89\xe0\x57\xec\x7a\x5c\xf8\x76\xfe\xa1\xfb\x63\xb7\x3b\x18\x91\xc2\x77\x61\x10\x1e\x68\x8b\x04\x94\xb0\x5e\xd1\xef\x7b\x85\xaf\xe1\x15\x1e\x0c\xf7\xeb\x24\x0b\xff\x3d\xdd\x90\x02\x57\x55\x33\xd0\x79\x3d\xb5\x33\xeb\xf7\xa9\xe7\xae\x18\xc3\xa4\x80\x32\xc8\x04\x5f\x55\x1e\x26\xcb\x0e\x6d\xed\x76\x15\x25\x2c\xd8\xa2\x7e\xef\xeb\xde\x1f\x02\x96\x71\x2f\x48\xa3\x92\x0f\x40\xfb\x8a\x51\xb0\x5d\x45\xc5\x22\x61\xdf\x66\x9c\x67\xab\x60\x34\xac\xaa\xaa\xaa\x69\x13\x1d\xf0\x71\xab\x20\x55\x51\xa8\x39\x26\x99\x7c\xf2\xb8\x5d\xc9\xdd\x4e\xcd\x76\x51\x5f\x71\x8e\xb1\x13\x49\xc7\xf1\x19\xd5\x49\xf9\x7a\x89\xc7\x09\x44\x48\xe1\xe4\x6a\xfb\x9e\x6e\x02\x54\x50\x16\xd3\x02\x11\xb9\x25\xbb\x43\x49\xe6\x45\x96\x97\x84\x87\xd4\x17\x7f\x65\x0a\xdb\xa8\x2c\x69\xb9\x5f\x15\x81\xe2\xe4\x06\x91\x2d\xd4\xfb\x31\x5a\xd1\x80\xf9\x02\x50\x15\x58\x65\xe4\x5e\x5d\x99\xaa\xd3\x22\xfa\xef\xde\x89\x99\xb0\x68\xa5\x53\x15\x48\x85\xd3\xa5\x96\xf5\xab\x7c\x86\xdf\xc4\xb1\x52\x39\x39\x6f\xf6\x0e\x65\xe6\x47\x04\xe6\xca\x49\x96\x07\xb4\x52\x39\x0c\x1d\xe5\xd4\x63\x5a\x49\xbb\x5b\xd1\x6a\xac\xc7\x34\x11\xef\x6d\x42\x2a\xbc\x1e\xd3\xc6\xbc\xd5\x86\x4e\x84\xa0\xa3\xbd\x67\xac\xcc\x52\xea\xa7\xd9\xc2\x43\x6b\x56\xae\xf3\x3c\x2b\x38\x8d\xad\x26\xb0\x27\x60\xdc\x43\x87\x35\x70\x83\x52\x06\x34\xd1\xd5\xb5\xd8\xee\x9e\xe8\xfa\x79\xb6\xca\x33\x46\x19\xc7\xa0\x4c\x51\xa1\xa4\x23\xff\x36\xe1\xcb\x37\x7c\x93\xd2\x12\x7b\x4b\xec\xad\xf0\xaf\xa8\xb0\x3f\x55\x0a\xfb\xe3\x2f\x9f\x09\x74\xf4\x6b\x6a\xe5\xdb\xaa\x5a\x71\xd2\xa1\xa0\xa9\xb6\x25\xbd\xdf\x4d\xc1\x8d\xe1\x89\x7a\xdc\x32\xe8\x45\x69\xfa\xed\x7a\x51\x7a\x56\x3d\x59\x53\xdc\xda\x62\xd9\x39\x8c\xc1\x16\xd6\xb4\xba\xb6\x58\x0f\x46\x8d\x4a\xbf\xa8\xa9\x7d\x79\xc6\xa3\xf4\x79\xb6\x76\x15\xb9\x34\x5e\x34\x15\xc1\xb3\x96\x26\x95\x65\x31\xed\x50\x16\x7f\xbb\x5e\xbc\xce\x6e\x1f\x52\xb9\xee\x53\xe7\xee\x51\xe6\x2e\xa3\xf2\x55\x41\x6f\x92\x6c\x5d\x36\x5f\x81\x0b\x47\x5b\xcf\xdb\xa1\xfc\xdd\xa7\xef\xdd\xab\xb2\xff\xf7\xca\xff\xeb\xac\xbc\xa0\x6d\x22\x0f\x7b\x71\x4d\x51\x5f\xbb\xfc\x0d\xa2\x79\x50\x05\x9f\xff\xa3\xeb\xd9\xe1\x3e\x81\xed\xb7\x47\xd1\xbe\x47\xb1\xbe\x7c\x22\x9f\xa2\xd2\xf0\x5b\xd2\x01\xa2\x83\x19\xf2\x80\xa4\xe2\x97\xbe\x6e\xc8\x3c\xa4\xfe\x32\xbb\xa1\x05\x89\x43\xea\x97\x34\xa5\x33\x4e\x63\x92\x87\xde\x90\xac\xf5\x38\xb1\x47\xc9\x15\x52\xcd\x21\x82\x4c\x63\xe2\x59\x37\x05\x91\x29\x6e\xc0\x77\x5a\x37\x23\x96\x78\x19\x72\x1f\x68\xc7\xf4\x26\x3d\x22\x2b\xd1\xee\xcc\xb6\x5b\xf8\x45\x96\x71\xe2\xb1\x70\x5b\x11\x6f\x48\x22\xfb\x8a\x91\xc2\x5f\xd2\x28\x26\xcb\x7e\x1f\x89\x07\x14\x86\xe1\xd2\x07\x43\x0b\xb1\x4b\xda\xb5\xe7\x59\xc6\x69\x01\xf5\xe5\xe3\x83\x5f\xc8\x99\xcf\xbb\x5e\x19\x50\xc4\x58\x10\xa8\x99\x4d\xba\xa7\xeb\x35\xf7\xa3\x68\x24\xb1\x8d\x38\x14\xd9\xaa\x22\x39\x96\x2c\x41\x16\x32\x6f\x88\x3f\x86\x37\xe7\x7e\x09\x04\x81\xcb\xa4\x27\x61\xe6\x31\xef\x04\x52\xf0\x88\xa7\xd1\x08\xb2\xef\x88\xc7\x63\xe0\x37\xa0\x10\x32\xee\x88\xa7\x23\x99\x6b\x47\x94\x1d\xc1\x25\x2f\x1e\xbf\xc4\xf5\x5b\xde\x90\xdd\x62\x85\x82\xed\x2c\x4b\xb3\x22\x40\x09\x5b\xd2\x22\xe1\x88\xc4\x49\x99\xa7\xd1\x26\x40\xb0\xb8\x83\x22\xbb\x45\x64\x49\x93\xc5\x92\x07\x27\xe7\xe4\x46\xdc\xfc\xb3\x28\x05\x47\xac\x00\xad\x92\x38\x16\x33\xca\xd6\x3c\x4d\x18\x0d\x10\x83\xbc\xf6\xa8\xff\x3b\xb3\x55\x82\xed\x34\x9a\xbd\x5f\x80\x5d\xfe\x73\xd9\x57\x2a\x5a\x83\x04\x35\x7e\x1e\xa5\x94\x73\xea\x0b\x2a\x6a\x82\x8a\xc5\x34\xf2\x86\xa4\xa7\xfe\xf3\x87\x27\x18\x05\xb2\xf4\xe8\xf4\x94\xf4\xec\x3f\x43\x7f\x78\x8e\x51\x25\x7a\x82\xb5\x0e\xe4\x16\xfd\xa8\xce\xbe\xdc\xdf\xd9\xe8\x04\xa3\xaa\x22\x7a\x52\xc1\xb6\x22\xb2\x5b\xf1\x40\xa3\x38\xd8\x2a\x10\x9d\x9e\x55\x44\xee\x51\xb7\xa8\x82\xfc\x1d\x72\x75\x63\x52\x00\x37\x20\xd8\xe8\x52\x9c\x0e\x83\x35\xc4\x76\x29\xc3\xad\x39\x78\x01\xe2\x05\x52\xfd\x1c\x8c\x6c\xe7\x07\xa3\x4a\xb2\x76\x9c\xde\x71\xd5\x8c\x39\x89\x41\x6a\xb6\xb1\x94\x09\x54\x2a\xff\x8b\x37\x24\x73\xbb\x89\x63\xb2\x15\x44\x6b\x80\x5e\xae\x93\xb7\xe2\xdb\xd7\xd9\x2d\xaa\xb0\x57\x38\xd1\x48\xc2\xfc\x91\x44\xe9\xc7\xed\x7b\x67\xbb\x67\x61\xa1\xf6\x73\x02\x4f\xc7\x5f\x1e\xc3\xd6\xaf\x1f\xc0\x6c\xcf\x41\xb5\xe5\xc6\x50\x0c\xf0\xf7\xbe\xfa\x28\x8f\xf8\x12\x91\xed\x3c\x49\x53\xbd\x73\xe3\x00\xbd\x1c\xf6\x86\xcb\xa3\x93\x9b\xa3\x93\x3f\x0e\xff\x34\xfc\x05\x55\xf8\xc1\x16\xc4\x57\xa3\x51\x6f\x74\xba\x3c\xba\x39\x5a\x0e\x8e\x7e\x59\x0d\x07\xe7\xcb\xa3\x9b\x33\x78\xf6\x9f\x3d\x1b\x9c\x3e\x3f\xf3\x4f\xbe\xec\x1d\xf5\x8e\x7a\x67\xfe\xc9\x79\xef\xa8\x37\x3a\x2a\x4f\x44\xd1\x68\xd8\x7b\xe6\x3f\x7b\xd6\x1b\x0d\x9f\x8f\xbe\xf4\x4f\x8f\x7a\x47\xf0\x9f\x79\x1e\x1d\xbd\x51\xcf\xbd\xd1\x48\x54\x3c\xfa\xe5\xe5\xe8\xa8\x77\x34\x9c\x0d\x4e\xfc\x93\xa3\xde\x70\x70\x3e\x38\xf6\x4f\xcf\x07\xe7\x83\xf3\x52\x3e\xf4\xe0\xff\x7b\xe2\x47\x4f\xfc\x90\x0f\xa2\x4c\xcc\x06\xab\x0b\xed\x52\x9e\x59\x37\xfe\x4c\x18\x7d\xc8\x9d\x64\x71\x8b\xe5\x1f\x92\x3d\x10\x33\x57\x0f\x11\x5c\x74\x65\xb2\xc8\xf8\x0a\xed\x80\xc7\x25\x27\x2c\x6c\x20\x6e\x4c\x98\xbf\x5a\x27\xf0\x1a\xbd\xb9\x59\xbc\x98\x65\x0c\x11\xf6\x89\x50\x6f\x0b\xe3\x8e\x0c\xc6\x3d\x3d\x36\x18\xf7\xf4\x04\x50\xae\x2b\x6b\x2c\x1f\x79\x42\x8e\x8f\x3f\xed\x11\x39\xfe\xf2\x14\x2b\xfe\x0f\xce\x07\x1c\x9b\x53\x81\xe9\xc5\xd3\xc9\x99\x40\xfe\x6d\xab\x78\x77\x9d\xe4\xca\xc1\xc1\x52\x06\x97\xd1\x4c\x10\x2c\xd8\xe3\x98\x14\xb5\x25\x75\x16\xdd\x09\x44\xdd\x29\x25\xd9\xed\x20\x9f\xa4\x37\xb4\x47\x06\xcb\x54\xc3\x12\xb6\x45\xdb\xc7\x2a\xf1\xcb\x65\xb6\x4e\x63\xc3\x29\xff\x04\x3e\x19\x5d\x9b\x4a\xe5\xfd\x56\xb2\x14\x5c\x91\xc4\x97\xb2\x97\x0e\xba\x92\x39\x75\x71\x45\x8a\xca\x4b\x5c\x66\x5c\xcb\x88\xaa\x4a\xac\x6e\xe4\x2c\xe9\xba\xe9\x68\x60\xa6\x6f\x1c\x0f\xf6\x0a\x2c\xed\x1b\x4c\x9c\x6a\xbe\x23\xb9\x0c\x29\xa9\x09\x14\x2b\xeb\xc7\xc0\x7e\x25\xb9\x7f\x27\xc3\x6f\x0a\x6d\xbe\x5e\x26\x73\xc9\xb1\xea\xa9\x12\xf6\xcf\xb6\xeb\x87\xb0\xe9\xcd\xd6\x72\x86\x94\x3c\x01\x71\xd9\x1c\x57\xd6\xc3\xe3\x1e\xba\x7a\x06\x74\x75\x9a\x49\x4a\xda\x52\xd8\xb9\x60\x33\x32\xc6\xdf\x24\xbf\x50\xb2\x0c\xa9\xcf\xc0\xd7\x07\xc8\x0e\xb2\x0a\xa9\xcf\x13\x9e\xd2\x6f\xc0\x49\x9b\x6c\x42\xea\xdf\x24\xf4\xf6\xdb\xec\x8e\xdc\x74\xd1\xe0\x6a\x1c\x9a\x08\xef\x20\xc7\xd3\xac\x68\x90\xe5\xba\x77\x44\x90\xd3\x37\x22\xc8\xe9\x19\x11\xa4\xfa\x15\x44\xfb\x54\x74\x9d\xb6\xc9\x74\xde\x26\xd3\x39\x10\xde\xb2\x83\x17\x92\x38\x24\x86\x4a\x0c\xc3\x30\x6f\x12\xd7\x9c\x14\x57\x6a\x98\x62\xc3\xcf\x22\xee\x01\xcd\xa1\x7c\xe7\x92\x5f\x28\xf6\x66\x18\x5f\xdb\x56\x0e\xc2\x70\x86\x41\x40\xfb\x20\x11\x1e\xef\x27\xc2\xa7\x64\x9e\xcd\xd6\x25\x88\xf9\xd1\x3c\x4a\x4b\x8a\x88\x9a\x72\xb0\x21\x92\xbc\x5d\x12\x24\x98\x85\xc1\x32\x89\x63\xca\x50\xb0\x9a\xa8\x9a\x82\xc6\x5a\x53\x54\x91\x1b\x4c\x18\x59\x4d\xf6\xf5\x2f\x41\xaa\x18\xc2\x15\x0e\x80\x6d\xfc\xc7\x20\xfc\x3d\x4d\xf9\x6b\xba\x5f\xf3\x00\x5f\x2a\x39\xdf\xd1\xf0\x5e\x06\x60\x5d\xd2\xe2\x0d\xd0\x96\x9a\x08\xba\x4d\x62\xbe\x0c\xd0\x88\xae\x0c\xe9\x2f\x7f\x18\xde\x20\x61\x82\x74\x18\x4c\xd3\x6c\xf6\x1e\x11\x49\x40\xcd\xd6\x45\x41\x19\x57\x7b\x70\x9e\xd2\xbb\x37\xcb\x22\x61\xef\x83\x21\xd1\xfb\x28\x38\x3a\x21\xbc\x88\x58\x99\x88\x91\x04\xd4\xb7\x3f\x4a\x8d\x44\x91\x68\x4d\xd0\x54\xca\xb9\xaf\x51\x4b\x17\x8b\x5b\xa3\xe0\xb4\xa8\x70\x25\xd7\xf8\x55\x91\xac\xa2\x62\xa3\x19\x1a\x4b\xed\xe7\xf2\x85\x12\x9e\xc3\x5b\xe9\x83\xdb\x59\xbb\xd4\xaf\xdc\xfa\xdf\x00\xe4\xda\x95\x23\x28\x87\x3f\x37\x54\xd5\x95\xc2\x82\x56\x55\x90\x51\xb8\x6d\x7e\x97\xc0\x96\x8d\xf7\xb6\x1a\xab\x0a\x15\x69\x1c\xc3\x60\x6b\xe0\x69\x8e\xd2\x53\x59\x8c\x3a\xcf\xe7\xb0\x1c\xe5\xcd\x02\xd9\xf5\x42\xea\x3b\x7b\xa2\xd0\xb0\x37\xec\x1d\x9d\xf4\x8e\x4e\x90\x68\xb7\x45\x93\x59\x6e\x63\xd6\xcd\x6d\xe8\x8a\x4f\x65\x36\xfe\xad\xb6\xfd\xb7\xda\xf6\x33\xa8\x6d\x8f\xcf\x87\x4d\xc5\xed\xf1\xf9\x08\x14\xb7\x52\x63\x02\x9a\x92\x73\xa9\xb8\xf5\x99\x37\x97\xae\x8d\x23\x70\x6c\xf4\x99\x97\x63\xb2\x0a\xa5\x56\x85\x6c\xfe\x15\x35\xba\x37\xfb\x35\xba\xab\xe8\xee\xcf\x70\x95\x9c\x0d\x87\x44\x2a\x71\x03\x14\xad\x79\x86\xd4\xaf\xb7\x59\x1e\x9c\xfc\x81\xfa\x65\x1e\xcd\x12\xb6\xf0\xd7\x2c\xe1\x55\x55\x91\xe9\x7e\xe5\xae\xcc\xd6\xcb\x48\x42\xa2\xb1\xd1\xf0\x8e\x35\x70\xd7\xa1\xe1\x45\x14\x80\x49\x29\x73\xb3\xc9\xc5\x1d\x8e\xd3\xaf\xd6\xe3\xf4\xf0\x10\x97\x57\xe9\xb5\xad\x7c\x65\x73\x3d\xb3\x50\xdc\xbd\x52\x61\x4c\xc3\x47\xaa\x8c\xc5\xd9\x56\x1c\x11\x25\x57\xe2\xe3\x6b\x4d\x03\x95\xe2\x42\x86\xe8\x58\x9c\x86\xdb\x3c\x5a\xd0\x60\x48\x8a\xec\xb6\x7c\x45\x8b\x57\xe2\xd7\x68\x08\x29\x4d\x41\xe8\x1d\x6c\x2b\xc1\xd5\x2c\x21\x7d\xab\xd4\xac\x8a\x3a\x0d\x92\x5d\x6e\xa3\x44\x31\x42\x45\xc8\xa4\x94\x39\x0b\x99\x95\x7b\x93\x28\x54\x9d\xfa\x4e\x67\x64\x2d\x58\x30\xa5\x33\x18\x27\x73\x8f\x87\xa1\xa9\x27\xca\x0f\x47\x12\xf7\xad\x7d\x47\x87\xa0\x52\xce\xc9\x48\x3a\xe1\x56\xaa\x49\xd6\xbe\x51\x0e\x28\xa7\xb8\xc8\xb0\xf3\x99\xb7\xb5\x7e\x73\x25\x91\x5e\xf6\x72\x82\x89\xef\xfc\xaa\x30\x01\x9a\x07\x82\xe1\xbc\x11\x83\xf0\x24\x84\xb8\x03\x92\xb2\xc2\x55\xc7\x48\x07\xee\x48\x5d\xb5\x86\x3b\xda\x34\xdc\x2a\xed\xcd\xda\x77\x54\x1c\xd0\xfa\xbe\xf1\xa6\x1f\x39\xde\xb4\xc2\x55\x2b\xa5\x3e\x13\xfc\xa3\x20\xa5\xa6\xd9\xba\x00\xad\x8d\xf8\x27\x61\x52\x9d\xac\x42\xa7\x1b\x4d\x33\xc2\xcd\x5d\xf0\xda\xae\x61\x87\x4f\xa3\xda\x0a\xce\xea\x33\x03\x2b\x33\x30\x60\x71\x78\x54\x2c\x28\x97\x01\x42\xc4\x86\x19\x33\x19\x04\x68\x92\xc9\xbf\x61\x11\x30\xf8\x64\x92\xc1\x9f\xb0\x08\xcc\x1b\xc2\x5d\x30\x65\xf7\x82\xc9\x85\x90\xbb\xd9\x0b\x07\x50\x59\x05\xd3\x74\x3e\xec\xdc\xe7\xdc\x4e\xeb\x35\x2d\x05\xdb\xa7\x4f\xea\x6e\x47\x2b\x12\x85\x8c\x64\x5e\x42\xa2\xa6\x85\xc6\xe6\x43\x2d\x34\x34\x1b\x28\xf8\x43\x38\x58\x85\xac\x01\xf0\x14\xac\x30\xec\x3f\x92\x84\x85\x7b\xb4\xf4\xa8\x96\x6d\x45\x92\xc0\x86\x35\x4b\x0e\xae\x08\xc1\x76\xdd\xd2\x8f\xea\x15\x01\x99\x77\xd5\x9c\x29\xe5\x15\x61\x3e\x28\x1a\x1b\x46\x21\x56\x53\x26\x75\x8e\x30\x1b\x96\xc5\xf7\x8c\x73\xa5\x14\x59\x01\x23\x60\x1e\x51\xe1\x4a\xe0\xae\x76\x45\xb0\xc2\x70\x68\x46\x30\x54\x99\x65\x6b\xc6\x03\xe6\x5b\x4d\x68\x0d\xcb\x25\x04\x0e\x4a\x46\xa6\xd1\xec\xbd\x20\x00\xbf\x5d\x73\x9e\x31\x20\x48\x83\xad\xe4\xce\xd2\x68\x4a\x53\x14\x20\x7d\x9a\x7b\xe2\x4b\x54\x41\x96\xe8\x07\x3e\x11\xa8\x4a\x57\xcf\x98\xc5\x9c\x32\x7a\x74\x13\x9f\x9a\x2a\xce\xb1\x6a\xd7\x74\x5e\x3a\x56\x1d\xcb\x47\x5a\x75\xdc\x60\x6f\xfa\x58\xab\x8e\x4f\xcf\x3f\x4a\x81\xc9\x89\x95\xa4\x03\x27\x29\x9e\x4e\x81\x91\x14\x4f\x67\x52\x9c\xe9\x31\xef\x1c\x18\x49\xf1\xf4\x0c\xb8\x47\x2d\x85\x9f\xc3\xd3\x11\x28\x90\x0a\xad\x55\xca\xe1\x51\x30\x97\x9d\xc6\x5c\x92\xa9\xac\x6b\x91\x24\x47\xf1\x7d\xb4\x4a\xd2\x4d\x00\xfa\x97\x6c\x51\x44\xf9\x72\xe3\xdb\x72\xc3\x75\x0e\x87\xbf\x47\x64\x9a\x15\x31\x2d\x9e\x67\x69\x1a\xe5\x25\x0d\xd0\x4c\x3d\xe9\x37\x6f\x24\xc5\x10\x0c\x6b\x8c\xcf\x12\xe6\xfe\xa0\x69\x58\x43\x6e\xa1\xac\xc4\xbc\x21\x29\x1b\xa5\x9f\xc4\x62\xac\x2e\x71\x01\xd4\x54\x97\xff\x18\x34\xb5\xa0\xfc\xf9\x32\x49\xe3\xe7\x52\xb5\xd3\x81\xaf\x14\x8c\x25\xb1\xbc\xcd\xa3\x38\x16\x40\xb0\xf8\xcb\x57\x45\x60\x22\xf7\xb1\xb8\xcf\x8a\xc0\x8a\x9a\xe0\xab\xa9\x8f\x79\x8c\x0e\xf9\xda\x48\x78\x66\x7b\x24\x2c\x05\xa9\x4b\x8d\x1d\x2c\xe8\x0d\x49\xec\x80\x4b\xca\xac\x18\xae\x48\x64\x8f\xa5\x6d\xd6\x39\x9c\xab\x3a\x1b\xbc\xba\x47\xd3\x26\xb7\xa9\x86\xa8\xe1\x7b\xc5\x47\x33\x67\x4d\x5c\x75\x5b\x30\xef\x54\xb5\x6d\x04\x78\x72\x3b\xde\x65\x53\xd5\x26\x58\xdf\x95\xcb\xfa\x6e\xfe\xd9\xd1\x44\x27\x52\x18\x14\xd9\xed\x60\x51\x64\xeb\x1c\xfd\xcb\x9e\x61\xd0\xd8\x6e\x95\x21\x43\x80\xa6\x59\xbc\x41\xff\x3e\xbb\x4f\x3d\xbb\x12\x6c\xf7\x9c\x54\x00\xf3\x07\x9e\xd6\x6f\xa1\xf1\x7f\xba\x13\xeb\xe9\x23\xab\x4e\xa9\x3e\xbb\xe7\x5f\x9a\xb3\x7b\x7c\x7e\x02\xa7\x17\x9e\x9f\x89\x06\x56\xb2\xf3\x23\x51\x67\x23\x1b\x3b\x11\x03\xb8\x91\x03\x10\xcd\x4d\x55\x15\xd1\xf3\x62\x3f\x7d\x60\x24\x8c\x35\x6a\x20\xbf\x7b\x9b\xbd\xa6\x2b\x81\x40\x08\xea\x3b\x56\xe0\xc8\x5e\x76\xc3\xaa\x22\x3c\xcb\xd2\x69\xe4\x9a\x58\x90\x55\xc2\xfe\x68\x7e\xa8\xba\xaf\xe1\xf7\x51\x45\xca\x3c\x9a\xd1\x22\xd8\xce\x53\x7a\x17\xa0\x51\x6f\xd4\x03\x2a\xa3\x22\xb3\x28\x97\x92\x5d\x57\x5c\xad\xed\x3c\x5e\xc3\x48\xa5\xa4\x42\x36\x75\x7c\xa4\x04\x17\x3f\xd0\x39\x0f\xce\x49\x53\x72\x2b\xf6\x9d\x95\x20\xeb\x76\xcc\xd8\xd5\x57\xb5\xd1\x8d\xce\x74\x35\x41\xe1\x06\x5b\x9e\xe5\xc1\xa8\x22\x09\xcb\xd7\x9d\x82\x5e\x52\x1f\xe9\x8a\xb2\xf5\x0b\x4e\x57\xc1\xb6\x22\x52\x6e\x5c\xd6\x27\xf3\xc0\x18\xdd\xf9\x1c\xd5\x89\xa9\x85\xcc\x2e\xfe\x5b\x45\xc4\x06\x41\x7c\x97\xc4\x52\xa5\xfc\x68\x3c\x0a\xcc\x8b\xc0\xa2\x2e\x27\x01\x88\x14\x18\xbf\x2c\xac\xcb\x54\x54\x1c\xd1\x55\x74\xe7\x0d\x09\x3c\xce\x68\x92\x7a\xfc\x8b\x0c\x0f\x46\x78\x5c\x7c\x9d\xf4\xfb\x4c\xe6\xa0\x4a\xf0\x23\x71\x3b\xe1\xee\xa8\x04\x13\x2c\x75\x10\xa5\xc1\x90\x82\x2b\xf5\x3b\x98\x29\x12\x85\xdc\x5c\x05\x6b\xf1\x9c\xa5\x6f\xf2\x88\x91\x12\x9e\xf5\xd7\x29\xfc\x5a\x83\xa5\x20\xf7\x81\x8d\xfa\x4e\x5e\xcf\x34\x16\x8c\x0f\x99\xea\x62\x87\x0d\x22\x8b\x90\xfb\x1d\xdc\x18\xb9\x0d\x79\x1d\x58\xef\x9c\x02\xb7\x81\x4b\xc8\xde\xb2\xa0\xe4\x22\xe4\x35\x20\xde\xd5\x7f\x5f\xc2\xb9\x2c\xc9\xfb\x90\xfb\x52\x39\x25\x3b\x7a\xd5\xb8\xbf\x38\xb9\x42\x4d\xc8\x20\x82\x3a\xe0\x52\xd7\xac\x4a\x98\x34\xf4\xa9\x00\x0f\x44\x50\x1b\x1a\xba\xd0\x99\x0a\x22\xa8\x03\x12\x88\x20\x17\x0e\xce\xcf\xfa\xa7\xb9\xfc\x53\xd4\x0a\xdb\xf3\x47\x04\x39\xb3\x77\x6e\xe2\xf2\x20\x0c\xcd\x95\xd8\xef\x23\x1e\xa3\x83\x30\x2c\x77\x3b\x8f\x86\xeb\xdd\x6e\x44\x8f\x31\xd9\x77\x5b\x97\xfb\x6f\xeb\x48\xde\xcf\x0a\x3c\x01\xad\xc8\xab\xfd\xed\x6c\x8c\x2d\x4f\xad\x05\x85\x9c\xab\xbd\xdf\xb5\x1c\x5b\x22\x5f\x22\xe8\x0a\x93\x3b\x25\xb6\xfd\x7a\xd4\xef\xef\xfb\xfe\xc6\xf6\x6b\x28\x27\x85\xc8\x11\x71\x5b\x55\x85\x15\x99\x3e\xae\xe1\xa5\x69\xb8\x0b\x40\xb4\x0c\xe4\xe5\x15\xf9\xf6\x7e\xd0\x28\x5e\x97\x91\x44\x60\x71\xfd\x4b\x6c\x0e\x8d\xcb\xf7\x75\x1a\x77\x43\x11\x3e\x22\x4a\x07\xf8\x93\x40\x15\x60\x60\x09\x14\x82\x44\x19\x17\x46\x8a\x11\xbc\xab\xc8\x7b\x31\xc5\xa6\x08\xe8\x01\xb2\x2d\xef\xee\x5a\xdf\x29\x20\x05\xa2\xaa\x37\x5a\x41\x52\xb8\xfd\xbb\xe1\xe9\xab\x32\xf7\xb6\xf3\x22\x5b\x05\xc3\x30\x0c\xd3\xc9\x30\xb8\xfc\xc3\xc5\xe1\x88\xf0\x2c\x90\xe8\x34\x61\x5e\x4a\xbc\xcb\xc3\x11\xfe\xc3\x05\x56\xe2\xa5\x54\x4a\x91\x2e\xef\x1b\x08\xab\xcf\x46\xdd\x8a\x9d\x72\xa7\xc2\x34\xdb\x25\x62\x5a\xd4\x25\x49\xb7\xaa\xef\x9a\x58\xeb\xa2\xc2\x0f\xd0\xb1\xb7\x75\x3a\xf6\xb6\x41\xc7\x36\x91\x57\x30\x35\x70\xb4\x24\xae\x39\xe9\xa4\x8d\x9a\xba\x82\x99\x43\x4e\x12\xb8\xc1\x78\xa6\x18\x80\x35\xd3\x72\x53\x64\xcc\x33\x38\x41\x03\x84\xf5\x2f\x46\x50\x2f\x9b\xf7\x6c\x41\x81\x2b\xd2\xc4\x7a\x01\x12\x3f\x7a\x39\x95\x42\xec\x00\x91\x36\xd2\x0a\xae\x4e\xc9\x68\x48\x8e\x4e\xaf\x25\x89\xfd\xae\x61\x7b\xba\x68\x92\xd8\xaf\x8c\x24\x5c\x10\xda\xb7\x2e\xa1\xfd\xee\x9f\x8b\xd0\x96\xe6\x19\x8a\x4b\x3e\x7d\x66\x48\xed\xd1\xd9\xd0\x90\xda\x5f\x02\xa1\x3d\x7a\x46\x36\x9a\x6f\x06\x67\x02\x41\xa6\x22\x1d\x50\x18\xd5\xa4\x65\x15\x11\x44\x5d\x54\xd0\x28\xd8\xd6\xa4\x68\xc6\x78\x03\x7e\x15\xb4\x04\x52\x52\x1a\x79\x08\xd2\xd2\x21\x2b\x0d\x79\x4d\xa4\xbc\xd8\x79\x35\xcd\xee\xde\x24\xbf\x80\x58\x44\x0a\xdf\x06\xd3\xec\x0e\x11\x81\x8f\x14\xc9\xed\xd6\x15\x15\x74\x1f\x0d\xb3\x70\x6b\x9b\x1d\x20\xb0\xe9\xc8\xa3\x42\xdc\xbc\x15\x29\x97\x51\x9c\xdd\x06\xdb\xec\x86\x16\xf3\x34\xbb\x0d\x90\xb2\xd4\x21\x37\x49\x99\x4c\x93\x34\xe1\x1b\x5b\x66\xe1\x11\x4d\xcb\x2c\x85\x94\x5d\x7a\xaa\x52\xbd\x78\xbb\x4c\x38\x7d\x23\x2e\x95\x00\xe5\x05\x1d\xdc\x16\x51\x5d\xca\xb0\x81\x35\xbe\xd9\x47\xdc\xaa\xa3\xc4\xc6\xf7\xd1\xb8\x60\x3e\xf9\xa1\x54\xae\x8c\x6f\xbc\x4c\x4a\x8c\x09\xf3\x93\x52\x70\xad\x45\x96\xa6\x34\x0e\x95\x54\x5f\xc2\xe4\x35\x9d\x9b\x82\x84\x2d\x52\x2a\x00\xfa\xa6\xf9\x0a\x6e\x0b\xe7\x37\xec\x72\xfd\x43\xca\xb4\x5f\xc3\xea\x87\x75\x7e\xdc\x21\x3b\x99\x5f\x6e\xd8\x4c\x2e\xe8\x9f\x13\xbe\x94\x7d\x78\xb8\x22\xa3\xb3\x33\x31\x46\xa5\xc1\x54\x80\x06\x67\x47\xa7\xf1\x39\xe4\x1f\xae\xc1\xd3\x19\x16\x95\x09\x29\x43\xa6\xc4\x94\x7a\xbf\xbe\xa6\xf3\x31\xef\xf7\x1d\x33\x86\xd0\xb1\x79\x10\xeb\x10\x70\x5f\x19\x16\x85\x14\xd7\x3a\x7c\xd3\x00\x47\xa3\xef\x2e\x68\xd1\x7a\x03\x9d\x9f\x75\x55\x96\xb7\x40\xa3\xa6\x84\x71\x43\xa5\x56\x5f\xca\xdd\xce\x73\x5a\xd4\xab\x62\xaa\x76\x03\x5c\xc0\x5a\x42\x49\x5f\x3f\xfd\x7e\xb3\xc4\x93\xb0\x68\x6d\x9b\x83\x90\x9a\xd6\xf5\xf8\xe0\xef\x6e\x47\xf5\xaa\xff\x49\xfe\x46\xa8\xb5\xa6\x3f\xae\x57\x53\x5a\x78\x92\xbb\xc1\x7f\x58\x55\x84\x7d\x14\xdb\xf5\x52\xd2\xd3\x2d\x0e\x47\x6a\xd3\xba\x77\x9b\x66\x8f\x1e\xc5\xbe\x3d\xa9\xa1\x3f\x27\x69\xfa\x13\x5b\xdd\x37\x26\xf7\xa4\xf8\xb3\x14\x72\x80\x9a\x86\xba\xfa\x79\x04\x4b\x09\x5a\x76\x18\xa7\xde\x07\xaa\x33\x77\xf1\xfa\xfd\x46\x1d\xe7\x04\x87\x7a\x0d\x27\x08\x05\x2a\x4b\x81\x2a\xc1\x58\x9d\x2b\xf9\x71\x7b\xc7\xfb\xe5\x4c\x74\x20\x87\x2d\xd8\xc8\x7a\x27\xee\xdb\xb1\xbc\xfb\x0e\xc2\x90\xf5\xfb\x5e\x6d\x2b\xbc\x8c\xee\xf0\xd7\x61\x7d\x77\xf4\xfb\x1e\x0b\x0d\xa1\xd6\xaa\xfe\x07\x71\x55\x0b\x14\x69\x58\x63\x26\x50\xa6\x4e\xb8\xe1\x59\x85\xaa\x2f\x37\xdf\x80\x61\x41\x9a\xcb\x72\xa3\x3a\xd6\xc8\x06\xf4\x6f\x9f\x5a\x2a\xea\x9e\x07\x12\x85\x9e\xe5\xf7\x89\x9a\x24\x59\x87\x76\x4e\x84\xba\x68\x8b\xe8\x25\x20\xe5\xa3\x45\xaa\x6e\x87\x0e\x67\xa8\x38\x3f\xf5\xe7\x65\x74\x87\x08\x72\x7a\x42\xda\xc6\xe7\x61\x39\x6c\x8b\xb3\x52\xf2\x56\xb8\xf4\x8c\xb4\xac\x05\xfb\x6a\x3f\xaf\xe6\xb0\x08\x12\xcf\x05\xe8\x36\x61\xb0\xf3\x33\x26\x0f\x4a\xd0\x3a\x3a\xd5\x7e\xe2\xdc\x4c\x0c\x91\x6d\xdd\x24\x57\x1a\xe2\x92\x9a\xe4\x78\xee\x4a\x8e\xf5\x97\x84\xab\x1d\x8c\x49\x41\xa3\xf8\x92\xa5\x9b\xe0\x60\x48\x0a\x3a\xaf\x8f\xa4\x75\x41\x00\xa9\x1a\xa0\x11\x22\x3c\x9a\xbe\x60\x31\xbd\x0b\x06\x23\xb5\x8b\x10\xfa\xd5\x06\xed\xee\x82\xa0\x78\x68\x0e\xce\xc8\xa3\x8e\x71\xaf\x1f\x37\xec\x06\x3f\xab\x9a\x7b\xc4\xb0\x59\x6b\xbc\xaa\x5f\xcb\x7c\xb6\xf4\xe6\x1d\xd3\x00\xe2\xa0\x22\xe5\x43\xcc\xd2\x4d\x9d\x59\xba\x69\x30\x4b\x30\xee\x91\xe4\x2a\xc0\x94\x7d\x69\x07\xbd\xc1\xde\x8d\xcb\x39\x4c\x3f\x23\xe7\xb0\xf7\x03\x63\x2e\xfb\xa8\x14\x0e\x66\x49\x2a\x95\x59\x57\xb9\x39\x9c\x9f\x36\xd3\x5d\x3c\xc6\x9f\xe1\x91\x1a\xa0\xcc\x75\x07\x2e\x41\x94\x99\x52\xc1\xa7\x7c\x80\x5f\xb0\x71\xf2\x14\xa8\x2b\x75\x31\x54\xfa\xa0\xb4\xa3\x61\xcf\x3f\x05\xc6\x1b\x0e\x41\x96\xd2\xa0\xac\xed\xf5\xda\x46\x9d\xb5\xd4\x49\x75\xf2\x7c\x5b\x89\xc3\xa6\x67\x98\x81\x97\xaf\x65\xa5\x8b\x8a\xcc\xff\x01\x5c\x76\x8f\x8d\xcf\xee\x08\xf8\xc5\x0e\x23\x7e\xd7\x7b\x17\xbe\x3e\x3f\xc3\xb5\xa8\x41\x0d\x9d\x4a\x9d\x19\x81\xbc\x26\x8e\x6a\xa5\x5c\x4f\x97\x54\xba\xcc\xeb\x7b\xe0\xe8\xc4\x65\xed\xc0\x9f\x94\x71\xc9\xdb\x29\x2e\x52\x32\x53\x6d\xa6\x4c\xa0\x87\x4b\x53\x4a\xd3\x34\xc9\xcb\xa4\xac\xb3\x5d\x2c\x03\xa6\x8b\xb8\xba\x8f\xd1\x59\x53\xf9\xf1\x80\xab\x70\xcb\x28\x5e\xd7\xad\x2a\xec\x7a\xe3\xba\xac\x5d\xfe\x04\x07\xdb\x34\x41\x72\xbf\xa1\x15\x65\xeb\x84\xd3\x15\xaa\xf9\xd9\xc2\x8a\x2e\x1b\xf2\x8b\xdc\x91\x5f\xbc\x54\xb2\xb2\x96\x39\xfb\x43\xde\xfd\xff\xc8\xe8\xe7\xcb\x07\xd1\xcf\xaf\x27\x76\x19\x59\xb9\x8b\x3a\x49\x85\x39\x49\x5a\x18\x93\x1a\x61\xcc\xcc\x08\x63\xe6\x46\x18\x13\x1b\x61\x4c\x6e\xec\x14\x96\xd6\x4e\x61\x65\x84\x2e\x4a\xa3\x79\x36\x02\x8d\x26\xf3\x8e\x9f\x9d\xe3\x86\x29\x72\xb7\x8d\xd3\x3c\xa5\x77\x88\xfc\xbc\x2e\x79\x32\xdf\x3c\x97\xe7\x48\x96\x0e\xc0\xe8\x14\x91\x28\x4d\x16\x4c\xec\x93\x32\x40\x33\xca\x20\xf1\x7c\x97\x54\x47\x1c\xac\xef\xe8\x2c\x53\xae\x2f\x0d\x7f\x1c\x65\x19\xd5\x29\x8d\x11\x5f\x2a\xa7\xfc\x94\xce\xad\x40\xe7\x6d\x96\x07\xa3\x23\xfd\x4b\xc7\xd0\x3a\xaa\x88\x38\xef\x51\xc2\x68\xd1\x29\x5f\xaa\xa4\x53\xd5\x9f\x92\x32\x01\x53\xa3\x07\x0f\x26\xb8\xa9\x57\x9a\x58\x08\xb6\xe2\x91\x95\xd6\x48\x49\x8c\xe3\xbc\x31\x8c\xf3\x4a\x0b\xb8\xe3\x60\x9b\xe5\xd1\x2c\xe1\x9b\xc0\x3f\x15\xa5\x37\x49\x2c\x46\x26\x67\xa8\xaa\xa3\x51\x7e\xd7\x2b\xb3\x34\x89\x7b\x46\x84\x69\xc7\xa1\xbe\xc1\x8e\x94\xe9\x79\x9a\xe4\x01\x52\x7d\x02\x98\x2a\xb2\x58\x73\x4e\x8b\x32\xa0\xfe\x2a\xb9\x4b\x58\xe9\xab\x02\x0f\x13\x75\x05\x6d\x1f\xf4\x50\xb2\x3d\x0c\x94\x5b\xde\x23\xbd\x95\x4a\x5e\x81\x62\x5b\x07\x2b\xe8\x5e\xee\xc7\xc1\x9a\xa0\xff\x5c\xd1\x38\x89\x7a\x9e\x8c\x10\xd0\x13\x1f\xe3\xae\x08\x08\x35\x51\x1b\x44\x31\x50\xca\x5f\xed\xd6\x54\xc3\xc9\xc7\x47\x35\x6c\x3a\x85\x53\xb9\x78\x84\x16\xb8\x29\x09\x93\x5a\xe0\xd9\x67\xd2\x02\xcf\xdb\xe2\x88\xf4\x63\xcc\x71\xe4\x6e\x75\x2c\xe9\xa0\x40\xfa\x33\xeb\x58\x0b\xba\xec\x60\xf4\x58\x66\xb4\xad\xc6\x95\x9b\x0c\x94\xb7\xc6\xf7\xb4\x74\x34\xb6\xa9\x7e\x56\xbe\xa7\xbc\x16\xd3\x45\x10\xcb\xea\xd8\x3e\x77\x1c\x51\x9d\x62\xb8\xe3\xc6\xb9\x42\xa9\x61\x18\xe6\x93\x6d\x15\xe4\xca\xa8\x2a\x77\xda\x9e\x36\x48\xbe\x5c\x93\x7c\x40\xe8\x5d\x63\x50\xf6\xc2\x8c\x41\xbd\xab\x4f\x2a\xa8\x76\xd5\x8f\xff\x92\x67\x07\xb4\xba\xea\xfc\x81\x62\xd7\xc5\x1d\xcf\x4d\x87\x77\x61\x4b\x66\x84\x24\x38\x04\x59\xf9\xb0\x03\xac\xa5\x3b\xdb\x40\x70\x0b\xb5\x22\x16\xc6\x2e\xfe\xaa\x91\xdb\x47\x35\x6e\x28\x80\x51\x83\x33\x6d\xc7\x98\x05\x18\xde\x87\x8b\x7d\xdb\x80\xbc\x0a\x63\xcb\xc6\xa8\x19\xe8\x5c\xe7\x5e\x81\xc9\x9b\xf0\x95\x5f\x66\x2b\xda\xa1\x95\xf3\x86\xe4\xc6\x4f\xca\x97\xeb\x44\xd1\xc6\x92\xe8\xfe\x21\x29\xb9\xb8\x28\xbe\xb9\x89\x78\x54\xa0\x6b\x5c\x61\xf2\x36\x7c\xa5\xb4\x97\xfd\x7e\xc7\x67\xaf\xae\xf4\xeb\xc1\xe8\xda\x69\xe2\x4d\xfd\x9c\x8b\xb9\xfc\xdc\x60\x9a\x4a\x25\x1f\xb0\x54\x39\x6d\x7b\x02\x53\xa2\x4e\x03\x79\xbf\xdb\xbd\x69\xba\xfd\x8a\xb7\x0a\x87\x92\x83\x77\x5d\x6f\xf5\xce\xb8\xec\x7e\xa9\xb6\xd5\x6d\xd7\x5b\x75\x5a\x58\xd7\xbb\x06\x1a\x23\x6f\xb1\xc0\x03\x29\x26\xcf\xc3\xbd\xbe\xc2\x3f\xdb\x0b\xe7\xb6\x22\x77\x98\xbc\x0c\x67\xbb\x9d\x20\x03\xc7\xd6\xe5\xc9\x7b\x6e\xcf\x1c\xbc\x06\xa9\xca\xf3\xee\x5d\xdd\x02\xa8\x5b\x8b\x5c\x88\x1e\x8c\x9e\x1c\x93\xb7\x13\xef\x65\xe8\x34\xbf\xdb\xcd\x26\x2f\x95\x01\xbd\x18\x45\x18\x86\xf3\x7e\xdf\x53\x8f\x2f\x27\x2f\x43\x78\x17\xa8\x02\xe7\xcb\xc6\x30\xa1\x9a\x20\x76\xf6\xf0\x5d\xf3\x7b\x2d\xf4\x6a\x13\x30\x84\x01\x59\x61\x50\x9d\xef\x6b\xf3\x25\x79\x4e\x5e\x61\xf2\xca\xcf\xb3\xdc\xc3\x18\x07\xf7\x57\xd4\x8c\x7f\xdc\xc5\xf8\x2f\xea\x24\xfb\xa2\x41\xb2\x6b\xee\x70\x44\xda\x47\x5f\x52\xf1\x12\x7f\x1f\x8c\xec\x02\xdb\x67\x75\xdc\x65\x89\xa4\x2c\x0e\x46\xa2\x93\x7a\x0c\x1d\xd9\x84\x91\x78\xf9\xd3\x2c\x4b\xa1\x56\xdb\xaa\xb0\xb3\xaa\xb2\x97\xf2\x86\xd6\x58\x11\x7b\x53\x87\x59\xd0\x07\x53\x30\x0b\x0b\x97\x59\xb8\xfd\xc7\x21\xb7\x47\x86\xdc\x3e\x36\xd4\xf6\xa9\xa1\xb6\xcf\x0c\xb5\x7d\x6e\xa8\xed\x67\x86\xda\x3e\x3e\x6a\x90\xdb\x75\xdd\x27\x58\x19\xb6\x28\xef\xe3\x73\x43\x7a\x9f\x9f\x1b\x5b\xc2\x2f\xc1\x94\x50\xbc\x7d\x26\x2e\x22\x69\x82\x38\xc4\x98\xdc\xaa\x67\x51\xe1\x5d\xcb\xb0\x58\xf9\xa5\x4b\x82\xbc\x8b\xe8\x6e\x12\xe9\xf7\x11\xe3\x7f\xa6\xd3\xf7\x09\x7f\x1b\xe5\x7f\x4c\x16\x4b\x08\x23\xd5\x41\x50\xb5\xa8\xb5\xfa\xdb\xa6\x06\x54\xaa\x47\x8d\x37\xe4\x50\x95\xbc\x8e\xe2\x64\x5d\x06\xc3\x0e\x35\x6c\x9e\x25\x72\x88\x6d\x3f\xfd\x3d\xc1\xb8\xd0\x60\x95\xfd\x32\x88\xf2\x9c\x46\x45\xc4\x66\x14\x99\xb0\x5c\x83\x5b\x98\x52\xd7\xbb\x6e\x52\xb4\xe9\x28\x8e\xfa\x41\x00\xad\x03\x96\x1b\x24\x8c\xc9\xa0\x5b\xd2\x27\x03\xa4\xcc\xf2\x4b\x88\xcc\x65\x2e\x5e\xc1\x62\xc0\x2c\x2e\x6e\x04\x1d\x67\x5a\x57\x53\x34\xc6\xf6\x2e\x3f\xd0\xe4\x40\x5c\xa2\xf4\x1d\xec\xdd\xcb\x87\xbd\x44\x8b\x71\x83\xe4\x68\xf8\x8b\x66\x6d\x7f\xd1\x04\x12\x28\xcb\x1b\x3c\x13\x67\x61\x38\x8e\xbe\xca\xc6\xd1\xe1\x21\x4e\xae\x22\xd7\x67\x34\xba\x1e\x77\x69\xc7\x0a\xe2\xb1\xb0\x68\x04\xda\xf8\x74\xfe\xa4\x89\x38\x45\x85\x5f\x24\x79\x9e\x2a\x15\x2f\xb8\xf3\x7e\x97\xdd\xb2\x10\x5c\x84\x25\xb2\xd4\xaf\x5c\x28\xbe\x4d\x56\x34\x5b\xf3\xae\x57\xcf\x97\x74\xf6\x5e\xbc\x0f\x4f\x87\x8d\x57\x2f\xa3\x3b\xf3\xb6\x0c\x4f\x49\xa1\xe4\xba\x2f\xb3\x75\x49\xa1\x5b\x6f\x68\xed\x5a\xb0\x57\xa7\xce\x0b\x4c\x90\xa9\x89\x08\x52\x1c\xb1\x43\x29\x83\xa2\x4d\x0d\xcd\xeb\x1c\xb0\x98\xb0\x54\x58\xb8\x2f\xfb\xfd\xc2\x51\x15\xd5\x76\xcb\xc1\xa8\x12\x84\x53\x6d\xa4\x3f\xe5\x8f\x1b\xe7\x4f\x39\x8c\x32\xcb\x51\xa3\x81\x1f\x68\x74\x43\x1f\xd7\x06\x54\xd5\xcd\xd4\x43\x31\x75\x4e\x84\xfa\x79\x41\xc5\xd9\xf8\x4e\x36\xe5\xb9\xa3\x7f\x9b\xad\x67\xcb\x37\x02\x6c\x0f\x76\x6e\xab\x1a\x48\x37\xda\xb9\x60\xf1\xe3\x5a\xb9\x60\x71\x1b\x0e\xf0\xe6\x65\xf6\x08\x30\x98\x9a\xed\x46\xbe\x4d\xd7\xc5\x83\xdf\x8b\x4a\x6d\x00\x7e\xde\xcd\xa2\xb4\xe1\x15\x29\xfc\x8c\xbd\x86\x03\xf6\x9a\xce\xeb\x02\x20\x7d\xf0\xa8\xac\xf5\xbd\xd3\xd0\x1f\x61\x76\x45\xa3\x7e\xed\x68\xee\x1b\xc1\x10\xfa\xd7\x3a\xfe\xef\x1b\xe3\xee\x2a\x07\x0b\x00\x0d\xd1\xff\x56\x7d\xb4\x4d\xc1\x0a\x87\xf5\x74\x75\x00\x8a\x47\x93\x93\x24\x09\x58\xeb\xaa\x56\xc0\x80\x38\x63\xcf\xd3\x64\xf6\x9e\xac\x1b\xe4\x0c\xc5\xe3\xac\xdf\x3f\x30\xd3\x02\xb0\x76\x02\x5b\xc2\xa9\xdf\x47\x60\xdb\x29\xa8\xd7\x35\x04\x28\x30\xf0\x18\x12\xea\xe7\xb4\x28\x93\x92\x7b\x16\xa3\xf9\x62\xc5\x3d\xea\x2e\xb9\xf3\x2a\x2a\xb8\x27\xcd\x10\x93\x7e\x3f\xf1\x20\xcc\x96\xd4\x4b\x1e\x84\xd2\xd5\x55\x5c\xbb\x6f\xa1\x64\xb7\x3b\x60\xbb\x9d\xe6\x30\xc3\x30\x14\xbf\xe4\x60\x0e\x60\x30\x48\xde\xfd\xe2\xc7\x6e\x87\xbe\x11\x55\x34\xf2\xf4\x79\xb4\x10\xc4\xb1\x98\x88\x2a\x59\x16\x74\x0e\x49\xc1\x9b\x27\x95\x44\xfd\x7e\x24\x33\x94\x3b\xeb\xf1\x53\x43\x50\xaf\x3d\xb4\x2d\xd4\x5d\xd0\x34\x81\xec\x02\xb0\x1b\xc0\x5e\x6d\x67\x3d\x15\x92\xf9\x3a\x2d\xc5\x36\x94\xb0\xb4\x3b\x0c\x06\xee\x6e\x39\x28\xa8\xed\x35\xd8\x84\x9d\x73\xd3\x77\xf7\x6e\xe7\x69\xa8\x39\x8f\xcd\xe5\xc1\xb5\x41\x7b\x43\x32\xf5\x63\xca\xe9\x8c\xbb\xbb\xbc\x03\x33\xe8\xf6\xea\xf3\xea\x3c\x89\x30\xbd\xe6\xb9\x6a\x1d\x28\xb9\x74\xcc\x15\x2e\xcd\xda\xc2\xa5\xf2\x03\x6d\x5d\xac\x4d\xc2\x18\x64\x08\x0a\x18\x96\x75\x98\x27\x2c\xfe\xee\xf2\xe5\x8f\x59\x2c\xc3\xdb\x29\x58\xa4\x49\xc9\x29\xfb\x3e\x2b\x60\x8c\xff\x4d\x37\x25\xc0\x62\x53\x27\x29\x54\x73\x18\x13\x47\x72\x25\xa5\x84\xca\x96\xc2\x2d\x6a\x60\x1d\x67\x94\xf4\x5e\xcc\x44\xf5\x19\x80\x57\x1e\xae\xaa\x27\xd9\xe9\x80\x2f\xbf\x33\x98\xda\x19\x38\x70\x45\x6e\x72\x03\xd9\x57\x8d\x3d\xef\x18\x2e\x74\xbc\x68\x6c\xed\x0f\xb3\x00\x72\x69\xa7\xda\x55\x03\x6f\xbb\x6e\x9b\x0f\x94\x04\x7a\x5c\x2d\x0a\xd1\x32\xc1\xd7\x74\x8e\xa5\x5c\x10\xf0\x92\x42\xcd\xeb\x0f\x15\x14\x1a\xc1\x4a\x6e\x7f\xa8\x36\x57\xa2\x77\x55\x04\xf7\xb4\x2a\xaf\x5f\x0a\x7b\xc4\x78\x82\x59\xf3\xc4\x05\x21\x6e\x68\xc2\xf5\x29\xb2\x4f\x5a\xf6\xe1\x5e\x29\x5c\xa3\x12\x78\x32\xe4\xa0\xfd\x05\x04\x93\xfd\xa9\x2a\x6a\x42\xc4\xfe\x10\x14\x85\xfd\x05\x94\x0e\x81\x20\x09\xa0\x2b\x16\xdc\x23\xf7\x9d\x29\x49\xa7\x91\x69\xc8\x21\xe6\x2f\xb9\x0d\x9b\x21\xeb\xae\x90\x5c\x05\x44\x90\x59\x05\x44\x90\xbb\x04\x4f\x15\x4e\xb6\xc5\x8d\xa6\x9d\x36\xcc\xb5\xe0\xb1\xfe\xab\x25\x86\x24\x48\xc2\x1b\x1e\x00\xca\xf6\x49\x55\x86\x02\x05\x6f\xfd\x0c\xa4\xac\x03\x6f\xfb\x4b\x13\xa8\x06\xde\xf0\xec\x10\x7e\x0e\xbc\xed\x2f\x4d\x59\x6a\x78\x23\x45\xe7\x39\xc0\x16\x6f\x37\x39\x08\x4e\xdf\x75\x0b\x1b\x8d\x88\x31\xd9\x23\x09\x94\x61\xbb\x1b\x6f\x6b\x62\xb5\x3d\x88\xa0\xfd\xdd\x6a\x7f\x55\x29\x2b\xbc\x14\x63\xb9\x08\x67\xda\x36\xde\x52\x0b\x17\xfd\xfe\x2d\x5c\xfa\xfd\xbe\x77\x11\xa2\x08\x61\xe2\xbe\x9d\x78\x97\xb0\xa7\xc2\xa9\xa5\x31\xc8\xa5\x99\x44\x38\xc7\xc1\x25\x98\x56\x84\xe6\xed\x3e\xf1\xd8\x45\x53\x36\x27\xd7\xda\x35\xa1\x81\xb3\xa6\xd6\xdb\x2d\x97\x47\xcf\xac\xbb\xfb\x4a\x1f\x3d\xb5\x11\x1a\xaf\x7e\xca\x89\xb3\x2f\xdc\x97\xf6\x70\xba\x5b\xa5\x55\x43\x1e\x58\xb3\x7d\x5a\xef\xa1\x03\xbd\x9f\xdc\xb7\xe6\x4c\x3b\x3b\xac\xf5\x1e\x8e\xb9\xbb\xe9\x5a\x35\xd4\xd1\xd7\x46\x22\xf3\x09\x1a\x8c\x50\xb0\x71\x4c\x45\xde\x81\x1d\x12\xab\xc8\x25\xb9\xc5\x64\x4d\xf2\xdd\x6e\x3e\x11\x88\x7d\xaf\x9c\x72\xb1\xcf\xff\x07\xe4\x1c\xaf\xb5\x55\x93\xc3\x1b\x10\x89\x28\x82\xa2\x22\x37\xd2\xb6\xc9\x51\x3c\x7d\x47\x8b\xe4\x86\xc6\x70\xad\x7e\x5f\x64\x2b\x75\x3e\xba\x6e\x47\xb5\xfb\xd6\x4c\xca\xf5\x62\xd7\x0c\xba\xb6\x6f\x27\x4d\xd6\x05\xe2\xe9\x98\x58\x82\xd4\x46\x0d\x0c\x0e\x38\x90\xaa\xd0\xbd\xe0\x30\xf5\x9b\x7e\xff\x83\x9b\xdc\xee\x7b\x73\xaf\x6c\xf7\xb2\x2e\xdb\xbd\x6c\x9a\x63\x38\xb8\x56\xf4\xee\x98\x67\x98\x93\xe3\xe2\x51\x47\xb0\xeb\x20\x1f\x51\xea\x60\x52\xf1\xd3\x6c\x0e\x34\x44\x44\x40\xd3\x34\x28\x45\xb5\x17\x21\x28\x53\xcc\x32\xbf\x73\x44\xb5\xd2\x0f\xe8\xdb\xa8\x84\x68\x0d\x97\xae\xb0\xf6\xe2\x49\x81\x0a\xc5\xeb\x6e\x49\xd3\xd7\xc7\xfd\xbe\xb1\xb9\xb5\x52\xa5\xe3\xeb\x89\xfb\x23\x18\x8d\x69\xa7\x0c\xa7\xa4\x5c\xd3\x26\x0d\x5a\x23\x69\xfa\x25\xe0\x71\x2a\x9b\xf8\x6f\xba\x79\x55\xd0\xb2\x04\x83\xe3\x44\xc5\xad\x54\xbb\x5f\xec\xb8\xdd\x8e\x6b\xf1\x7f\xd9\x7c\x8f\xf1\x84\x79\x38\xc8\xbe\xa2\xfb\x85\x43\xfd\xbe\x9a\x33\xc9\x0e\x47\xb8\x22\xb4\x5b\xc4\x54\x0f\xb7\xe8\xb8\xa9\x25\x62\xb9\x2e\xe7\x5e\xc3\x16\x0d\xe3\xaf\x07\xa3\x5a\xf4\x43\x41\xb1\x46\x71\x0c\xe2\xc4\x1f\x80\x52\xa6\x85\x87\xde\xd3\xcd\x3a\x47\x64\x6e\xa3\xfd\x7d\xa8\xc0\xbc\xc9\x87\x84\x82\xd2\x69\x93\xe4\x61\x32\x56\x51\xe7\xb4\x20\xbb\x0c\x3d\xf1\x3c\x1a\x62\x4c\xc4\xc3\xd1\x08\x83\xc8\x7c\xdb\x80\xbf\xd8\x9f\xef\x05\x1a\x86\x29\xa8\x85\x0c\x06\xa3\x8a\xcc\xc2\x2b\x71\xbf\x22\xa2\xd8\x53\xa2\xb8\x44\x82\x68\x39\x43\x04\x89\x19\xa2\x58\x5e\xe6\xd2\xd2\x03\x15\x90\xe2\xe0\x9a\xd4\x45\x15\x19\xf0\x91\x5e\x6b\xe9\x05\xe7\x5d\x23\x6d\x53\xbf\x35\x12\x4c\x3a\x0a\xf7\x6c\xb9\x8e\x0e\x46\x15\x19\xd1\x63\x81\x0f\x7f\x55\xbd\x06\xf7\xbf\xbb\xf8\xe1\x9b\xbf\xbe\x7b\xfd\xe2\xd5\xab\x1f\x2e\x1e\xe7\xcc\x35\x3a\x3b\xfa\x8c\x7a\x8e\xe3\x67\x27\x46\xd1\x01\x3a\x8f\x8d\xd1\x6e\xdc\xa8\x0a\x67\xa0\xe9\x38\x3d\x1d\x92\x45\x78\x3e\x1c\x37\xe6\xd0\xe5\x84\xdf\x6d\x84\xa4\x62\xf1\x76\xf9\x46\xb5\x0d\xf8\x6a\x5a\x07\x2b\xde\xbf\xc7\x79\x4c\x6c\xb5\x60\x48\x78\x96\x07\x43\xd2\x29\xcd\xff\x45\x22\xdb\x61\x45\x24\x27\xa6\x7d\xd1\x4e\x87\xba\xa9\xd3\x61\xbd\x19\x6d\xf2\x33\xec\x1a\xb5\x6e\xc6\x28\x00\x8c\x81\xd0\xb1\x8c\x21\x3c\xcf\x8a\x55\x80\xca\x59\x94\x52\x6f\x84\x11\x89\x58\xb2\x52\xca\x8b\xd5\x3a\x19\xc8\xaf\x07\x70\x88\xac\xbd\xd0\x94\xa0\x55\xe9\xf8\x38\xd6\xcd\x75\x68\x54\x26\x6c\x21\xfe\xd0\x17\xec\x52\x30\x77\x6a\x10\xaf\x24\x53\x19\x6c\x4d\x27\xdf\x69\x83\x1f\x84\xba\xdb\x6a\x06\x2a\x16\x1d\x23\x5c\x11\xe0\x25\xec\x6c\x46\xa4\xb9\x82\xf7\x2c\x42\x7d\xd9\x4e\xa1\xa8\xa9\x7e\xaa\x85\x61\x56\xdd\x09\x62\x2d\x61\x0b\xdb\xeb\x70\x1f\xb4\xee\x12\xfe\x11\xc0\x82\xce\x0c\xac\xba\xb6\x62\x6d\xfd\xbb\xc7\xa0\x18\xf8\xde\xd1\xe9\x70\x28\xba\x7f\x5c\xef\x04\xf5\x8e\xa0\x7e\xc2\xe6\x09\x4b\x38\x15\xb0\x46\xff\xf9\x9e\x6e\xe6\x45\xb4\xa2\x65\xaf\xb9\x27\x50\xb0\x45\xc3\xdf\x23\x65\xee\xe5\x6e\xa6\x21\x46\x66\x6b\xfa\xa3\x8a\x48\xe0\x77\x54\x1c\xb9\x15\x8f\xab\xfd\xfd\xdd\x25\xdc\x74\x67\x16\xde\x36\x6c\x56\x65\x7f\x13\x0a\x28\xfb\x07\x3d\x82\x6c\x38\xa7\x7b\x66\xe4\x3f\x3b\x82\xf7\xf7\xcc\xa4\xaa\x99\x7d\xdd\x2a\xcf\xdd\x5f\x41\xc3\x56\x86\xc3\x71\xf9\x55\x36\x2e\x41\xc3\x56\xba\x1a\xb6\xf2\xef\xa9\x61\x4b\x16\x2c\x2b\x12\xb6\xb0\x6a\x2e\x29\xc2\x17\x8c\x87\xb8\x06\x0b\xad\x46\xb3\x25\xcf\xb3\xd5\x2a\xe1\x4e\x39\xa7\xe1\x96\xd1\x3b\xfe\xdf\x54\x9c\x39\xb9\x96\x65\x70\x75\x5d\x91\x42\x0b\xaa\x6a\xb9\x2b\x94\x88\x7b\x5b\x91\xad\x7a\x0d\x97\x5d\xa5\x7b\x09\x5b\x92\xc5\x16\x55\x39\xec\xa4\x2a\x87\x2e\x55\x39\xbc\x0e\xb6\x15\xe1\xed\x6f\x47\x9d\xdf\x8e\xdc\x6f\x47\xf0\x2d\x6b\x7f\x7b\xe4\x54\x3a\xba\x0e\x64\x3b\xa0\x69\x50\x33\x21\x49\x68\x1a\xcf\xfa\xfd\x4c\x06\x2a\x81\xb3\x48\xd6\xd6\x5e\x2d\x9a\x68\xf9\xac\x7c\x27\x68\x52\x0d\x8b\x08\x24\x60\xf3\xe8\xbd\x26\x4a\x49\x6a\xdb\x2c\xfb\x7d\x70\xb6\x43\x2b\xb1\x60\x40\x21\x41\xd6\x27\xb1\xe8\xfd\x7e\xc7\x7a\xaa\x40\xb1\x3d\xd1\x82\xd7\xbd\xde\x78\x8c\xb8\xe0\x31\xa4\x2a\xcd\x69\xae\xbb\xfe\x50\xda\x51\xcf\x48\x4c\x96\x64\x15\xa6\x92\xdd\xec\x96\xf5\x36\x05\xdb\x82\x36\x58\x4d\x56\x62\xaf\x7e\x2b\xd0\x79\xc2\x16\xcf\xd3\x84\x32\xfe\x9a\xce\xb8\x87\xf5\x6d\x6a\x2e\xd3\xfa\x5d\x5a\x89\x99\xaf\x77\xbb\x21\x8c\x71\x06\x1f\xfe\xa5\xdf\x77\x7f\xfe\x75\xb7\x3b\x70\x5e\x1d\x50\x1f\xa6\x46\x4b\x3c\x93\x5e\x7a\x70\x8b\x78\x1b\x1f\x3a\xfa\x02\x22\x5e\xd7\xca\x65\xc7\x5f\x1c\xe1\x31\x4d\x4b\xba\x95\x0e\xd4\xa6\xc5\x89\x79\x0a\x4c\xcb\x57\xc3\x6b\x5d\x48\xa6\x76\x20\xa6\xea\x5f\xbb\xaa\xfe\x75\x5c\x1b\xcf\xcd\x60\xe3\x8b\x99\x36\x86\x33\x1d\x6c\x7c\x9e\xe5\x10\x1a\x78\x8d\xbd\xa5\x7c\x57\xfe\x6f\xc1\x3d\xef\xe8\x0f\xf0\x23\xcf\x6e\xf5\x6c\xc8\x11\x3e\x74\xca\xe4\x4c\xc8\x11\xc6\x5f\x1c\x63\xfc\xfb\xa3\x30\x0c\x87\xfd\xbe\xb7\x3c\x0c\x47\xce\xe4\x6e\x43\xd5\xd0\x2a\xba\xf3\x8c\xe7\xa2\x27\x16\x49\x8e\x54\x06\xb7\x1e\xe2\xc1\x0c\x93\x19\x3e\x3c\x22\xef\x1e\xfa\x42\xf9\xcb\x0f\xf1\x20\xc6\x24\xc6\x87\x47\x63\x77\xe0\x66\x84\xb7\xb5\xf1\xbe\x13\x03\xad\x0c\xa4\x26\x5e\x07\xca\x69\x23\x11\xf9\xc2\x33\x78\x24\x51\xe8\xe7\x2f\xc1\x4c\x3d\xfd\x35\x88\xd5\x13\x84\x98\x5a\x92\xd9\x34\x60\x0e\xb2\x91\x48\xae\x9b\xe8\x6f\x0f\x01\xce\x44\xb3\xd0\xc3\xfb\xf0\x23\xae\xc8\x02\xe3\xe0\x93\x0d\xb6\x09\x07\xc7\x2b\x4a\xe3\x1f\x16\x52\xa5\x24\xf8\x8b\x8c\xe1\x24\x1b\x86\x7c\x91\xb6\x69\xb2\x16\x1b\x75\x3a\x76\x94\xb5\x1d\xc4\xb7\x46\xea\xd4\x57\x4f\x87\x23\x83\xde\x1b\xa6\x8a\xaa\xed\xd2\x90\x51\x57\xfb\xe4\x4f\x4e\x08\x95\xf7\x6e\xdb\x44\xc7\x9f\x31\x98\x51\xe9\x00\xb8\xe2\x1b\xb7\x82\xc2\x08\xa6\x44\x0a\xa3\xa6\x15\xd1\x70\xe4\x06\x8e\xcc\xc0\x31\x73\xe1\x98\x54\xf8\x5a\xb0\x69\x6b\x05\xc9\x2c\x6f\xc4\x60\x6e\xe8\xdb\xed\x5a\x4a\x54\xc7\x42\xad\x9e\x54\xb3\x04\x0c\x2c\x77\x2a\x8b\xeb\x08\xb8\xb9\x0f\x34\xfe\xad\x2b\x2f\x1f\xbf\x85\x88\x42\xdc\x8f\xda\xac\xa0\x0a\x15\x34\xea\x10\xe3\xf1\xbe\x06\x59\xbf\xcf\x8c\xa5\xad\xab\xad\xd7\x4b\xcb\xfc\x32\x4d\x66\x82\x5e\xaa\xa0\xb1\x8f\xd2\x1a\xde\xaf\x8e\x6a\x6b\x9f\x1c\xd8\x7f\x90\x2f\xb4\x47\xf5\x75\x6b\x3c\x05\x71\xcb\x55\xb0\xc3\x97\x59\xcb\x21\xba\x54\x1f\xd6\xe3\x6f\xdf\xa6\xde\x1f\x54\xc9\x49\x3a\x02\xb1\xb8\xe4\xee\x3d\x18\x12\xd8\xcd\x20\xa5\x70\x6c\x54\x57\x2d\xb7\x3f\x26\xf6\x2c\x76\x25\xfc\xfa\xa4\xb5\xc5\x91\xaf\xd6\x05\x75\x44\x92\xef\xea\x22\xc9\x77\x9d\x22\x49\xe3\x00\x76\x19\xd6\x35\xaf\xb7\x64\x3b\x4f\x93\x3c\x38\x18\x11\x1b\xc8\xc6\xd1\xe9\x54\xd8\x7b\xe7\x4a\x0c\x2f\xef\x4b\x29\x06\x51\xec\x81\x18\xf6\x93\x52\x12\xc5\x14\xdb\x74\x11\x3c\x1c\x12\xe6\x10\xcc\x54\xed\x4f\x3c\xe6\x5f\xe9\xe7\x31\x3f\x3c\xc4\xec\x8a\x5f\x87\xf4\x8a\xdb\x44\x06\xd5\xfe\xdc\x62\x1d\x43\x78\xb3\x59\x4d\xb3\xd4\x4f\x38\x2d\x22\x9e\x15\xbd\x44\x27\x01\xf7\x28\xde\xed\xd0\x95\x0c\x9a\xd9\xfb\x46\x13\x79\xd7\xe2\x70\x2b\xfa\xda\x66\x3a\xe3\x99\x8c\x50\x20\xe3\x9b\x50\xac\xcf\xb8\x9c\xe0\xbc\xc8\x56\x1e\xc5\x8f\x1c\x17\xde\x76\x66\x2f\x79\xc1\x6e\xa2\x34\x89\x7b\x11\xe7\x74\x95\xf3\x1e\xcf\x7a\x65\x5e\xd0\x28\xee\xb1\x8c\x0d\x60\xfc\xd3\xd4\x26\x86\x41\xf7\x74\xf7\x80\x5b\xad\xc6\x4f\xfd\x3e\xf5\xad\x18\x6a\x42\x83\xad\x76\x73\xa2\x55\x2b\x73\x8c\xc4\x8a\xdb\xca\x70\x40\x00\x4a\x8a\xb9\x91\x6e\x16\xf8\xeb\x70\x68\x78\x13\x0b\xbb\x65\x54\x5e\xde\x32\x2d\xfb\x52\x10\x24\x05\x84\x5a\xb8\x2a\xc4\xe2\x16\xf6\xb8\xb1\xae\x6c\x30\x9f\x23\x21\x4e\xf4\x5b\x48\x88\xb3\xfe\x77\x42\x9c\xa7\x26\xc4\xe1\xce\x96\x0e\x0f\x86\x2a\xb9\x87\xfa\x3e\x2a\xcb\x64\xc1\x76\xbb\x1a\xfb\x6f\x30\xd2\x68\xcc\xbf\x6a\xf2\x7f\x80\x83\xd4\xe6\xb7\x8c\x20\xbf\xae\x1f\x03\x86\x1f\xb5\xeb\x99\xdc\xf5\x62\xc3\x87\x62\xeb\x9b\xd4\x0e\xb4\x82\x0c\x3d\x47\x52\x26\xab\xb2\xf3\x8c\xa4\x30\x56\x67\xe6\x39\xf9\x12\x72\xf3\x78\xc7\xcf\x4e\x31\x59\xe9\x19\x01\x9c\xcb\xfa\x8c\x54\xa3\xaa\xc6\x7b\xba\x29\x3d\x8a\xeb\x41\xf4\x9c\xe4\x93\x57\xfc\x5a\xd0\x9b\x9b\xd0\x09\x5d\x10\xb1\x8d\x13\x7e\x81\x65\x31\x75\x7e\x4e\xb3\x2c\x7d\xf4\x4f\xd1\x63\x47\x52\x85\x65\x92\xc6\x2a\x33\x67\xd0\x31\x74\x2a\x76\xc3\xde\x28\x56\x90\xca\x27\x31\x22\x19\x25\x8e\x91\xbf\xa9\x8d\x40\x05\x29\x7f\xc0\x47\x5d\x29\x58\x2f\xee\x12\x4e\x63\x7f\x9a\xb0\xd8\xb3\xa9\xf9\x32\x13\x2d\xc8\xa9\x14\xac\x65\xf2\x97\xd7\x40\x87\x88\xed\x49\x32\xbd\x58\x6b\x49\x06\xb9\x8b\xdd\x70\xc7\x6b\xe7\xed\x74\x9c\x2f\xff\xab\xc8\xd6\x79\xb0\x4d\x4a\x30\xad\x4a\xd8\x22\x90\xb6\x42\xd2\x78\x1d\x94\x8e\xb5\xb6\x5b\xd6\x58\x61\xd3\xb8\x47\x7f\x19\x8a\x61\x82\x54\xa8\x53\x45\xbb\x27\x0b\x89\x93\x2a\x92\xd7\x00\xa5\x00\xb4\xd5\x15\x02\xee\x3b\x30\x99\x80\x11\xc4\x82\xf2\x17\x12\x21\xc2\xfc\x5f\x46\x79\x9e\xb0\x05\x06\xfc\x1e\xe8\x1a\x3f\xd2\x3b\xde\x7c\x2d\xd6\xa6\x0e\xe2\x51\x63\xde\xee\x50\x3a\x87\xae\x9b\xaf\x37\xed\xd8\x5d\xe9\x81\x0b\x24\xf6\x9e\x6e\xe0\xa0\x2a\x53\x47\x69\x27\x27\x1b\x97\x66\xca\x6e\x89\xc7\x35\xf9\xd5\x62\x95\x4c\xef\xa5\x0c\xc8\x60\xfb\xd0\xf4\x22\x4d\x29\xa7\x3d\x76\x05\x7d\x5e\x13\x0b\x3e\x56\x55\x18\xd7\xe7\xd8\x4e\xf3\xba\x27\x72\xaf\xb6\x80\x32\xb9\x3d\xd5\xe1\x21\x45\x98\x49\x6a\xd6\x8d\xf7\xea\x54\x40\xd7\x98\x24\xe1\xca\x0d\x4c\x64\x86\x0c\x28\xa1\x35\xf2\x42\xed\x27\x62\x7e\x4b\xe2\xda\xfe\xbc\x4b\x64\x06\xea\x30\x0c\xf9\x24\xd9\x6b\x76\xc0\x49\x41\x12\x31\xe1\x3d\xfa\xf3\x9b\xce\xb8\xe6\x8d\x73\x62\x31\x89\xbc\x42\xfd\xa4\x7c\x4d\xff\x77\x9d\x88\x83\x42\xee\x0f\xab\xb2\x71\x74\x69\x10\x0c\x3d\xcf\xd2\xcd\x3c\x49\x53\xec\xdd\x60\x62\x89\x27\x53\xeb\xe3\x92\x44\x5b\xec\xc5\xc1\x9d\xb1\xf4\x93\xf2\x4f\x82\xa2\xb3\x7e\x90\x58\x86\x7e\xa3\x15\x29\x1a\x77\x29\x88\x0e\xc6\x96\x30\x2b\xad\xdb\xa5\x58\x24\xda\x95\xf6\x98\x56\xd8\x9f\x67\xc5\x45\x34\x5b\xd6\x59\x79\xb5\xf5\x42\xa6\x0c\x45\x5b\xb4\x9c\x43\x8c\x3a\x69\x71\xc5\xf9\xe0\x13\x7e\xc5\xae\x03\x7a\xc5\xae\x2b\x1a\xd2\xdd\x0e\x04\xaa\x5c\xfc\x55\x5a\xcd\x8e\x71\x93\x2c\xbc\xb2\x17\x62\x22\xe9\xc2\x44\x36\x97\x59\x0f\xcf\xe2\x2a\xb9\x0e\x33\xa8\x8c\x83\xcc\xcf\xd7\xe5\xd2\x4b\x24\xfa\x8e\x94\xb8\x93\xac\x5d\x0a\xb3\x84\x26\x80\xfc\x29\xae\xca\x6b\x2c\xca\xa5\xdf\x8a\xf8\xa9\x2f\xe8\x48\x5f\xd0\x69\x28\x8a\xaf\xa2\xeb\xf1\xfa\x4a\x3d\x09\x18\xa4\xb8\x5a\x5f\x95\xe2\xa9\xc4\x95\x6d\x22\x73\xbf\x5f\x5f\x65\xaa\xb6\xf8\x6b\x16\x62\xdd\x20\x46\x89\x03\x2d\x20\xbc\x04\x73\x32\x11\xff\x04\x0a\x85\x88\xcb\xb4\x49\x62\xea\x9c\xcc\x9e\x93\x96\xd7\xac\x17\xab\x79\x9a\xcf\xd2\x8c\x19\xc3\x04\x8f\x91\xad\xc6\x48\x01\x97\xd7\x96\x64\xe7\x31\x49\x20\xa4\x8c\x3c\xa8\x41\xe2\x31\x82\xe4\x33\x12\x37\x93\xe4\xf2\xa0\x54\xf1\xb8\xa2\x50\x30\x9f\xb2\xec\x2e\xe1\x08\xa2\xde\x56\xb8\x41\x6a\x6a\xab\x8e\x28\x74\x47\x2b\xe3\xbc\x70\x12\x19\xc0\xb8\xa4\xc5\xba\x63\x17\x16\xda\x38\x64\x7d\x55\x5c\x8f\x13\xb0\x7c\x68\x9f\x87\x0c\x9b\x85\x83\x95\x16\xc4\x8f\x78\x88\xc8\x3c\xe4\x57\xc5\x35\x89\xc3\xce\xef\xe6\xb8\xdf\x3f\x98\x2b\x9c\x9d\xb0\xf1\xc1\x6c\xb7\x4b\xfb\xfd\x83\x78\x32\xdb\xed\x0e\xd2\xdd\x2e\x9e\xcc\xfa\xfd\x74\xcf\x29\x14\x5f\x7b\x62\x5c\x61\x07\xc8\x33\x07\xe4\xcc\x01\x79\x06\x20\xb7\x7d\x6a\x70\x66\x16\x9c\x06\xec\x99\x03\xf6\x0a\xe3\xe0\x9e\xbe\xc4\x32\x8e\xaa\x7b\xab\xdc\x33\x1c\x2d\x52\x78\xcc\x30\x20\x21\x78\x93\x38\x96\xc4\x82\x7b\x7f\x82\x41\xc8\x8a\x16\x0b\xea\x96\x96\x61\x26\xab\x76\xdc\xf5\x61\x24\x5f\x35\x2f\xf9\x70\xad\x48\x6f\x06\x52\xa5\x5f\xc1\x5e\xe2\x73\xb9\x7f\x8e\xc0\x2a\xa2\x23\xde\xad\x8c\xbb\x72\x7e\xda\x4a\x19\xf5\x2f\xe6\xb3\xa7\xe8\xe7\x1b\xc7\xd2\x4e\x29\xe6\x0f\x46\xd6\xc1\xe2\x42\x6c\xc6\x86\x40\xdf\x08\x22\x6f\x1c\xbb\x7c\xe7\x93\xbb\x96\x0a\xc0\x7c\x61\xba\x80\x2f\x3e\x44\x60\xf9\x90\x61\xbb\x8e\x2b\x69\xd3\x51\xda\xf4\x03\xcc\x11\x2e\x96\x21\x33\xb2\xf8\x34\x64\x46\x16\x3f\x33\xcf\x7f\x85\xa4\xaa\x8e\x2c\x7e\xd5\x30\xd8\x66\x7b\xc3\x92\x69\x05\x39\x41\xaa\x59\xf3\xf4\x57\xf3\x04\xb9\xd2\xaf\x31\xd9\xb8\xf9\xfc\x6e\xc2\x8d\xaf\xa0\x4a\xa6\xe1\xc6\x57\xf0\x22\x8b\x46\xa8\x5c\xed\x3b\xb3\xc7\x7e\x59\xbf\xd6\x26\xca\x37\x6d\x63\x64\x5d\x45\x19\x48\x90\x12\x8c\x90\xd7\x98\xdc\x86\x4a\xb9\xb7\xd4\xca\xbd\x25\x68\xf5\x06\xcb\x2f\x8e\x0e\x67\x52\xcf\x07\xcf\x69\x25\x8d\xaa\x6b\xc3\x82\xdb\xc7\xa6\x70\xaf\x25\x47\x50\x6f\x95\xfd\x07\x99\x36\x07\x65\x6a\x38\x63\xe2\xd8\x5c\x5f\xf3\x3d\x14\x6b\xbe\x4f\xa6\x9b\x31\xd8\xbd\xae\xb5\x2e\x14\x10\x89\x9d\x6b\xe5\x77\x09\xaf\xc8\x0a\x93\x7d\x9d\x28\xa9\xb0\x13\xa9\x60\xa1\x02\x59\xde\x56\x4f\xf8\xe8\x9d\x1b\xa1\x7d\xde\x45\x5f\x2f\xeb\xd4\xf1\xb2\x21\x0c\x36\x8a\x78\x25\x0d\x5e\x85\x4b\x47\xb6\xbb\x7a\xa2\x35\xa8\x93\x5d\xd7\x7c\x97\xe1\x6d\xd1\xef\x17\x5a\xe2\x97\x61\x15\x48\xee\x60\x34\x6e\x86\xea\x7a\x25\x9d\xcf\xa4\x01\x27\xe4\xf8\xa5\x75\xe7\x19\x47\x0e\xdd\xef\x4b\x2f\xca\x83\x30\xe4\xa6\xfa\x41\x22\xd8\x38\xed\x5b\xa6\x9f\xae\xd8\xb5\x40\x9c\x5d\x61\x98\x35\xc1\x86\x32\x66\x03\xc7\xe3\x6b\xc3\x0c\x36\x5f\x88\x76\x0e\x86\x55\xf5\xc9\x2e\x28\x07\xd8\xd9\x13\x39\x0f\x9d\x2c\xc3\x6e\x16\x87\x6a\xf0\x28\xa9\x47\xc1\x48\x5d\xa5\x9d\xa3\x68\x03\xe4\xc5\x6b\x44\x60\xb6\xa7\xfd\x87\x99\x11\x5b\xb7\x4e\x6f\x49\xa7\x3f\xaf\xd9\x51\xb2\xa7\xa3\x8e\x8f\x07\x23\xb1\xd0\x46\xca\x2c\xf5\x6e\x3a\x41\x7b\x5b\xa0\x2b\x9b\x6c\x7d\x64\xea\x4b\xc3\xd6\x0f\xa5\x35\x5c\x40\xff\x39\xe1\x4b\x1b\x2f\xa5\xd0\x6f\x35\xac\xea\xaf\x05\x01\xe5\x86\xb7\x09\x13\x5d\x60\x4e\x6c\x18\x29\x8a\x69\xad\x88\x8e\x54\x3e\x1d\x7d\xd6\xb0\x75\x9f\x37\xe8\xde\xc9\x70\xf8\x81\x31\x3f\xa3\x35\xcf\xc0\x10\xc1\xca\x3c\x04\xe3\x94\x39\xe1\x40\xd3\x10\x4c\xf5\xf3\x34\xda\x5c\xac\x72\xbe\x21\xf3\x90\xfa\x2f\x66\x19\xb3\x31\xa4\xe2\x90\xaa\x94\x23\xb9\x7e\x92\xbe\x53\xab\x90\xfa\x2f\x29\x5b\xcb\x5f\x9b\x50\xec\x90\x94\x27\xe2\x22\xbc\x09\xa9\xcf\x20\x56\x06\x18\x77\x64\xec\x79\x9a\x95\x94\x2c\xe0\xf9\x32\xa7\x8c\xdc\x8a\x47\xf1\xf0\x2e\xd4\x32\x1c\x19\x6d\xf9\x32\xa4\x2a\xad\x8f\xca\x65\x21\x9b\xbf\x08\x9b\x61\x7e\xae\x90\x99\xdf\x3e\x3f\x2c\x77\x66\x88\xa0\xda\xbc\x10\x41\x30\x17\xfd\x57\xbb\x28\x99\x19\x21\x82\xf4\x7c\x10\x41\x4c\x45\xfe\x40\x6a\x2e\xf0\x24\x66\x22\x1e\xe4\x1f\x67\x16\x26\x39\x8f\x3b\x07\x41\x5f\xdc\x85\x37\x13\x73\x8b\x04\xe6\xd0\x1a\x6e\xb9\x1b\x1d\xc5\xcd\x90\xa8\x30\x62\x1b\xe6\xe6\x8e\xd8\x29\x04\xcd\x08\x47\x46\x76\x46\x6a\xf3\x0f\xe6\xd2\xf1\x41\x62\xd4\x8a\xdc\x4c\xb6\x55\xb0\x35\x20\x0d\x38\x71\xa1\x17\xa4\xc4\x00\x26\x58\x11\x0d\x98\x60\x43\x14\x3c\x82\x29\x91\xf0\x08\x16\x44\xc0\x23\xb8\x25\x0e\x3c\x82\x77\xa4\x0d\x8f\xe0\xb2\x22\x39\x31\x19\x74\xf2\x49\x9d\xee\xdc\x4e\xa3\x52\xfa\xb9\x41\x4a\x69\x46\x6f\xf5\x8f\xdc\x6c\xdf\xe7\x4e\xf0\x56\x1c\x64\x15\x89\x27\xb1\x61\x30\x0d\x44\xb6\x82\xbc\xbd\xf8\x15\x42\xbb\xaa\x88\x94\x99\xe1\x91\x74\x14\xd7\xb2\x1e\xc5\xf5\x64\xa8\x6c\xff\x75\x18\xd7\x99\xfa\xfc\xc4\x04\x77\x1d\x9d\xd9\xf0\xae\x2a\xf1\x1e\xf3\x4e\x8e\xce\x04\x9f\x24\xdf\x9f\x83\xf9\x78\xae\x06\x63\xed\x33\x57\x0f\x05\x39\xb5\x6b\x7c\x30\xaa\x2f\xf2\xc1\xa8\xb9\x47\x0c\x35\x27\x33\x15\xad\xf7\xd0\x56\x36\x76\xaf\x94\x66\x99\xfd\x01\x7a\x70\x71\x72\x14\x1f\xa3\xee\x90\x50\x1d\x0f\x64\x13\x2d\x3a\x57\xac\x9e\x93\xe3\x74\xa3\xaa\x37\x43\xa9\xfe\x3a\xc9\x16\x5b\x5c\x31\xac\x73\x62\x18\xe4\x7b\x62\x90\x4a\x1f\x82\xd4\x30\xcb\x33\xc3\x2c\xcf\x0d\xb3\x1c\x1b\x66\x39\x37\xcc\xf2\xb2\x8b\x59\xae\x45\x45\x82\xf7\xe0\x4c\x22\x2f\x09\xa8\x71\x13\x32\x6f\x74\xda\x8a\x4d\xba\x9f\x99\x6e\xf2\xb4\x9f\x83\x99\x9e\x77\x31\xd3\xf3\xcf\x6d\x9e\x4b\x7f\xa4\x77\x1c\xe2\x89\x80\x6d\xae\xda\xe7\x26\x11\x4a\xe1\x27\xa5\x40\x57\x4e\x96\x0c\x63\x2e\x6a\xa2\x00\x88\xfb\xc9\xf0\xe6\x2b\xca\xd6\x2f\x13\x26\x4f\x8e\x14\x21\x09\x3c\x27\xf7\xb5\xcc\x54\xdf\x69\x63\x06\x54\xb9\xcc\x19\x98\x53\x36\x4e\xe6\x5e\xbb\xef\x9a\xbd\x29\x9b\xd8\x30\x04\xa2\x9a\xc7\x71\x60\x4b\x00\xdb\x7a\x5c\x9a\x2a\x19\x56\xbe\x36\x38\x5d\xd9\x1c\x74\x69\x6c\xea\x02\xc1\x35\x53\x94\xf3\x60\xae\xd4\x00\x22\x7c\x34\x22\x39\x34\xa1\x3a\x34\xd3\xf6\xb6\x12\x12\x43\x02\x73\x0d\x68\xbd\xa9\xac\xa4\x8d\xa6\xea\x9f\x8d\xba\x3e\x7b\xc1\xe9\xaa\x63\x14\x0d\xf6\x88\xdb\x10\x13\x1a\xe5\xec\x76\xfb\xda\xe7\x95\x35\x4c\x93\x02\x89\x2c\x64\x36\xb1\x43\x12\x32\x5f\xe0\x1b\xb1\x42\x99\x92\xe1\xca\xd5\xaa\x77\x80\xb7\x51\x58\x37\xca\xd1\x35\x64\xd6\x87\x49\x5d\x56\x52\x7f\x19\x5c\x5d\x6b\xbf\x30\x87\xb2\x76\x6b\x8c\x07\xa3\x30\x0c\xd7\x93\x48\x4a\xf7\xeb\x2f\x21\x1f\x1e\x98\x99\xad\xc9\x08\x57\x34\x2d\x69\x2f\x0a\x6b\x75\xc6\xdc\xb1\x99\xe3\x2a\x04\x4a\xa8\x10\x5b\x24\xad\x92\x92\x8a\x64\x20\xd7\xa9\xaa\xaa\x1e\x7b\xc7\x05\x76\x32\xf7\x0e\x86\x10\xf9\xa4\xbe\xf4\xd6\x38\xaf\xe4\x59\x2e\x50\x69\xb4\x88\x24\x29\x4b\x5c\x83\x69\xf7\x04\x62\x17\x92\xd2\x89\xb9\x2b\x0e\x8d\x4c\x50\x93\x85\x5c\xae\x84\x6b\xfe\x47\x1b\x53\x61\x72\x2a\x59\x45\xea\xcd\x7a\x62\x56\xf7\x86\xbf\xd1\xf5\x75\x7a\x85\xdd\x0e\x58\x9d\x2b\xe3\x4d\x67\xfd\xe8\xae\x5d\xbf\xc3\x5a\x18\x16\x30\x42\x68\x07\x7c\x79\xe2\x31\x71\x36\xfc\x77\x16\x41\xd5\x07\xeb\x60\x2e\xea\x9c\x0f\x9d\x3f\x69\x6f\x60\x1f\x93\x62\x09\xd2\xcc\x18\xeb\x23\x96\xc5\xd4\xa4\xee\xab\x6d\xce\x6a\xbc\x2f\xd7\x12\x73\x73\x2d\xb1\xaa\x21\x2b\x8c\xdb\xb2\xc2\xd9\x07\x86\x44\x51\xd9\x6f\xea\xc8\xb1\x16\xae\x44\x80\x50\xa7\xc4\x71\xd0\x99\x0a\x3f\x42\x54\x2c\x8e\x62\x46\x65\xc4\x11\xaf\x11\xff\x64\xcd\x33\x15\xea\x65\x4f\x0b\x4f\x31\x9f\x6c\x87\xf0\xb5\x1c\xd7\x13\xa2\xf8\xda\xe8\x06\xf2\x87\x65\xc6\xe2\x90\x37\x98\x31\x88\xcf\xa1\x17\x96\x70\xcb\x7f\x89\x2b\xdf\x38\x4a\xac\x04\x2d\xbf\x82\x28\xbd\x86\x25\xbb\x55\x87\x8a\xbc\x6b\xc4\xe8\x50\xe8\x8f\x1b\x2e\xcd\x84\xeb\xc0\xe4\x52\xd6\x05\x8e\x8d\x03\xec\xb1\x4c\xcf\xaa\x8e\x8e\xcc\xcd\xea\x70\x6f\xef\xc5\x07\x85\xd2\x2e\x13\xde\xc1\xc9\x61\xf2\x2a\xb4\x61\x39\xc8\x1b\x1d\x80\xe3\xad\x1d\xfe\x9b\x89\xf6\x46\x0c\xde\x90\x9f\x0d\x5a\x78\xde\x11\x24\xf8\x41\x16\xb0\x96\x64\xa7\x16\x7e\xe3\x41\xce\x50\xc6\xfb\xd8\xcb\x0f\x36\x63\x6f\x98\x8c\x3d\x2e\x87\x68\x03\x72\x34\x79\x45\x09\xc0\x16\xdb\xa8\x61\xd7\xcd\x41\xd6\xe2\x6b\x40\x30\x0d\x9b\x01\x88\xbc\x0c\xef\x3b\x3e\x76\xab\x4f\x2e\xdd\x3c\x3f\x40\x94\x28\xc3\x84\xe7\x57\x32\x87\x4d\x22\xed\x28\x91\xbc\xab\x5e\x93\x1f\x43\x84\xc8\x77\xe1\xd5\x35\x79\x11\x1e\x8c\xc6\x9e\x8a\x34\xfc\x7d\x02\xb4\x8b\x63\x2f\x82\x77\x3b\xd0\x0d\xde\x4d\x5e\x87\x77\xde\xcf\x38\x78\x61\x3c\x5f\xbe\x71\x02\x1b\xd5\x64\x61\x05\x71\xaf\x73\x71\xe9\xe4\xfb\x64\x59\xdc\x18\x8d\x0a\x82\x46\x5e\xe6\x02\xbb\x2d\xe4\x77\xf5\x5b\xf9\x67\xd7\xc4\x51\x59\xf3\xbd\x8c\x38\x2d\x92\x28\x1d\xfc\xf4\x22\xe8\xf1\x25\xed\xfd\x0d\xa0\xf7\xb7\x5e\xae\x18\x02\x69\xde\x37\xa5\xbd\x88\xf5\x22\xd1\x4c\xef\x76\x49\x59\x6f\x5d\x26\x6c\x21\x3f\x90\xab\xf2\xb7\x9e\x41\x67\xbd\xdb\x84\x2f\x7b\x7f\xd3\x7b\xe3\x6f\x3e\xc2\x63\x16\xc2\x95\xf2\xb3\xb9\x3e\x78\xed\x1a\x27\xac\xdf\x7f\xd1\xef\x7f\x27\xaf\x78\xde\xb4\xb5\x81\x7b\xdd\x63\xe1\xcf\x02\x0b\xd7\x3e\x84\xcf\xbc\x1f\xc3\xd6\x27\x5a\x80\x90\x77\x0b\x10\x38\xd9\xaa\xb0\x6d\x01\x6d\x12\x58\x1e\xc7\x2a\xd1\x45\xa6\x52\xb2\x9a\x34\x17\x4c\x61\x3f\x65\x59\x80\xe2\x88\x47\x03\xb9\xdf\x82\xda\xc0\x2a\x5c\xe1\xb1\x18\xda\xeb\x70\x31\xf9\xce\xff\x39\x4b\x98\x87\x48\x0f\xe1\xe0\x47\xb9\xfa\xdf\x3b\x7a\x15\xdf\x25\x56\xc7\x07\x3a\x1c\xd5\x83\xfb\xb6\xdf\xf7\x54\x33\xdd\x74\xac\xec\xe9\x07\x0d\x8a\x1f\x42\x27\x68\x86\xb5\xf8\x7c\x35\x79\x15\xcc\x24\x41\xec\x64\xf7\x7f\x28\x5b\x96\x0c\x50\x53\x3d\xf0\xc1\xde\xe0\xd2\xcd\x68\x37\x2a\x23\xb0\x7e\x10\x38\xa6\x9d\xaa\xc6\x89\x7b\x33\x83\x88\x34\x8d\xe4\x49\x96\x62\x20\xf2\xd8\xe6\xd2\xc9\x1e\x05\x2f\x27\x32\xfb\x54\x80\xe6\x51\x2a\x30\x91\x89\x77\xf1\x83\x5a\x6a\x13\x5c\x1d\x3e\xcc\x6e\x59\x09\x5f\x89\x95\x19\x18\x91\xfd\xed\x6e\x87\x10\x96\xbc\x8e\x4a\x6e\x15\x95\x79\x96\xaf\x73\x93\xde\xea\x81\xf8\x32\x7b\x82\xd5\xc8\x9d\x38\xdb\xed\x2e\xe4\x42\xb8\x79\xa2\x20\xb6\xa0\x8e\x67\x23\xb3\x17\xbf\xde\xed\xf6\xc2\x5d\x29\x75\x62\x81\x7b\x8b\x6c\x5d\xa6\x9b\x37\x94\xbf\x60\x8c\x16\x7f\x7c\xfb\xf2\x87\x60\xfb\xee\xdd\x92\xaf\xd2\x00\xf5\xff\xe3\xfc\x68\x78\x3c\x46\x55\x25\xf8\xec\x7d\xad\x29\x89\x60\x63\x1d\xe5\x21\x68\x62\x97\xc9\xcf\x7a\x9f\x23\x1c\xfc\x2c\xa9\xd1\xdb\xe6\x1a\xbd\x30\x57\xf5\x26\xa7\xc1\xdb\x8a\x3c\xbf\xa7\xfb\xb8\xbe\xe3\x92\x59\xc6\xaa\xfd\xb5\x37\xae\xa6\xad\x26\x1c\x8c\x83\xce\x85\x24\x11\x9b\x2d\xb3\xe2\x42\xc1\xdb\x1e\x22\xc9\x00\xbe\x34\xa2\xbc\xda\x72\x64\x25\xad\xc8\x94\x6c\xc5\x1e\xfd\x21\x29\xad\x90\xb1\x9e\x35\x4c\x6c\xaa\x34\x29\xb9\x4c\xa5\x31\xf5\x6b\xd5\x31\x79\x15\xe5\x2a\xfa\x7e\xf3\x53\x51\xd9\xbe\x25\x5b\xa9\xc7\x6b\x54\x5a\x69\xd6\xf6\xfb\x8a\x48\xb3\x21\xf7\xa3\x89\xfb\x43\xca\x8e\x02\xe9\x48\x86\x2b\x4c\xbe\xb1\x3a\xbe\xbc\x4b\xc7\x37\xad\x49\xcb\x54\x4e\x8b\xa9\x23\x64\x5a\xfc\xe3\x84\xe0\x3e\xfe\xc4\x36\x18\x5f\x62\x27\xcf\xf0\x71\x23\xcf\xb0\x94\x2b\x1d\x9b\xd0\x14\x27\x47\x47\x20\x62\xda\xea\xe0\xd2\x01\x82\x10\xac\xcb\xac\x48\x7e\xc9\x18\x17\x05\x32\xde\x48\x45\xa6\xf7\xd6\x82\xe0\x24\x15\x59\x84\xdb\x5c\xac\x5b\xb0\x5d\x45\x77\x3a\x5f\xf0\x2c\x4a\x67\xde\x68\x38\xfc\x7d\x6f\xd0\x7b\x76\x96\xdf\x61\x1d\x6d\x5b\x67\x95\x7a\x03\x99\x29\x21\xcb\x0d\x38\x93\xd5\x92\xf7\x76\x05\xc5\xf8\x17\x33\x25\x59\xa9\x93\xe7\x88\xba\x16\x94\xab\xb0\xe6\xdf\x28\x14\xd0\x36\xaf\xee\xd5\xbe\xec\xf7\x6b\x3f\x4d\x72\x2d\x41\x35\x08\x12\x32\xee\x74\x5c\xbe\xf7\x1b\x37\x09\xc0\xde\x8f\xb0\xb4\x8f\x06\x02\xb1\xd2\xc1\xa6\xdd\xc1\x82\x18\xe1\xf1\x03\x75\x05\x6b\xbd\x0f\x19\xb4\xe6\x0b\xc7\x92\xed\x7b\xcc\x14\xc6\xa0\x3d\xb7\xf3\xa8\xff\x32\x8c\xe6\x3e\xab\x9e\xce\x00\xbd\x8a\x12\xf8\x46\xf3\xaf\x90\x84\x3f\x13\xbc\xd3\x92\xae\x28\x49\x1e\x37\x30\x90\xe8\xc8\x34\xae\x85\x61\x99\x41\xeb\xef\xfa\x20\x7f\x95\xd4\x7e\xf6\xfb\x07\x89\x3c\x5e\xd2\x61\x5a\x9b\x37\xda\xe8\x26\x9e\x43\x48\x61\x0f\x13\x94\xdf\x21\x3c\x56\x1f\x5d\xa1\x82\xa7\x28\x0c\xc3\xcc\x8f\x93\x82\xc2\x1c\x27\xc8\x49\xfd\x86\x4c\x1e\xa6\xd7\x32\x58\x51\x18\x91\x5a\x87\xa1\x83\x13\x0e\x6d\xd0\x8f\x88\x20\x8c\x70\x65\xa5\x3f\x00\x47\x37\x86\x2b\x14\xd4\x22\xd4\x0a\x48\xb4\x45\x42\x84\xe3\x2d\x04\x56\x0a\xa5\x39\x44\xa7\x5c\xa7\x26\x7f\x75\x7b\x91\x02\xd9\xcf\x1a\x29\xb6\x25\xff\x80\x55\x6c\x87\x47\xad\x6d\x0f\x45\x3f\x7f\x12\xb9\x46\xcd\xc1\xc1\x9a\x70\x79\x7b\x36\x26\x6f\x5e\xff\xa5\x94\x23\x48\x83\x1f\xee\xdc\xd6\xd8\x84\x69\x08\xc3\xb0\x9c\x6c\xab\xa0\x04\x99\xc8\xab\x2c\xcf\x6e\x68\xa1\x34\x7e\x20\x08\x91\x3b\x3d\xef\x88\xd3\xb9\x4f\xf7\xdb\x1a\x98\x62\xe7\xcd\xc0\x80\x31\xbf\x50\x3e\xac\x76\x50\xe2\x47\xad\x7f\xc1\x6c\x8b\xde\x1d\x9f\xd6\x7d\x56\x46\xab\x7d\xf6\x4f\x6d\x1c\x2c\xe9\xac\x76\xb9\xf1\xe9\x9e\x91\xbd\x46\x53\x92\x94\xbb\x2c\x92\x45\xc2\x02\x7d\xc2\x62\xe7\x84\xdd\x04\x53\x1b\x0b\xe9\x81\x7a\x75\xe2\x2c\xa9\x11\x67\xa9\x55\xd0\xb6\xdf\x99\xad\x20\x23\x4e\x15\x3e\x5c\xe7\x60\x14\x4d\xf2\xfd\xe6\x5b\x9b\xfd\x36\x62\x1d\xdc\x84\x73\x66\x2b\xb2\x26\x5b\x41\x61\xbb\x12\x03\x5a\xbb\xf1\x78\x55\x61\x38\x87\xf7\x99\x75\xdd\xd6\x15\xa4\xb7\x0d\x05\x69\xd7\xd6\x81\xa8\x81\xc6\xb1\xc2\x86\x78\x82\x3c\x98\x95\x0a\x89\x53\x67\xf3\x16\x8d\x64\x90\x88\xdc\x26\x7c\xf9\x56\x6c\x24\x20\xfe\xbc\x5b\x57\x95\xf9\xee\x37\x6c\xa0\x72\xf2\x24\x03\x15\xeb\xf8\x31\xd4\xb1\x55\x19\x24\x09\xaf\x49\x9d\x59\x68\x73\xb0\x80\x97\x0c\x0b\xa9\x89\x33\x12\xa0\x29\x24\xfe\xd3\x18\xdb\xbe\xc3\x84\xed\xf1\xbb\x7d\x72\x67\x2a\xd8\x89\x26\x6a\x9d\xae\xe4\x3d\x48\x58\x23\xf0\xa0\x6c\xff\x8a\xfa\x96\xd6\x25\xd4\xd7\x74\xf0\x75\xdd\x7d\xd0\xd4\x6f\x8f\x87\x4e\x9c\xc8\x61\xf2\x36\x0d\x68\x85\x15\xbb\xd9\xeb\x70\xc1\xd5\x54\x2b\x0b\x39\x29\xc2\xe1\x98\xf5\xfb\xec\x20\x0c\xe9\x18\xb3\x90\xf9\x32\xe3\x8c\x20\x08\x48\x71\x18\x32\x95\xdb\xfd\x6d\x96\x6b\x64\x56\xd4\x7c\x18\xcc\xc0\xba\x4c\xfe\x26\xd4\x13\x83\xd1\x76\xe9\x9f\x9e\xe7\x49\xc3\x52\xf1\x3c\x33\x78\x3a\x06\x06\xa6\x54\x8c\x4e\x0c\x4f\x32\xdb\x6d\xa9\x18\x9d\x25\x3c\x3d\x03\x9e\xa5\x54\x8c\xce\x26\xf4\x4a\xc5\xe8\x94\x86\xd1\xb9\x91\x85\xa0\x34\x87\x87\xd3\x67\x18\x42\xec\xc1\x8f\x33\x51\xbc\x80\xe7\xa3\x11\xa4\x13\x2a\x75\xe2\xa1\x77\xf0\x28\xb8\xa2\x4b\x39\xba\xa1\x18\xcb\x85\xfc\xee\x44\x8c\xe6\x4e\x3d\x8b\x0e\xdf\x1b\xb6\xe6\xbe\x88\x7b\x7f\x6d\xe6\xd0\xfd\x8b\x8d\xc1\x67\xd8\xdd\xd1\x99\x78\x56\xac\x91\xf8\x11\xdd\xc9\x17\x35\x36\xe9\xf8\x08\xd8\xa4\x3d\x4c\x94\x7a\x5b\x4f\x37\xe4\xf2\x4c\xef\x01\xee\xaf\x1e\xe6\x99\xa2\x71\x87\xe2\xde\xe1\x99\xca\x36\xcf\x94\x3a\x3c\x53\x29\x96\x74\x38\x9e\x7d\x55\x8e\x67\x87\x87\x38\xbd\x9a\xb9\x3c\xd3\xcc\xe1\x99\x1c\x6a\x32\x12\x3c\x53\x14\xd6\x0b\x3f\x1d\xcf\x94\x8a\x0d\x10\xc9\x7b\xcb\x30\x4c\x91\xba\x79\xfe\x8b\xf2\xcb\xf9\xbc\xa4\xfc\x6d\x96\x87\x45\xbb\x58\x50\xaf\x61\x66\xca\x65\x86\xfb\x46\xe4\x58\x07\x8b\x46\xe0\x7b\xad\xb6\x44\xc2\x16\x90\x14\xa9\xf4\x6c\xef\xb8\x22\xa3\xb3\x33\x31\x9e\xae\x40\x20\x61\xad\x29\xb7\x4b\x1f\x02\x82\x08\x96\xa2\xbb\x8b\xa6\x56\x17\xf8\x13\x58\x7c\xcd\x6a\x44\x00\xb6\xc6\x77\x1e\xc5\x63\xed\x1c\xef\xf3\x2c\x07\xca\x58\xd2\xe5\x3c\xcb\x65\x19\x26\xa6\x86\x60\xea\x9d\x2a\xe2\xa7\x2a\xc5\xc4\x7c\x57\xa7\x48\x44\x1b\xf5\x92\x4a\xcc\xa1\x63\x2c\x1d\xec\x51\xe4\xea\xdd\x34\xe9\x54\x98\x1f\x26\x0a\x01\xb0\x49\x32\xa9\xd6\xdb\x65\x41\xcb\x65\x96\xc6\xa4\x94\x53\xae\x51\x5e\x72\x51\x3d\x0a\x41\x59\xa5\xd5\x3d\xad\xd9\x49\x28\x0b\xfc\x3a\xb7\x54\x91\x99\x6c\xeb\x6d\x7d\x26\x5e\x4a\x4a\xe0\xb8\xe4\x81\x0b\xc3\x50\x2b\xce\xb7\x3c\xcb\xa5\x50\x15\xcc\xf7\xe1\xa9\x49\xaa\x25\xde\x0c\x4b\xaa\x62\x2e\x5b\xaf\x0d\xb1\x14\x88\x70\x2e\xe0\x3f\x98\x99\xfb\x85\xe4\xe1\x1c\xc0\x3d\x98\xb9\x17\xd0\x32\x8c\x0f\x53\x1d\xd6\x6a\x15\xe6\x87\xa9\x8a\x7b\xb5\x69\x24\xda\x59\x7b\x0c\x70\xe4\xc6\x87\x98\xd6\x72\x76\x83\x0c\x3c\x1f\xa0\x04\x80\x30\xc8\xc4\x9c\xe2\xaf\x94\x85\xc4\x22\x8c\x07\xd9\x38\x1e\x84\x0b\x62\x47\x72\x18\x2e\xa4\x69\x42\x32\xf7\x96\x5f\xdf\xc8\x9a\xef\xc2\xe5\xe0\x46\xd4\x7c\x57\xab\xf9\xae\x4a\xe6\x5e\xae\x9b\xbb\x0c\xf3\x41\x36\xce\x07\xe1\x25\x71\x27\x71\x18\x5e\x9a\x06\x57\x5f\x4f\x65\xdd\x8b\x70\x35\x98\x8a\xba\x17\x8d\xba\x17\x95\x03\x67\x7b\x93\xc6\xf2\x26\x95\x40\xb7\xc5\xb9\x2a\xee\x5c\x81\xca\x1c\xee\x36\x93\x1e\x35\x19\xcf\xa8\xc5\x78\xee\x39\x8f\xc0\x92\xd6\x78\xc5\x65\x9b\x57\x8c\x3f\x9e\x57\xbc\x27\xdb\x87\xb4\x48\xd0\x23\x73\xc9\x6d\x89\x52\x9c\x34\x1e\x8d\xcd\xd7\x8e\x52\xae\x0f\x64\x53\x17\xde\x3e\x93\x12\xb4\x70\x20\x9b\x87\x34\x31\x65\x7a\x50\x70\x76\xea\x45\x20\x46\xd0\x22\x9d\x44\xb9\xbd\x8a\x7d\xbb\xdb\x79\x43\x9b\x19\x52\x6b\x24\x35\x5a\xf5\xa7\x59\xbc\xd1\x47\xbe\x2b\x82\x1e\x49\x43\x08\x87\x37\x29\x7c\x2b\xb5\x54\xe4\xe0\xd8\xd9\x4c\xa5\x38\x72\x87\x0e\xb0\xdc\x1b\xc2\x2b\x49\xaa\x76\x57\x09\xe7\xb0\xb3\xa2\xb8\x33\xbc\x92\x14\xce\x8e\xc5\x95\x0b\xeb\x0e\x94\xf4\x68\x90\x77\xf0\x92\xdd\x08\x71\x28\x80\xcb\xfa\x7d\xa4\x17\x49\xe2\x27\x15\x23\x5c\x74\x20\x2a\x48\xc9\x90\x09\xfa\xad\x5c\x4d\xd7\xa1\x20\x3a\x13\x3c\xce\xc2\xc4\xcf\xf4\xec\x0f\xeb\x42\xa3\x2f\x8e\x06\xeb\xdd\x6e\x58\xe9\x80\x0f\x99\x3b\xc5\x06\xa6\xdc\x3f\xbd\x0f\x8c\x42\x39\xac\xb9\x9d\x35\xaf\x18\xbd\xa0\x66\xa5\xf7\xad\x27\x25\xcc\x6c\x07\x7c\xc8\x5d\x09\xf6\xde\x95\x15\xdf\x74\xae\xec\x07\x88\x5d\xdc\x3c\x30\x7a\x9d\x30\x29\xa0\xdc\x3d\x4e\xcd\x83\x43\xda\x2b\xee\x04\x59\x80\xd3\xa7\xf9\xf6\x24\xe4\x4e\x52\xd7\x28\xe4\x3e\x4d\xe9\x0d\xb0\xb6\x52\x66\xd3\xb1\xa3\xda\x97\x29\xf7\x5f\x66\x71\x94\x3e\xd7\x81\xc3\xe6\x75\x69\x8f\x7a\xa2\x31\x06\x39\x8e\xfa\x99\xb0\x05\xe4\x9f\x91\xee\x5f\x64\x69\x1e\x69\x0c\xa9\x5a\xe4\x0f\x51\xeb\x36\xe4\xda\x55\xc0\x15\x1d\x49\x43\x94\x2c\x55\x46\x27\x8d\x55\x26\xdc\x7f\x6b\xd8\x75\xcb\xfa\x4b\xe3\x93\x16\x1f\x0f\x66\x28\xb6\xbe\x6c\xff\x6d\xd8\xb2\x64\xb2\x29\x61\xcc\xc1\xd1\x8f\x7a\x2f\x37\x51\x96\x2e\x30\x8b\xb1\xd7\x52\x45\xaf\x03\x22\xc8\xac\x02\x22\x2d\x9c\x00\x7d\x36\x96\x00\x11\xe4\x2e\x41\x4d\xae\x65\xc0\x6f\x9f\x13\xb6\x90\x3f\xc0\xe1\x19\x69\xb8\x9b\x47\xf5\x5e\x9a\xaa\xd4\xe4\x62\x02\xde\x88\x20\xde\x3c\xc1\xa8\x03\xd8\xba\x5e\x0d\xd2\xb5\xaa\xc6\x2d\xe2\xe7\xf0\xd5\x58\xb2\x43\x07\x61\xf8\x6a\xb7\x7b\xef\xaf\xd6\xc9\x9b\x75\x9e\x67\x05\xff\x66\xcd\xb3\xdd\xce\xfb\x59\x31\x89\x52\xf2\xf0\x3c\x4c\x76\x3b\x8f\x4d\xea\x68\x1f\x48\x18\xc0\xf6\x81\xae\xac\xf0\xcf\x6a\x8f\x28\xea\xd2\x15\x45\xa5\x4d\xdd\x3d\x2d\x83\x92\x98\x75\x09\x9e\x6b\xcf\x86\x6f\xa3\xd9\xfb\xb8\x90\xb6\x8f\x65\xb0\x4d\x98\xe3\x7b\x5b\x91\xb7\x98\xec\xeb\xee\x7d\xb3\x1b\x15\x7e\xe0\x60\x48\x12\xd1\xf0\x7d\x4e\x92\x72\x11\x83\x39\xb1\x8b\x18\xc4\xda\x7b\x32\x27\xc6\xc9\x7d\x49\xcc\x22\x06\x37\x52\xdd\x7f\x61\xc2\x41\xfe\x5c\x91\x37\xfb\x87\x77\x77\x2f\x34\x40\x2d\x9d\xc9\x6b\x95\x98\x1d\x1a\x44\xa4\x2d\x91\x33\xfc\xd4\xa6\x53\x2d\x01\xa9\xb1\xde\xed\x1f\xc7\xd4\x8c\x63\x2b\x8d\x3e\x03\x74\x9b\xb0\x38\xbb\x45\x24\x63\x92\x40\xe9\x22\x59\x48\xe1\xf8\x73\xae\xba\x04\x7f\xaf\xea\x82\xbf\x57\x4d\xcf\x88\xfa\x49\x0d\x9c\x53\x5e\x13\xb8\x3e\x42\xb7\x69\xe1\x73\x4e\x1a\x87\x55\x30\xf2\x4d\x6a\xf3\x11\x2d\x76\x9c\xb0\xe0\xc2\x00\xea\x01\xd9\xe4\x1b\x81\xcb\xde\xd9\x15\x7d\xef\xc8\x26\x95\xac\x1b\x55\xd8\x7b\xe5\x4a\x24\xdf\xfc\xb6\x24\x92\xfb\xdb\x04\xd4\xf8\x32\x62\xd1\x42\x20\xc4\x47\x35\x9c\xec\x13\x75\x9e\x59\x65\xfc\xd9\xe9\x93\xc5\x9e\xda\x72\x3a\xbc\x47\xb6\xe6\x9c\x0a\xf7\xcc\x50\xbc\xdb\xf1\xce\xec\x28\x07\x07\xd6\xb9\x0f\x28\x36\x6d\x5d\x27\xc9\x9f\x7a\x14\x35\x0f\x25\x0c\x49\x4f\xa8\xe4\xb3\xc8\xef\xa2\x30\x51\xf2\xbb\x35\x3c\x8d\xa4\xff\x53\xa2\x44\x79\x29\x3c\x49\x57\x98\xc4\xb8\xc2\x24\xc6\x15\x26\x31\xae\x30\x89\x4e\xa7\xb1\x94\xed\x80\x7c\x2f\x51\xc2\x3c\xc1\xbd\x26\x4a\xc0\x97\x18\x07\x99\x1b\x59\x08\x02\xbe\x44\xb9\xca\x60\x32\x85\xaf\x40\xa6\xb7\x90\x0d\x9c\x9c\x82\x7c\x4f\x3e\x3f\x03\x01\x1f\xf3\x8e\x86\x98\x5c\x42\xd9\x97\x20\xdc\x4b\xf4\x1a\x93\x3b\x39\xa5\xd1\x39\x08\xf7\x3a\x42\xfe\xca\x7c\x1b\x56\xda\x37\x4f\xee\xc4\x6d\xaa\xd2\x5e\x50\x5f\x3e\xf8\x2b\xb1\x0f\x49\xa1\x62\x74\x4b\x09\xb6\xc9\x78\x20\x43\x76\x57\x44\xca\x00\x03\x19\xce\x21\x49\x13\xbe\x31\x72\xc1\xea\x09\x52\x3b\x45\x43\xb3\x4e\x43\x04\x25\xb8\x23\xac\xd3\x13\xe7\x09\x52\x35\x99\x96\x12\x13\xe6\x83\x88\x4a\x6c\x54\x15\x2e\x57\x4e\xd6\x88\xd4\x98\x1f\x27\x51\x9a\x2d\x9c\x02\xf8\x02\x52\xc2\x08\x9a\x59\x21\x72\x41\x24\xbb\xb1\xca\xf0\x96\x59\xa3\x6d\x0f\x3b\xed\x5a\x29\x76\x38\x24\xcc\xb0\xde\xba\x89\x7e\xbf\x5d\xe6\x09\xb6\x5b\x75\x75\x99\x53\xd6\x0e\x1a\xa6\x72\x8d\x2a\x70\x38\xb3\xc2\x84\x8b\x43\xaf\xcd\x2e\x0d\xc9\x4c\x81\xda\xc0\x63\xfd\x66\x25\xb1\x8c\x1f\xc5\x71\x43\x2d\xce\x30\x01\x41\x58\x67\x6e\x22\x99\xb4\x47\x8f\xed\xbb\x6c\x06\xcc\x8c\xd2\x7a\x75\x7f\x35\x97\x96\xc5\xcc\xa7\x0c\xec\xdd\x65\xbe\xb7\x83\xa1\x33\xc7\x86\xeb\x8d\x80\x65\x7d\x94\x05\x5d\x65\x37\xb4\x35\x50\x6d\xec\xb0\x1f\x1a\x63\xaa\xbe\xfd\x80\xa9\x74\x7e\xb8\x77\x36\x84\xf9\x05\x2d\x79\x56\xd0\x1f\xa2\x92\x7f\xaf\x6d\x27\xd8\x9e\xd8\x76\x62\x8e\xd6\x2b\x8a\x4a\x8a\x08\xb0\x56\x0d\x28\x6e\x13\x9a\x98\x6b\x7b\x1b\x19\x97\x93\x56\x02\xe1\x7e\xdf\xb3\xdb\xab\xd6\x80\xbb\xef\x6a\x2f\x3c\x8a\xc9\x01\xab\xeb\xeb\xf7\x7e\xa9\x8c\x0c\x58\xd3\xc8\x80\xa0\xa9\xfb\x09\xc2\xce\x3c\x1a\xa0\xae\xcd\x84\xf9\x49\xf9\x36\xcb\xe1\x22\xf4\x70\xbf\x0f\x09\xa3\x64\x72\xe1\x1b\xd7\xab\x05\xe4\xb7\xcd\x78\x12\x82\xd0\xb6\xa2\xad\x72\x16\xe5\xda\xc2\xd3\x1d\x61\xed\x45\xd7\x64\xf7\x7e\xb9\x7f\xb2\xd4\xfd\x04\x61\x39\xdb\xd9\x92\xce\xde\xeb\x54\x5b\xf5\x95\x4f\xf5\x16\xb9\x67\xeb\xd6\x53\x97\x55\x8d\x2d\xd7\x30\x35\x6a\xcd\xc1\xa9\x2a\x46\xac\x70\x98\x78\x74\x01\xfc\x30\x3a\xa9\x8f\x62\xec\xa0\xc7\x7e\xff\xc0\xf9\x65\xc5\x2f\x62\x71\xdc\x17\xd6\xae\x83\x69\x0f\x45\xbd\xdd\xa5\x51\x7f\x45\xd8\xe7\xf3\xd1\x31\xc8\x7b\x48\x5a\xc6\x29\x0e\x65\x0e\xee\x8b\x4f\xcb\x08\x8c\xb7\x6a\xfc\x1d\x6e\x3f\x50\x50\x5b\x7f\x0f\x13\x55\x7d\xb7\x6b\x54\xdf\xed\x32\xd7\x33\x61\xf2\x40\xb3\xee\x80\x5b\x16\xb0\x1f\x98\x32\xd8\xb9\xe2\xbc\xfb\x47\xa7\xb3\x1d\x4b\x03\x79\xb9\x90\xb8\x36\xb2\xe6\x38\xcc\xad\xd8\xd1\xb9\xd8\xb9\xf7\x58\x07\x75\x6f\x4f\x3b\xe2\xae\x1d\xaa\x4c\x86\xed\x26\xad\x17\xd4\xf7\xa9\x6c\xcb\x9e\x46\x95\x96\xd5\xd6\x5e\x46\xe5\x37\x9c\x17\xc9\x74\xcd\xa9\x67\x7d\x5a\xb0\x5a\x44\x5b\xb1\xa4\xbc\xab\x22\x19\x8c\x70\xb3\x4d\x75\x20\x6a\x32\xb7\xfa\xc5\x71\xbf\xb4\x5c\x67\x92\x94\x1f\xc1\x07\x6a\x38\x66\x22\xad\x99\xc9\x4e\xd5\x3a\x35\x4a\xb5\x37\x9a\x05\x83\xb4\x49\xd6\xa3\xb3\x08\xa3\x63\x5c\x3a\x0c\xa6\x1d\x9e\xbe\xb3\x1d\x3c\x03\xc4\xd7\xc7\x19\x76\x99\x1b\xc8\x78\x98\x15\x4e\xa9\x94\x83\x25\xae\x01\x58\xea\x48\x0f\x67\x35\x57\xb6\x79\x4d\x96\x18\x77\x19\x87\x11\xde\x79\xf3\xd9\x62\x17\xbf\x3a\xa5\xee\x35\x60\x8b\x5f\x65\x05\x8f\x52\x48\xb2\xc7\xbb\x56\x8f\x70\x7f\x99\xc4\xa6\x2b\xc1\x3e\x70\xff\x3d\xa5\xf9\x4b\x79\x2c\x05\xbb\xc0\x35\x5c\x41\x4e\xd9\x1c\x95\xeb\x11\xd7\x1c\x84\x25\x2b\x8d\x67\xdc\xb4\x99\x5d\x93\x5c\xa1\x16\x80\x11\x41\x35\xf0\x3e\x2e\x87\xb4\x15\x0d\x36\x61\x6a\x8b\x6a\xa3\xb7\xc5\x2e\x4c\x9d\xd2\xda\xd5\x6a\x8a\x25\x4c\x9d\xfc\xd4\x0e\x3c\x11\x41\x2e\x3c\x11\x41\x0e\x30\x41\x26\xa9\x38\x6c\xd4\x80\x64\xc3\x27\xae\xd9\xb5\x85\xa4\x16\x3a\x5e\x0b\x4e\xac\x85\x0f\xc9\x45\x58\xc3\x99\xe4\x2e\xdc\x56\x46\xc0\xb7\xdb\xdd\xec\x76\x17\xfd\xfe\xc1\xe5\xc4\xbb\xe8\xf7\xbd\x3b\x23\x4e\x96\xa2\x0f\x29\x61\x7a\xbe\x14\x70\x8c\xbf\x57\xa7\x43\x61\x3d\x97\x96\x24\x49\x23\x92\x31\x96\x5e\xcd\x60\xa1\xa8\xdf\x15\x59\x4a\xa1\x0f\x48\xe3\xec\x96\xee\x76\x28\x56\x84\x18\xea\xf8\x50\x63\x30\xf8\x58\xff\x68\xbd\xdd\xed\xd0\x60\x84\xb0\x55\x0b\x36\xe4\x63\xb7\x56\x3e\xd6\x61\x0d\x67\x38\x31\x3e\x01\xc6\xed\xa5\x2e\x10\x17\x5b\xe5\xc8\x33\xe7\xa4\xb6\xea\x20\x4d\xd4\x4b\x51\x97\xaf\xc9\xb2\x6a\xef\x80\x8c\xfb\x93\xeb\xc1\xd4\x35\x34\xc5\x13\x8a\x61\xb8\xce\x51\x4e\x06\x8d\x54\x66\xf0\x98\x91\xba\x7d\x3e\x98\x1b\x4a\x3e\x98\x5c\x0a\x42\x70\x8a\x49\x2e\xbd\x87\xf6\x0d\x8a\x35\x07\x04\xd2\xdb\x1b\xe3\x7f\xe4\xfa\x25\xb9\xdb\xb5\x82\x98\xe7\xfb\x5a\x5d\x38\xb0\xcf\x32\xfe\xba\x35\x49\xcb\xe8\xf2\xaa\x06\x31\xd7\x21\x2f\x21\x77\x58\xfc\x1f\x68\xff\x3f\x28\x37\xb4\x15\x26\x01\xf6\x99\x18\xea\x6f\x54\x05\x99\x47\xb1\x84\x8d\xc3\x02\x69\xc1\xe8\xf2\x03\x04\xa3\x4d\xa4\xe3\x24\x5a\xae\x81\xce\x29\x77\xd1\x8e\x5b\xec\x1e\x7e\xa7\x5c\x6d\x41\x5b\xe0\x62\x1e\x51\xec\xa2\x1e\x99\x22\xd7\xe0\x1e\xf1\x53\x21\x9f\x00\x9c\x3d\xcd\x12\xb5\xb0\x6f\x60\x44\xdc\x8e\x5c\xf4\xb2\x26\x17\x6d\xe5\x6f\x91\x77\xf4\x53\xa5\xa3\xf5\x90\x5c\x1f\x90\x2f\x44\x07\x12\x2e\x42\x84\x48\x26\xfe\x49\x42\x0e\x4a\xf1\x12\xf2\xa8\xb8\x06\x8c\x40\xf2\x19\x64\xc3\xdc\x08\x0d\x9b\x94\x5e\x35\x4c\xa6\xf1\x35\xe8\xcb\x67\x2e\xe7\xa7\x24\x3c\x20\xfc\x03\x5f\x64\xaf\x99\x29\x1a\x8f\xbd\x24\xdc\x56\xf8\x8a\x5f\x87\xac\x72\xc3\x17\x27\x1d\xe1\x8b\x8d\xd9\x65\x72\xc5\xaf\xc7\x4c\xa6\x9f\x03\x7d\x8d\x9b\xad\x07\x4f\xb2\xc3\x90\x1f\x22\x0f\x1d\xb2\x43\x84\x7b\x28\x28\x0e\x5b\x29\xaa\x0f\x51\xd0\x83\xf7\x63\x14\xd4\x59\x19\xda\x34\xaa\xc7\xb8\xc2\x24\xeb\xf7\xbd\xe2\x30\xcc\xad\x4a\x50\xb6\x90\x89\x16\xac\x2d\xd2\xac\x2c\xdf\xd2\x3b\x7e\x18\xa2\x31\x3a\x2c\x3e\x26\x28\x61\x36\xd6\xe2\x54\x69\xbe\x15\x16\x5e\x82\xc9\x3a\x64\xde\xc9\xf0\x99\x74\xce\x5a\x63\xc8\x4e\x71\x32\x1a\xd5\xf2\x53\x9c\x8c\x8e\x6a\x19\x2a\x4e\x46\xc7\x32\x43\xc5\xc9\xe8\x44\xba\x60\x2d\xf1\xf8\xe3\xc2\xac\x3b\x78\xa2\xa0\x79\x1a\xcd\xa8\x97\x35\x12\xeb\x68\x62\xd3\xe7\xd9\x4f\x79\x4e\x8b\xe7\x11\x70\x1a\xf8\x63\x60\x52\x28\xa9\xf9\x17\x03\xcf\xc7\x5f\x2c\x3e\xd1\x24\x1a\x71\x53\xb1\x99\x52\x44\xd0\x60\x55\x0e\xd0\x27\x19\xb3\x00\xff\x10\x93\xa4\x2b\xf4\xcc\xfd\x27\x58\xfa\x85\x7d\xf1\x7f\x57\xe5\xe0\x8b\xcf\xb1\x6e\x68\xf0\xbb\x11\xc2\x3e\xcf\x7e\xc8\x6e\xcd\x3a\x7d\x8a\x55\xf2\xae\xbe\x19\xfc\x9f\xeb\x4f\xb1\x50\xcd\x6c\x40\x4e\x2e\x9d\x1f\xb3\x9e\xba\xff\x7a\xb9\x20\x73\xe3\x1e\xcf\x7a\x7f\x03\xfd\xf6\x2a\x5f\x73\x71\xe7\x6d\x52\xea\xe1\xbf\x21\x29\x81\xe4\x21\xf5\xb3\x5b\x46\x0b\x2d\xda\xd2\x16\xdc\x6a\x5c\x7f\x4a\xe8\x2d\x92\x11\xf7\x7d\xa7\x08\xee\x43\x5a\x4c\x1a\x1f\xd7\xaa\xb4\x3a\xa5\x32\x72\x59\x20\xf5\x8c\xfb\xdf\x6f\x9b\x78\x32\x68\xa3\x3c\x85\x61\xc6\x68\x9e\x66\x11\x47\x61\xe8\xf1\x46\xf2\x34\x0e\xf1\x63\x78\x88\xa0\xe2\xf7\x50\x0d\x2b\x85\x9a\x11\x35\x42\xc7\x57\xfc\x7a\xb7\x83\x68\x07\xc9\xdc\x93\x19\x23\x8a\x7e\x9f\xf5\xfb\xec\x8a\x5f\x0b\x44\x07\x01\xf4\x31\x59\xfb\x9c\x96\xdc\x2b\x70\xbf\x7f\x10\xc9\x67\x8e\x75\x08\x79\x06\xf6\x48\xa4\x0c\xa9\x5f\xac\x19\x4f\x56\x14\xda\x26\x29\x64\x46\x85\x97\xe3\xb4\xdf\xf7\xe4\x63\x63\x04\xca\x84\x53\xb6\x11\xa2\x79\xc6\x38\x44\x4b\x06\x3b\x79\x34\xa2\x2b\x14\x14\x10\xda\x39\x4f\xee\x68\xfa\x03\x9d\xf3\x43\x94\xdf\x21\xfd\x41\x46\x9c\x96\x53\x93\xae\xa7\xa8\x3e\x2a\x0e\xac\x3d\xaa\x80\x72\x3f\xe2\xa8\x7a\x3c\xcb\x77\xa0\x93\xd9\x49\x8d\xcc\x0e\xe6\xfb\xbb\x2f\xc8\x5a\xbc\xbd\x3a\x1c\x5c\x4f\xbc\x49\xf0\x3f\xf1\x1f\xfe\xc7\xdf\xe1\xff\x89\x0f\xbd\x49\x70\x45\x2f\xae\xe1\xc5\xff\xc4\x87\x3b\x8c\xbd\xc9\x41\x7e\x87\xaf\xa2\xc1\x2f\xbf\xbf\x3e\xfc\xdd\x17\xc9\x47\x9e\x21\x8b\x92\x91\x94\x95\x6b\xd0\x88\xbd\xae\xf6\xd6\x44\xdf\x62\xf5\x1a\x1e\x24\x73\x72\xdf\x58\xe9\x09\xff\x38\x4c\xf1\x01\xd9\x3e\x3e\xa0\x3b\x93\xf7\xfb\x82\xc5\xa1\xf3\xf3\x3b\x9a\x46\x1b\xb7\xe0\x6d\xb2\x4a\xd8\xa2\x56\x45\xe9\xbd\xdd\x32\x88\x35\xe8\x1a\xfc\xc8\x66\xdb\xca\xf2\x7a\xa1\xea\xcc\x96\x98\xde\x78\xcd\x76\x45\xcc\xc7\xb5\x61\x76\xf5\xa0\x05\xec\xcd\x13\x4c\xb2\x0f\xd8\x9b\x85\xd8\xd2\xd6\xca\x06\x11\x27\xbb\x87\x7a\xd0\x4a\x57\xe3\x40\x47\x66\xfa\x61\xae\x1f\x74\x4c\x3b\x92\xeb\x87\xa5\x7e\xd0\x63\x25\x1b\x3d\xe8\x64\xee\x59\x5f\x2c\x95\xc2\xd7\x91\x22\x69\x23\x7f\x1a\x6a\xfe\xb6\x8b\x07\xc4\x72\xf3\x11\x1e\x6e\x2f\x3b\x98\x15\x94\xa1\x43\xda\xb8\xbe\xc8\xcb\xec\x97\x6e\xbe\xa6\x51\x4f\xba\x81\x77\xb5\x7a\x0b\x6f\xd0\x21\xad\xc8\xaa\xec\xaa\xf0\xf2\x8d\x78\x59\x11\x16\xba\x74\x2b\xc7\xa4\x08\x4d\x36\x6a\xf5\x90\x08\x4a\x5b\xfa\x76\xb3\x56\x7e\x94\x75\xc8\xae\x22\xc8\xc6\xb1\x3e\x6c\xd8\x31\x99\x03\x8a\xb7\x49\x88\x06\xe8\x70\x5d\x1f\x3f\x29\x42\x7e\xb5\xbe\xf6\x9c\xcf\x2e\x58\x8c\xc0\x1e\x0f\xca\xbf\x71\xb6\x3e\xc2\xe3\x69\x41\xa3\xf7\xda\x7e\xf2\xa0\xe8\xf7\x51\x7b\xef\x41\x7f\x70\x09\x38\x2f\x29\xb4\x7a\x90\x81\x75\xa7\x73\x0e\x74\xe5\x2c\xb4\xe5\xb2\xae\xd2\xd9\x6e\xdd\xc3\x17\x64\xa4\x76\x6a\x82\x82\xe4\x05\x9d\x27\x77\x41\x52\x55\x1e\x1e\x47\xe1\x8d\x2f\x0b\x48\xf3\x7c\xad\xc3\x9b\x7a\x49\xf3\x5c\x97\xe1\x4d\xad\x80\xb8\x47\x28\x09\xa3\x43\x01\xbe\x84\x74\x9e\xb6\x14\x5e\xdb\x17\x03\x1d\xb9\x07\x91\xce\x73\x3d\x6b\xd6\x8f\x8d\x21\x5a\xfb\xc8\xc7\xad\xca\xa2\xb8\x5e\x53\xa1\x82\x79\xb3\x2a\x87\xf2\x81\xb1\xeb\x20\x4d\x34\x94\xc3\x17\xa6\x6c\x20\x23\x48\x75\x21\xb0\x65\xa3\xa6\x3b\xe4\x26\x02\x5c\x35\xeb\xea\x11\x37\x50\xe7\xa6\x51\xaf\x39\xdc\xaa\xb6\x06\x7b\x60\xdf\x09\x88\x2e\x38\xee\x59\x8b\xf6\x56\x69\x43\xa9\x1b\x22\x5d\x33\xef\x98\x64\x6b\xa7\x39\x37\xd8\xd6\xcc\x2f\x48\x08\x65\x71\xb0\x26\x7a\xef\x04\x29\x91\xf0\x08\xe6\x04\x00\x18\xc4\x44\x03\x3d\x98\x55\x1f\x40\xb5\x1f\x78\x07\x74\xb7\x3b\xc8\x24\x25\x46\xf1\xa7\xa1\xd2\xff\xaf\xe7\xc1\x24\xd2\x88\xd3\x5d\x91\x71\xf1\xa7\x9c\x45\x29\xc5\xde\x5f\x76\x7f\xdd\xfd\x9f\xdd\x71\x8c\x27\xbb\x55\xc4\x8b\xe4\xce\x83\xe7\x9c\x16\x65\x4e\x41\x93\xb3\x2b\xdf\xd3\x5b\x51\x0f\x4f\xf0\xc7\x13\x29\xee\x4d\x86\xa6\x59\xbc\x51\x09\x9d\xa3\x85\x58\xc6\x06\xea\xae\x5b\x2d\x49\xd2\xbe\x2e\xde\xa3\xca\x18\xa5\xc6\xcc\x43\xbc\x82\xa6\xec\xa2\xdf\x3f\x28\x9c\xec\xb1\x54\xd9\x81\x48\xb3\xf3\xaf\xeb\xbe\x39\x9a\x48\x6c\x93\xf3\x5c\xda\x6d\x90\x24\xcc\xa3\xa2\xa4\x2f\x18\xf7\xb2\xb6\x08\x44\x99\xd9\x0e\xc0\x02\x0f\x13\xc1\x14\xa6\x8f\xfa\x40\x7a\x8c\xc2\x17\x5a\x40\x9d\x1c\xca\x3e\x5d\x8f\xa2\xc3\xf4\x2b\xe6\xf8\xd6\x7c\xa4\x55\x56\x52\x7e\x9b\xc5\x1b\x88\xa2\x5f\x97\x4c\x28\x93\xac\xd1\x99\x31\xca\x3a\xb2\x46\x59\xe7\xe7\x4f\x8c\x2e\x6f\x6c\xd8\x42\xf0\x84\x15\xec\xd2\x84\x06\xcf\xe0\x27\xcb\x62\xfa\x16\x72\x7a\x5b\x3b\x02\xc1\x6f\xed\x76\x54\x79\xa1\xfe\x19\x3e\xf8\xd5\x49\xd1\xce\x29\x8c\x1a\x63\x86\xc8\xab\xa5\x9b\x26\xa1\x6b\x37\x37\x73\x3d\x88\xbe\x78\x78\x75\x6d\x13\x5d\x90\xab\x6b\x2d\x10\x53\x89\x3b\x3a\xb2\x96\x51\xbc\x85\xfe\x9c\x0c\x0b\x32\xcd\x03\xee\xf7\x65\xd6\xb9\x56\xaa\x07\x70\xaf\x9b\xf0\x86\x52\x54\x06\xe6\x52\x9e\xa3\x32\x2c\x17\x0e\x78\x8b\xfc\xaf\xd5\xc3\x6d\x17\x62\x39\x97\x0e\x3a\x2c\xf1\x0e\x86\x84\xb6\x13\x9d\xdd\xff\xc9\x48\x7e\xf2\x21\x2c\x40\x91\x44\x7f\x84\x61\xc2\x3d\xb4\x4c\x62\xfa\x26\x99\xa6\x90\x43\x2b\x22\xdc\x2f\x97\xd9\xad\x29\xd0\x19\xb2\xae\x10\xa7\xab\x3c\x95\x69\x7e\xca\x59\x91\xe4\x5c\x3c\x88\xb3\x8e\xae\x7f\x5b\x76\xac\xae\xb9\xe9\xe8\xd9\x07\xa6\x7e\xd0\x2a\xda\x66\x0e\x77\xea\x1b\x63\x75\xc8\x03\x01\x7e\x15\xb3\x90\x76\xf9\x44\xc4\x4d\x1c\xbd\x37\xc3\x92\x69\xd3\x7a\x0d\x74\x58\xfe\xdb\xe0\x19\xe5\x1e\xdd\xca\xdc\xb5\x3f\x4f\xf6\x99\xc9\x67\xc6\x9a\x7d\x56\x91\x18\x93\x7d\xad\xb5\x82\xf8\x35\x8c\x20\xa5\xa2\xa9\x15\x76\x8f\x3b\x20\x2a\x30\x61\x98\xd4\x8e\x8e\x8a\x7c\x57\xfd\x0a\xe9\x04\x4e\x4c\x36\x01\x15\x5b\x3e\x33\xb1\xe5\x33\x93\xdf\xa4\x96\x58\x40\x9a\xc1\xce\x4c\x5e\x01\x99\x4b\xe0\xe4\x68\x08\xb6\xb5\xca\x4e\x55\x99\xa5\x0e\x46\xa4\x65\xb1\x7a\xaf\x6d\x2a\x99\x46\xb3\xf7\x8b\x22\x5b\xb3\xf8\x79\x96\x66\x45\x80\x8a\xc5\x34\xf2\x86\xa4\xa7\xfe\xf3\x4f\x4d\xb0\xae\xb7\x51\xfe\xc7\x64\xb1\x4c\x45\x7b\xaa\x32\xec\x08\x79\x09\x20\x02\x91\xbb\xbe\x99\xc9\xce\xa5\x47\x3a\xb1\x6e\x14\xdb\x56\x4f\xee\xc7\xae\x15\x6c\xfc\x50\xb2\x03\xc7\x37\x43\x25\x69\xca\x1b\x6e\x3d\xb1\x63\x0a\x6f\x74\xdb\xcd\x44\x03\xf9\x6f\x17\x87\x88\xbb\xfe\xef\x9e\x3c\xf0\x13\x07\xae\x3b\x3f\xc5\x58\xe7\xf4\x1e\xea\xa8\x75\xc7\x67\x60\x22\x2e\xca\xce\x31\xd9\x84\x5b\xaa\xdd\x64\xb6\x59\x1e\xcd\x12\xbe\x09\x46\x95\xcc\xed\x48\x63\xb7\xac\xda\x9f\x27\xfb\x5f\x21\x60\xdc\xa3\xa2\x90\xc9\xf0\x4b\x63\xd0\xdf\x15\x74\x9e\x66\xb7\x82\x68\x57\xf1\xf4\xa1\x54\x3b\x76\x5a\xcf\x2e\x13\xfc\x9e\x6c\x57\x59\x4c\x03\x95\x4c\xb3\xc2\x63\x2d\xa3\x94\x82\x1b\xfb\x59\x4d\xc2\x56\xea\x0c\xb9\x48\x2d\x15\x22\xac\x11\x4a\xe0\xb1\x1f\x3d\x29\x48\x58\x3d\x65\x62\x37\x20\xc8\x13\x26\x7d\x97\xf0\xbf\xf3\x9c\xef\x12\x5e\x9b\xf2\x5d\xc2\xdb\x3e\xe8\x9f\x24\xe5\x63\x2b\xed\xb6\xa6\x7b\x59\xe8\x51\xe3\x13\x4a\xb5\xd7\xa7\x0e\x43\x41\x0a\xf1\x5a\x42\xb6\x9d\xe7\xc9\xb1\x8f\xaa\xb9\x35\x4a\xef\x45\x49\xe4\xd9\x08\x5d\x02\xbd\xb4\x42\x55\x31\x27\x18\x55\x2b\xa8\xf4\x44\xc7\x32\x96\xa1\x43\xb7\xd5\x83\x51\xbe\x62\x97\x50\xc9\x3a\x09\x95\x27\xe7\x3b\x2c\xb0\x8b\xa4\x6d\x9a\xe4\x79\xb7\x05\x49\x8b\x46\x32\x81\x53\x93\x9a\xc9\x8b\x44\x72\x43\x72\x9b\xa4\xa9\x0c\x51\x1e\x98\x6d\x52\x91\xcd\x15\xbd\x26\x6b\xb5\x15\xee\x0f\x9a\x75\x7f\xa6\xf0\xad\xa6\xc9\x24\xd6\x0d\x72\x5f\x0b\x50\x7c\x8d\x86\xdf\xcc\x0a\x4a\x55\xda\x5f\xe7\xb5\xca\xaa\x29\xdf\x56\xf2\x8e\x9e\x36\x42\x69\x61\xef\xc6\xbd\x8d\xa7\xbf\xe1\xdb\xf8\xf8\xef\x7f\x1b\xdb\xcb\xf8\xd4\x5c\xc6\x67\xe6\x32\x3e\x37\x97\xf1\x33\x73\x19\x8f\xe0\x32\xee\x88\x1d\x1b\xdb\x94\x44\x79\x23\x25\xd1\x11\xe4\xb8\x5a\xaa\x69\x9f\xc0\xdd\xfc\xb8\x5b\x36\xfa\x98\x5b\x76\x1d\x0e\xc7\xeb\xaf\xb2\xf1\x1a\x6e\xd9\xb5\x7b\xcb\xae\x9d\x5b\xb6\xec\xba\x65\xcb\xcf\x78\xcb\xa6\xf5\x90\xac\x8d\x38\xa3\xba\x78\x9a\xae\x8b\xb7\xc9\x8a\x16\xa6\x9e\x34\xed\x37\xde\x27\x2a\x8e\x37\x98\x8d\xed\x4f\xdd\xe2\x36\x54\x52\xfe\x56\x9e\x4d\xaf\x19\x47\x55\x8d\x49\xe3\x6e\x53\x40\x78\x23\xe0\x52\xcb\x1c\xdc\x89\x0b\xc1\xf1\x6e\x57\xf8\x05\x15\xfd\xa8\xe1\x81\x99\xfa\xf1\x10\x37\x52\xb3\xb8\x77\x90\x4e\xd5\x72\x6f\xa6\x16\x7d\xf1\xea\x61\xb1\x46\x86\x5b\x8a\x49\xd6\x0c\x0d\xd5\x1c\x29\x5a\xe7\x48\x86\x3c\x95\x29\x5d\xc4\xf3\x6e\x97\xf5\xfb\xde\x41\xb6\xdb\x71\x3b\x8f\x0c\xe3\x89\xac\x22\x2d\x95\x3a\xa2\x80\x66\x3e\xa3\x77\x5c\xb5\xac\x64\x10\xfd\x7e\x57\xa9\xb1\x46\x0f\x44\xff\x21\xf4\xdf\xdd\xa2\x28\x4a\xb2\x75\xd9\x6e\xb5\xfb\x8d\x6d\xb9\xb5\x89\x26\xad\x12\x5d\x39\xe0\x1d\x11\x68\x9d\xd5\x31\x5e\x39\xad\x22\xb8\x8a\xea\x69\x99\x1a\x8e\x32\xed\x75\x92\x09\x67\x6c\x4c\xba\xe1\x98\x7d\x65\x4d\xc8\xb5\x52\x8d\x1d\x86\x23\x2c\x6a\x9a\x37\x57\xec\xba\xed\x6a\xa5\x52\x56\x9b\xad\xc5\x8c\x6a\xac\x4e\xbe\xa4\x6d\xf2\x65\xfd\x31\x1e\x2e\xed\x0d\xfd\x24\xff\x0f\x08\xc9\xa5\xcf\x1d\x34\x68\x4e\xa4\x6d\xcb\xe9\xa1\xcb\xc0\x53\x5a\x40\x1b\x6f\xb6\x26\x0e\x70\x83\xf4\xcc\xf7\xf8\x37\x38\x44\x99\x34\xa5\x6e\x34\xa2\x3d\x02\xf4\xca\xf1\x7e\x9f\x3b\xce\xc4\xbc\x16\xc6\x18\x02\x87\x7d\x1d\x0e\x27\xce\x92\xd1\xeb\x7b\xf7\x98\xeb\x9e\x70\xdf\x6c\x5d\xfd\xb2\x3b\xa0\x07\x31\x11\x61\xe1\xd5\x35\xc4\x3c\x2c\xbe\xa2\xad\x3d\x56\x88\x3d\xc6\x74\x26\x2d\x33\xe8\xe2\x1a\x1b\xd5\x80\xc9\xd0\xa1\x89\x3e\xc8\xdc\x91\x4d\x34\xf0\xcd\x16\xc8\x94\x5b\x50\xf3\xd0\xb5\x2a\x3a\x6d\x76\xd4\xc7\xa6\x19\xfb\xc5\xf0\x93\x87\xe7\x05\x71\x5f\xd4\xc8\xf4\xa3\x9d\x17\x9a\x89\xbe\xdb\x11\x74\x7f\x6c\x65\xb7\xd1\xe6\xfa\xd7\x36\x05\xf8\x6c\x0f\x71\xbc\xdc\x47\x1c\xcb\x2c\x01\x2b\x08\x85\xda\x36\x0e\xd7\x17\xa4\x25\x3e\x1b\x21\x23\x1c\x93\xf1\xe2\x43\x12\x4f\x54\x24\xc2\x96\xcb\xa9\x27\xa1\x71\x04\xf3\xdc\xa1\xbd\x67\xf7\x30\x0d\xb3\x7d\x74\xf9\xd6\x64\xdb\x60\x80\xce\x3a\x0f\xde\x64\x18\x0c\x46\x32\x5b\x84\x66\x3e\xd4\x3e\x99\xd4\xc1\xd2\x24\x14\xf6\x82\x47\x67\x69\xd1\xb9\x33\x68\x13\x65\x57\xca\xda\xdc\xc6\xc8\x98\x75\xd1\xf9\xab\x76\x3e\x84\x4d\xb8\xfa\x95\x92\x6e\x7e\x6e\xea\xfb\xe1\x90\x0d\xbf\x62\x36\x87\xd1\x47\x0b\xc5\x34\x41\xae\x52\x38\x1c\x35\x32\x38\x28\x81\xaf\x38\x59\xa0\xf6\x54\xa2\x56\x15\x90\x24\x18\x12\x15\x78\x5d\x3c\x19\x51\x70\x41\x53\x99\xeb\xb8\x32\xaf\xb7\xea\xe1\x6d\x96\x07\xe7\xba\xf4\x5b\x29\x23\x3e\xaf\x48\x4c\x59\x49\x6b\x95\x4e\x1a\x95\x4e\x2a\x52\xae\xa7\x4b\x1a\xc5\x10\x16\xd5\x56\x1c\xba\xc2\xdc\x95\xda\x6c\x7b\xb9\x04\x73\xd9\xb7\xe5\x70\xa4\x4b\x48\xf6\x48\xe2\x5d\xd2\xed\xf0\x89\x61\x16\x3e\x40\x32\xb2\xa0\xf2\xee\x83\x68\x4d\x77\x5d\x44\x81\x0a\x17\x21\xe1\xe5\xba\x1e\x8a\x82\xc7\xc6\x0a\x7b\x74\x74\x76\xf7\x2a\x80\x0c\x74\xc6\xc7\x2f\x05\xbd\x29\x2b\x6b\xf9\xe7\x5e\xc9\x55\x81\x18\x5d\x66\xb1\xc8\xf2\xb1\xf1\xd6\xeb\xfe\x6a\xd6\xd9\x0d\xfa\x71\x1c\xcc\x64\x2f\x88\x20\xd3\x07\xba\x16\x7b\xb5\x7e\xcd\x17\x4a\x39\x43\xc3\x6d\xd5\xb8\xaf\x28\xc8\xf8\xc5\xe0\xd3\x7e\xff\x60\x86\x3b\x5e\xab\x0d\x46\xba\xdf\xda\xc9\xc5\x58\x2c\xe7\xfa\x41\x71\x4f\xd9\xbc\xc9\xec\x4d\xb4\xaa\xc8\x12\x93\x58\x10\xc9\xf7\x09\x4f\x36\x75\xe1\xc9\xa6\x21\x3c\x31\x00\x0b\xd0\x3a\x45\xea\x40\x39\xce\x31\xea\x1c\x1e\x8c\xc4\xa7\x33\x67\x93\xa9\x16\xe5\x07\x36\x07\xc4\x34\xcb\x52\x89\xba\x6f\x1a\x92\x94\x95\xa3\xed\xf8\x21\x29\x21\xa5\xf2\xc6\x95\xad\xdc\x7c\x98\xbe\xd1\xca\xf9\xac\xf2\xb1\x68\xe5\x92\xcf\x4c\x2e\xf9\xb4\x9e\x4b\x7e\xd6\x91\xde\xbd\x73\x9b\x3d\x22\x87\xbb\xd5\x33\xee\x49\xa7\x9e\x3d\x90\x4e\xdd\x1c\xee\xc7\xa4\x55\xe7\x26\x5c\x7f\x33\xc1\x7a\x51\x4f\xb0\x9e\x92\x6c\x92\xed\x49\x4e\x3e\xfb\x07\x4a\x4e\x0e\x99\xc5\x3b\x92\x93\x9f\x59\x85\xe2\xb9\xcc\x4d\xfe\x88\x48\x38\xe6\x32\x21\x32\xa0\x2e\x1a\x0d\x87\xbf\x47\x95\x4a\x31\x17\x6c\xd1\x60\x95\xfd\x32\x90\x52\xd3\x88\xcd\x28\xd2\x57\x14\x1a\x48\x39\x79\xd7\xbb\x75\x49\x0b\x99\x86\x4f\x97\xb8\x09\x44\x82\xe3\x23\xdd\x59\x57\x90\x6c\x27\xb4\xf6\x6c\x5d\x94\x59\x11\xa0\x3c\x4b\x94\x50\xb9\x1f\x48\x46\xca\xd5\x40\x06\x28\xd5\xf1\xdf\xa9\x9f\x47\x29\xe5\x9c\x42\xca\xca\x49\x4b\xff\x39\x3c\xc5\x48\x69\x45\x8f\x4e\x4f\x49\xcf\xfe\x23\xdf\x91\x69\x56\xc4\xb4\x78\x1d\xc5\xc9\xba\x0c\x86\x95\xe8\x10\x00\x00\xbd\x82\x53\x57\xb0\x9d\x75\xa9\x4b\xe9\x1d\x7f\xb3\x8c\xe2\xec\x36\x40\xc3\x9e\xf8\xdf\x7f\x0c\x87\x43\x04\x0d\x04\x83\x55\x39\xa0\x77\x79\xc4\x62\x14\x6c\x55\x56\x2f\xa3\x54\x45\xfd\xdf\x99\xb4\x97\xc1\x56\xcf\x58\x53\x53\x95\x5e\x89\x97\x94\xad\x03\x15\xf4\x58\xc5\x25\x17\x7d\xea\x9c\x4b\x01\xa2\x69\x9a\xe4\x65\x52\x22\x72\xbb\x4c\x38\x7d\x93\x47\x33\x20\x27\x6e\x8b\x28\xb7\x31\xcc\x6b\x21\xcc\x75\x30\xf2\x91\x3f\x3a\xff\xf2\x94\xae\x50\xa5\xf1\x59\x1c\x6c\x2b\x92\xcc\x32\xd6\x1d\x22\x5d\x6b\xa1\x21\x7e\x2f\xac\xe1\x29\x2c\xe1\x48\x2e\xa1\x04\x90\x5d\x0b\x19\x93\x51\xb1\x85\x44\xaf\xe6\x00\x24\x2d\x25\x32\x01\xcf\x9f\xa2\x35\xae\x1f\xe4\x59\x1d\x1f\xec\xcd\x82\x6f\xcd\x17\xa4\xa7\xbf\x9b\xef\xfe\x47\x38\x06\x6e\xd6\xfb\xbc\xa1\xd7\x73\xf5\xd0\xb5\xda\xff\x3c\xba\xe8\xd1\xe9\xd9\x67\xa5\xbf\x3f\x37\xf7\xf0\xb0\x35\xce\x6f\x43\x76\x7f\x72\x3c\xb4\xc2\xfb\x93\xe3\x91\xe1\x20\x40\x85\xae\x44\xf6\x10\x7b\x6d\x15\xee\xe3\xf2\xe3\xfa\x66\x27\x9b\xbd\x35\x1b\xc7\x82\xdc\x3c\xba\xe6\xf4\xd1\xbd\x2f\xfe\x95\x55\x0b\xd6\x87\xfd\x5b\x48\xeb\xd9\x95\xbd\xdf\xc4\x56\x02\x15\xe0\xab\x68\x41\x25\xa5\x0c\xc5\x79\xb4\xa0\x83\x91\x23\xe6\x85\xf4\xe5\x1f\xde\xd6\xe1\xa8\xa9\x5c\x7e\xa4\x74\xf6\x69\xca\x65\x71\x47\x0b\x4c\x2d\x47\xfa\x4a\xf1\x43\xd4\x9f\x65\x6b\x08\x64\x42\x41\x30\xdf\xac\x11\x49\x4d\xb4\x1d\x3c\xa1\x30\x68\xb1\xbe\xd4\x2f\xb2\xdb\xf2\x15\x2d\xa0\xbc\x0c\xb5\x4e\x3a\x0d\x9b\x6c\xc4\x15\xea\xe8\x1d\x58\x1f\x90\x07\xa3\x8e\x9e\x9d\x2c\xd1\xa2\x79\x44\x50\x2e\xff\x38\x7d\x76\x64\x9a\xda\x77\x04\xa4\x79\x5b\x4a\x9e\x2c\x86\xdb\x13\xff\xc0\x59\x6f\x7b\x4f\x0f\xc3\x30\x8c\x2a\xc1\x5f\xeb\xe4\x51\xa5\x93\x3c\x6a\x15\x6c\xf0\x27\xe9\xbf\xb1\xdf\x6c\xff\xd1\xd7\xe1\xcb\x88\x2f\xfd\x19\x4d\x52\x8f\x7d\xb1\xc6\x83\x11\x68\xca\xbb\x46\x73\x13\x4c\x1f\x10\x6d\x2d\xda\xa2\xad\xdb\x06\xe3\x89\xbd\x85\x7b\xd7\xde\xfe\x7d\xf0\xfd\xc8\xe0\xfb\x53\x07\xe1\xcb\xa0\x9a\xd9\xbe\xfd\x90\x47\x7c\x89\xc8\x36\x0e\xd0\xcb\xd1\xa9\x7f\x32\xea\x8d\xce\xfc\xe1\xb3\x74\x70\xe2\x9f\x9e\x8b\x7f\x9e\xf5\xcc\xd3\x0f\xa3\x93\xde\xa9\x7f\x9a\x0e\xce\x7a\xf0\xbf\x5f\x50\x25\xae\x90\x0e\x53\xde\x7d\xbd\x19\x44\x4a\x28\x59\xe3\x6a\x5c\x36\x4e\x48\x89\x49\x69\xa9\x9f\x37\x37\x0b\x71\x18\x90\xce\xf0\xe3\x40\x38\xfd\x6d\x42\xf8\x5c\xc0\x73\x74\xe6\x1f\x9f\xa4\x06\xaa\x03\x07\xbe\xc3\xde\xa9\xff\xe5\x69\x7a\xd6\x3b\x1b\xfc\xf3\xc2\xf7\x33\xd3\x5b\xc7\x0f\xdb\x4a\x74\x48\x23\xe4\x15\x60\x45\x62\x56\x1e\x91\xd5\x8c\xa1\x67\x70\x53\xa4\x59\x41\xe6\x21\xb5\xa9\xb6\x97\x5d\x56\xcf\x0f\x0b\xbc\xd2\xcc\x09\xce\x14\x3f\xc2\xd6\xb9\x66\x42\xb4\x37\x6b\x78\xda\x16\x89\x71\x25\x12\xab\x09\xe5\x8a\x2b\x35\x86\x5a\x4e\xce\x59\x94\x27\x3c\x4a\x93\x5f\x28\xf6\x66\x18\x5f\xdb\x85\x39\x08\x43\x29\x1b\xab\xb7\x62\xc1\x30\x87\x70\xa5\x19\x26\x32\x0d\xc6\xeb\x24\xcf\xe5\x12\x02\xab\x6a\x7f\x1a\x4c\x3d\x07\x41\xd8\x5e\x5b\x6c\x95\xa7\xdb\x51\xe1\xf8\x69\x34\xa5\xa9\xa4\x13\x7e\x0b\x96\xd4\xcc\x3b\x1d\x09\x9a\x59\x0a\x43\x46\xca\xfe\xf4\x08\xcc\x4f\xf7\x4a\x42\x04\x13\xfd\x4d\x9a\x2c\x98\xc9\x27\x42\xe6\x29\xbd\x93\x5c\xbc\xe4\xb3\xb5\x43\x7d\x00\x52\x85\x6c\x51\x44\xf9\x72\xe3\xe7\x77\x6f\xb3\xd7\x74\xe5\x1d\x9d\x60\x25\xcd\x38\x39\xd7\x09\x88\x4e\xce\x1d\xc1\x7d\x4d\xa4\x80\x4e\x87\xbf\x7f\x88\x41\xb6\x76\x83\x01\xed\x34\x22\xb4\xa2\x8f\x81\xda\xd7\x5b\xe3\x0c\x57\xff\xc2\xd8\x70\x95\xcb\xac\xe0\xb4\xe4\x15\x26\xa8\x1f\x2c\x21\x9c\x78\xdb\x8a\x1b\x82\x0d\xcf\xa3\x98\x62\x6f\xdf\xe0\x5a\xe5\xd0\xd6\xa5\xb4\x57\xc3\x04\xfd\xe7\x8a\xc6\x49\xd4\xf3\xa0\x38\xe8\x09\xd6\x1e\x77\xf4\x54\xb7\x17\x6f\x08\x41\x1e\x30\x2e\x6f\x8a\x4c\xba\x81\xa9\x6b\x54\x95\x04\xf7\x0b\xb6\xa4\x45\xc2\x8d\xf8\x26\x91\xbf\x91\x7a\xfd\xaa\x48\x56\x51\xb1\x69\x37\x97\xcb\x17\xfe\x2a\x4a\xd8\x93\x61\x57\xfb\xf8\xb3\x80\x4e\x4f\xef\x0d\x9d\x65\x2c\xee\x9c\x41\xa9\x5f\x7d\xd8\x1c\x1a\x9f\x7f\xae\x59\xb8\x92\x27\x40\x3c\x46\xda\x05\x12\x49\x62\xe4\x66\xe2\x78\x22\x12\x89\x33\xfb\x82\xd3\x55\x69\x97\x92\xfc\xbc\x2e\x79\x32\xdf\xa8\x6c\x1c\xce\x1a\xbb\xb2\xa5\xe5\x43\xb2\x25\xb5\x41\xcc\x15\x69\x46\xa6\x1d\x14\x56\x0d\x07\x85\xa5\x23\x18\xb2\x2c\x45\x4b\x2c\xb4\xaa\xae\xf1\xf8\xff\xfb\xe2\x8b\xff\xe8\x95\xd9\xba\x98\xd1\x97\x51\x9e\x27\x6c\xf1\xd3\xeb\x1f\x42\x01\x59\xff\xe4\xe4\xfc\xfc\xd9\x74\x78\xe6\xff\x5c\xfa\xab\x28\xff\x7f\x01\x00\x00\xff\xff\x47\x24\x1c\xd9\x85\x9e\x09\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xdf\x8b\xe3\x36\x10\x7e\xef\x5f\x11\xbb\x20\x24\x32\xa7\x75\xd2\x52\xda\x78\x87\xbe\x97\x1e\x57\x7a\xed\x93\x31\x87\xe2\x48\x59\x5d\x15\xc9\x8c\xe5\xdb\x2e\x5e\xf7\x6f\x2f\xb2\x63\xe7\x6e\x7b\x0b\x85\x40\x64\xcd\xaf\x6f\xbe\x6f\x34\x99\xe9\x7d\x13\x6d\xf0\x5c\x8b\x61\x39\x6f\x88\x93\x18\x4c\x20\xfe\x49\xd1\xc6\x83\x01\x8b\x54\x15\x35\x38\xa4\x6a\x57\x83\x42\xaa\xf6\x35\x34\x58\x40\x87\x55\x5d\x36\xf7\x56\x3a\xed\xcf\xf1\xa1\x6c\xb6\x5b\x61\xd0\x56\x4d\x0d\xa1\x32\x35\x63\x9d\x6c\xfb\xee\x81\xa7\x8f\xaa\xa8\xc5\x74\x8b\x45\x99\x92\xfb\x8d\xf5\x1b\x27\xde\x1d\x3f\xea\x26\xca\x96\x42\x0c\xf1\xa9\xd5\xf2\x41\x75\xef\x1e\xfd\x6f\x14\x5a\x4d\xf1\x49\x36\xca\x39\xee\xc0\x0b\xc6\xb8\xae\x7c\x8d\xae\xf2\xb5\x98\x32\xb4\x8c\xb5\x9c\x44\xd9\x2d\xe5\x45\x27\xbb\x07\x6b\x22\x17\x5c\x94\xa4\x63\x4f\x7e\xd3\x4f\x08\xa4\x6a\x5b\xf7\xc4\x7b\x50\xcf\xcf\x55\x2d\x20\x72\x31\xae\xfd\x46\x7e\x6b\x57\x03\x61\x51\xd2\x7d\xbf\xe4\xa4\xed\xf6\x66\x8d\xd8\x57\x54\x83\xc7\xac\x00\x8b\xbb\xd2\xde\xc7\xc5\xcf\x26\xbf\xe4\xe3\x30\x56\xb6\x2e\x8b\x0c\x31\x54\xae\x66\x8c\x7b\xcc\x76\x62\xf4\x8c\xf1\x5e\x76\xad\xb3\x8d\xe6\xf4\xe6\x0d\xec\x04\x68\x34\xdc\xc8\x0e\x63\x22\x47\x8c\x57\xc8\x7a\x9c\x88\xc7\x61\x84\x80\xc3\xfe\x50\x8c\xd0\x27\xa2\x57\xc0\x26\x09\x64\x0d\xf7\x15\xd5\xe2\x1a\x94\xce\x52\xff\xdd\x06\x8a\x5d\x39\x63\x4d\x57\x38\xd8\x03\x81\x3b\x64\x3b\xb8\x1a\x0f\xc3\x38\x2e\xe4\xe8\x14\x34\x31\x1c\x97\x58\x88\x70\x3b\x1b\x01\x51\xba\xd4\xed\x7a\x37\x1a\x79\x41\x0d\x46\x36\xe8\xc1\xc8\x13\xde\x46\x08\x08\xa2\x18\x8c\x0c\xe9\x28\x9e\x9f\xaf\xd2\x9e\xb4\xb1\x5e\x2f\x82\x4e\x6e\x83\xf6\xfd\x45\x93\x3a\x3a\x7d\xc8\x0a\x38\xeb\x78\x88\xa3\x18\xc1\x48\xc2\xcf\x47\x32\xef\xfd\x1c\x7d\xca\x33\xc4\x34\x1e\xc1\x6c\xde\x3f\x5d\x8e\xc1\x31\x36\xff\xcb\x18\xde\x47\xb2\xfe\xfc\x87\x3a\x33\xf6\x5a\xc9\xff\xfa\xc2\xf0\x49\xb9\x5e\x1f\xf2\xb7\xe1\xd4\x3b\x9d\x8f\x02\x5e\x0b\xce\x3f\x7c\xd0\xdd\xd5\x6d\x09\xcb\x8a\x19\x6f\xfc\xa2\xff\x49\x95\x1d\xa3\x34\xab\x68\xb8\x16\x02\x7e\x64\xb4\x48\xa4\x4b\x6b\xf8\xf7\xc9\x9a\x87\xa9\x54\x8e\x6b\x53\x9a\xb1\xf4\x93\xb7\x52\xb7\xa8\x59\xcd\x2b\xba\x86\xb4\x8a\x9a\xfb\xde\x39\x91\xf2\x19\x49\x3c\xbe\x86\x3d\x42\x7e\xd2\x46\xf5\x2e\xe6\x2f\x39\x9f\xdb\xd0\xa3\x80\xfd\x84\xa8\x9b\x88\xc9\xb3\x15\x90\x58\x37\x40\x7a\xa8\x5a\x18\x79\xe2\x11\x3c\xac\xfd\x92\x18\x3e\x1b\xa3\x51\x1e\xad\x3f\x4d\xb8\xc0\x8b\xf5\xf9\xc5\x44\x92\xff\x42\xd4\x94\x93\xf0\x45\xb7\x3f\xaf\x1e\xb7\xac\xf2\x8a\x7d\x3c\x7c\xc5\xb8\xce\x70\xc2\x45\x90\xab\x1c\x48\x00\xa5\x72\xe1\x85\x26\x57\xc7\xff\xb5\x69\x52\x40\xca\xd1\x62\x7e\x97\x4f\xcc\x5b\x7c\xb4\xfe\x14\x1e\xe5\xa3\x3e\xb6\xaa\xf9\xeb\x97\x2e\xf8\xf6\x6b\x77\x69\xb3\x80\x43\x3b\x2f\x9c\x89\x0d\x2b\xca\xf9\x13\x09\x2c\x5a\xd9\x4d\x8f\x7f\xde\x5e\x29\xb7\xc2\xa2\x54\xb7\xf5\xa9\xb6\x5b\x41\xdc\x56\xaa\x16\x53\xe9\x16\x5d\x99\x36\x15\xaf\x6a\x51\x7e\x73\x77\xf7\xed\xa6\x0b\x3d\x35\xfa\xad\x6a\x5b\xeb\xcf\x7f\xfe\xfe\x2b\x52\xef\xa3\xbd\xe8\x7f\x2e\xca\x7a\xb9\xdf\xff\xd4\x7c\xf7\x43\x61\xe4\xc7\x4e\x5e\x54\xfb\x6f\x00\x00\x00\xff\xff\x3d\x23\xad\x26\xde\x05\x00\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ @@ -79,6 +100,7 @@ var WebUIAssets = func() http.FileSystem { fs["/favicon.ico"].(os.FileInfo), fs["/index.html"].(os.FileInfo), fs["/manifest.json"].(os.FileInfo), + fs["/precache-manifest.baae253ab2cfa5961c6a03b786312880.js"].(os.FileInfo), fs["/service-worker.js"].(os.FileInfo), fs["/static"].(os.FileInfo), } @@ -86,7 +108,9 @@ var WebUIAssets = func() http.FileSystem { fs["/static/js"].(os.FileInfo), } fs["/static/js"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/static/js/main.44889b06.js"].(os.FileInfo), + fs["/static/js/1.1dc62afc.chunk.js"].(os.FileInfo), + fs["/static/js/main.47cebbb7.chunk.js"].(os.FileInfo), + fs["/static/js/runtime~main.229c360f.js"].(os.FileInfo), } return fs |